@thryveai/theme-interfaces 2.7.155-1.zod → 2.7.155-3.zod
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.
- package/dist/core/storefront-zod/retailer-settings/checkout.d.ts +1 -1
- package/dist/core/storefront-zod/retailer-settings/features.d.ts +40 -82
- package/dist/core/storefront-zod/retailer-settings/index.d.ts +90 -202
- package/dist/core/storefront-zod/retailer-settings/productCard.d.ts +2 -2
- package/dist/core/storefront-zod/retailer-settings/sharedSchemas.d.ts +47 -75
- package/dist/core/storefront-zod/retailer-settings/sharedSchemas.js +22 -24
- package/dist/core/storefront-zod/retailer-settings/siteSettings.d.ts +2 -2
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ export declare const iCheckoutSettingsV2Schema: z.ZodObject<{
|
|
|
3
3
|
numericPhonePayload: z.ZodBoolean;
|
|
4
4
|
houseAccountRegExValidation: z.ZodString;
|
|
5
5
|
minimumCreditCardAmount: z.ZodNumber;
|
|
6
|
-
paymentCards: z.ZodRecord<z.
|
|
6
|
+
paymentCards: z.ZodRecord<z.ZodEnum<["AmExpCard", "ApplePay", "DiscoverCard", "EBT", "PayPal", "GooglePay", "MasterCard", "MasterCardDebit", "VisaCard", "Paze"]>, z.ZodBoolean>;
|
|
7
7
|
checkoutValidation: z.ZodObject<{
|
|
8
8
|
instructions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
9
9
|
_type: z.ZodLiteral<"overYears">;
|
|
@@ -102,22 +102,18 @@ export declare const iFeaturesV2Schema: z.ZodObject<{
|
|
|
102
102
|
allowPastPurchases: z.ZodBoolean;
|
|
103
103
|
advertSettings: z.ZodObject<{
|
|
104
104
|
page_homepage: z.ZodOptional<z.ZodObject<{
|
|
105
|
-
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
105
|
+
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
106
106
|
}, "strip", z.ZodTypeAny, {
|
|
107
107
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
108
108
|
}, {
|
|
109
109
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
110
110
|
}>>;
|
|
111
|
-
page_search: z.ZodOptional<z.
|
|
112
|
-
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
113
|
-
}, "strip", z.ZodTypeAny, {
|
|
114
|
-
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
111
|
+
page_search: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
112
|
+
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
115
113
|
}, {
|
|
116
|
-
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
117
|
-
}>, z.ZodObject<{
|
|
118
114
|
productGrid: z.ZodOptional<z.ZodObject<{
|
|
119
|
-
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
120
|
-
productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
115
|
+
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
116
|
+
productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
121
117
|
}, "strip", z.ZodTypeAny, {
|
|
122
118
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
123
119
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
@@ -125,46 +121,40 @@ export declare const iFeaturesV2Schema: z.ZodObject<{
|
|
|
125
121
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
126
122
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
127
123
|
}>>;
|
|
128
|
-
}
|
|
124
|
+
}>, {
|
|
125
|
+
skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
|
|
126
|
+
}>, "strip", z.ZodTypeAny, {
|
|
127
|
+
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
129
128
|
productGrid?: {
|
|
130
129
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
131
130
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
132
131
|
};
|
|
132
|
+
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
133
133
|
}, {
|
|
134
|
+
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
134
135
|
productGrid?: {
|
|
135
136
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
136
137
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
137
138
|
};
|
|
138
|
-
}>>, z.ZodObject<{
|
|
139
|
-
skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
|
|
140
|
-
}, "strip", z.ZodTypeAny, {
|
|
141
|
-
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
142
|
-
}, {
|
|
143
139
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
144
|
-
}
|
|
145
|
-
page_cart: z.ZodOptional<z.
|
|
146
|
-
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
147
|
-
}, "strip", z.ZodTypeAny, {
|
|
148
|
-
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
140
|
+
}>>;
|
|
141
|
+
page_cart: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
142
|
+
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
149
143
|
}, {
|
|
144
|
+
skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
|
|
145
|
+
}>, "strip", z.ZodTypeAny, {
|
|
150
146
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
151
|
-
}>, z.ZodObject<{
|
|
152
|
-
skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
|
|
153
|
-
}, "strip", z.ZodTypeAny, {
|
|
154
147
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
155
148
|
}, {
|
|
156
|
-
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
157
|
-
}>>>;
|
|
158
|
-
"page_product-categories": z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
159
|
-
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
|
|
160
|
-
}, "strip", z.ZodTypeAny, {
|
|
161
149
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
150
|
+
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
151
|
+
}>>;
|
|
152
|
+
"page_product-categories": z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
153
|
+
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
162
154
|
}, {
|
|
163
|
-
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
164
|
-
}>, z.ZodObject<{
|
|
165
155
|
productGrid: z.ZodOptional<z.ZodObject<{
|
|
166
|
-
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
167
|
-
productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
156
|
+
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
157
|
+
productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
168
158
|
}, "strip", z.ZodTypeAny, {
|
|
169
159
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
170
160
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
@@ -172,33 +162,29 @@ export declare const iFeaturesV2Schema: z.ZodObject<{
|
|
|
172
162
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
173
163
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
174
164
|
}>>;
|
|
175
|
-
}
|
|
165
|
+
}>, {
|
|
166
|
+
skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
|
|
167
|
+
}>, "strip", z.ZodTypeAny, {
|
|
168
|
+
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
176
169
|
productGrid?: {
|
|
177
170
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
178
171
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
179
172
|
};
|
|
173
|
+
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
180
174
|
}, {
|
|
175
|
+
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
181
176
|
productGrid?: {
|
|
182
177
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
183
178
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
184
179
|
};
|
|
185
|
-
}>>, z.ZodObject<{
|
|
186
|
-
skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
|
|
187
|
-
}, "strip", z.ZodTypeAny, {
|
|
188
180
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
181
|
+
}>>;
|
|
182
|
+
"page_product-listing": z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
183
|
+
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
189
184
|
}, {
|
|
190
|
-
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
191
|
-
}>>>;
|
|
192
|
-
"page_product-listing": z.ZodOptional<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
193
|
-
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>>;
|
|
194
|
-
}, "strip", z.ZodTypeAny, {
|
|
195
|
-
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
196
|
-
}, {
|
|
197
|
-
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
198
|
-
}>, z.ZodObject<{
|
|
199
185
|
productGrid: z.ZodOptional<z.ZodObject<{
|
|
200
|
-
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
201
|
-
productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
186
|
+
leaderboards: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
187
|
+
productCardBanners: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>>;
|
|
202
188
|
}, "strip", z.ZodTypeAny, {
|
|
203
189
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
204
190
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
@@ -206,60 +192,53 @@ export declare const iFeaturesV2Schema: z.ZodObject<{
|
|
|
206
192
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
207
193
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
208
194
|
}>>;
|
|
209
|
-
}
|
|
195
|
+
}>, {
|
|
196
|
+
skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["mobile", "tablet", "desktop"]>, z.ZodString>>;
|
|
197
|
+
}>, "strip", z.ZodTypeAny, {
|
|
198
|
+
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
210
199
|
productGrid?: {
|
|
211
200
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
212
201
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
213
202
|
};
|
|
203
|
+
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
214
204
|
}, {
|
|
205
|
+
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
215
206
|
productGrid?: {
|
|
216
207
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
217
208
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
218
209
|
};
|
|
219
|
-
}>>, z.ZodObject<{
|
|
220
|
-
skyscrapers: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"mobile">, z.ZodLiteral<"tablet">, z.ZodLiteral<"desktop">]>, z.ZodString>>;
|
|
221
|
-
}, "strip", z.ZodTypeAny, {
|
|
222
210
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
223
|
-
}
|
|
224
|
-
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
225
|
-
}>>>;
|
|
211
|
+
}>>;
|
|
226
212
|
}, "strip", z.ZodTypeAny, {
|
|
227
213
|
page_homepage?: {
|
|
228
214
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
229
215
|
};
|
|
230
216
|
page_search?: {
|
|
231
217
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
232
|
-
} & {
|
|
233
218
|
productGrid?: {
|
|
234
219
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
235
220
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
236
221
|
};
|
|
237
|
-
} & {
|
|
238
222
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
239
223
|
};
|
|
240
224
|
page_cart?: {
|
|
241
225
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
242
|
-
} & {
|
|
243
226
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
244
227
|
};
|
|
245
228
|
"page_product-categories"?: {
|
|
246
229
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
247
|
-
} & {
|
|
248
230
|
productGrid?: {
|
|
249
231
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
250
232
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
251
233
|
};
|
|
252
|
-
} & {
|
|
253
234
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
254
235
|
};
|
|
255
236
|
"page_product-listing"?: {
|
|
256
237
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
257
|
-
} & {
|
|
258
238
|
productGrid?: {
|
|
259
239
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
260
240
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
261
241
|
};
|
|
262
|
-
} & {
|
|
263
242
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
264
243
|
};
|
|
265
244
|
}, {
|
|
@@ -268,37 +247,30 @@ export declare const iFeaturesV2Schema: z.ZodObject<{
|
|
|
268
247
|
};
|
|
269
248
|
page_search?: {
|
|
270
249
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
271
|
-
} & {
|
|
272
250
|
productGrid?: {
|
|
273
251
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
274
252
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
275
253
|
};
|
|
276
|
-
} & {
|
|
277
254
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
278
255
|
};
|
|
279
256
|
page_cart?: {
|
|
280
257
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
281
|
-
} & {
|
|
282
258
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
283
259
|
};
|
|
284
260
|
"page_product-categories"?: {
|
|
285
261
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
286
|
-
} & {
|
|
287
262
|
productGrid?: {
|
|
288
263
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
289
264
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
290
265
|
};
|
|
291
|
-
} & {
|
|
292
266
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
293
267
|
};
|
|
294
268
|
"page_product-listing"?: {
|
|
295
269
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
296
|
-
} & {
|
|
297
270
|
productGrid?: {
|
|
298
271
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
299
272
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
300
273
|
};
|
|
301
|
-
} & {
|
|
302
274
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
303
275
|
};
|
|
304
276
|
}>;
|
|
@@ -596,37 +568,30 @@ export declare const iFeaturesV2Schema: z.ZodObject<{
|
|
|
596
568
|
};
|
|
597
569
|
page_search?: {
|
|
598
570
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
599
|
-
} & {
|
|
600
571
|
productGrid?: {
|
|
601
572
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
602
573
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
603
574
|
};
|
|
604
|
-
} & {
|
|
605
575
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
606
576
|
};
|
|
607
577
|
page_cart?: {
|
|
608
578
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
609
|
-
} & {
|
|
610
579
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
611
580
|
};
|
|
612
581
|
"page_product-categories"?: {
|
|
613
582
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
614
|
-
} & {
|
|
615
583
|
productGrid?: {
|
|
616
584
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
617
585
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
618
586
|
};
|
|
619
|
-
} & {
|
|
620
587
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
621
588
|
};
|
|
622
589
|
"page_product-listing"?: {
|
|
623
590
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
624
|
-
} & {
|
|
625
591
|
productGrid?: {
|
|
626
592
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
627
593
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
628
594
|
};
|
|
629
|
-
} & {
|
|
630
595
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
631
596
|
};
|
|
632
597
|
};
|
|
@@ -766,37 +731,30 @@ export declare const iFeaturesV2Schema: z.ZodObject<{
|
|
|
766
731
|
};
|
|
767
732
|
page_search?: {
|
|
768
733
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
769
|
-
} & {
|
|
770
734
|
productGrid?: {
|
|
771
735
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
772
736
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
773
737
|
};
|
|
774
|
-
} & {
|
|
775
738
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
776
739
|
};
|
|
777
740
|
page_cart?: {
|
|
778
741
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
779
|
-
} & {
|
|
780
742
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
781
743
|
};
|
|
782
744
|
"page_product-categories"?: {
|
|
783
745
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
784
|
-
} & {
|
|
785
746
|
productGrid?: {
|
|
786
747
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
787
748
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
788
749
|
};
|
|
789
|
-
} & {
|
|
790
750
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
791
751
|
};
|
|
792
752
|
"page_product-listing"?: {
|
|
793
753
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
794
|
-
} & {
|
|
795
754
|
productGrid?: {
|
|
796
755
|
leaderboards?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
797
756
|
productCardBanners?: Record<string, Partial<Record<"mobile" | "tablet" | "desktop", string>>>;
|
|
798
757
|
};
|
|
799
|
-
} & {
|
|
800
758
|
skyscrapers?: Partial<Record<"mobile" | "tablet" | "desktop", string>>;
|
|
801
759
|
};
|
|
802
760
|
};
|