@spree/sdk 0.1.4 → 0.1.5

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.
@@ -0,0 +1,1690 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const AdminCustomerSchema: z.ZodObject<any>;
4
+ type AdminCustomer = z.infer<typeof AdminCustomerSchema>;
5
+
6
+ declare const AdminMetafieldSchema: z.ZodObject<{
7
+ id: z.ZodString;
8
+ name: z.ZodString;
9
+ type: z.ZodString;
10
+ key: z.ZodString;
11
+ value: z.ZodAny;
12
+ display_on: z.ZodString;
13
+ }, z.core.$strip>;
14
+ type AdminMetafield = z.infer<typeof AdminMetafieldSchema>;
15
+
16
+ declare const AdminOrderSchema: z.ZodObject<any>;
17
+ type AdminOrder = z.infer<typeof AdminOrderSchema>;
18
+
19
+ declare const AdminPriceSchema: z.ZodObject<{
20
+ id: z.ZodString;
21
+ amount: z.ZodNullable<z.ZodString>;
22
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
23
+ compare_at_amount: z.ZodNullable<z.ZodString>;
24
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
25
+ currency: z.ZodNullable<z.ZodString>;
26
+ display_amount: z.ZodNullable<z.ZodString>;
27
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
28
+ price_list_id: z.ZodNullable<z.ZodString>;
29
+ variant_id: z.ZodNullable<z.ZodString>;
30
+ created_at: z.ZodString;
31
+ updated_at: z.ZodString;
32
+ }, z.core.$strip>;
33
+ type AdminPrice = z.infer<typeof AdminPriceSchema>;
34
+
35
+ declare const AdminProductSchema: z.ZodObject<{
36
+ id: z.ZodString;
37
+ name: z.ZodString;
38
+ description: z.ZodNullable<z.ZodString>;
39
+ slug: z.ZodString;
40
+ meta_description: z.ZodNullable<z.ZodString>;
41
+ meta_keywords: z.ZodNullable<z.ZodString>;
42
+ variant_count: z.ZodNumber;
43
+ available_on: z.ZodNullable<z.ZodString>;
44
+ created_at: z.ZodString;
45
+ updated_at: z.ZodString;
46
+ purchasable: z.ZodBoolean;
47
+ in_stock: z.ZodBoolean;
48
+ backorderable: z.ZodBoolean;
49
+ available: z.ZodBoolean;
50
+ default_variant_id: z.ZodString;
51
+ thumbnail_url: z.ZodNullable<z.ZodString>;
52
+ tags: z.ZodArray<z.ZodString>;
53
+ price: z.ZodObject<{
54
+ id: z.ZodString;
55
+ amount: z.ZodNullable<z.ZodString>;
56
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
57
+ compare_at_amount: z.ZodNullable<z.ZodString>;
58
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
59
+ currency: z.ZodNullable<z.ZodString>;
60
+ display_amount: z.ZodNullable<z.ZodString>;
61
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
62
+ price_list_id: z.ZodNullable<z.ZodString>;
63
+ }, z.core.$strip>;
64
+ original_price: z.ZodNullable<z.ZodObject<{
65
+ id: z.ZodString;
66
+ amount: z.ZodNullable<z.ZodString>;
67
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
68
+ compare_at_amount: z.ZodNullable<z.ZodString>;
69
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
70
+ currency: z.ZodNullable<z.ZodString>;
71
+ display_amount: z.ZodNullable<z.ZodString>;
72
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
73
+ price_list_id: z.ZodNullable<z.ZodString>;
74
+ }, z.core.$strip>>;
75
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
76
+ id: z.ZodString;
77
+ viewable_id: z.ZodString;
78
+ position: z.ZodNumber;
79
+ alt: z.ZodNullable<z.ZodString>;
80
+ viewable_type: z.ZodString;
81
+ created_at: z.ZodString;
82
+ updated_at: z.ZodString;
83
+ original_url: z.ZodNullable<z.ZodString>;
84
+ mini_url: z.ZodNullable<z.ZodString>;
85
+ small_url: z.ZodNullable<z.ZodString>;
86
+ medium_url: z.ZodNullable<z.ZodString>;
87
+ large_url: z.ZodNullable<z.ZodString>;
88
+ xlarge_url: z.ZodNullable<z.ZodString>;
89
+ og_image_url: z.ZodNullable<z.ZodString>;
90
+ }, z.core.$strip>>>;
91
+ variants: z.ZodOptional<z.ZodArray<z.ZodObject<{
92
+ id: z.ZodString;
93
+ product_id: z.ZodString;
94
+ sku: z.ZodNullable<z.ZodString>;
95
+ is_master: z.ZodBoolean;
96
+ options_text: z.ZodString;
97
+ track_inventory: z.ZodBoolean;
98
+ image_count: z.ZodNumber;
99
+ created_at: z.ZodString;
100
+ updated_at: z.ZodString;
101
+ thumbnail: z.ZodNullable<z.ZodString>;
102
+ purchasable: z.ZodBoolean;
103
+ in_stock: z.ZodBoolean;
104
+ backorderable: z.ZodBoolean;
105
+ weight: z.ZodNullable<z.ZodNumber>;
106
+ height: z.ZodNullable<z.ZodNumber>;
107
+ width: z.ZodNullable<z.ZodNumber>;
108
+ depth: z.ZodNullable<z.ZodNumber>;
109
+ price: z.ZodObject<{
110
+ id: z.ZodString;
111
+ amount: z.ZodNullable<z.ZodString>;
112
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
113
+ compare_at_amount: z.ZodNullable<z.ZodString>;
114
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
115
+ currency: z.ZodNullable<z.ZodString>;
116
+ display_amount: z.ZodNullable<z.ZodString>;
117
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
118
+ price_list_id: z.ZodNullable<z.ZodString>;
119
+ }, z.core.$strip>;
120
+ original_price: z.ZodNullable<z.ZodObject<{
121
+ id: z.ZodString;
122
+ amount: z.ZodNullable<z.ZodString>;
123
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
124
+ compare_at_amount: z.ZodNullable<z.ZodString>;
125
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
126
+ currency: z.ZodNullable<z.ZodString>;
127
+ display_amount: z.ZodNullable<z.ZodString>;
128
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
129
+ price_list_id: z.ZodNullable<z.ZodString>;
130
+ }, z.core.$strip>>;
131
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
132
+ id: z.ZodString;
133
+ viewable_id: z.ZodString;
134
+ position: z.ZodNumber;
135
+ alt: z.ZodNullable<z.ZodString>;
136
+ viewable_type: z.ZodString;
137
+ created_at: z.ZodString;
138
+ updated_at: z.ZodString;
139
+ original_url: z.ZodNullable<z.ZodString>;
140
+ mini_url: z.ZodNullable<z.ZodString>;
141
+ small_url: z.ZodNullable<z.ZodString>;
142
+ medium_url: z.ZodNullable<z.ZodString>;
143
+ large_url: z.ZodNullable<z.ZodString>;
144
+ xlarge_url: z.ZodNullable<z.ZodString>;
145
+ og_image_url: z.ZodNullable<z.ZodString>;
146
+ }, z.core.$strip>>>;
147
+ option_values: z.ZodArray<z.ZodObject<{
148
+ id: z.ZodString;
149
+ option_type_id: z.ZodString;
150
+ name: z.ZodString;
151
+ presentation: z.ZodString;
152
+ position: z.ZodNumber;
153
+ option_type_name: z.ZodString;
154
+ option_type_presentation: z.ZodString;
155
+ }, z.core.$strip>>;
156
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
157
+ id: z.ZodString;
158
+ name: z.ZodString;
159
+ type: z.ZodString;
160
+ key: z.ZodString;
161
+ value: z.ZodAny;
162
+ display_on: z.ZodString;
163
+ }, z.core.$strip>>>;
164
+ position: z.ZodNumber;
165
+ tax_category_id: z.ZodNullable<z.ZodString>;
166
+ deleted_at: z.ZodNullable<z.ZodString>;
167
+ cost_price: z.ZodNullable<z.ZodNumber>;
168
+ cost_currency: z.ZodNullable<z.ZodString>;
169
+ total_on_hand: z.ZodNullable<z.ZodNumber>;
170
+ prices: z.ZodOptional<z.ZodArray<z.ZodObject<{
171
+ id: z.ZodString;
172
+ amount: z.ZodNullable<z.ZodString>;
173
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
174
+ compare_at_amount: z.ZodNullable<z.ZodString>;
175
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
176
+ currency: z.ZodNullable<z.ZodString>;
177
+ display_amount: z.ZodNullable<z.ZodString>;
178
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
179
+ price_list_id: z.ZodNullable<z.ZodString>;
180
+ variant_id: z.ZodNullable<z.ZodString>;
181
+ created_at: z.ZodString;
182
+ updated_at: z.ZodString;
183
+ }, z.core.$strip>>>;
184
+ }, z.core.$strip>>>;
185
+ default_variant: z.ZodOptional<z.ZodObject<{
186
+ id: z.ZodString;
187
+ product_id: z.ZodString;
188
+ sku: z.ZodNullable<z.ZodString>;
189
+ is_master: z.ZodBoolean;
190
+ options_text: z.ZodString;
191
+ track_inventory: z.ZodBoolean;
192
+ image_count: z.ZodNumber;
193
+ created_at: z.ZodString;
194
+ updated_at: z.ZodString;
195
+ thumbnail: z.ZodNullable<z.ZodString>;
196
+ purchasable: z.ZodBoolean;
197
+ in_stock: z.ZodBoolean;
198
+ backorderable: z.ZodBoolean;
199
+ weight: z.ZodNullable<z.ZodNumber>;
200
+ height: z.ZodNullable<z.ZodNumber>;
201
+ width: z.ZodNullable<z.ZodNumber>;
202
+ depth: z.ZodNullable<z.ZodNumber>;
203
+ price: z.ZodObject<{
204
+ id: z.ZodString;
205
+ amount: z.ZodNullable<z.ZodString>;
206
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
207
+ compare_at_amount: z.ZodNullable<z.ZodString>;
208
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
209
+ currency: z.ZodNullable<z.ZodString>;
210
+ display_amount: z.ZodNullable<z.ZodString>;
211
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
212
+ price_list_id: z.ZodNullable<z.ZodString>;
213
+ }, z.core.$strip>;
214
+ original_price: z.ZodNullable<z.ZodObject<{
215
+ id: z.ZodString;
216
+ amount: z.ZodNullable<z.ZodString>;
217
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
218
+ compare_at_amount: z.ZodNullable<z.ZodString>;
219
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
220
+ currency: z.ZodNullable<z.ZodString>;
221
+ display_amount: z.ZodNullable<z.ZodString>;
222
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
223
+ price_list_id: z.ZodNullable<z.ZodString>;
224
+ }, z.core.$strip>>;
225
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
226
+ id: z.ZodString;
227
+ viewable_id: z.ZodString;
228
+ position: z.ZodNumber;
229
+ alt: z.ZodNullable<z.ZodString>;
230
+ viewable_type: z.ZodString;
231
+ created_at: z.ZodString;
232
+ updated_at: z.ZodString;
233
+ original_url: z.ZodNullable<z.ZodString>;
234
+ mini_url: z.ZodNullable<z.ZodString>;
235
+ small_url: z.ZodNullable<z.ZodString>;
236
+ medium_url: z.ZodNullable<z.ZodString>;
237
+ large_url: z.ZodNullable<z.ZodString>;
238
+ xlarge_url: z.ZodNullable<z.ZodString>;
239
+ og_image_url: z.ZodNullable<z.ZodString>;
240
+ }, z.core.$strip>>>;
241
+ option_values: z.ZodArray<z.ZodObject<{
242
+ id: z.ZodString;
243
+ option_type_id: z.ZodString;
244
+ name: z.ZodString;
245
+ presentation: z.ZodString;
246
+ position: z.ZodNumber;
247
+ option_type_name: z.ZodString;
248
+ option_type_presentation: z.ZodString;
249
+ }, z.core.$strip>>;
250
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
251
+ id: z.ZodString;
252
+ name: z.ZodString;
253
+ type: z.ZodString;
254
+ key: z.ZodString;
255
+ value: z.ZodAny;
256
+ display_on: z.ZodString;
257
+ }, z.core.$strip>>>;
258
+ position: z.ZodNumber;
259
+ tax_category_id: z.ZodNullable<z.ZodString>;
260
+ deleted_at: z.ZodNullable<z.ZodString>;
261
+ cost_price: z.ZodNullable<z.ZodNumber>;
262
+ cost_currency: z.ZodNullable<z.ZodString>;
263
+ total_on_hand: z.ZodNullable<z.ZodNumber>;
264
+ prices: z.ZodOptional<z.ZodArray<z.ZodObject<{
265
+ id: z.ZodString;
266
+ amount: z.ZodNullable<z.ZodString>;
267
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
268
+ compare_at_amount: z.ZodNullable<z.ZodString>;
269
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
270
+ currency: z.ZodNullable<z.ZodString>;
271
+ display_amount: z.ZodNullable<z.ZodString>;
272
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
273
+ price_list_id: z.ZodNullable<z.ZodString>;
274
+ variant_id: z.ZodNullable<z.ZodString>;
275
+ created_at: z.ZodString;
276
+ updated_at: z.ZodString;
277
+ }, z.core.$strip>>>;
278
+ }, z.core.$strip>>;
279
+ master_variant: z.ZodOptional<z.ZodObject<{
280
+ id: z.ZodString;
281
+ product_id: z.ZodString;
282
+ sku: z.ZodNullable<z.ZodString>;
283
+ is_master: z.ZodBoolean;
284
+ options_text: z.ZodString;
285
+ track_inventory: z.ZodBoolean;
286
+ image_count: z.ZodNumber;
287
+ created_at: z.ZodString;
288
+ updated_at: z.ZodString;
289
+ thumbnail: z.ZodNullable<z.ZodString>;
290
+ purchasable: z.ZodBoolean;
291
+ in_stock: z.ZodBoolean;
292
+ backorderable: z.ZodBoolean;
293
+ weight: z.ZodNullable<z.ZodNumber>;
294
+ height: z.ZodNullable<z.ZodNumber>;
295
+ width: z.ZodNullable<z.ZodNumber>;
296
+ depth: z.ZodNullable<z.ZodNumber>;
297
+ price: z.ZodObject<{
298
+ id: z.ZodString;
299
+ amount: z.ZodNullable<z.ZodString>;
300
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
301
+ compare_at_amount: z.ZodNullable<z.ZodString>;
302
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
303
+ currency: z.ZodNullable<z.ZodString>;
304
+ display_amount: z.ZodNullable<z.ZodString>;
305
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
306
+ price_list_id: z.ZodNullable<z.ZodString>;
307
+ }, z.core.$strip>;
308
+ original_price: z.ZodNullable<z.ZodObject<{
309
+ id: z.ZodString;
310
+ amount: z.ZodNullable<z.ZodString>;
311
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
312
+ compare_at_amount: z.ZodNullable<z.ZodString>;
313
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
314
+ currency: z.ZodNullable<z.ZodString>;
315
+ display_amount: z.ZodNullable<z.ZodString>;
316
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
317
+ price_list_id: z.ZodNullable<z.ZodString>;
318
+ }, z.core.$strip>>;
319
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
320
+ id: z.ZodString;
321
+ viewable_id: z.ZodString;
322
+ position: z.ZodNumber;
323
+ alt: z.ZodNullable<z.ZodString>;
324
+ viewable_type: z.ZodString;
325
+ created_at: z.ZodString;
326
+ updated_at: z.ZodString;
327
+ original_url: z.ZodNullable<z.ZodString>;
328
+ mini_url: z.ZodNullable<z.ZodString>;
329
+ small_url: z.ZodNullable<z.ZodString>;
330
+ medium_url: z.ZodNullable<z.ZodString>;
331
+ large_url: z.ZodNullable<z.ZodString>;
332
+ xlarge_url: z.ZodNullable<z.ZodString>;
333
+ og_image_url: z.ZodNullable<z.ZodString>;
334
+ }, z.core.$strip>>>;
335
+ option_values: z.ZodArray<z.ZodObject<{
336
+ id: z.ZodString;
337
+ option_type_id: z.ZodString;
338
+ name: z.ZodString;
339
+ presentation: z.ZodString;
340
+ position: z.ZodNumber;
341
+ option_type_name: z.ZodString;
342
+ option_type_presentation: z.ZodString;
343
+ }, z.core.$strip>>;
344
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
345
+ id: z.ZodString;
346
+ name: z.ZodString;
347
+ type: z.ZodString;
348
+ key: z.ZodString;
349
+ value: z.ZodAny;
350
+ display_on: z.ZodString;
351
+ }, z.core.$strip>>>;
352
+ position: z.ZodNumber;
353
+ tax_category_id: z.ZodNullable<z.ZodString>;
354
+ deleted_at: z.ZodNullable<z.ZodString>;
355
+ cost_price: z.ZodNullable<z.ZodNumber>;
356
+ cost_currency: z.ZodNullable<z.ZodString>;
357
+ total_on_hand: z.ZodNullable<z.ZodNumber>;
358
+ prices: z.ZodOptional<z.ZodArray<z.ZodObject<{
359
+ id: z.ZodString;
360
+ amount: z.ZodNullable<z.ZodString>;
361
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
362
+ compare_at_amount: z.ZodNullable<z.ZodString>;
363
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
364
+ currency: z.ZodNullable<z.ZodString>;
365
+ display_amount: z.ZodNullable<z.ZodString>;
366
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
367
+ price_list_id: z.ZodNullable<z.ZodString>;
368
+ variant_id: z.ZodNullable<z.ZodString>;
369
+ created_at: z.ZodString;
370
+ updated_at: z.ZodString;
371
+ }, z.core.$strip>>>;
372
+ }, z.core.$strip>>;
373
+ option_types: z.ZodOptional<z.ZodArray<z.ZodObject<{
374
+ id: z.ZodString;
375
+ name: z.ZodString;
376
+ presentation: z.ZodString;
377
+ position: z.ZodNumber;
378
+ }, z.core.$strip>>>;
379
+ taxons: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>>;
380
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
381
+ id: z.ZodString;
382
+ name: z.ZodString;
383
+ type: z.ZodString;
384
+ key: z.ZodString;
385
+ value: z.ZodAny;
386
+ display_on: z.ZodString;
387
+ }, z.core.$strip>>>;
388
+ status: z.ZodString;
389
+ make_active_at: z.ZodNullable<z.ZodString>;
390
+ discontinue_on: z.ZodNullable<z.ZodString>;
391
+ deleted_at: z.ZodNullable<z.ZodString>;
392
+ cost_price: z.ZodNullable<z.ZodNumber>;
393
+ cost_currency: z.ZodNullable<z.ZodString>;
394
+ }, z.core.$strip>;
395
+ type AdminProduct = z.infer<typeof AdminProductSchema>;
396
+
397
+ declare const AdminTaxonSchema: z.ZodObject<{
398
+ id: z.ZodString;
399
+ name: z.ZodString;
400
+ permalink: z.ZodString;
401
+ position: z.ZodNumber;
402
+ depth: z.ZodNumber;
403
+ meta_title: z.ZodNullable<z.ZodString>;
404
+ meta_description: z.ZodNullable<z.ZodString>;
405
+ meta_keywords: z.ZodNullable<z.ZodString>;
406
+ children_count: z.ZodNumber;
407
+ created_at: z.ZodString;
408
+ updated_at: z.ZodString;
409
+ parent_id: z.ZodNullable<z.ZodString>;
410
+ taxonomy_id: z.ZodString;
411
+ description: z.ZodString;
412
+ description_html: z.ZodString;
413
+ image_url: z.ZodNullable<z.ZodString>;
414
+ square_image_url: z.ZodNullable<z.ZodString>;
415
+ is_root: z.ZodBoolean;
416
+ is_child: z.ZodBoolean;
417
+ is_leaf: z.ZodBoolean;
418
+ parent: z.ZodOptional<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>;
419
+ children: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>>;
420
+ ancestors: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>>;
421
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
422
+ id: z.ZodString;
423
+ name: z.ZodString;
424
+ type: z.ZodString;
425
+ key: z.ZodString;
426
+ value: z.ZodAny;
427
+ display_on: z.ZodString;
428
+ }, z.core.$strip>>>;
429
+ lft: z.ZodNumber;
430
+ rgt: z.ZodNumber;
431
+ }, z.core.$strip>;
432
+ type AdminTaxon = z.infer<typeof AdminTaxonSchema>;
433
+
434
+ declare const AdminTaxonomySchema: z.ZodObject<{
435
+ id: z.ZodString;
436
+ name: z.ZodString;
437
+ position: z.ZodNumber;
438
+ created_at: z.ZodString;
439
+ updated_at: z.ZodString;
440
+ root_id: z.ZodNullable<z.ZodString>;
441
+ root: z.ZodOptional<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>;
442
+ taxons: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>>;
443
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
444
+ id: z.ZodString;
445
+ name: z.ZodString;
446
+ type: z.ZodString;
447
+ key: z.ZodString;
448
+ value: z.ZodAny;
449
+ display_on: z.ZodString;
450
+ }, z.core.$strip>>>;
451
+ }, z.core.$strip>;
452
+ type AdminTaxonomy = z.infer<typeof AdminTaxonomySchema>;
453
+
454
+ declare const AdminVariantSchema: z.ZodObject<{
455
+ id: z.ZodString;
456
+ product_id: z.ZodString;
457
+ sku: z.ZodNullable<z.ZodString>;
458
+ is_master: z.ZodBoolean;
459
+ options_text: z.ZodString;
460
+ track_inventory: z.ZodBoolean;
461
+ image_count: z.ZodNumber;
462
+ created_at: z.ZodString;
463
+ updated_at: z.ZodString;
464
+ thumbnail: z.ZodNullable<z.ZodString>;
465
+ purchasable: z.ZodBoolean;
466
+ in_stock: z.ZodBoolean;
467
+ backorderable: z.ZodBoolean;
468
+ weight: z.ZodNullable<z.ZodNumber>;
469
+ height: z.ZodNullable<z.ZodNumber>;
470
+ width: z.ZodNullable<z.ZodNumber>;
471
+ depth: z.ZodNullable<z.ZodNumber>;
472
+ price: z.ZodObject<{
473
+ id: z.ZodString;
474
+ amount: z.ZodNullable<z.ZodString>;
475
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
476
+ compare_at_amount: z.ZodNullable<z.ZodString>;
477
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
478
+ currency: z.ZodNullable<z.ZodString>;
479
+ display_amount: z.ZodNullable<z.ZodString>;
480
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
481
+ price_list_id: z.ZodNullable<z.ZodString>;
482
+ }, z.core.$strip>;
483
+ original_price: z.ZodNullable<z.ZodObject<{
484
+ id: z.ZodString;
485
+ amount: z.ZodNullable<z.ZodString>;
486
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
487
+ compare_at_amount: z.ZodNullable<z.ZodString>;
488
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
489
+ currency: z.ZodNullable<z.ZodString>;
490
+ display_amount: z.ZodNullable<z.ZodString>;
491
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
492
+ price_list_id: z.ZodNullable<z.ZodString>;
493
+ }, z.core.$strip>>;
494
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
495
+ id: z.ZodString;
496
+ viewable_id: z.ZodString;
497
+ position: z.ZodNumber;
498
+ alt: z.ZodNullable<z.ZodString>;
499
+ viewable_type: z.ZodString;
500
+ created_at: z.ZodString;
501
+ updated_at: z.ZodString;
502
+ original_url: z.ZodNullable<z.ZodString>;
503
+ mini_url: z.ZodNullable<z.ZodString>;
504
+ small_url: z.ZodNullable<z.ZodString>;
505
+ medium_url: z.ZodNullable<z.ZodString>;
506
+ large_url: z.ZodNullable<z.ZodString>;
507
+ xlarge_url: z.ZodNullable<z.ZodString>;
508
+ og_image_url: z.ZodNullable<z.ZodString>;
509
+ }, z.core.$strip>>>;
510
+ option_values: z.ZodArray<z.ZodObject<{
511
+ id: z.ZodString;
512
+ option_type_id: z.ZodString;
513
+ name: z.ZodString;
514
+ presentation: z.ZodString;
515
+ position: z.ZodNumber;
516
+ option_type_name: z.ZodString;
517
+ option_type_presentation: z.ZodString;
518
+ }, z.core.$strip>>;
519
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
520
+ id: z.ZodString;
521
+ name: z.ZodString;
522
+ type: z.ZodString;
523
+ key: z.ZodString;
524
+ value: z.ZodAny;
525
+ display_on: z.ZodString;
526
+ }, z.core.$strip>>>;
527
+ position: z.ZodNumber;
528
+ tax_category_id: z.ZodNullable<z.ZodString>;
529
+ deleted_at: z.ZodNullable<z.ZodString>;
530
+ cost_price: z.ZodNullable<z.ZodNumber>;
531
+ cost_currency: z.ZodNullable<z.ZodString>;
532
+ total_on_hand: z.ZodNullable<z.ZodNumber>;
533
+ prices: z.ZodOptional<z.ZodArray<z.ZodObject<{
534
+ id: z.ZodString;
535
+ amount: z.ZodNullable<z.ZodString>;
536
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
537
+ compare_at_amount: z.ZodNullable<z.ZodString>;
538
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
539
+ currency: z.ZodNullable<z.ZodString>;
540
+ display_amount: z.ZodNullable<z.ZodString>;
541
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
542
+ price_list_id: z.ZodNullable<z.ZodString>;
543
+ variant_id: z.ZodNullable<z.ZodString>;
544
+ created_at: z.ZodString;
545
+ updated_at: z.ZodString;
546
+ }, z.core.$strip>>>;
547
+ }, z.core.$strip>;
548
+ type AdminVariant = z.infer<typeof AdminVariantSchema>;
549
+
550
+ declare const StoreAddressSchema: z.ZodObject<{
551
+ id: z.ZodString;
552
+ firstname: z.ZodNullable<z.ZodString>;
553
+ lastname: z.ZodNullable<z.ZodString>;
554
+ full_name: z.ZodString;
555
+ address1: z.ZodNullable<z.ZodString>;
556
+ address2: z.ZodNullable<z.ZodString>;
557
+ city: z.ZodNullable<z.ZodString>;
558
+ zipcode: z.ZodNullable<z.ZodString>;
559
+ phone: z.ZodNullable<z.ZodString>;
560
+ company: z.ZodNullable<z.ZodString>;
561
+ country_name: z.ZodString;
562
+ country_iso: z.ZodString;
563
+ state_text: z.ZodNullable<z.ZodString>;
564
+ state_abbr: z.ZodNullable<z.ZodString>;
565
+ state_name: z.ZodNullable<z.ZodString>;
566
+ }, z.core.$strip>;
567
+ type StoreAddress = z.infer<typeof StoreAddressSchema>;
568
+
569
+ declare const StoreBaseSchema: z.ZodObject<{
570
+ id: z.ZodString;
571
+ }, z.core.$strip>;
572
+ type StoreBase = z.infer<typeof StoreBaseSchema>;
573
+
574
+ declare const StoreCountrySchema: z.ZodObject<{
575
+ iso: z.ZodString;
576
+ iso3: z.ZodString;
577
+ name: z.ZodString;
578
+ states_required: z.ZodBoolean;
579
+ zipcode_required: z.ZodBoolean;
580
+ default_currency: z.ZodNullable<z.ZodString>;
581
+ default_locale: z.ZodNullable<z.ZodString>;
582
+ states: z.ZodOptional<z.ZodArray<z.ZodObject<{
583
+ abbr: z.ZodString;
584
+ name: z.ZodString;
585
+ }, z.core.$strip>>>;
586
+ }, z.core.$strip>;
587
+ type StoreCountry = z.infer<typeof StoreCountrySchema>;
588
+
589
+ declare const StoreCreditCardSchema: z.ZodObject<{
590
+ id: z.ZodString;
591
+ cc_type: z.ZodString;
592
+ last_digits: z.ZodString;
593
+ month: z.ZodNumber;
594
+ year: z.ZodNumber;
595
+ name: z.ZodNullable<z.ZodString>;
596
+ default: z.ZodBoolean;
597
+ }, z.core.$strip>;
598
+ type StoreCreditCard = z.infer<typeof StoreCreditCardSchema>;
599
+
600
+ declare const StoreCustomerSchema: z.ZodObject<{
601
+ id: z.ZodString;
602
+ email: z.ZodString;
603
+ first_name: z.ZodNullable<z.ZodString>;
604
+ last_name: z.ZodNullable<z.ZodString>;
605
+ created_at: z.ZodString;
606
+ updated_at: z.ZodString;
607
+ addresses: z.ZodArray<z.ZodObject<{
608
+ id: z.ZodString;
609
+ firstname: z.ZodNullable<z.ZodString>;
610
+ lastname: z.ZodNullable<z.ZodString>;
611
+ full_name: z.ZodString;
612
+ address1: z.ZodNullable<z.ZodString>;
613
+ address2: z.ZodNullable<z.ZodString>;
614
+ city: z.ZodNullable<z.ZodString>;
615
+ zipcode: z.ZodNullable<z.ZodString>;
616
+ phone: z.ZodNullable<z.ZodString>;
617
+ company: z.ZodNullable<z.ZodString>;
618
+ country_name: z.ZodString;
619
+ country_iso: z.ZodString;
620
+ state_text: z.ZodNullable<z.ZodString>;
621
+ state_abbr: z.ZodNullable<z.ZodString>;
622
+ state_name: z.ZodNullable<z.ZodString>;
623
+ }, z.core.$strip>>;
624
+ default_billing_address: z.ZodObject<{
625
+ id: z.ZodString;
626
+ firstname: z.ZodNullable<z.ZodString>;
627
+ lastname: z.ZodNullable<z.ZodString>;
628
+ full_name: z.ZodString;
629
+ address1: z.ZodNullable<z.ZodString>;
630
+ address2: z.ZodNullable<z.ZodString>;
631
+ city: z.ZodNullable<z.ZodString>;
632
+ zipcode: z.ZodNullable<z.ZodString>;
633
+ phone: z.ZodNullable<z.ZodString>;
634
+ company: z.ZodNullable<z.ZodString>;
635
+ country_name: z.ZodString;
636
+ country_iso: z.ZodString;
637
+ state_text: z.ZodNullable<z.ZodString>;
638
+ state_abbr: z.ZodNullable<z.ZodString>;
639
+ state_name: z.ZodNullable<z.ZodString>;
640
+ }, z.core.$strip>;
641
+ default_shipping_address: z.ZodObject<{
642
+ id: z.ZodString;
643
+ firstname: z.ZodNullable<z.ZodString>;
644
+ lastname: z.ZodNullable<z.ZodString>;
645
+ full_name: z.ZodString;
646
+ address1: z.ZodNullable<z.ZodString>;
647
+ address2: z.ZodNullable<z.ZodString>;
648
+ city: z.ZodNullable<z.ZodString>;
649
+ zipcode: z.ZodNullable<z.ZodString>;
650
+ phone: z.ZodNullable<z.ZodString>;
651
+ company: z.ZodNullable<z.ZodString>;
652
+ country_name: z.ZodString;
653
+ country_iso: z.ZodString;
654
+ state_text: z.ZodNullable<z.ZodString>;
655
+ state_abbr: z.ZodNullable<z.ZodString>;
656
+ state_name: z.ZodNullable<z.ZodString>;
657
+ }, z.core.$strip>;
658
+ }, z.core.$strip>;
659
+ type StoreCustomer = z.infer<typeof StoreCustomerSchema>;
660
+
661
+ declare const StoreDigitalLinkSchema: z.ZodObject<{
662
+ id: z.ZodString;
663
+ access_counter: z.ZodNumber;
664
+ filename: z.ZodString;
665
+ content_type: z.ZodString;
666
+ created_at: z.ZodString;
667
+ updated_at: z.ZodString;
668
+ authorizable: z.ZodBoolean;
669
+ expired: z.ZodBoolean;
670
+ access_limit_exceeded: z.ZodBoolean;
671
+ }, z.core.$strip>;
672
+ type StoreDigitalLink = z.infer<typeof StoreDigitalLinkSchema>;
673
+
674
+ declare const StoreGiftCardSchema: z.ZodObject<{
675
+ id: z.ZodString;
676
+ code: z.ZodString;
677
+ state: z.ZodString;
678
+ currency: z.ZodString;
679
+ amount: z.ZodNumber;
680
+ amount_used: z.ZodNumber;
681
+ amount_authorized: z.ZodNumber;
682
+ amount_remaining: z.ZodNumber;
683
+ display_amount: z.ZodString;
684
+ display_amount_used: z.ZodString;
685
+ display_amount_remaining: z.ZodString;
686
+ expires_at: z.ZodNullable<z.ZodString>;
687
+ redeemed_at: z.ZodNullable<z.ZodString>;
688
+ expired: z.ZodBoolean;
689
+ active: z.ZodBoolean;
690
+ created_at: z.ZodString;
691
+ updated_at: z.ZodString;
692
+ }, z.core.$strip>;
693
+ type StoreGiftCard = z.infer<typeof StoreGiftCardSchema>;
694
+
695
+ declare const StoreImageSchema: z.ZodObject<{
696
+ id: z.ZodString;
697
+ viewable_id: z.ZodString;
698
+ position: z.ZodNumber;
699
+ alt: z.ZodNullable<z.ZodString>;
700
+ viewable_type: z.ZodString;
701
+ created_at: z.ZodString;
702
+ updated_at: z.ZodString;
703
+ original_url: z.ZodNullable<z.ZodString>;
704
+ mini_url: z.ZodNullable<z.ZodString>;
705
+ small_url: z.ZodNullable<z.ZodString>;
706
+ medium_url: z.ZodNullable<z.ZodString>;
707
+ large_url: z.ZodNullable<z.ZodString>;
708
+ xlarge_url: z.ZodNullable<z.ZodString>;
709
+ og_image_url: z.ZodNullable<z.ZodString>;
710
+ }, z.core.$strip>;
711
+ type StoreImage = z.infer<typeof StoreImageSchema>;
712
+
713
+ declare const StoreLineItemSchema: z.ZodObject<{
714
+ id: z.ZodString;
715
+ variant_id: z.ZodString;
716
+ quantity: z.ZodNumber;
717
+ name: z.ZodString;
718
+ slug: z.ZodString;
719
+ options_text: z.ZodString;
720
+ price: z.ZodString;
721
+ display_price: z.ZodString;
722
+ total: z.ZodString;
723
+ display_total: z.ZodString;
724
+ adjustment_total: z.ZodString;
725
+ display_adjustment_total: z.ZodString;
726
+ additional_tax_total: z.ZodString;
727
+ display_additional_tax_total: z.ZodString;
728
+ included_tax_total: z.ZodString;
729
+ display_included_tax_total: z.ZodString;
730
+ promo_total: z.ZodString;
731
+ display_promo_total: z.ZodString;
732
+ pre_tax_amount: z.ZodString;
733
+ display_pre_tax_amount: z.ZodString;
734
+ discounted_amount: z.ZodString;
735
+ display_discounted_amount: z.ZodString;
736
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
737
+ created_at: z.ZodString;
738
+ updated_at: z.ZodString;
739
+ compare_at_amount: z.ZodNullable<z.ZodString>;
740
+ thumbnail_url: z.ZodNullable<z.ZodString>;
741
+ option_values: z.ZodArray<z.ZodObject<{
742
+ id: z.ZodString;
743
+ option_type_id: z.ZodString;
744
+ name: z.ZodString;
745
+ presentation: z.ZodString;
746
+ position: z.ZodNumber;
747
+ option_type_name: z.ZodString;
748
+ option_type_presentation: z.ZodString;
749
+ }, z.core.$strip>>;
750
+ }, z.core.$strip>;
751
+ type StoreLineItem = z.infer<typeof StoreLineItemSchema>;
752
+
753
+ declare const StoreMetafieldSchema: z.ZodObject<{
754
+ id: z.ZodString;
755
+ name: z.ZodString;
756
+ type: z.ZodString;
757
+ key: z.ZodString;
758
+ value: z.ZodAny;
759
+ }, z.core.$strip>;
760
+ type StoreMetafield = z.infer<typeof StoreMetafieldSchema>;
761
+
762
+ declare const StoreOptionTypeSchema: z.ZodObject<{
763
+ id: z.ZodString;
764
+ name: z.ZodString;
765
+ presentation: z.ZodString;
766
+ position: z.ZodNumber;
767
+ }, z.core.$strip>;
768
+ type StoreOptionType = z.infer<typeof StoreOptionTypeSchema>;
769
+
770
+ declare const StoreOptionValueSchema: z.ZodObject<{
771
+ id: z.ZodString;
772
+ option_type_id: z.ZodString;
773
+ name: z.ZodString;
774
+ presentation: z.ZodString;
775
+ position: z.ZodNumber;
776
+ option_type_name: z.ZodString;
777
+ option_type_presentation: z.ZodString;
778
+ }, z.core.$strip>;
779
+ type StoreOptionValue = z.infer<typeof StoreOptionValueSchema>;
780
+
781
+ declare const StoreOrderSchema: z.ZodObject<{
782
+ id: z.ZodString;
783
+ number: z.ZodString;
784
+ state: z.ZodString;
785
+ token: z.ZodString;
786
+ email: z.ZodNullable<z.ZodString>;
787
+ special_instructions: z.ZodNullable<z.ZodString>;
788
+ currency: z.ZodString;
789
+ item_count: z.ZodNumber;
790
+ shipment_state: z.ZodNullable<z.ZodString>;
791
+ payment_state: z.ZodNullable<z.ZodString>;
792
+ item_total: z.ZodString;
793
+ display_item_total: z.ZodString;
794
+ ship_total: z.ZodString;
795
+ display_ship_total: z.ZodString;
796
+ adjustment_total: z.ZodString;
797
+ display_adjustment_total: z.ZodString;
798
+ promo_total: z.ZodString;
799
+ display_promo_total: z.ZodString;
800
+ tax_total: z.ZodString;
801
+ display_tax_total: z.ZodString;
802
+ included_tax_total: z.ZodString;
803
+ display_included_tax_total: z.ZodString;
804
+ additional_tax_total: z.ZodString;
805
+ display_additional_tax_total: z.ZodString;
806
+ total: z.ZodString;
807
+ display_total: z.ZodString;
808
+ completed_at: z.ZodNullable<z.ZodString>;
809
+ created_at: z.ZodString;
810
+ updated_at: z.ZodString;
811
+ order_promotions: z.ZodOptional<z.ZodArray<z.ZodObject<{
812
+ id: z.ZodString;
813
+ promotion_id: z.ZodString;
814
+ name: z.ZodString;
815
+ description: z.ZodNullable<z.ZodString>;
816
+ code: z.ZodNullable<z.ZodString>;
817
+ amount: z.ZodString;
818
+ display_amount: z.ZodString;
819
+ }, z.core.$strip>>>;
820
+ line_items: z.ZodOptional<z.ZodArray<z.ZodObject<{
821
+ id: z.ZodString;
822
+ variant_id: z.ZodString;
823
+ quantity: z.ZodNumber;
824
+ name: z.ZodString;
825
+ slug: z.ZodString;
826
+ options_text: z.ZodString;
827
+ price: z.ZodString;
828
+ display_price: z.ZodString;
829
+ total: z.ZodString;
830
+ display_total: z.ZodString;
831
+ adjustment_total: z.ZodString;
832
+ display_adjustment_total: z.ZodString;
833
+ additional_tax_total: z.ZodString;
834
+ display_additional_tax_total: z.ZodString;
835
+ included_tax_total: z.ZodString;
836
+ display_included_tax_total: z.ZodString;
837
+ promo_total: z.ZodString;
838
+ display_promo_total: z.ZodString;
839
+ pre_tax_amount: z.ZodString;
840
+ display_pre_tax_amount: z.ZodString;
841
+ discounted_amount: z.ZodString;
842
+ display_discounted_amount: z.ZodString;
843
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
844
+ created_at: z.ZodString;
845
+ updated_at: z.ZodString;
846
+ compare_at_amount: z.ZodNullable<z.ZodString>;
847
+ thumbnail_url: z.ZodNullable<z.ZodString>;
848
+ option_values: z.ZodArray<z.ZodObject<{
849
+ id: z.ZodString;
850
+ option_type_id: z.ZodString;
851
+ name: z.ZodString;
852
+ presentation: z.ZodString;
853
+ position: z.ZodNumber;
854
+ option_type_name: z.ZodString;
855
+ option_type_presentation: z.ZodString;
856
+ }, z.core.$strip>>;
857
+ }, z.core.$strip>>>;
858
+ shipments: z.ZodOptional<z.ZodArray<z.ZodObject<{
859
+ id: z.ZodString;
860
+ number: z.ZodString;
861
+ state: z.ZodString;
862
+ tracking: z.ZodNullable<z.ZodString>;
863
+ tracking_url: z.ZodNullable<z.ZodString>;
864
+ cost: z.ZodString;
865
+ display_cost: z.ZodString;
866
+ shipped_at: z.ZodNullable<z.ZodString>;
867
+ created_at: z.ZodString;
868
+ updated_at: z.ZodString;
869
+ shipping_method: z.ZodObject<{
870
+ id: z.ZodString;
871
+ name: z.ZodString;
872
+ code: z.ZodNullable<z.ZodString>;
873
+ }, z.core.$strip>;
874
+ stock_location: z.ZodObject<{
875
+ id: z.ZodString;
876
+ state_abbr: z.ZodNullable<z.ZodString>;
877
+ name: z.ZodString;
878
+ address1: z.ZodNullable<z.ZodString>;
879
+ city: z.ZodNullable<z.ZodString>;
880
+ zipcode: z.ZodNullable<z.ZodString>;
881
+ country_iso: z.ZodNullable<z.ZodString>;
882
+ country_name: z.ZodNullable<z.ZodString>;
883
+ state_text: z.ZodNullable<z.ZodString>;
884
+ }, z.core.$strip>;
885
+ shipping_rates: z.ZodArray<z.ZodObject<{
886
+ id: z.ZodString;
887
+ shipping_method_id: z.ZodString;
888
+ name: z.ZodString;
889
+ selected: z.ZodBoolean;
890
+ cost: z.ZodNumber;
891
+ display_cost: z.ZodString;
892
+ shipping_method: z.ZodObject<{
893
+ id: z.ZodString;
894
+ name: z.ZodString;
895
+ code: z.ZodNullable<z.ZodString>;
896
+ }, z.core.$strip>;
897
+ }, z.core.$strip>>;
898
+ }, z.core.$strip>>>;
899
+ payments: z.ZodOptional<z.ZodArray<z.ZodObject<{
900
+ id: z.ZodString;
901
+ payment_method_id: z.ZodString;
902
+ state: z.ZodString;
903
+ response_code: z.ZodNullable<z.ZodString>;
904
+ number: z.ZodString;
905
+ amount: z.ZodString;
906
+ display_amount: z.ZodString;
907
+ created_at: z.ZodString;
908
+ updated_at: z.ZodString;
909
+ payment_method: z.ZodObject<{
910
+ id: z.ZodString;
911
+ name: z.ZodString;
912
+ description: z.ZodNullable<z.ZodString>;
913
+ type: z.ZodString;
914
+ }, z.core.$strip>;
915
+ }, z.core.$strip>>>;
916
+ bill_address: z.ZodOptional<z.ZodObject<{
917
+ id: z.ZodString;
918
+ firstname: z.ZodNullable<z.ZodString>;
919
+ lastname: z.ZodNullable<z.ZodString>;
920
+ full_name: z.ZodString;
921
+ address1: z.ZodNullable<z.ZodString>;
922
+ address2: z.ZodNullable<z.ZodString>;
923
+ city: z.ZodNullable<z.ZodString>;
924
+ zipcode: z.ZodNullable<z.ZodString>;
925
+ phone: z.ZodNullable<z.ZodString>;
926
+ company: z.ZodNullable<z.ZodString>;
927
+ country_name: z.ZodString;
928
+ country_iso: z.ZodString;
929
+ state_text: z.ZodNullable<z.ZodString>;
930
+ state_abbr: z.ZodNullable<z.ZodString>;
931
+ state_name: z.ZodNullable<z.ZodString>;
932
+ }, z.core.$strip>>;
933
+ ship_address: z.ZodOptional<z.ZodObject<{
934
+ id: z.ZodString;
935
+ firstname: z.ZodNullable<z.ZodString>;
936
+ lastname: z.ZodNullable<z.ZodString>;
937
+ full_name: z.ZodString;
938
+ address1: z.ZodNullable<z.ZodString>;
939
+ address2: z.ZodNullable<z.ZodString>;
940
+ city: z.ZodNullable<z.ZodString>;
941
+ zipcode: z.ZodNullable<z.ZodString>;
942
+ phone: z.ZodNullable<z.ZodString>;
943
+ company: z.ZodNullable<z.ZodString>;
944
+ country_name: z.ZodString;
945
+ country_iso: z.ZodString;
946
+ state_text: z.ZodNullable<z.ZodString>;
947
+ state_abbr: z.ZodNullable<z.ZodString>;
948
+ state_name: z.ZodNullable<z.ZodString>;
949
+ }, z.core.$strip>>;
950
+ payment_methods: z.ZodArray<z.ZodObject<{
951
+ id: z.ZodString;
952
+ name: z.ZodString;
953
+ description: z.ZodNullable<z.ZodString>;
954
+ type: z.ZodString;
955
+ }, z.core.$strip>>;
956
+ }, z.core.$strip>;
957
+ type StoreOrder = z.infer<typeof StoreOrderSchema>;
958
+
959
+ declare const StoreOrderPromotionSchema: z.ZodObject<{
960
+ id: z.ZodString;
961
+ promotion_id: z.ZodString;
962
+ name: z.ZodString;
963
+ description: z.ZodNullable<z.ZodString>;
964
+ code: z.ZodNullable<z.ZodString>;
965
+ amount: z.ZodString;
966
+ display_amount: z.ZodString;
967
+ }, z.core.$strip>;
968
+ type StoreOrderPromotion = z.infer<typeof StoreOrderPromotionSchema>;
969
+
970
+ declare const StorePaymentSchema: z.ZodObject<{
971
+ id: z.ZodString;
972
+ payment_method_id: z.ZodString;
973
+ state: z.ZodString;
974
+ response_code: z.ZodNullable<z.ZodString>;
975
+ number: z.ZodString;
976
+ amount: z.ZodString;
977
+ display_amount: z.ZodString;
978
+ created_at: z.ZodString;
979
+ updated_at: z.ZodString;
980
+ payment_method: z.ZodObject<{
981
+ id: z.ZodString;
982
+ name: z.ZodString;
983
+ description: z.ZodNullable<z.ZodString>;
984
+ type: z.ZodString;
985
+ }, z.core.$strip>;
986
+ }, z.core.$strip>;
987
+ type StorePayment = z.infer<typeof StorePaymentSchema>;
988
+
989
+ declare const StorePaymentMethodSchema: z.ZodObject<{
990
+ id: z.ZodString;
991
+ name: z.ZodString;
992
+ description: z.ZodNullable<z.ZodString>;
993
+ type: z.ZodString;
994
+ }, z.core.$strip>;
995
+ type StorePaymentMethod = z.infer<typeof StorePaymentMethodSchema>;
996
+
997
+ declare const StorePriceSchema: z.ZodObject<{
998
+ id: z.ZodString;
999
+ amount: z.ZodNullable<z.ZodString>;
1000
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1001
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1002
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1003
+ currency: z.ZodNullable<z.ZodString>;
1004
+ display_amount: z.ZodNullable<z.ZodString>;
1005
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1006
+ price_list_id: z.ZodNullable<z.ZodString>;
1007
+ }, z.core.$strip>;
1008
+ type StorePrice = z.infer<typeof StorePriceSchema>;
1009
+
1010
+ declare const StoreProductSchema: z.ZodObject<{
1011
+ id: z.ZodString;
1012
+ name: z.ZodString;
1013
+ description: z.ZodNullable<z.ZodString>;
1014
+ slug: z.ZodString;
1015
+ meta_description: z.ZodNullable<z.ZodString>;
1016
+ meta_keywords: z.ZodNullable<z.ZodString>;
1017
+ variant_count: z.ZodNumber;
1018
+ available_on: z.ZodNullable<z.ZodString>;
1019
+ created_at: z.ZodString;
1020
+ updated_at: z.ZodString;
1021
+ purchasable: z.ZodBoolean;
1022
+ in_stock: z.ZodBoolean;
1023
+ backorderable: z.ZodBoolean;
1024
+ available: z.ZodBoolean;
1025
+ default_variant_id: z.ZodString;
1026
+ thumbnail_url: z.ZodNullable<z.ZodString>;
1027
+ tags: z.ZodArray<z.ZodString>;
1028
+ price: z.ZodObject<{
1029
+ id: z.ZodString;
1030
+ amount: z.ZodNullable<z.ZodString>;
1031
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1032
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1033
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1034
+ currency: z.ZodNullable<z.ZodString>;
1035
+ display_amount: z.ZodNullable<z.ZodString>;
1036
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1037
+ price_list_id: z.ZodNullable<z.ZodString>;
1038
+ }, z.core.$strip>;
1039
+ original_price: z.ZodNullable<z.ZodObject<{
1040
+ id: z.ZodString;
1041
+ amount: z.ZodNullable<z.ZodString>;
1042
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1043
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1044
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1045
+ currency: z.ZodNullable<z.ZodString>;
1046
+ display_amount: z.ZodNullable<z.ZodString>;
1047
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1048
+ price_list_id: z.ZodNullable<z.ZodString>;
1049
+ }, z.core.$strip>>;
1050
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1051
+ id: z.ZodString;
1052
+ viewable_id: z.ZodString;
1053
+ position: z.ZodNumber;
1054
+ alt: z.ZodNullable<z.ZodString>;
1055
+ viewable_type: z.ZodString;
1056
+ created_at: z.ZodString;
1057
+ updated_at: z.ZodString;
1058
+ original_url: z.ZodNullable<z.ZodString>;
1059
+ mini_url: z.ZodNullable<z.ZodString>;
1060
+ small_url: z.ZodNullable<z.ZodString>;
1061
+ medium_url: z.ZodNullable<z.ZodString>;
1062
+ large_url: z.ZodNullable<z.ZodString>;
1063
+ xlarge_url: z.ZodNullable<z.ZodString>;
1064
+ og_image_url: z.ZodNullable<z.ZodString>;
1065
+ }, z.core.$strip>>>;
1066
+ variants: z.ZodOptional<z.ZodArray<z.ZodObject<{
1067
+ id: z.ZodString;
1068
+ product_id: z.ZodString;
1069
+ sku: z.ZodNullable<z.ZodString>;
1070
+ is_master: z.ZodBoolean;
1071
+ options_text: z.ZodString;
1072
+ track_inventory: z.ZodBoolean;
1073
+ image_count: z.ZodNumber;
1074
+ created_at: z.ZodString;
1075
+ updated_at: z.ZodString;
1076
+ thumbnail: z.ZodNullable<z.ZodString>;
1077
+ purchasable: z.ZodBoolean;
1078
+ in_stock: z.ZodBoolean;
1079
+ backorderable: z.ZodBoolean;
1080
+ weight: z.ZodNullable<z.ZodNumber>;
1081
+ height: z.ZodNullable<z.ZodNumber>;
1082
+ width: z.ZodNullable<z.ZodNumber>;
1083
+ depth: z.ZodNullable<z.ZodNumber>;
1084
+ price: z.ZodObject<{
1085
+ id: z.ZodString;
1086
+ amount: z.ZodNullable<z.ZodString>;
1087
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1088
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1089
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1090
+ currency: z.ZodNullable<z.ZodString>;
1091
+ display_amount: z.ZodNullable<z.ZodString>;
1092
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1093
+ price_list_id: z.ZodNullable<z.ZodString>;
1094
+ }, z.core.$strip>;
1095
+ original_price: z.ZodNullable<z.ZodObject<{
1096
+ id: z.ZodString;
1097
+ amount: z.ZodNullable<z.ZodString>;
1098
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1099
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1100
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1101
+ currency: z.ZodNullable<z.ZodString>;
1102
+ display_amount: z.ZodNullable<z.ZodString>;
1103
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1104
+ price_list_id: z.ZodNullable<z.ZodString>;
1105
+ }, z.core.$strip>>;
1106
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1107
+ id: z.ZodString;
1108
+ viewable_id: z.ZodString;
1109
+ position: z.ZodNumber;
1110
+ alt: z.ZodNullable<z.ZodString>;
1111
+ viewable_type: z.ZodString;
1112
+ created_at: z.ZodString;
1113
+ updated_at: z.ZodString;
1114
+ original_url: z.ZodNullable<z.ZodString>;
1115
+ mini_url: z.ZodNullable<z.ZodString>;
1116
+ small_url: z.ZodNullable<z.ZodString>;
1117
+ medium_url: z.ZodNullable<z.ZodString>;
1118
+ large_url: z.ZodNullable<z.ZodString>;
1119
+ xlarge_url: z.ZodNullable<z.ZodString>;
1120
+ og_image_url: z.ZodNullable<z.ZodString>;
1121
+ }, z.core.$strip>>>;
1122
+ option_values: z.ZodArray<z.ZodObject<{
1123
+ id: z.ZodString;
1124
+ option_type_id: z.ZodString;
1125
+ name: z.ZodString;
1126
+ presentation: z.ZodString;
1127
+ position: z.ZodNumber;
1128
+ option_type_name: z.ZodString;
1129
+ option_type_presentation: z.ZodString;
1130
+ }, z.core.$strip>>;
1131
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1132
+ id: z.ZodString;
1133
+ name: z.ZodString;
1134
+ type: z.ZodString;
1135
+ key: z.ZodString;
1136
+ value: z.ZodAny;
1137
+ }, z.core.$strip>>>;
1138
+ }, z.core.$strip>>>;
1139
+ default_variant: z.ZodOptional<z.ZodObject<{
1140
+ id: z.ZodString;
1141
+ product_id: z.ZodString;
1142
+ sku: z.ZodNullable<z.ZodString>;
1143
+ is_master: z.ZodBoolean;
1144
+ options_text: z.ZodString;
1145
+ track_inventory: z.ZodBoolean;
1146
+ image_count: z.ZodNumber;
1147
+ created_at: z.ZodString;
1148
+ updated_at: z.ZodString;
1149
+ thumbnail: z.ZodNullable<z.ZodString>;
1150
+ purchasable: z.ZodBoolean;
1151
+ in_stock: z.ZodBoolean;
1152
+ backorderable: z.ZodBoolean;
1153
+ weight: z.ZodNullable<z.ZodNumber>;
1154
+ height: z.ZodNullable<z.ZodNumber>;
1155
+ width: z.ZodNullable<z.ZodNumber>;
1156
+ depth: z.ZodNullable<z.ZodNumber>;
1157
+ price: z.ZodObject<{
1158
+ id: z.ZodString;
1159
+ amount: z.ZodNullable<z.ZodString>;
1160
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1161
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1162
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1163
+ currency: z.ZodNullable<z.ZodString>;
1164
+ display_amount: z.ZodNullable<z.ZodString>;
1165
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1166
+ price_list_id: z.ZodNullable<z.ZodString>;
1167
+ }, z.core.$strip>;
1168
+ original_price: z.ZodNullable<z.ZodObject<{
1169
+ id: z.ZodString;
1170
+ amount: z.ZodNullable<z.ZodString>;
1171
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1172
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1173
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1174
+ currency: z.ZodNullable<z.ZodString>;
1175
+ display_amount: z.ZodNullable<z.ZodString>;
1176
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1177
+ price_list_id: z.ZodNullable<z.ZodString>;
1178
+ }, z.core.$strip>>;
1179
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1180
+ id: z.ZodString;
1181
+ viewable_id: z.ZodString;
1182
+ position: z.ZodNumber;
1183
+ alt: z.ZodNullable<z.ZodString>;
1184
+ viewable_type: z.ZodString;
1185
+ created_at: z.ZodString;
1186
+ updated_at: z.ZodString;
1187
+ original_url: z.ZodNullable<z.ZodString>;
1188
+ mini_url: z.ZodNullable<z.ZodString>;
1189
+ small_url: z.ZodNullable<z.ZodString>;
1190
+ medium_url: z.ZodNullable<z.ZodString>;
1191
+ large_url: z.ZodNullable<z.ZodString>;
1192
+ xlarge_url: z.ZodNullable<z.ZodString>;
1193
+ og_image_url: z.ZodNullable<z.ZodString>;
1194
+ }, z.core.$strip>>>;
1195
+ option_values: z.ZodArray<z.ZodObject<{
1196
+ id: z.ZodString;
1197
+ option_type_id: z.ZodString;
1198
+ name: z.ZodString;
1199
+ presentation: z.ZodString;
1200
+ position: z.ZodNumber;
1201
+ option_type_name: z.ZodString;
1202
+ option_type_presentation: z.ZodString;
1203
+ }, z.core.$strip>>;
1204
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1205
+ id: z.ZodString;
1206
+ name: z.ZodString;
1207
+ type: z.ZodString;
1208
+ key: z.ZodString;
1209
+ value: z.ZodAny;
1210
+ }, z.core.$strip>>>;
1211
+ }, z.core.$strip>>;
1212
+ master_variant: z.ZodOptional<z.ZodObject<{
1213
+ id: z.ZodString;
1214
+ product_id: z.ZodString;
1215
+ sku: z.ZodNullable<z.ZodString>;
1216
+ is_master: z.ZodBoolean;
1217
+ options_text: z.ZodString;
1218
+ track_inventory: z.ZodBoolean;
1219
+ image_count: z.ZodNumber;
1220
+ created_at: z.ZodString;
1221
+ updated_at: z.ZodString;
1222
+ thumbnail: z.ZodNullable<z.ZodString>;
1223
+ purchasable: z.ZodBoolean;
1224
+ in_stock: z.ZodBoolean;
1225
+ backorderable: z.ZodBoolean;
1226
+ weight: z.ZodNullable<z.ZodNumber>;
1227
+ height: z.ZodNullable<z.ZodNumber>;
1228
+ width: z.ZodNullable<z.ZodNumber>;
1229
+ depth: z.ZodNullable<z.ZodNumber>;
1230
+ price: z.ZodObject<{
1231
+ id: z.ZodString;
1232
+ amount: z.ZodNullable<z.ZodString>;
1233
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1234
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1235
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1236
+ currency: z.ZodNullable<z.ZodString>;
1237
+ display_amount: z.ZodNullable<z.ZodString>;
1238
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1239
+ price_list_id: z.ZodNullable<z.ZodString>;
1240
+ }, z.core.$strip>;
1241
+ original_price: z.ZodNullable<z.ZodObject<{
1242
+ id: z.ZodString;
1243
+ amount: z.ZodNullable<z.ZodString>;
1244
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1245
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1246
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1247
+ currency: z.ZodNullable<z.ZodString>;
1248
+ display_amount: z.ZodNullable<z.ZodString>;
1249
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1250
+ price_list_id: z.ZodNullable<z.ZodString>;
1251
+ }, z.core.$strip>>;
1252
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1253
+ id: z.ZodString;
1254
+ viewable_id: z.ZodString;
1255
+ position: z.ZodNumber;
1256
+ alt: z.ZodNullable<z.ZodString>;
1257
+ viewable_type: z.ZodString;
1258
+ created_at: z.ZodString;
1259
+ updated_at: z.ZodString;
1260
+ original_url: z.ZodNullable<z.ZodString>;
1261
+ mini_url: z.ZodNullable<z.ZodString>;
1262
+ small_url: z.ZodNullable<z.ZodString>;
1263
+ medium_url: z.ZodNullable<z.ZodString>;
1264
+ large_url: z.ZodNullable<z.ZodString>;
1265
+ xlarge_url: z.ZodNullable<z.ZodString>;
1266
+ og_image_url: z.ZodNullable<z.ZodString>;
1267
+ }, z.core.$strip>>>;
1268
+ option_values: z.ZodArray<z.ZodObject<{
1269
+ id: z.ZodString;
1270
+ option_type_id: z.ZodString;
1271
+ name: z.ZodString;
1272
+ presentation: z.ZodString;
1273
+ position: z.ZodNumber;
1274
+ option_type_name: z.ZodString;
1275
+ option_type_presentation: z.ZodString;
1276
+ }, z.core.$strip>>;
1277
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1278
+ id: z.ZodString;
1279
+ name: z.ZodString;
1280
+ type: z.ZodString;
1281
+ key: z.ZodString;
1282
+ value: z.ZodAny;
1283
+ }, z.core.$strip>>>;
1284
+ }, z.core.$strip>>;
1285
+ option_types: z.ZodOptional<z.ZodArray<z.ZodObject<{
1286
+ id: z.ZodString;
1287
+ name: z.ZodString;
1288
+ presentation: z.ZodString;
1289
+ position: z.ZodNumber;
1290
+ }, z.core.$strip>>>;
1291
+ taxons: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>>;
1292
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1293
+ id: z.ZodString;
1294
+ name: z.ZodString;
1295
+ type: z.ZodString;
1296
+ key: z.ZodString;
1297
+ value: z.ZodAny;
1298
+ }, z.core.$strip>>>;
1299
+ }, z.core.$strip>;
1300
+ type StoreProduct = z.infer<typeof StoreProductSchema>;
1301
+
1302
+ declare const StoreShipmentSchema: z.ZodObject<{
1303
+ id: z.ZodString;
1304
+ number: z.ZodString;
1305
+ state: z.ZodString;
1306
+ tracking: z.ZodNullable<z.ZodString>;
1307
+ tracking_url: z.ZodNullable<z.ZodString>;
1308
+ cost: z.ZodString;
1309
+ display_cost: z.ZodString;
1310
+ shipped_at: z.ZodNullable<z.ZodString>;
1311
+ created_at: z.ZodString;
1312
+ updated_at: z.ZodString;
1313
+ shipping_method: z.ZodObject<{
1314
+ id: z.ZodString;
1315
+ name: z.ZodString;
1316
+ code: z.ZodNullable<z.ZodString>;
1317
+ }, z.core.$strip>;
1318
+ stock_location: z.ZodObject<{
1319
+ id: z.ZodString;
1320
+ state_abbr: z.ZodNullable<z.ZodString>;
1321
+ name: z.ZodString;
1322
+ address1: z.ZodNullable<z.ZodString>;
1323
+ city: z.ZodNullable<z.ZodString>;
1324
+ zipcode: z.ZodNullable<z.ZodString>;
1325
+ country_iso: z.ZodNullable<z.ZodString>;
1326
+ country_name: z.ZodNullable<z.ZodString>;
1327
+ state_text: z.ZodNullable<z.ZodString>;
1328
+ }, z.core.$strip>;
1329
+ shipping_rates: z.ZodArray<z.ZodObject<{
1330
+ id: z.ZodString;
1331
+ shipping_method_id: z.ZodString;
1332
+ name: z.ZodString;
1333
+ selected: z.ZodBoolean;
1334
+ cost: z.ZodNumber;
1335
+ display_cost: z.ZodString;
1336
+ shipping_method: z.ZodObject<{
1337
+ id: z.ZodString;
1338
+ name: z.ZodString;
1339
+ code: z.ZodNullable<z.ZodString>;
1340
+ }, z.core.$strip>;
1341
+ }, z.core.$strip>>;
1342
+ }, z.core.$strip>;
1343
+ type StoreShipment = z.infer<typeof StoreShipmentSchema>;
1344
+
1345
+ declare const StoreShippingMethodSchema: z.ZodObject<{
1346
+ id: z.ZodString;
1347
+ name: z.ZodString;
1348
+ code: z.ZodNullable<z.ZodString>;
1349
+ }, z.core.$strip>;
1350
+ type StoreShippingMethod = z.infer<typeof StoreShippingMethodSchema>;
1351
+
1352
+ declare const StoreShippingRateSchema: z.ZodObject<{
1353
+ id: z.ZodString;
1354
+ shipping_method_id: z.ZodString;
1355
+ name: z.ZodString;
1356
+ selected: z.ZodBoolean;
1357
+ cost: z.ZodNumber;
1358
+ display_cost: z.ZodString;
1359
+ shipping_method: z.ZodObject<{
1360
+ id: z.ZodString;
1361
+ name: z.ZodString;
1362
+ code: z.ZodNullable<z.ZodString>;
1363
+ }, z.core.$strip>;
1364
+ }, z.core.$strip>;
1365
+ type StoreShippingRate = z.infer<typeof StoreShippingRateSchema>;
1366
+
1367
+ declare const StoreStateSchema: z.ZodObject<{
1368
+ abbr: z.ZodString;
1369
+ name: z.ZodString;
1370
+ }, z.core.$strip>;
1371
+ type StoreState = z.infer<typeof StoreStateSchema>;
1372
+
1373
+ declare const StoreStockLocationSchema: z.ZodObject<{
1374
+ id: z.ZodString;
1375
+ state_abbr: z.ZodNullable<z.ZodString>;
1376
+ name: z.ZodString;
1377
+ address1: z.ZodNullable<z.ZodString>;
1378
+ city: z.ZodNullable<z.ZodString>;
1379
+ zipcode: z.ZodNullable<z.ZodString>;
1380
+ country_iso: z.ZodNullable<z.ZodString>;
1381
+ country_name: z.ZodNullable<z.ZodString>;
1382
+ state_text: z.ZodNullable<z.ZodString>;
1383
+ }, z.core.$strip>;
1384
+ type StoreStockLocation = z.infer<typeof StoreStockLocationSchema>;
1385
+
1386
+ declare const StoreStoreSchema: z.ZodObject<{
1387
+ id: z.ZodString;
1388
+ name: z.ZodString;
1389
+ url: z.ZodString;
1390
+ meta_description: z.ZodNullable<z.ZodString>;
1391
+ meta_keywords: z.ZodNullable<z.ZodString>;
1392
+ seo_title: z.ZodNullable<z.ZodString>;
1393
+ default_currency: z.ZodString;
1394
+ code: z.ZodString;
1395
+ default: z.ZodBoolean;
1396
+ facebook: z.ZodNullable<z.ZodString>;
1397
+ twitter: z.ZodNullable<z.ZodString>;
1398
+ instagram: z.ZodNullable<z.ZodString>;
1399
+ customer_support_email: z.ZodNullable<z.ZodString>;
1400
+ default_locale: z.ZodString;
1401
+ created_at: z.ZodString;
1402
+ updated_at: z.ZodString;
1403
+ default_country_iso: z.ZodNullable<z.ZodString>;
1404
+ supported_currencies: z.ZodArray<z.ZodString>;
1405
+ favicon_image_url: z.ZodNullable<z.ZodString>;
1406
+ logo_image_url: z.ZodNullable<z.ZodString>;
1407
+ social_image_url: z.ZodNullable<z.ZodString>;
1408
+ supported_locales: z.ZodArray<z.ZodString>;
1409
+ payment_methods: z.ZodArray<z.ZodObject<{
1410
+ id: z.ZodString;
1411
+ name: z.ZodString;
1412
+ description: z.ZodNullable<z.ZodString>;
1413
+ type: z.ZodString;
1414
+ }, z.core.$strip>>;
1415
+ }, z.core.$strip>;
1416
+ type StoreStore = z.infer<typeof StoreStoreSchema>;
1417
+
1418
+ declare const StoreTaxonSchema: z.ZodObject<any>;
1419
+ type StoreTaxon = z.infer<typeof StoreTaxonSchema>;
1420
+
1421
+ declare const StoreTaxonomySchema: z.ZodObject<{
1422
+ id: z.ZodString;
1423
+ name: z.ZodString;
1424
+ position: z.ZodNumber;
1425
+ created_at: z.ZodString;
1426
+ updated_at: z.ZodString;
1427
+ root_id: z.ZodNullable<z.ZodString>;
1428
+ root: z.ZodOptional<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>;
1429
+ taxons: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>>;
1430
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1431
+ id: z.ZodString;
1432
+ name: z.ZodString;
1433
+ type: z.ZodString;
1434
+ key: z.ZodString;
1435
+ value: z.ZodAny;
1436
+ }, z.core.$strip>>>;
1437
+ }, z.core.$strip>;
1438
+ type StoreTaxonomy = z.infer<typeof StoreTaxonomySchema>;
1439
+
1440
+ declare const StoreVariantSchema: z.ZodObject<{
1441
+ id: z.ZodString;
1442
+ product_id: z.ZodString;
1443
+ sku: z.ZodNullable<z.ZodString>;
1444
+ is_master: z.ZodBoolean;
1445
+ options_text: z.ZodString;
1446
+ track_inventory: z.ZodBoolean;
1447
+ image_count: z.ZodNumber;
1448
+ created_at: z.ZodString;
1449
+ updated_at: z.ZodString;
1450
+ thumbnail: z.ZodNullable<z.ZodString>;
1451
+ purchasable: z.ZodBoolean;
1452
+ in_stock: z.ZodBoolean;
1453
+ backorderable: z.ZodBoolean;
1454
+ weight: z.ZodNullable<z.ZodNumber>;
1455
+ height: z.ZodNullable<z.ZodNumber>;
1456
+ width: z.ZodNullable<z.ZodNumber>;
1457
+ depth: z.ZodNullable<z.ZodNumber>;
1458
+ price: z.ZodObject<{
1459
+ id: z.ZodString;
1460
+ amount: z.ZodNullable<z.ZodString>;
1461
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1462
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1463
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1464
+ currency: z.ZodNullable<z.ZodString>;
1465
+ display_amount: z.ZodNullable<z.ZodString>;
1466
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1467
+ price_list_id: z.ZodNullable<z.ZodString>;
1468
+ }, z.core.$strip>;
1469
+ original_price: z.ZodNullable<z.ZodObject<{
1470
+ id: z.ZodString;
1471
+ amount: z.ZodNullable<z.ZodString>;
1472
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1473
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1474
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1475
+ currency: z.ZodNullable<z.ZodString>;
1476
+ display_amount: z.ZodNullable<z.ZodString>;
1477
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1478
+ price_list_id: z.ZodNullable<z.ZodString>;
1479
+ }, z.core.$strip>>;
1480
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1481
+ id: z.ZodString;
1482
+ viewable_id: z.ZodString;
1483
+ position: z.ZodNumber;
1484
+ alt: z.ZodNullable<z.ZodString>;
1485
+ viewable_type: z.ZodString;
1486
+ created_at: z.ZodString;
1487
+ updated_at: z.ZodString;
1488
+ original_url: z.ZodNullable<z.ZodString>;
1489
+ mini_url: z.ZodNullable<z.ZodString>;
1490
+ small_url: z.ZodNullable<z.ZodString>;
1491
+ medium_url: z.ZodNullable<z.ZodString>;
1492
+ large_url: z.ZodNullable<z.ZodString>;
1493
+ xlarge_url: z.ZodNullable<z.ZodString>;
1494
+ og_image_url: z.ZodNullable<z.ZodString>;
1495
+ }, z.core.$strip>>>;
1496
+ option_values: z.ZodArray<z.ZodObject<{
1497
+ id: z.ZodString;
1498
+ option_type_id: z.ZodString;
1499
+ name: z.ZodString;
1500
+ presentation: z.ZodString;
1501
+ position: z.ZodNumber;
1502
+ option_type_name: z.ZodString;
1503
+ option_type_presentation: z.ZodString;
1504
+ }, z.core.$strip>>;
1505
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1506
+ id: z.ZodString;
1507
+ name: z.ZodString;
1508
+ type: z.ZodString;
1509
+ key: z.ZodString;
1510
+ value: z.ZodAny;
1511
+ }, z.core.$strip>>>;
1512
+ }, z.core.$strip>;
1513
+ type StoreVariant = z.infer<typeof StoreVariantSchema>;
1514
+
1515
+ declare const StoreWishedItemSchema: z.ZodObject<{
1516
+ id: z.ZodString;
1517
+ variant_id: z.ZodString;
1518
+ wishlist_id: z.ZodString;
1519
+ quantity: z.ZodNumber;
1520
+ created_at: z.ZodString;
1521
+ updated_at: z.ZodString;
1522
+ variant: z.ZodObject<{
1523
+ id: z.ZodString;
1524
+ product_id: z.ZodString;
1525
+ sku: z.ZodNullable<z.ZodString>;
1526
+ is_master: z.ZodBoolean;
1527
+ options_text: z.ZodString;
1528
+ track_inventory: z.ZodBoolean;
1529
+ image_count: z.ZodNumber;
1530
+ created_at: z.ZodString;
1531
+ updated_at: z.ZodString;
1532
+ thumbnail: z.ZodNullable<z.ZodString>;
1533
+ purchasable: z.ZodBoolean;
1534
+ in_stock: z.ZodBoolean;
1535
+ backorderable: z.ZodBoolean;
1536
+ weight: z.ZodNullable<z.ZodNumber>;
1537
+ height: z.ZodNullable<z.ZodNumber>;
1538
+ width: z.ZodNullable<z.ZodNumber>;
1539
+ depth: z.ZodNullable<z.ZodNumber>;
1540
+ price: z.ZodObject<{
1541
+ id: z.ZodString;
1542
+ amount: z.ZodNullable<z.ZodString>;
1543
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1544
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1545
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1546
+ currency: z.ZodNullable<z.ZodString>;
1547
+ display_amount: z.ZodNullable<z.ZodString>;
1548
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1549
+ price_list_id: z.ZodNullable<z.ZodString>;
1550
+ }, z.core.$strip>;
1551
+ original_price: z.ZodNullable<z.ZodObject<{
1552
+ id: z.ZodString;
1553
+ amount: z.ZodNullable<z.ZodString>;
1554
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1555
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1556
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1557
+ currency: z.ZodNullable<z.ZodString>;
1558
+ display_amount: z.ZodNullable<z.ZodString>;
1559
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1560
+ price_list_id: z.ZodNullable<z.ZodString>;
1561
+ }, z.core.$strip>>;
1562
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1563
+ id: z.ZodString;
1564
+ viewable_id: z.ZodString;
1565
+ position: z.ZodNumber;
1566
+ alt: z.ZodNullable<z.ZodString>;
1567
+ viewable_type: z.ZodString;
1568
+ created_at: z.ZodString;
1569
+ updated_at: z.ZodString;
1570
+ original_url: z.ZodNullable<z.ZodString>;
1571
+ mini_url: z.ZodNullable<z.ZodString>;
1572
+ small_url: z.ZodNullable<z.ZodString>;
1573
+ medium_url: z.ZodNullable<z.ZodString>;
1574
+ large_url: z.ZodNullable<z.ZodString>;
1575
+ xlarge_url: z.ZodNullable<z.ZodString>;
1576
+ og_image_url: z.ZodNullable<z.ZodString>;
1577
+ }, z.core.$strip>>>;
1578
+ option_values: z.ZodArray<z.ZodObject<{
1579
+ id: z.ZodString;
1580
+ option_type_id: z.ZodString;
1581
+ name: z.ZodString;
1582
+ presentation: z.ZodString;
1583
+ position: z.ZodNumber;
1584
+ option_type_name: z.ZodString;
1585
+ option_type_presentation: z.ZodString;
1586
+ }, z.core.$strip>>;
1587
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1588
+ id: z.ZodString;
1589
+ name: z.ZodString;
1590
+ type: z.ZodString;
1591
+ key: z.ZodString;
1592
+ value: z.ZodAny;
1593
+ }, z.core.$strip>>>;
1594
+ }, z.core.$strip>;
1595
+ }, z.core.$strip>;
1596
+ type StoreWishedItem = z.infer<typeof StoreWishedItemSchema>;
1597
+
1598
+ declare const StoreWishlistSchema: z.ZodObject<{
1599
+ id: z.ZodString;
1600
+ name: z.ZodString;
1601
+ token: z.ZodString;
1602
+ created_at: z.ZodString;
1603
+ updated_at: z.ZodString;
1604
+ is_default: z.ZodBoolean;
1605
+ is_private: z.ZodBoolean;
1606
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1607
+ id: z.ZodString;
1608
+ variant_id: z.ZodString;
1609
+ wishlist_id: z.ZodString;
1610
+ quantity: z.ZodNumber;
1611
+ created_at: z.ZodString;
1612
+ updated_at: z.ZodString;
1613
+ variant: z.ZodObject<{
1614
+ id: z.ZodString;
1615
+ product_id: z.ZodString;
1616
+ sku: z.ZodNullable<z.ZodString>;
1617
+ is_master: z.ZodBoolean;
1618
+ options_text: z.ZodString;
1619
+ track_inventory: z.ZodBoolean;
1620
+ image_count: z.ZodNumber;
1621
+ created_at: z.ZodString;
1622
+ updated_at: z.ZodString;
1623
+ thumbnail: z.ZodNullable<z.ZodString>;
1624
+ purchasable: z.ZodBoolean;
1625
+ in_stock: z.ZodBoolean;
1626
+ backorderable: z.ZodBoolean;
1627
+ weight: z.ZodNullable<z.ZodNumber>;
1628
+ height: z.ZodNullable<z.ZodNumber>;
1629
+ width: z.ZodNullable<z.ZodNumber>;
1630
+ depth: z.ZodNullable<z.ZodNumber>;
1631
+ price: z.ZodObject<{
1632
+ id: z.ZodString;
1633
+ amount: z.ZodNullable<z.ZodString>;
1634
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1635
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1636
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1637
+ currency: z.ZodNullable<z.ZodString>;
1638
+ display_amount: z.ZodNullable<z.ZodString>;
1639
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1640
+ price_list_id: z.ZodNullable<z.ZodString>;
1641
+ }, z.core.$strip>;
1642
+ original_price: z.ZodNullable<z.ZodObject<{
1643
+ id: z.ZodString;
1644
+ amount: z.ZodNullable<z.ZodString>;
1645
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1646
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1647
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1648
+ currency: z.ZodNullable<z.ZodString>;
1649
+ display_amount: z.ZodNullable<z.ZodString>;
1650
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1651
+ price_list_id: z.ZodNullable<z.ZodString>;
1652
+ }, z.core.$strip>>;
1653
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1654
+ id: z.ZodString;
1655
+ viewable_id: z.ZodString;
1656
+ position: z.ZodNumber;
1657
+ alt: z.ZodNullable<z.ZodString>;
1658
+ viewable_type: z.ZodString;
1659
+ created_at: z.ZodString;
1660
+ updated_at: z.ZodString;
1661
+ original_url: z.ZodNullable<z.ZodString>;
1662
+ mini_url: z.ZodNullable<z.ZodString>;
1663
+ small_url: z.ZodNullable<z.ZodString>;
1664
+ medium_url: z.ZodNullable<z.ZodString>;
1665
+ large_url: z.ZodNullable<z.ZodString>;
1666
+ xlarge_url: z.ZodNullable<z.ZodString>;
1667
+ og_image_url: z.ZodNullable<z.ZodString>;
1668
+ }, z.core.$strip>>>;
1669
+ option_values: z.ZodArray<z.ZodObject<{
1670
+ id: z.ZodString;
1671
+ option_type_id: z.ZodString;
1672
+ name: z.ZodString;
1673
+ presentation: z.ZodString;
1674
+ position: z.ZodNumber;
1675
+ option_type_name: z.ZodString;
1676
+ option_type_presentation: z.ZodString;
1677
+ }, z.core.$strip>>;
1678
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1679
+ id: z.ZodString;
1680
+ name: z.ZodString;
1681
+ type: z.ZodString;
1682
+ key: z.ZodString;
1683
+ value: z.ZodAny;
1684
+ }, z.core.$strip>>>;
1685
+ }, z.core.$strip>;
1686
+ }, z.core.$strip>>>;
1687
+ }, z.core.$strip>;
1688
+ type StoreWishlist = z.infer<typeof StoreWishlistSchema>;
1689
+
1690
+ export { type AdminCustomer, AdminCustomerSchema, type AdminMetafield, AdminMetafieldSchema, type AdminOrder, AdminOrderSchema, type AdminPrice, AdminPriceSchema, type AdminProduct, AdminProductSchema, type AdminTaxon, AdminTaxonSchema, type AdminTaxonomy, AdminTaxonomySchema, type AdminVariant, AdminVariantSchema, type StoreAddress, StoreAddressSchema, type StoreBase, StoreBaseSchema, type StoreCountry, StoreCountrySchema, type StoreCreditCard, StoreCreditCardSchema, type StoreCustomer, StoreCustomerSchema, type StoreDigitalLink, StoreDigitalLinkSchema, type StoreGiftCard, StoreGiftCardSchema, type StoreImage, StoreImageSchema, type StoreLineItem, StoreLineItemSchema, type StoreMetafield, StoreMetafieldSchema, type StoreOptionType, StoreOptionTypeSchema, type StoreOptionValue, StoreOptionValueSchema, type StoreOrder, type StoreOrderPromotion, StoreOrderPromotionSchema, StoreOrderSchema, type StorePayment, type StorePaymentMethod, StorePaymentMethodSchema, StorePaymentSchema, type StorePrice, StorePriceSchema, type StoreProduct, StoreProductSchema, type StoreShipment, StoreShipmentSchema, type StoreShippingMethod, StoreShippingMethodSchema, type StoreShippingRate, StoreShippingRateSchema, type StoreState, StoreStateSchema, type StoreStockLocation, StoreStockLocationSchema, type StoreStore, StoreStoreSchema, type StoreTaxon, StoreTaxonSchema, type StoreTaxonomy, StoreTaxonomySchema, type StoreVariant, StoreVariantSchema, type StoreWishedItem, StoreWishedItemSchema, type StoreWishlist, StoreWishlistSchema };