Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated SDKs #370

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,11 @@
- added type `NewMasterVariantAdditionNotAllowedError`
</details>

**History changes**

<details>
<summary>Required Property(s)</summary>

- changed property `id` of type `ModifiedBy` to be optional
</details>

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ namespace commercetools.Sdk.HistoryApi.Models.ChangeHistories
[DeserializeAs(typeof(commercetools.Sdk.HistoryApi.Models.ChangeHistories.ModifiedBy))]
public partial interface IModifiedBy
{
bool IsPlatformClient { get; set; }

string Id { get; set; }

string Type { get; set; }
Expand All @@ -18,7 +20,5 @@ public partial interface IModifiedBy

IReference Associate { get; set; }

bool IsPlatformClient { get; set; }

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ namespace commercetools.Sdk.HistoryApi.Models.ChangeHistories

public partial class ModifiedBy : IModifiedBy
{
public bool IsPlatformClient { get; set; }

public string Id { get; set; }

public string Type { get; set; }
Expand All @@ -17,7 +19,5 @@ public partial class ModifiedBy : IModifiedBy
public IReference Customer { get; set; }

public IReference Associate { get; set; }

public bool IsPlatformClient { get; set; }
}
}
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -291,3 +291,4 @@ c27603f949e869148570ebb8bd3ec6db34a985b7
82bca33a98d14907ea79e2cca281625dd82cdf0d
c8c2455221baca20421082b7715eaa0a712af7f1
41774e015e4f946bd57f0e2dc76522ed757860c4
1406d1e9ac4945b1179cfce2a956a39f67b757a9
Loading