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 #357

Merged
merged 2 commits into from
Oct 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 @@ -26,9 +26,17 @@
</details>


<details>
<summary>Removed Type(s)</summary>

- :warning: removed type `ProductSearchStatus`
</details>


<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

This file was deleted.

2 changes: 2 additions & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -282,3 +282,5 @@ ce56ab7c65a688f75d5cd4095378d6647c6bd9ae
d947f454821e0834a2c8a8605d4a0f3347c11d4e
58b253e878bca9833c1735913f764f4f479c1c9a
efc70952597a3160e6bb47891894b109bd82b7c3
4ee8b39787eb0f0b2d025520acdaa022122bd617
c77ec902f368c2c31505fcb65a835ce148350077
Loading