@spree/sdk 0.1.4 → 0.1.6

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,1712 @@
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
+ digital_links: z.ZodArray<z.ZodObject<{
751
+ id: z.ZodString;
752
+ access_counter: z.ZodNumber;
753
+ filename: z.ZodString;
754
+ content_type: z.ZodString;
755
+ created_at: z.ZodString;
756
+ updated_at: z.ZodString;
757
+ authorizable: z.ZodBoolean;
758
+ expired: z.ZodBoolean;
759
+ access_limit_exceeded: z.ZodBoolean;
760
+ }, z.core.$strip>>;
761
+ }, z.core.$strip>;
762
+ type StoreLineItem = z.infer<typeof StoreLineItemSchema>;
763
+
764
+ declare const StoreMetafieldSchema: z.ZodObject<{
765
+ id: z.ZodString;
766
+ name: z.ZodString;
767
+ type: z.ZodString;
768
+ key: z.ZodString;
769
+ value: z.ZodAny;
770
+ }, z.core.$strip>;
771
+ type StoreMetafield = z.infer<typeof StoreMetafieldSchema>;
772
+
773
+ declare const StoreOptionTypeSchema: z.ZodObject<{
774
+ id: z.ZodString;
775
+ name: z.ZodString;
776
+ presentation: z.ZodString;
777
+ position: z.ZodNumber;
778
+ }, z.core.$strip>;
779
+ type StoreOptionType = z.infer<typeof StoreOptionTypeSchema>;
780
+
781
+ declare const StoreOptionValueSchema: z.ZodObject<{
782
+ id: z.ZodString;
783
+ option_type_id: z.ZodString;
784
+ name: z.ZodString;
785
+ presentation: z.ZodString;
786
+ position: z.ZodNumber;
787
+ option_type_name: z.ZodString;
788
+ option_type_presentation: z.ZodString;
789
+ }, z.core.$strip>;
790
+ type StoreOptionValue = z.infer<typeof StoreOptionValueSchema>;
791
+
792
+ declare const StoreOrderSchema: z.ZodObject<{
793
+ id: z.ZodString;
794
+ number: z.ZodString;
795
+ state: z.ZodString;
796
+ token: z.ZodString;
797
+ email: z.ZodNullable<z.ZodString>;
798
+ special_instructions: z.ZodNullable<z.ZodString>;
799
+ currency: z.ZodString;
800
+ item_count: z.ZodNumber;
801
+ shipment_state: z.ZodNullable<z.ZodString>;
802
+ payment_state: z.ZodNullable<z.ZodString>;
803
+ item_total: z.ZodString;
804
+ display_item_total: z.ZodString;
805
+ ship_total: z.ZodString;
806
+ display_ship_total: z.ZodString;
807
+ adjustment_total: z.ZodString;
808
+ display_adjustment_total: z.ZodString;
809
+ promo_total: z.ZodString;
810
+ display_promo_total: z.ZodString;
811
+ tax_total: z.ZodString;
812
+ display_tax_total: z.ZodString;
813
+ included_tax_total: z.ZodString;
814
+ display_included_tax_total: z.ZodString;
815
+ additional_tax_total: z.ZodString;
816
+ display_additional_tax_total: z.ZodString;
817
+ total: z.ZodString;
818
+ display_total: z.ZodString;
819
+ completed_at: z.ZodNullable<z.ZodString>;
820
+ created_at: z.ZodString;
821
+ updated_at: z.ZodString;
822
+ order_promotions: z.ZodOptional<z.ZodArray<z.ZodObject<{
823
+ id: z.ZodString;
824
+ promotion_id: z.ZodString;
825
+ name: z.ZodString;
826
+ description: z.ZodNullable<z.ZodString>;
827
+ code: z.ZodNullable<z.ZodString>;
828
+ amount: z.ZodString;
829
+ display_amount: z.ZodString;
830
+ }, z.core.$strip>>>;
831
+ line_items: z.ZodOptional<z.ZodArray<z.ZodObject<{
832
+ id: z.ZodString;
833
+ variant_id: z.ZodString;
834
+ quantity: z.ZodNumber;
835
+ name: z.ZodString;
836
+ slug: z.ZodString;
837
+ options_text: z.ZodString;
838
+ price: z.ZodString;
839
+ display_price: z.ZodString;
840
+ total: z.ZodString;
841
+ display_total: z.ZodString;
842
+ adjustment_total: z.ZodString;
843
+ display_adjustment_total: z.ZodString;
844
+ additional_tax_total: z.ZodString;
845
+ display_additional_tax_total: z.ZodString;
846
+ included_tax_total: z.ZodString;
847
+ display_included_tax_total: z.ZodString;
848
+ promo_total: z.ZodString;
849
+ display_promo_total: z.ZodString;
850
+ pre_tax_amount: z.ZodString;
851
+ display_pre_tax_amount: z.ZodString;
852
+ discounted_amount: z.ZodString;
853
+ display_discounted_amount: z.ZodString;
854
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
855
+ created_at: z.ZodString;
856
+ updated_at: z.ZodString;
857
+ compare_at_amount: z.ZodNullable<z.ZodString>;
858
+ thumbnail_url: z.ZodNullable<z.ZodString>;
859
+ option_values: z.ZodArray<z.ZodObject<{
860
+ id: z.ZodString;
861
+ option_type_id: z.ZodString;
862
+ name: z.ZodString;
863
+ presentation: z.ZodString;
864
+ position: z.ZodNumber;
865
+ option_type_name: z.ZodString;
866
+ option_type_presentation: z.ZodString;
867
+ }, z.core.$strip>>;
868
+ digital_links: z.ZodArray<z.ZodObject<{
869
+ id: z.ZodString;
870
+ access_counter: z.ZodNumber;
871
+ filename: z.ZodString;
872
+ content_type: z.ZodString;
873
+ created_at: z.ZodString;
874
+ updated_at: z.ZodString;
875
+ authorizable: z.ZodBoolean;
876
+ expired: z.ZodBoolean;
877
+ access_limit_exceeded: z.ZodBoolean;
878
+ }, z.core.$strip>>;
879
+ }, z.core.$strip>>>;
880
+ shipments: z.ZodOptional<z.ZodArray<z.ZodObject<{
881
+ id: z.ZodString;
882
+ number: z.ZodString;
883
+ state: z.ZodString;
884
+ tracking: z.ZodNullable<z.ZodString>;
885
+ tracking_url: z.ZodNullable<z.ZodString>;
886
+ cost: z.ZodString;
887
+ display_cost: z.ZodString;
888
+ shipped_at: z.ZodNullable<z.ZodString>;
889
+ created_at: z.ZodString;
890
+ updated_at: z.ZodString;
891
+ shipping_method: z.ZodObject<{
892
+ id: z.ZodString;
893
+ name: z.ZodString;
894
+ code: z.ZodNullable<z.ZodString>;
895
+ }, z.core.$strip>;
896
+ stock_location: z.ZodObject<{
897
+ id: z.ZodString;
898
+ state_abbr: z.ZodNullable<z.ZodString>;
899
+ name: z.ZodString;
900
+ address1: z.ZodNullable<z.ZodString>;
901
+ city: z.ZodNullable<z.ZodString>;
902
+ zipcode: z.ZodNullable<z.ZodString>;
903
+ country_iso: z.ZodNullable<z.ZodString>;
904
+ country_name: z.ZodNullable<z.ZodString>;
905
+ state_text: z.ZodNullable<z.ZodString>;
906
+ }, z.core.$strip>;
907
+ shipping_rates: z.ZodArray<z.ZodObject<{
908
+ id: z.ZodString;
909
+ shipping_method_id: z.ZodString;
910
+ name: z.ZodString;
911
+ selected: z.ZodBoolean;
912
+ cost: z.ZodNumber;
913
+ display_cost: z.ZodString;
914
+ shipping_method: z.ZodObject<{
915
+ id: z.ZodString;
916
+ name: z.ZodString;
917
+ code: z.ZodNullable<z.ZodString>;
918
+ }, z.core.$strip>;
919
+ }, z.core.$strip>>;
920
+ }, z.core.$strip>>>;
921
+ payments: z.ZodOptional<z.ZodArray<z.ZodObject<{
922
+ id: z.ZodString;
923
+ payment_method_id: z.ZodString;
924
+ state: z.ZodString;
925
+ response_code: z.ZodNullable<z.ZodString>;
926
+ number: z.ZodString;
927
+ amount: z.ZodString;
928
+ display_amount: z.ZodString;
929
+ created_at: z.ZodString;
930
+ updated_at: z.ZodString;
931
+ payment_method: z.ZodObject<{
932
+ id: z.ZodString;
933
+ name: z.ZodString;
934
+ description: z.ZodNullable<z.ZodString>;
935
+ type: z.ZodString;
936
+ }, z.core.$strip>;
937
+ }, z.core.$strip>>>;
938
+ bill_address: z.ZodOptional<z.ZodObject<{
939
+ id: z.ZodString;
940
+ firstname: z.ZodNullable<z.ZodString>;
941
+ lastname: z.ZodNullable<z.ZodString>;
942
+ full_name: z.ZodString;
943
+ address1: z.ZodNullable<z.ZodString>;
944
+ address2: z.ZodNullable<z.ZodString>;
945
+ city: z.ZodNullable<z.ZodString>;
946
+ zipcode: z.ZodNullable<z.ZodString>;
947
+ phone: z.ZodNullable<z.ZodString>;
948
+ company: z.ZodNullable<z.ZodString>;
949
+ country_name: z.ZodString;
950
+ country_iso: z.ZodString;
951
+ state_text: z.ZodNullable<z.ZodString>;
952
+ state_abbr: z.ZodNullable<z.ZodString>;
953
+ state_name: z.ZodNullable<z.ZodString>;
954
+ }, z.core.$strip>>;
955
+ ship_address: z.ZodOptional<z.ZodObject<{
956
+ id: z.ZodString;
957
+ firstname: z.ZodNullable<z.ZodString>;
958
+ lastname: z.ZodNullable<z.ZodString>;
959
+ full_name: z.ZodString;
960
+ address1: z.ZodNullable<z.ZodString>;
961
+ address2: z.ZodNullable<z.ZodString>;
962
+ city: z.ZodNullable<z.ZodString>;
963
+ zipcode: z.ZodNullable<z.ZodString>;
964
+ phone: z.ZodNullable<z.ZodString>;
965
+ company: z.ZodNullable<z.ZodString>;
966
+ country_name: z.ZodString;
967
+ country_iso: z.ZodString;
968
+ state_text: z.ZodNullable<z.ZodString>;
969
+ state_abbr: z.ZodNullable<z.ZodString>;
970
+ state_name: z.ZodNullable<z.ZodString>;
971
+ }, z.core.$strip>>;
972
+ payment_methods: z.ZodArray<z.ZodObject<{
973
+ id: z.ZodString;
974
+ name: z.ZodString;
975
+ description: z.ZodNullable<z.ZodString>;
976
+ type: z.ZodString;
977
+ }, z.core.$strip>>;
978
+ }, z.core.$strip>;
979
+ type StoreOrder = z.infer<typeof StoreOrderSchema>;
980
+
981
+ declare const StoreOrderPromotionSchema: z.ZodObject<{
982
+ id: z.ZodString;
983
+ promotion_id: z.ZodString;
984
+ name: z.ZodString;
985
+ description: z.ZodNullable<z.ZodString>;
986
+ code: z.ZodNullable<z.ZodString>;
987
+ amount: z.ZodString;
988
+ display_amount: z.ZodString;
989
+ }, z.core.$strip>;
990
+ type StoreOrderPromotion = z.infer<typeof StoreOrderPromotionSchema>;
991
+
992
+ declare const StorePaymentSchema: z.ZodObject<{
993
+ id: z.ZodString;
994
+ payment_method_id: z.ZodString;
995
+ state: z.ZodString;
996
+ response_code: z.ZodNullable<z.ZodString>;
997
+ number: z.ZodString;
998
+ amount: z.ZodString;
999
+ display_amount: z.ZodString;
1000
+ created_at: z.ZodString;
1001
+ updated_at: z.ZodString;
1002
+ payment_method: z.ZodObject<{
1003
+ id: z.ZodString;
1004
+ name: z.ZodString;
1005
+ description: z.ZodNullable<z.ZodString>;
1006
+ type: z.ZodString;
1007
+ }, z.core.$strip>;
1008
+ }, z.core.$strip>;
1009
+ type StorePayment = z.infer<typeof StorePaymentSchema>;
1010
+
1011
+ declare const StorePaymentMethodSchema: z.ZodObject<{
1012
+ id: z.ZodString;
1013
+ name: z.ZodString;
1014
+ description: z.ZodNullable<z.ZodString>;
1015
+ type: z.ZodString;
1016
+ }, z.core.$strip>;
1017
+ type StorePaymentMethod = z.infer<typeof StorePaymentMethodSchema>;
1018
+
1019
+ declare const StorePriceSchema: z.ZodObject<{
1020
+ id: z.ZodString;
1021
+ amount: z.ZodNullable<z.ZodString>;
1022
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1023
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1024
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1025
+ currency: z.ZodNullable<z.ZodString>;
1026
+ display_amount: z.ZodNullable<z.ZodString>;
1027
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1028
+ price_list_id: z.ZodNullable<z.ZodString>;
1029
+ }, z.core.$strip>;
1030
+ type StorePrice = z.infer<typeof StorePriceSchema>;
1031
+
1032
+ declare const StoreProductSchema: z.ZodObject<{
1033
+ id: z.ZodString;
1034
+ name: z.ZodString;
1035
+ description: z.ZodNullable<z.ZodString>;
1036
+ slug: z.ZodString;
1037
+ meta_description: z.ZodNullable<z.ZodString>;
1038
+ meta_keywords: z.ZodNullable<z.ZodString>;
1039
+ variant_count: z.ZodNumber;
1040
+ available_on: z.ZodNullable<z.ZodString>;
1041
+ created_at: z.ZodString;
1042
+ updated_at: z.ZodString;
1043
+ purchasable: z.ZodBoolean;
1044
+ in_stock: z.ZodBoolean;
1045
+ backorderable: z.ZodBoolean;
1046
+ available: z.ZodBoolean;
1047
+ default_variant_id: z.ZodString;
1048
+ thumbnail_url: z.ZodNullable<z.ZodString>;
1049
+ tags: z.ZodArray<z.ZodString>;
1050
+ price: z.ZodObject<{
1051
+ id: z.ZodString;
1052
+ amount: z.ZodNullable<z.ZodString>;
1053
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1054
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1055
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1056
+ currency: z.ZodNullable<z.ZodString>;
1057
+ display_amount: z.ZodNullable<z.ZodString>;
1058
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1059
+ price_list_id: z.ZodNullable<z.ZodString>;
1060
+ }, z.core.$strip>;
1061
+ original_price: z.ZodNullable<z.ZodObject<{
1062
+ id: z.ZodString;
1063
+ amount: z.ZodNullable<z.ZodString>;
1064
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1065
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1066
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1067
+ currency: z.ZodNullable<z.ZodString>;
1068
+ display_amount: z.ZodNullable<z.ZodString>;
1069
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1070
+ price_list_id: z.ZodNullable<z.ZodString>;
1071
+ }, z.core.$strip>>;
1072
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1073
+ id: z.ZodString;
1074
+ viewable_id: z.ZodString;
1075
+ position: z.ZodNumber;
1076
+ alt: z.ZodNullable<z.ZodString>;
1077
+ viewable_type: z.ZodString;
1078
+ created_at: z.ZodString;
1079
+ updated_at: z.ZodString;
1080
+ original_url: z.ZodNullable<z.ZodString>;
1081
+ mini_url: z.ZodNullable<z.ZodString>;
1082
+ small_url: z.ZodNullable<z.ZodString>;
1083
+ medium_url: z.ZodNullable<z.ZodString>;
1084
+ large_url: z.ZodNullable<z.ZodString>;
1085
+ xlarge_url: z.ZodNullable<z.ZodString>;
1086
+ og_image_url: z.ZodNullable<z.ZodString>;
1087
+ }, z.core.$strip>>>;
1088
+ variants: z.ZodOptional<z.ZodArray<z.ZodObject<{
1089
+ id: z.ZodString;
1090
+ product_id: z.ZodString;
1091
+ sku: z.ZodNullable<z.ZodString>;
1092
+ is_master: z.ZodBoolean;
1093
+ options_text: z.ZodString;
1094
+ track_inventory: z.ZodBoolean;
1095
+ image_count: z.ZodNumber;
1096
+ created_at: z.ZodString;
1097
+ updated_at: z.ZodString;
1098
+ thumbnail: z.ZodNullable<z.ZodString>;
1099
+ purchasable: z.ZodBoolean;
1100
+ in_stock: z.ZodBoolean;
1101
+ backorderable: z.ZodBoolean;
1102
+ weight: z.ZodNullable<z.ZodNumber>;
1103
+ height: z.ZodNullable<z.ZodNumber>;
1104
+ width: z.ZodNullable<z.ZodNumber>;
1105
+ depth: z.ZodNullable<z.ZodNumber>;
1106
+ price: z.ZodObject<{
1107
+ id: z.ZodString;
1108
+ amount: z.ZodNullable<z.ZodString>;
1109
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1110
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1111
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1112
+ currency: z.ZodNullable<z.ZodString>;
1113
+ display_amount: z.ZodNullable<z.ZodString>;
1114
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1115
+ price_list_id: z.ZodNullable<z.ZodString>;
1116
+ }, z.core.$strip>;
1117
+ original_price: z.ZodNullable<z.ZodObject<{
1118
+ id: z.ZodString;
1119
+ amount: z.ZodNullable<z.ZodString>;
1120
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1121
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1122
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1123
+ currency: z.ZodNullable<z.ZodString>;
1124
+ display_amount: z.ZodNullable<z.ZodString>;
1125
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1126
+ price_list_id: z.ZodNullable<z.ZodString>;
1127
+ }, z.core.$strip>>;
1128
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1129
+ id: z.ZodString;
1130
+ viewable_id: z.ZodString;
1131
+ position: z.ZodNumber;
1132
+ alt: z.ZodNullable<z.ZodString>;
1133
+ viewable_type: z.ZodString;
1134
+ created_at: z.ZodString;
1135
+ updated_at: z.ZodString;
1136
+ original_url: z.ZodNullable<z.ZodString>;
1137
+ mini_url: z.ZodNullable<z.ZodString>;
1138
+ small_url: z.ZodNullable<z.ZodString>;
1139
+ medium_url: z.ZodNullable<z.ZodString>;
1140
+ large_url: z.ZodNullable<z.ZodString>;
1141
+ xlarge_url: z.ZodNullable<z.ZodString>;
1142
+ og_image_url: z.ZodNullable<z.ZodString>;
1143
+ }, z.core.$strip>>>;
1144
+ option_values: z.ZodArray<z.ZodObject<{
1145
+ id: z.ZodString;
1146
+ option_type_id: z.ZodString;
1147
+ name: z.ZodString;
1148
+ presentation: z.ZodString;
1149
+ position: z.ZodNumber;
1150
+ option_type_name: z.ZodString;
1151
+ option_type_presentation: z.ZodString;
1152
+ }, z.core.$strip>>;
1153
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1154
+ id: z.ZodString;
1155
+ name: z.ZodString;
1156
+ type: z.ZodString;
1157
+ key: z.ZodString;
1158
+ value: z.ZodAny;
1159
+ }, z.core.$strip>>>;
1160
+ }, z.core.$strip>>>;
1161
+ default_variant: z.ZodOptional<z.ZodObject<{
1162
+ id: z.ZodString;
1163
+ product_id: z.ZodString;
1164
+ sku: z.ZodNullable<z.ZodString>;
1165
+ is_master: z.ZodBoolean;
1166
+ options_text: z.ZodString;
1167
+ track_inventory: z.ZodBoolean;
1168
+ image_count: z.ZodNumber;
1169
+ created_at: z.ZodString;
1170
+ updated_at: z.ZodString;
1171
+ thumbnail: z.ZodNullable<z.ZodString>;
1172
+ purchasable: z.ZodBoolean;
1173
+ in_stock: z.ZodBoolean;
1174
+ backorderable: z.ZodBoolean;
1175
+ weight: z.ZodNullable<z.ZodNumber>;
1176
+ height: z.ZodNullable<z.ZodNumber>;
1177
+ width: z.ZodNullable<z.ZodNumber>;
1178
+ depth: z.ZodNullable<z.ZodNumber>;
1179
+ price: z.ZodObject<{
1180
+ id: z.ZodString;
1181
+ amount: z.ZodNullable<z.ZodString>;
1182
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1183
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1184
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1185
+ currency: z.ZodNullable<z.ZodString>;
1186
+ display_amount: z.ZodNullable<z.ZodString>;
1187
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1188
+ price_list_id: z.ZodNullable<z.ZodString>;
1189
+ }, z.core.$strip>;
1190
+ original_price: z.ZodNullable<z.ZodObject<{
1191
+ id: z.ZodString;
1192
+ amount: z.ZodNullable<z.ZodString>;
1193
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1194
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1195
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1196
+ currency: z.ZodNullable<z.ZodString>;
1197
+ display_amount: z.ZodNullable<z.ZodString>;
1198
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1199
+ price_list_id: z.ZodNullable<z.ZodString>;
1200
+ }, z.core.$strip>>;
1201
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1202
+ id: z.ZodString;
1203
+ viewable_id: z.ZodString;
1204
+ position: z.ZodNumber;
1205
+ alt: z.ZodNullable<z.ZodString>;
1206
+ viewable_type: z.ZodString;
1207
+ created_at: z.ZodString;
1208
+ updated_at: z.ZodString;
1209
+ original_url: z.ZodNullable<z.ZodString>;
1210
+ mini_url: z.ZodNullable<z.ZodString>;
1211
+ small_url: z.ZodNullable<z.ZodString>;
1212
+ medium_url: z.ZodNullable<z.ZodString>;
1213
+ large_url: z.ZodNullable<z.ZodString>;
1214
+ xlarge_url: z.ZodNullable<z.ZodString>;
1215
+ og_image_url: z.ZodNullable<z.ZodString>;
1216
+ }, z.core.$strip>>>;
1217
+ option_values: z.ZodArray<z.ZodObject<{
1218
+ id: z.ZodString;
1219
+ option_type_id: z.ZodString;
1220
+ name: z.ZodString;
1221
+ presentation: z.ZodString;
1222
+ position: z.ZodNumber;
1223
+ option_type_name: z.ZodString;
1224
+ option_type_presentation: z.ZodString;
1225
+ }, z.core.$strip>>;
1226
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1227
+ id: z.ZodString;
1228
+ name: z.ZodString;
1229
+ type: z.ZodString;
1230
+ key: z.ZodString;
1231
+ value: z.ZodAny;
1232
+ }, z.core.$strip>>>;
1233
+ }, z.core.$strip>>;
1234
+ master_variant: z.ZodOptional<z.ZodObject<{
1235
+ id: z.ZodString;
1236
+ product_id: z.ZodString;
1237
+ sku: z.ZodNullable<z.ZodString>;
1238
+ is_master: z.ZodBoolean;
1239
+ options_text: z.ZodString;
1240
+ track_inventory: z.ZodBoolean;
1241
+ image_count: z.ZodNumber;
1242
+ created_at: z.ZodString;
1243
+ updated_at: z.ZodString;
1244
+ thumbnail: z.ZodNullable<z.ZodString>;
1245
+ purchasable: z.ZodBoolean;
1246
+ in_stock: z.ZodBoolean;
1247
+ backorderable: z.ZodBoolean;
1248
+ weight: z.ZodNullable<z.ZodNumber>;
1249
+ height: z.ZodNullable<z.ZodNumber>;
1250
+ width: z.ZodNullable<z.ZodNumber>;
1251
+ depth: z.ZodNullable<z.ZodNumber>;
1252
+ price: z.ZodObject<{
1253
+ id: z.ZodString;
1254
+ amount: z.ZodNullable<z.ZodString>;
1255
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1256
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1257
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1258
+ currency: z.ZodNullable<z.ZodString>;
1259
+ display_amount: z.ZodNullable<z.ZodString>;
1260
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1261
+ price_list_id: z.ZodNullable<z.ZodString>;
1262
+ }, z.core.$strip>;
1263
+ original_price: z.ZodNullable<z.ZodObject<{
1264
+ id: z.ZodString;
1265
+ amount: z.ZodNullable<z.ZodString>;
1266
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1267
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1268
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1269
+ currency: z.ZodNullable<z.ZodString>;
1270
+ display_amount: z.ZodNullable<z.ZodString>;
1271
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1272
+ price_list_id: z.ZodNullable<z.ZodString>;
1273
+ }, z.core.$strip>>;
1274
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1275
+ id: z.ZodString;
1276
+ viewable_id: z.ZodString;
1277
+ position: z.ZodNumber;
1278
+ alt: z.ZodNullable<z.ZodString>;
1279
+ viewable_type: z.ZodString;
1280
+ created_at: z.ZodString;
1281
+ updated_at: z.ZodString;
1282
+ original_url: z.ZodNullable<z.ZodString>;
1283
+ mini_url: z.ZodNullable<z.ZodString>;
1284
+ small_url: z.ZodNullable<z.ZodString>;
1285
+ medium_url: z.ZodNullable<z.ZodString>;
1286
+ large_url: z.ZodNullable<z.ZodString>;
1287
+ xlarge_url: z.ZodNullable<z.ZodString>;
1288
+ og_image_url: z.ZodNullable<z.ZodString>;
1289
+ }, z.core.$strip>>>;
1290
+ option_values: z.ZodArray<z.ZodObject<{
1291
+ id: z.ZodString;
1292
+ option_type_id: z.ZodString;
1293
+ name: z.ZodString;
1294
+ presentation: z.ZodString;
1295
+ position: z.ZodNumber;
1296
+ option_type_name: z.ZodString;
1297
+ option_type_presentation: z.ZodString;
1298
+ }, z.core.$strip>>;
1299
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1300
+ id: z.ZodString;
1301
+ name: z.ZodString;
1302
+ type: z.ZodString;
1303
+ key: z.ZodString;
1304
+ value: z.ZodAny;
1305
+ }, z.core.$strip>>>;
1306
+ }, z.core.$strip>>;
1307
+ option_types: z.ZodOptional<z.ZodArray<z.ZodObject<{
1308
+ id: z.ZodString;
1309
+ name: z.ZodString;
1310
+ presentation: z.ZodString;
1311
+ position: z.ZodNumber;
1312
+ }, z.core.$strip>>>;
1313
+ taxons: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>>;
1314
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1315
+ id: z.ZodString;
1316
+ name: z.ZodString;
1317
+ type: z.ZodString;
1318
+ key: z.ZodString;
1319
+ value: z.ZodAny;
1320
+ }, z.core.$strip>>>;
1321
+ }, z.core.$strip>;
1322
+ type StoreProduct = z.infer<typeof StoreProductSchema>;
1323
+
1324
+ declare const StoreShipmentSchema: z.ZodObject<{
1325
+ id: z.ZodString;
1326
+ number: z.ZodString;
1327
+ state: z.ZodString;
1328
+ tracking: z.ZodNullable<z.ZodString>;
1329
+ tracking_url: z.ZodNullable<z.ZodString>;
1330
+ cost: z.ZodString;
1331
+ display_cost: z.ZodString;
1332
+ shipped_at: z.ZodNullable<z.ZodString>;
1333
+ created_at: z.ZodString;
1334
+ updated_at: z.ZodString;
1335
+ shipping_method: z.ZodObject<{
1336
+ id: z.ZodString;
1337
+ name: z.ZodString;
1338
+ code: z.ZodNullable<z.ZodString>;
1339
+ }, z.core.$strip>;
1340
+ stock_location: z.ZodObject<{
1341
+ id: z.ZodString;
1342
+ state_abbr: z.ZodNullable<z.ZodString>;
1343
+ name: z.ZodString;
1344
+ address1: z.ZodNullable<z.ZodString>;
1345
+ city: z.ZodNullable<z.ZodString>;
1346
+ zipcode: z.ZodNullable<z.ZodString>;
1347
+ country_iso: z.ZodNullable<z.ZodString>;
1348
+ country_name: z.ZodNullable<z.ZodString>;
1349
+ state_text: z.ZodNullable<z.ZodString>;
1350
+ }, z.core.$strip>;
1351
+ shipping_rates: z.ZodArray<z.ZodObject<{
1352
+ id: z.ZodString;
1353
+ shipping_method_id: z.ZodString;
1354
+ name: z.ZodString;
1355
+ selected: z.ZodBoolean;
1356
+ cost: z.ZodNumber;
1357
+ display_cost: z.ZodString;
1358
+ shipping_method: z.ZodObject<{
1359
+ id: z.ZodString;
1360
+ name: z.ZodString;
1361
+ code: z.ZodNullable<z.ZodString>;
1362
+ }, z.core.$strip>;
1363
+ }, z.core.$strip>>;
1364
+ }, z.core.$strip>;
1365
+ type StoreShipment = z.infer<typeof StoreShipmentSchema>;
1366
+
1367
+ declare const StoreShippingMethodSchema: z.ZodObject<{
1368
+ id: z.ZodString;
1369
+ name: z.ZodString;
1370
+ code: z.ZodNullable<z.ZodString>;
1371
+ }, z.core.$strip>;
1372
+ type StoreShippingMethod = z.infer<typeof StoreShippingMethodSchema>;
1373
+
1374
+ declare const StoreShippingRateSchema: z.ZodObject<{
1375
+ id: z.ZodString;
1376
+ shipping_method_id: z.ZodString;
1377
+ name: z.ZodString;
1378
+ selected: z.ZodBoolean;
1379
+ cost: z.ZodNumber;
1380
+ display_cost: z.ZodString;
1381
+ shipping_method: z.ZodObject<{
1382
+ id: z.ZodString;
1383
+ name: z.ZodString;
1384
+ code: z.ZodNullable<z.ZodString>;
1385
+ }, z.core.$strip>;
1386
+ }, z.core.$strip>;
1387
+ type StoreShippingRate = z.infer<typeof StoreShippingRateSchema>;
1388
+
1389
+ declare const StoreStateSchema: z.ZodObject<{
1390
+ abbr: z.ZodString;
1391
+ name: z.ZodString;
1392
+ }, z.core.$strip>;
1393
+ type StoreState = z.infer<typeof StoreStateSchema>;
1394
+
1395
+ declare const StoreStockLocationSchema: z.ZodObject<{
1396
+ id: z.ZodString;
1397
+ state_abbr: z.ZodNullable<z.ZodString>;
1398
+ name: z.ZodString;
1399
+ address1: z.ZodNullable<z.ZodString>;
1400
+ city: z.ZodNullable<z.ZodString>;
1401
+ zipcode: z.ZodNullable<z.ZodString>;
1402
+ country_iso: z.ZodNullable<z.ZodString>;
1403
+ country_name: z.ZodNullable<z.ZodString>;
1404
+ state_text: z.ZodNullable<z.ZodString>;
1405
+ }, z.core.$strip>;
1406
+ type StoreStockLocation = z.infer<typeof StoreStockLocationSchema>;
1407
+
1408
+ declare const StoreStoreSchema: z.ZodObject<{
1409
+ id: z.ZodString;
1410
+ name: z.ZodString;
1411
+ url: z.ZodString;
1412
+ meta_description: z.ZodNullable<z.ZodString>;
1413
+ meta_keywords: z.ZodNullable<z.ZodString>;
1414
+ seo_title: z.ZodNullable<z.ZodString>;
1415
+ default_currency: z.ZodString;
1416
+ code: z.ZodString;
1417
+ default: z.ZodBoolean;
1418
+ facebook: z.ZodNullable<z.ZodString>;
1419
+ twitter: z.ZodNullable<z.ZodString>;
1420
+ instagram: z.ZodNullable<z.ZodString>;
1421
+ customer_support_email: z.ZodNullable<z.ZodString>;
1422
+ default_locale: z.ZodString;
1423
+ created_at: z.ZodString;
1424
+ updated_at: z.ZodString;
1425
+ default_country_iso: z.ZodNullable<z.ZodString>;
1426
+ supported_currencies: z.ZodArray<z.ZodString>;
1427
+ favicon_image_url: z.ZodNullable<z.ZodString>;
1428
+ logo_image_url: z.ZodNullable<z.ZodString>;
1429
+ social_image_url: z.ZodNullable<z.ZodString>;
1430
+ supported_locales: z.ZodArray<z.ZodString>;
1431
+ payment_methods: z.ZodArray<z.ZodObject<{
1432
+ id: z.ZodString;
1433
+ name: z.ZodString;
1434
+ description: z.ZodNullable<z.ZodString>;
1435
+ type: z.ZodString;
1436
+ }, z.core.$strip>>;
1437
+ }, z.core.$strip>;
1438
+ type StoreStore = z.infer<typeof StoreStoreSchema>;
1439
+
1440
+ declare const StoreTaxonSchema: z.ZodObject<any>;
1441
+ type StoreTaxon = z.infer<typeof StoreTaxonSchema>;
1442
+
1443
+ declare const StoreTaxonomySchema: z.ZodObject<{
1444
+ id: z.ZodString;
1445
+ name: z.ZodString;
1446
+ position: z.ZodNumber;
1447
+ created_at: z.ZodString;
1448
+ updated_at: z.ZodString;
1449
+ root_id: z.ZodNullable<z.ZodString>;
1450
+ root: z.ZodOptional<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>;
1451
+ taxons: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<any, z.core.$strip>>>>;
1452
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1453
+ id: z.ZodString;
1454
+ name: z.ZodString;
1455
+ type: z.ZodString;
1456
+ key: z.ZodString;
1457
+ value: z.ZodAny;
1458
+ }, z.core.$strip>>>;
1459
+ }, z.core.$strip>;
1460
+ type StoreTaxonomy = z.infer<typeof StoreTaxonomySchema>;
1461
+
1462
+ declare const StoreVariantSchema: z.ZodObject<{
1463
+ id: z.ZodString;
1464
+ product_id: z.ZodString;
1465
+ sku: z.ZodNullable<z.ZodString>;
1466
+ is_master: z.ZodBoolean;
1467
+ options_text: z.ZodString;
1468
+ track_inventory: z.ZodBoolean;
1469
+ image_count: z.ZodNumber;
1470
+ created_at: z.ZodString;
1471
+ updated_at: z.ZodString;
1472
+ thumbnail: z.ZodNullable<z.ZodString>;
1473
+ purchasable: z.ZodBoolean;
1474
+ in_stock: z.ZodBoolean;
1475
+ backorderable: z.ZodBoolean;
1476
+ weight: z.ZodNullable<z.ZodNumber>;
1477
+ height: z.ZodNullable<z.ZodNumber>;
1478
+ width: z.ZodNullable<z.ZodNumber>;
1479
+ depth: z.ZodNullable<z.ZodNumber>;
1480
+ price: z.ZodObject<{
1481
+ id: z.ZodString;
1482
+ amount: z.ZodNullable<z.ZodString>;
1483
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1484
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1485
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1486
+ currency: z.ZodNullable<z.ZodString>;
1487
+ display_amount: z.ZodNullable<z.ZodString>;
1488
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1489
+ price_list_id: z.ZodNullable<z.ZodString>;
1490
+ }, z.core.$strip>;
1491
+ original_price: z.ZodNullable<z.ZodObject<{
1492
+ id: z.ZodString;
1493
+ amount: z.ZodNullable<z.ZodString>;
1494
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1495
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1496
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1497
+ currency: z.ZodNullable<z.ZodString>;
1498
+ display_amount: z.ZodNullable<z.ZodString>;
1499
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1500
+ price_list_id: z.ZodNullable<z.ZodString>;
1501
+ }, z.core.$strip>>;
1502
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1503
+ id: z.ZodString;
1504
+ viewable_id: z.ZodString;
1505
+ position: z.ZodNumber;
1506
+ alt: z.ZodNullable<z.ZodString>;
1507
+ viewable_type: z.ZodString;
1508
+ created_at: z.ZodString;
1509
+ updated_at: z.ZodString;
1510
+ original_url: z.ZodNullable<z.ZodString>;
1511
+ mini_url: z.ZodNullable<z.ZodString>;
1512
+ small_url: z.ZodNullable<z.ZodString>;
1513
+ medium_url: z.ZodNullable<z.ZodString>;
1514
+ large_url: z.ZodNullable<z.ZodString>;
1515
+ xlarge_url: z.ZodNullable<z.ZodString>;
1516
+ og_image_url: z.ZodNullable<z.ZodString>;
1517
+ }, z.core.$strip>>>;
1518
+ option_values: z.ZodArray<z.ZodObject<{
1519
+ id: z.ZodString;
1520
+ option_type_id: z.ZodString;
1521
+ name: z.ZodString;
1522
+ presentation: z.ZodString;
1523
+ position: z.ZodNumber;
1524
+ option_type_name: z.ZodString;
1525
+ option_type_presentation: z.ZodString;
1526
+ }, z.core.$strip>>;
1527
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1528
+ id: z.ZodString;
1529
+ name: z.ZodString;
1530
+ type: z.ZodString;
1531
+ key: z.ZodString;
1532
+ value: z.ZodAny;
1533
+ }, z.core.$strip>>>;
1534
+ }, z.core.$strip>;
1535
+ type StoreVariant = z.infer<typeof StoreVariantSchema>;
1536
+
1537
+ declare const StoreWishedItemSchema: z.ZodObject<{
1538
+ id: z.ZodString;
1539
+ variant_id: z.ZodString;
1540
+ wishlist_id: z.ZodString;
1541
+ quantity: z.ZodNumber;
1542
+ created_at: z.ZodString;
1543
+ updated_at: z.ZodString;
1544
+ variant: z.ZodObject<{
1545
+ id: z.ZodString;
1546
+ product_id: z.ZodString;
1547
+ sku: z.ZodNullable<z.ZodString>;
1548
+ is_master: z.ZodBoolean;
1549
+ options_text: z.ZodString;
1550
+ track_inventory: z.ZodBoolean;
1551
+ image_count: z.ZodNumber;
1552
+ created_at: z.ZodString;
1553
+ updated_at: z.ZodString;
1554
+ thumbnail: z.ZodNullable<z.ZodString>;
1555
+ purchasable: z.ZodBoolean;
1556
+ in_stock: z.ZodBoolean;
1557
+ backorderable: z.ZodBoolean;
1558
+ weight: z.ZodNullable<z.ZodNumber>;
1559
+ height: z.ZodNullable<z.ZodNumber>;
1560
+ width: z.ZodNullable<z.ZodNumber>;
1561
+ depth: z.ZodNullable<z.ZodNumber>;
1562
+ price: z.ZodObject<{
1563
+ id: z.ZodString;
1564
+ amount: z.ZodNullable<z.ZodString>;
1565
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1566
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1567
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1568
+ currency: z.ZodNullable<z.ZodString>;
1569
+ display_amount: z.ZodNullable<z.ZodString>;
1570
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1571
+ price_list_id: z.ZodNullable<z.ZodString>;
1572
+ }, z.core.$strip>;
1573
+ original_price: z.ZodNullable<z.ZodObject<{
1574
+ id: z.ZodString;
1575
+ amount: z.ZodNullable<z.ZodString>;
1576
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1577
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1578
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1579
+ currency: z.ZodNullable<z.ZodString>;
1580
+ display_amount: z.ZodNullable<z.ZodString>;
1581
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1582
+ price_list_id: z.ZodNullable<z.ZodString>;
1583
+ }, z.core.$strip>>;
1584
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1585
+ id: z.ZodString;
1586
+ viewable_id: z.ZodString;
1587
+ position: z.ZodNumber;
1588
+ alt: z.ZodNullable<z.ZodString>;
1589
+ viewable_type: z.ZodString;
1590
+ created_at: z.ZodString;
1591
+ updated_at: z.ZodString;
1592
+ original_url: z.ZodNullable<z.ZodString>;
1593
+ mini_url: z.ZodNullable<z.ZodString>;
1594
+ small_url: z.ZodNullable<z.ZodString>;
1595
+ medium_url: z.ZodNullable<z.ZodString>;
1596
+ large_url: z.ZodNullable<z.ZodString>;
1597
+ xlarge_url: z.ZodNullable<z.ZodString>;
1598
+ og_image_url: z.ZodNullable<z.ZodString>;
1599
+ }, z.core.$strip>>>;
1600
+ option_values: z.ZodArray<z.ZodObject<{
1601
+ id: z.ZodString;
1602
+ option_type_id: z.ZodString;
1603
+ name: z.ZodString;
1604
+ presentation: z.ZodString;
1605
+ position: z.ZodNumber;
1606
+ option_type_name: z.ZodString;
1607
+ option_type_presentation: z.ZodString;
1608
+ }, z.core.$strip>>;
1609
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1610
+ id: z.ZodString;
1611
+ name: z.ZodString;
1612
+ type: z.ZodString;
1613
+ key: z.ZodString;
1614
+ value: z.ZodAny;
1615
+ }, z.core.$strip>>>;
1616
+ }, z.core.$strip>;
1617
+ }, z.core.$strip>;
1618
+ type StoreWishedItem = z.infer<typeof StoreWishedItemSchema>;
1619
+
1620
+ declare const StoreWishlistSchema: z.ZodObject<{
1621
+ id: z.ZodString;
1622
+ name: z.ZodString;
1623
+ token: z.ZodString;
1624
+ created_at: z.ZodString;
1625
+ updated_at: z.ZodString;
1626
+ is_default: z.ZodBoolean;
1627
+ is_private: z.ZodBoolean;
1628
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1629
+ id: z.ZodString;
1630
+ variant_id: z.ZodString;
1631
+ wishlist_id: z.ZodString;
1632
+ quantity: z.ZodNumber;
1633
+ created_at: z.ZodString;
1634
+ updated_at: z.ZodString;
1635
+ variant: z.ZodObject<{
1636
+ id: z.ZodString;
1637
+ product_id: z.ZodString;
1638
+ sku: z.ZodNullable<z.ZodString>;
1639
+ is_master: z.ZodBoolean;
1640
+ options_text: z.ZodString;
1641
+ track_inventory: z.ZodBoolean;
1642
+ image_count: z.ZodNumber;
1643
+ created_at: z.ZodString;
1644
+ updated_at: z.ZodString;
1645
+ thumbnail: z.ZodNullable<z.ZodString>;
1646
+ purchasable: z.ZodBoolean;
1647
+ in_stock: z.ZodBoolean;
1648
+ backorderable: z.ZodBoolean;
1649
+ weight: z.ZodNullable<z.ZodNumber>;
1650
+ height: z.ZodNullable<z.ZodNumber>;
1651
+ width: z.ZodNullable<z.ZodNumber>;
1652
+ depth: z.ZodNullable<z.ZodNumber>;
1653
+ price: z.ZodObject<{
1654
+ id: z.ZodString;
1655
+ amount: z.ZodNullable<z.ZodString>;
1656
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1657
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1658
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1659
+ currency: z.ZodNullable<z.ZodString>;
1660
+ display_amount: z.ZodNullable<z.ZodString>;
1661
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1662
+ price_list_id: z.ZodNullable<z.ZodString>;
1663
+ }, z.core.$strip>;
1664
+ original_price: z.ZodNullable<z.ZodObject<{
1665
+ id: z.ZodString;
1666
+ amount: z.ZodNullable<z.ZodString>;
1667
+ amount_in_cents: z.ZodNullable<z.ZodNumber>;
1668
+ compare_at_amount: z.ZodNullable<z.ZodString>;
1669
+ compare_at_amount_in_cents: z.ZodNullable<z.ZodNumber>;
1670
+ currency: z.ZodNullable<z.ZodString>;
1671
+ display_amount: z.ZodNullable<z.ZodString>;
1672
+ display_compare_at_amount: z.ZodNullable<z.ZodString>;
1673
+ price_list_id: z.ZodNullable<z.ZodString>;
1674
+ }, z.core.$strip>>;
1675
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1676
+ id: z.ZodString;
1677
+ viewable_id: z.ZodString;
1678
+ position: z.ZodNumber;
1679
+ alt: z.ZodNullable<z.ZodString>;
1680
+ viewable_type: z.ZodString;
1681
+ created_at: z.ZodString;
1682
+ updated_at: z.ZodString;
1683
+ original_url: z.ZodNullable<z.ZodString>;
1684
+ mini_url: z.ZodNullable<z.ZodString>;
1685
+ small_url: z.ZodNullable<z.ZodString>;
1686
+ medium_url: z.ZodNullable<z.ZodString>;
1687
+ large_url: z.ZodNullable<z.ZodString>;
1688
+ xlarge_url: z.ZodNullable<z.ZodString>;
1689
+ og_image_url: z.ZodNullable<z.ZodString>;
1690
+ }, z.core.$strip>>>;
1691
+ option_values: z.ZodArray<z.ZodObject<{
1692
+ id: z.ZodString;
1693
+ option_type_id: z.ZodString;
1694
+ name: z.ZodString;
1695
+ presentation: z.ZodString;
1696
+ position: z.ZodNumber;
1697
+ option_type_name: z.ZodString;
1698
+ option_type_presentation: z.ZodString;
1699
+ }, z.core.$strip>>;
1700
+ metafields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1701
+ id: z.ZodString;
1702
+ name: z.ZodString;
1703
+ type: z.ZodString;
1704
+ key: z.ZodString;
1705
+ value: z.ZodAny;
1706
+ }, z.core.$strip>>>;
1707
+ }, z.core.$strip>;
1708
+ }, z.core.$strip>>>;
1709
+ }, z.core.$strip>;
1710
+ type StoreWishlist = z.infer<typeof StoreWishlistSchema>;
1711
+
1712
+ 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 };