Skip to content

Commit cc46772

Browse files
Updated GraphQL schema
1 parent 57b1218 commit cc46772

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

api-specs/graphql/schema.sdl

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

1273812742
input 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

1324413252
input 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+
1592215941
input SetExtensionKey {
1592315942
key: String
1592415943
}
@@ -17983,8 +18002,8 @@ input StateUpdateAction {
1798318002
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
1798418003
"""
1798518004
input StockLevelsDraft {
17986-
safetyStock: Long
17987-
reorderPoint: Long
18005+
safetyStock: Int
18006+
reorderPoint: Int
1798818007
}
1798918008

1799018009
input StoreCountryInput {

0 commit comments

Comments
 (0)