Skip to content

Commit

Permalink
build(codegen): updating SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
ct-sdks[bot] committed Nov 1, 2024
1 parent 194930b commit a3a554e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
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

0 comments on commit a3a554e

Please sign in to comment.