@shopify/shop-minis-cli 0.0.86 → 0.0.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1079,7 +1079,7 @@ export type Mutation = {
|
|
|
1079
1079
|
export type MutationEntryPointDeleteByOwnerArgs = {
|
|
1080
1080
|
location: EntryPointLocation;
|
|
1081
1081
|
ownerId: Scalars['ID'];
|
|
1082
|
-
shopDomain
|
|
1082
|
+
shopDomain?: InputMaybe<Scalars['String']>;
|
|
1083
1083
|
type: EntryPointType;
|
|
1084
1084
|
};
|
|
1085
1085
|
export type MutationEntryPointDeleteByRuleArgs = {
|
|
@@ -130,7 +130,8 @@
|
|
|
130
130
|
"STORE_PAGE",
|
|
131
131
|
"PRODUCT_PAGE_CONTEXT_MENU",
|
|
132
132
|
"STORE_PAGE_CONTEXT_MENU",
|
|
133
|
-
"ORDER_CONFIRMATION_PAGE"
|
|
133
|
+
"ORDER_CONFIRMATION_PAGE",
|
|
134
|
+
"ORDER_MANAGEMENT_PAGE"
|
|
134
135
|
]
|
|
135
136
|
},
|
|
136
137
|
"type": {
|
|
@@ -141,7 +142,9 @@
|
|
|
141
142
|
"IMAGE_COLLECTION",
|
|
142
143
|
"VIDEO_COLLECTION",
|
|
143
144
|
"EVENT_CARD_V2",
|
|
144
|
-
"PRODUCT_OFFER_CARD"
|
|
145
|
+
"PRODUCT_OFFER_CARD",
|
|
146
|
+
"IMAGE_COLLECTION_V2",
|
|
147
|
+
"VIDEO_COLLECTION_V2"
|
|
145
148
|
]
|
|
146
149
|
}
|
|
147
150
|
},
|
|
@@ -158,10 +161,18 @@
|
|
|
158
161
|
"if": { "properties": { "type": { "const": "IMAGE_COLLECTION" } } },
|
|
159
162
|
"then": { "required": ["location"] }
|
|
160
163
|
},
|
|
164
|
+
{
|
|
165
|
+
"if": { "properties": { "type": { "const": "IMAGE_COLLECTION_V2" } } },
|
|
166
|
+
"then": { "required": ["location"] }
|
|
167
|
+
},
|
|
161
168
|
{
|
|
162
169
|
"if": { "properties": { "type": { "const": "VIDEO_COLLECTION" } } },
|
|
163
170
|
"then": { "required": ["location"] }
|
|
164
171
|
},
|
|
172
|
+
{
|
|
173
|
+
"if": { "properties": { "type": { "const": "VIDEO_COLLECTION_V2" } } },
|
|
174
|
+
"then": { "required": ["location"] }
|
|
175
|
+
},
|
|
165
176
|
{
|
|
166
177
|
"if": { "properties": { "type": { "const": "EVENT_CARD_V2" } } },
|
|
167
178
|
"then": { "required": ["location"] }
|