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

Merged
merged 1 commit into from
Jul 29, 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
1 change: 1 addition & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<details>
<summary>Added Enum(s)</summary>

- added enum `shopping-list` to type `ExtensionResourceTypeId`
- added enum `attribute-group` to type `ChangeSubscriptionResourceTypeId`
- added enum `product-tailoring` to type `ChangeSubscriptionResourceTypeId`
- added enum `cart-discount` to type `CustomFieldReferenceValue`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ public interface ExtensionResourceTypeId extends JsonEnum {
/**
<p>Extension triggered for operations on BusinessUnits.</p> */
ExtensionResourceTypeId BUSINESS_UNIT = ExtensionResourceTypeIdEnum.BUSINESS_UNIT;
/**
<p>Extension triggered for operations on ShoppingLists.</p> */
ExtensionResourceTypeId SHOPPING_LIST = ExtensionResourceTypeIdEnum.SHOPPING_LIST;

/**
* possible values of ExtensionResourceTypeId
Expand Down Expand Up @@ -83,7 +86,12 @@ enum ExtensionResourceTypeIdEnum implements ExtensionResourceTypeId {
/**
* business-unit
*/
BUSINESS_UNIT("business-unit");
BUSINESS_UNIT("business-unit"),

/**
* shopping-list
*/
SHOPPING_LIST("shopping-list");
private final String jsonName;

private ExtensionResourceTypeIdEnum(final String jsonName) {
Expand Down
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -281,3 +281,4 @@ e07a21551ecb61f1f9d1578beb18de819f093feb
0a840c3b82ed1a8dc9270a4ef896498b43230ac8
c2d41f9490412d38247db519a7ae49592d0761f9
5b7b1be9eef0a629a9fab9a6dee59bfb1e7d4a6e
6bb0747560549aaf4057881fb6173e5271af4e65
Loading