@@ -3037,6 +3037,10 @@ type CartLock {
30373037 clientId : String !
30383038}
30393039
3040+ type CartLocked implements MessagePayload {
3041+ type : String !
3042+ }
3043+
30403044type CartPurchaseOrderNumberSet implements MessagePayload {
30413045 purchaseOrderNumber : String
30423046 oldPurchaseOrderNumber : String
@@ -3059,6 +3063,10 @@ type CartUnfrozen implements MessagePayload {
30593063 type : String !
30603064}
30613065
3066+ type CartUnlocked implements MessagePayload {
3067+ type : String !
3068+ }
3069+
30623070type CartValueType implements ShippingRateInputType {
30633071 type : String !
30643072}
@@ -8796,6 +8804,8 @@ type ShippingMethod implements Versioned & ReferenceExpandable {
87968804 taxCategoryRef : Reference
87978805 localizedDescriptionAllLocales : [LocalizedString ! ]
87988806 localizedNameAllLocales : [LocalizedString ! ]
8807+ storesRef : [KeyReference ! ]!
8808+ stores : [Store ! ]!
87998809 localizedDescription (
88008810 """
88018811 String is defined for different locales. This argument specifies the desired locale.
@@ -8832,6 +8842,7 @@ type ShippingMethodLimitWithCurrent implements LimitWithCurrent {
88328842}
88338843
88348844type ShippingMethodLimitsProjection {
8845+ stores : Limit !
88358846 total : ShippingMethodLimitWithCurrent !
88368847}
88378848
@@ -11631,6 +11642,10 @@ input AddShippingMethodShippingRate {
1163111642 shippingRate : ShippingRateDraft !
1163211643}
1163311644
11645+ input AddShippingMethodStore {
11646+ store : ResourceIdentifierInput !
11647+ }
11648+
1163411649input AddShippingMethodZone {
1163511650 zone : ResourceIdentifierInput !
1163611651}
@@ -15274,6 +15289,10 @@ input RemoveShippingMethodShippingRate {
1527415289 shippingRate : ShippingRateDraft !
1527515290}
1527615291
15292+ input RemoveShippingMethodStore {
15293+ store : ResourceIdentifierInput !
15294+ }
15295+
1527715296input RemoveShippingMethodZone {
1527815297 zone : ResourceIdentifierInput !
1527915298}
@@ -17393,6 +17412,10 @@ input SetShippingMethodPredicate {
1739317412 predicate : String
1739417413}
1739517414
17415+ input SetShippingMethodStores {
17416+ stores : [ResourceIdentifierInput ! ]!
17417+ }
17418+
1739617419input SetShoppingListAnonymousId {
1739717420 anonymousId : String
1739817421}
@@ -18005,6 +18028,7 @@ input ShippingMethodDraft {
1800518028 predicate : String
1800618029 key : String
1800718030 custom : CustomFieldsDraft
18031+ stores : [ResourceIdentifierInput ! ]
1800818032}
1800918033
1801018034input ShippingMethodTargetDraft {
@@ -18018,12 +18042,14 @@ input ShippingMethodTargetDraftType {
1801818042}
1801918043
1802018044input ShippingMethodUpdateAction {
18045+ addStore : AddShippingMethodStore
1802118046 addShippingRate : AddShippingMethodShippingRate
1802218047 addZone : AddShippingMethodZone
1802318048 changeActive : ChangeShippingMethodActive
1802418049 changeIsDefault : ChangeShippingMethodIsDefault
1802518050 changeName : ChangeShippingMethodName
1802618051 changeTaxCategory : ChangeShippingMethodTaxCategory
18052+ removeStore : RemoveShippingMethodStore
1802718053 removeShippingRate : RemoveShippingMethodShippingRate
1802818054 removeZone : RemoveShippingMethodZone
1802918055 setCustomField : SetShippingMethodCustomField
@@ -18034,6 +18060,7 @@ input ShippingMethodUpdateAction {
1803418060 setLocalizedDescription : SetShippingMethodLocalizedDescription
1803518061 setLocalizedName : SetShippingMethodLocalizedName
1803618062 setPredicate : SetShippingMethodPredicate
18063+ setStores : SetShippingMethodStores
1803718064}
1803818065
1803918066input ShippingRateDraft {
0 commit comments