@@ -2070,7 +2070,7 @@ type CountOnCustomLineItemUnits implements PatternComponent {
20702070 predicate: String!
20712071 minCount: Int
20722072 maxCount: Int
2073- excludeCount: Int
2073+ excludeCount: Int @deprecated(reason: "Please use 'triggerPattern' to exclude.")
20742074 type: String!
20752075}
20762076
@@ -3015,6 +3015,10 @@ type Extension implements Versioned & ReferenceExpandable {
30153015 destination: ExtensionDestination!
30163016 triggers: [Trigger!]!
30173017 timeoutInMs: Int
3018+ """
3019+ BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
3020+ """
3021+ expansionPaths: [String!]!
30183022 id: String!
30193023 version: Long!
30203024 createdAt: DateTime!
@@ -12732,7 +12736,7 @@ input CountOnCustomLineItemUnitsInput {
1273212736 predicate: String!
1273312737 minCount: Int = 1
1273412738 maxCount: Int
12735- excludeCount: Int
12739+ excludeCount: Int @deprecated(reason: "Please use 'triggerPattern' to exclude.")
1273612740}
1273712741
1273812742input CountOnLineItemUnitsInput {
@@ -13239,11 +13243,19 @@ input ExtensionDraft {
1323913243 destination: ExtensionDestinationInput!
1324013244 triggers: [TriggerInput!]!
1324113245 timeoutInMs: Int
13246+ """
13247+ BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
13248+ """
13249+ expansionPaths: [String!]
1324213250}
1324313251
1324413252input ExtensionUpdateAction {
1324513253 changeDestination: ChangeExtensionDestination
1324613254 changeTriggers: ChangeExtensionTriggers
13255+ """
13256+ BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
13257+ """
13258+ setExpansionPaths: SetExtensionExpansionPaths
1324713259 setKey: SetExtensionKey
1324813260 setTimeoutInMs: SetExtensionTimeoutInMs
1324913261}
@@ -15919,6 +15931,13 @@ input SetDiscountGroupSortOrder {
1591915931 sortOrder: String!
1592015932}
1592115933
15934+ """
15935+ BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
15936+ """
15937+ input SetExtensionExpansionPaths {
15938+ expansionPaths: [String!]!
15939+ }
15940+
1592215941input SetExtensionKey {
1592315942 key: String
1592415943}
@@ -17983,8 +18002,8 @@ input StateUpdateAction {
1798318002BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
1798418003"""
1798518004input StockLevelsDraft {
17986- safetyStock: Long
17987- reorderPoint: Long
18005+ safetyStock: Int
18006+ reorderPoint: Int
1798818007}
1798918008
1799018009input StoreCountryInput {
0 commit comments