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 Oct 1, 2024
1 parent 81bc0ff commit 713cd0a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
<details>
<summary>Added Enum(s)</summary>

- added enum `customer-group` to type `ExtensionResourceTypeId`
- added enum `product-tailoring` to type `MessageSubscriptionResourceTypeId`
- added enum `product-tailoring` to type `ResourceTypeId`
</details>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ public enum ExtensionResourceTypeId
[Description("customer")]
Customer,

[Description("customer-group")]
CustomerGroup,

[Description("quote-request")]
QuoteRequest,

Expand Down Expand Up @@ -73,6 +76,9 @@ public interface IExtensionResourceTypeId : IJsonName, IEnumerable<char>
public static IExtensionResourceTypeId Customer = new ExtensionResourceTypeIdWrapper
{ Value = ExtensionResourceTypeId.Customer, JsonName = "customer" };

public static IExtensionResourceTypeId CustomerGroup = new ExtensionResourceTypeIdWrapper
{ Value = ExtensionResourceTypeId.CustomerGroup, JsonName = "customer-group" };

public static IExtensionResourceTypeId QuoteRequest = new ExtensionResourceTypeIdWrapper
{ Value = ExtensionResourceTypeId.QuoteRequest, JsonName = "quote-request" };

Expand All @@ -98,6 +104,7 @@ static IExtensionResourceTypeId[] Values()
Order ,
Payment ,
Customer ,
CustomerGroup ,
QuoteRequest ,
StagedQuote ,
Quote ,
Expand Down
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -283,3 +283,4 @@ d947f454821e0834a2c8a8605d4a0f3347c11d4e
58b253e878bca9833c1735913f764f4f479c1c9a
efc70952597a3160e6bb47891894b109bd82b7c3
4ee8b39787eb0f0b2d025520acdaa022122bd617
c77ec902f368c2c31505fcb65a835ce148350077

0 comments on commit 713cd0a

Please sign in to comment.