@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,626 @@
1
+ import { z } from 'zod';
2
+
3
+ // src/zod/generated/AdminCustomer.ts
4
+ var StoreAddressSchema = z.object({
5
+ id: z.string(),
6
+ firstname: z.string().nullable(),
7
+ lastname: z.string().nullable(),
8
+ full_name: z.string(),
9
+ address1: z.string().nullable(),
10
+ address2: z.string().nullable(),
11
+ city: z.string().nullable(),
12
+ zipcode: z.string().nullable(),
13
+ phone: z.string().nullable(),
14
+ company: z.string().nullable(),
15
+ country_name: z.string(),
16
+ country_iso: z.string(),
17
+ state_text: z.string().nullable(),
18
+ state_abbr: z.string().nullable(),
19
+ state_name: z.string().nullable()
20
+ });
21
+ var StoreOptionValueSchema = z.object({
22
+ id: z.string(),
23
+ option_type_id: z.string(),
24
+ name: z.string(),
25
+ presentation: z.string(),
26
+ position: z.number(),
27
+ option_type_name: z.string(),
28
+ option_type_presentation: z.string()
29
+ });
30
+ var StoreDigitalLinkSchema = z.object({
31
+ id: z.string(),
32
+ access_counter: z.number(),
33
+ filename: z.string(),
34
+ content_type: z.string(),
35
+ created_at: z.string(),
36
+ updated_at: z.string(),
37
+ authorizable: z.boolean(),
38
+ expired: z.boolean(),
39
+ access_limit_exceeded: z.boolean()
40
+ });
41
+
42
+ // src/zod/generated/StoreLineItem.ts
43
+ var StoreLineItemSchema = z.object({
44
+ id: z.string(),
45
+ variant_id: z.string(),
46
+ quantity: z.number(),
47
+ name: z.string(),
48
+ slug: z.string(),
49
+ options_text: z.string(),
50
+ price: z.string(),
51
+ display_price: z.string(),
52
+ total: z.string(),
53
+ display_total: z.string(),
54
+ adjustment_total: z.string(),
55
+ display_adjustment_total: z.string(),
56
+ additional_tax_total: z.string(),
57
+ display_additional_tax_total: z.string(),
58
+ included_tax_total: z.string(),
59
+ display_included_tax_total: z.string(),
60
+ promo_total: z.string(),
61
+ display_promo_total: z.string(),
62
+ pre_tax_amount: z.string(),
63
+ display_pre_tax_amount: z.string(),
64
+ discounted_amount: z.string(),
65
+ display_discounted_amount: z.string(),
66
+ display_compare_at_amount: z.string().nullable(),
67
+ created_at: z.string(),
68
+ updated_at: z.string(),
69
+ compare_at_amount: z.string().nullable(),
70
+ thumbnail_url: z.string().nullable(),
71
+ option_values: z.array(StoreOptionValueSchema),
72
+ digital_links: z.array(StoreDigitalLinkSchema)
73
+ });
74
+ var StoreOrderPromotionSchema = z.object({
75
+ id: z.string(),
76
+ promotion_id: z.string(),
77
+ name: z.string(),
78
+ description: z.string().nullable(),
79
+ code: z.string().nullable(),
80
+ amount: z.string(),
81
+ display_amount: z.string()
82
+ });
83
+ var StorePaymentMethodSchema = z.object({
84
+ id: z.string(),
85
+ name: z.string(),
86
+ description: z.string().nullable(),
87
+ type: z.string()
88
+ });
89
+
90
+ // src/zod/generated/StorePayment.ts
91
+ var StorePaymentSchema = z.object({
92
+ id: z.string(),
93
+ payment_method_id: z.string(),
94
+ state: z.string(),
95
+ response_code: z.string().nullable(),
96
+ number: z.string(),
97
+ amount: z.string(),
98
+ display_amount: z.string(),
99
+ created_at: z.string(),
100
+ updated_at: z.string(),
101
+ payment_method: StorePaymentMethodSchema
102
+ });
103
+ var StoreShippingMethodSchema = z.object({
104
+ id: z.string(),
105
+ name: z.string(),
106
+ code: z.string().nullable()
107
+ });
108
+ var StoreShippingRateSchema = z.object({
109
+ id: z.string(),
110
+ shipping_method_id: z.string(),
111
+ name: z.string(),
112
+ selected: z.boolean(),
113
+ cost: z.number(),
114
+ display_cost: z.string(),
115
+ shipping_method: StoreShippingMethodSchema
116
+ });
117
+ var StoreStockLocationSchema = z.object({
118
+ id: z.string(),
119
+ state_abbr: z.string().nullable(),
120
+ name: z.string(),
121
+ address1: z.string().nullable(),
122
+ city: z.string().nullable(),
123
+ zipcode: z.string().nullable(),
124
+ country_iso: z.string().nullable(),
125
+ country_name: z.string().nullable(),
126
+ state_text: z.string().nullable()
127
+ });
128
+
129
+ // src/zod/generated/StoreShipment.ts
130
+ var StoreShipmentSchema = z.object({
131
+ id: z.string(),
132
+ number: z.string(),
133
+ state: z.string(),
134
+ tracking: z.string().nullable(),
135
+ tracking_url: z.string().nullable(),
136
+ cost: z.string(),
137
+ display_cost: z.string(),
138
+ shipped_at: z.string().nullable(),
139
+ created_at: z.string(),
140
+ updated_at: z.string(),
141
+ shipping_method: StoreShippingMethodSchema,
142
+ stock_location: StoreStockLocationSchema,
143
+ shipping_rates: z.array(StoreShippingRateSchema)
144
+ });
145
+
146
+ // src/zod/generated/AdminOrder.ts
147
+ var AdminOrderSchema = z.object({
148
+ id: z.string(),
149
+ number: z.string(),
150
+ state: z.string(),
151
+ token: z.string(),
152
+ email: z.string().nullable(),
153
+ special_instructions: z.string().nullable(),
154
+ currency: z.string(),
155
+ item_count: z.number(),
156
+ shipment_state: z.string().nullable(),
157
+ payment_state: z.string().nullable(),
158
+ item_total: z.string(),
159
+ display_item_total: z.string(),
160
+ ship_total: z.string(),
161
+ display_ship_total: z.string(),
162
+ adjustment_total: z.string(),
163
+ display_adjustment_total: z.string(),
164
+ promo_total: z.string(),
165
+ display_promo_total: z.string(),
166
+ tax_total: z.string(),
167
+ display_tax_total: z.string(),
168
+ included_tax_total: z.string(),
169
+ display_included_tax_total: z.string(),
170
+ additional_tax_total: z.string(),
171
+ display_additional_tax_total: z.string(),
172
+ total: z.string(),
173
+ display_total: z.string(),
174
+ completed_at: z.string().nullable(),
175
+ created_at: z.string(),
176
+ updated_at: z.string(),
177
+ order_promotions: z.array(StoreOrderPromotionSchema).optional(),
178
+ line_items: z.array(StoreLineItemSchema).optional(),
179
+ shipments: z.array(StoreShipmentSchema).optional(),
180
+ payments: z.array(StorePaymentSchema).optional(),
181
+ bill_address: StoreAddressSchema.optional(),
182
+ ship_address: StoreAddressSchema.optional(),
183
+ payment_methods: z.array(StorePaymentMethodSchema),
184
+ channel: z.string().nullable(),
185
+ last_ip_address: z.string().nullable(),
186
+ considered_risky: z.boolean(),
187
+ confirmation_delivered: z.boolean(),
188
+ store_owner_notification_delivered: z.boolean(),
189
+ internal_note: z.string().nullable(),
190
+ approver_id: z.string().nullable(),
191
+ canceled_at: z.string().nullable(),
192
+ approved_at: z.string().nullable(),
193
+ canceler_id: z.string().nullable(),
194
+ created_by_id: z.string().nullable(),
195
+ user: z.lazy(() => AdminCustomerSchema).optional()
196
+ });
197
+
198
+ // src/zod/generated/AdminCustomer.ts
199
+ var AdminCustomerSchema = z.object({
200
+ id: z.string(),
201
+ email: z.string(),
202
+ first_name: z.string().nullable(),
203
+ last_name: z.string().nullable(),
204
+ created_at: z.string(),
205
+ updated_at: z.string(),
206
+ addresses: z.array(StoreAddressSchema),
207
+ default_billing_address: StoreAddressSchema,
208
+ default_shipping_address: StoreAddressSchema,
209
+ phone: z.string().nullable(),
210
+ login: z.string().nullable(),
211
+ accepts_email_marketing: z.boolean(),
212
+ last_sign_in_at: z.string().nullable(),
213
+ current_sign_in_at: z.string().nullable(),
214
+ sign_in_count: z.number(),
215
+ failed_attempts: z.number(),
216
+ last_sign_in_ip: z.string().nullable(),
217
+ current_sign_in_ip: z.string().nullable(),
218
+ orders: z.array(z.lazy(() => AdminOrderSchema)).optional()
219
+ });
220
+ var AdminMetafieldSchema = z.object({
221
+ id: z.string(),
222
+ name: z.string(),
223
+ type: z.string(),
224
+ key: z.string(),
225
+ value: z.any(),
226
+ display_on: z.string()
227
+ });
228
+ var AdminPriceSchema = z.object({
229
+ id: z.string(),
230
+ amount: z.string().nullable(),
231
+ amount_in_cents: z.number().nullable(),
232
+ compare_at_amount: z.string().nullable(),
233
+ compare_at_amount_in_cents: z.number().nullable(),
234
+ currency: z.string().nullable(),
235
+ display_amount: z.string().nullable(),
236
+ display_compare_at_amount: z.string().nullable(),
237
+ price_list_id: z.string().nullable(),
238
+ variant_id: z.string().nullable(),
239
+ created_at: z.string(),
240
+ updated_at: z.string()
241
+ });
242
+ var StoreImageSchema = z.object({
243
+ id: z.string(),
244
+ viewable_id: z.string(),
245
+ position: z.number(),
246
+ alt: z.string().nullable(),
247
+ viewable_type: z.string(),
248
+ created_at: z.string(),
249
+ updated_at: z.string(),
250
+ original_url: z.string().nullable(),
251
+ mini_url: z.string().nullable(),
252
+ small_url: z.string().nullable(),
253
+ medium_url: z.string().nullable(),
254
+ large_url: z.string().nullable(),
255
+ xlarge_url: z.string().nullable(),
256
+ og_image_url: z.string().nullable()
257
+ });
258
+ var StorePriceSchema = z.object({
259
+ id: z.string(),
260
+ amount: z.string().nullable(),
261
+ amount_in_cents: z.number().nullable(),
262
+ compare_at_amount: z.string().nullable(),
263
+ compare_at_amount_in_cents: z.number().nullable(),
264
+ currency: z.string().nullable(),
265
+ display_amount: z.string().nullable(),
266
+ display_compare_at_amount: z.string().nullable(),
267
+ price_list_id: z.string().nullable()
268
+ });
269
+
270
+ // src/zod/generated/AdminVariant.ts
271
+ var AdminVariantSchema = z.object({
272
+ id: z.string(),
273
+ product_id: z.string(),
274
+ sku: z.string().nullable(),
275
+ is_master: z.boolean(),
276
+ options_text: z.string(),
277
+ track_inventory: z.boolean(),
278
+ image_count: z.number(),
279
+ created_at: z.string(),
280
+ updated_at: z.string(),
281
+ thumbnail: z.string().nullable(),
282
+ purchasable: z.boolean(),
283
+ in_stock: z.boolean(),
284
+ backorderable: z.boolean(),
285
+ weight: z.number().nullable(),
286
+ height: z.number().nullable(),
287
+ width: z.number().nullable(),
288
+ depth: z.number().nullable(),
289
+ price: StorePriceSchema,
290
+ original_price: StorePriceSchema.nullable(),
291
+ images: z.array(StoreImageSchema).optional(),
292
+ option_values: z.array(StoreOptionValueSchema),
293
+ metafields: z.array(AdminMetafieldSchema).optional(),
294
+ position: z.number(),
295
+ tax_category_id: z.string().nullable(),
296
+ deleted_at: z.string().nullable(),
297
+ cost_price: z.number().nullable(),
298
+ cost_currency: z.string().nullable(),
299
+ total_on_hand: z.number().nullable(),
300
+ prices: z.array(AdminPriceSchema).optional()
301
+ });
302
+ var StoreOptionTypeSchema = z.object({
303
+ id: z.string(),
304
+ name: z.string(),
305
+ presentation: z.string(),
306
+ position: z.number()
307
+ });
308
+ var StoreMetafieldSchema = z.object({
309
+ id: z.string(),
310
+ name: z.string(),
311
+ type: z.string(),
312
+ key: z.string(),
313
+ value: z.any()
314
+ });
315
+
316
+ // src/zod/generated/StoreTaxon.ts
317
+ var StoreTaxonSchema = z.object({
318
+ id: z.string(),
319
+ name: z.string(),
320
+ permalink: z.string(),
321
+ position: z.number(),
322
+ depth: z.number(),
323
+ meta_title: z.string().nullable(),
324
+ meta_description: z.string().nullable(),
325
+ meta_keywords: z.string().nullable(),
326
+ children_count: z.number(),
327
+ created_at: z.string(),
328
+ updated_at: z.string(),
329
+ parent_id: z.string().nullable(),
330
+ taxonomy_id: z.string(),
331
+ description: z.string(),
332
+ description_html: z.string(),
333
+ image_url: z.string().nullable(),
334
+ square_image_url: z.string().nullable(),
335
+ is_root: z.boolean(),
336
+ is_child: z.boolean(),
337
+ is_leaf: z.boolean(),
338
+ parent: z.lazy(() => StoreTaxonSchema).optional(),
339
+ children: z.array(z.lazy(() => StoreTaxonSchema)).optional(),
340
+ ancestors: z.array(z.lazy(() => StoreTaxonSchema)).optional(),
341
+ metafields: z.array(StoreMetafieldSchema).optional()
342
+ });
343
+
344
+ // src/zod/generated/AdminProduct.ts
345
+ var AdminProductSchema = z.object({
346
+ id: z.string(),
347
+ name: z.string(),
348
+ description: z.string().nullable(),
349
+ slug: z.string(),
350
+ meta_description: z.string().nullable(),
351
+ meta_keywords: z.string().nullable(),
352
+ variant_count: z.number(),
353
+ available_on: z.string().nullable(),
354
+ created_at: z.string(),
355
+ updated_at: z.string(),
356
+ purchasable: z.boolean(),
357
+ in_stock: z.boolean(),
358
+ backorderable: z.boolean(),
359
+ available: z.boolean(),
360
+ default_variant_id: z.string(),
361
+ thumbnail_url: z.string().nullable(),
362
+ tags: z.array(z.string()),
363
+ price: StorePriceSchema,
364
+ original_price: StorePriceSchema.nullable(),
365
+ images: z.array(StoreImageSchema).optional(),
366
+ variants: z.array(AdminVariantSchema).optional(),
367
+ default_variant: AdminVariantSchema.optional(),
368
+ master_variant: AdminVariantSchema.optional(),
369
+ option_types: z.array(StoreOptionTypeSchema).optional(),
370
+ taxons: z.array(z.lazy(() => StoreTaxonSchema)).optional(),
371
+ metafields: z.array(AdminMetafieldSchema).optional(),
372
+ status: z.string(),
373
+ make_active_at: z.string().nullable(),
374
+ discontinue_on: z.string().nullable(),
375
+ deleted_at: z.string().nullable(),
376
+ cost_price: z.number().nullable(),
377
+ cost_currency: z.string().nullable()
378
+ });
379
+ var AdminTaxonSchema = z.object({
380
+ id: z.string(),
381
+ name: z.string(),
382
+ permalink: z.string(),
383
+ position: z.number(),
384
+ depth: z.number(),
385
+ meta_title: z.string().nullable(),
386
+ meta_description: z.string().nullable(),
387
+ meta_keywords: z.string().nullable(),
388
+ children_count: z.number(),
389
+ created_at: z.string(),
390
+ updated_at: z.string(),
391
+ parent_id: z.string().nullable(),
392
+ taxonomy_id: z.string(),
393
+ description: z.string(),
394
+ description_html: z.string(),
395
+ image_url: z.string().nullable(),
396
+ square_image_url: z.string().nullable(),
397
+ is_root: z.boolean(),
398
+ is_child: z.boolean(),
399
+ is_leaf: z.boolean(),
400
+ parent: z.lazy(() => StoreTaxonSchema).optional(),
401
+ children: z.array(z.lazy(() => StoreTaxonSchema)).optional(),
402
+ ancestors: z.array(z.lazy(() => StoreTaxonSchema)).optional(),
403
+ metafields: z.array(AdminMetafieldSchema).optional(),
404
+ lft: z.number(),
405
+ rgt: z.number()
406
+ });
407
+ var AdminTaxonomySchema = z.object({
408
+ id: z.string(),
409
+ name: z.string(),
410
+ position: z.number(),
411
+ created_at: z.string(),
412
+ updated_at: z.string(),
413
+ root_id: z.string().nullable(),
414
+ root: z.lazy(() => StoreTaxonSchema).optional(),
415
+ taxons: z.array(z.lazy(() => StoreTaxonSchema)).optional(),
416
+ metafields: z.array(AdminMetafieldSchema).optional()
417
+ });
418
+ var StoreBaseSchema = z.object({
419
+ id: z.string()
420
+ });
421
+ var StoreStateSchema = z.object({
422
+ abbr: z.string(),
423
+ name: z.string()
424
+ });
425
+
426
+ // src/zod/generated/StoreCountry.ts
427
+ var StoreCountrySchema = z.object({
428
+ iso: z.string(),
429
+ iso3: z.string(),
430
+ name: z.string(),
431
+ states_required: z.boolean(),
432
+ zipcode_required: z.boolean(),
433
+ default_currency: z.string().nullable(),
434
+ default_locale: z.string().nullable(),
435
+ states: z.array(StoreStateSchema).optional()
436
+ });
437
+ var StoreCreditCardSchema = z.object({
438
+ id: z.string(),
439
+ cc_type: z.string(),
440
+ last_digits: z.string(),
441
+ month: z.number(),
442
+ year: z.number(),
443
+ name: z.string().nullable(),
444
+ default: z.boolean()
445
+ });
446
+ var StoreCustomerSchema = z.object({
447
+ id: z.string(),
448
+ email: z.string(),
449
+ first_name: z.string().nullable(),
450
+ last_name: z.string().nullable(),
451
+ created_at: z.string(),
452
+ updated_at: z.string(),
453
+ addresses: z.array(StoreAddressSchema),
454
+ default_billing_address: StoreAddressSchema,
455
+ default_shipping_address: StoreAddressSchema
456
+ });
457
+ var StoreGiftCardSchema = z.object({
458
+ id: z.string(),
459
+ code: z.string(),
460
+ state: z.string(),
461
+ currency: z.string(),
462
+ amount: z.number(),
463
+ amount_used: z.number(),
464
+ amount_authorized: z.number(),
465
+ amount_remaining: z.number(),
466
+ display_amount: z.string(),
467
+ display_amount_used: z.string(),
468
+ display_amount_remaining: z.string(),
469
+ expires_at: z.string().nullable(),
470
+ redeemed_at: z.string().nullable(),
471
+ expired: z.boolean(),
472
+ active: z.boolean(),
473
+ created_at: z.string(),
474
+ updated_at: z.string()
475
+ });
476
+ var StoreOrderSchema = z.object({
477
+ id: z.string(),
478
+ number: z.string(),
479
+ state: z.string(),
480
+ token: z.string(),
481
+ email: z.string().nullable(),
482
+ special_instructions: z.string().nullable(),
483
+ currency: z.string(),
484
+ item_count: z.number(),
485
+ shipment_state: z.string().nullable(),
486
+ payment_state: z.string().nullable(),
487
+ item_total: z.string(),
488
+ display_item_total: z.string(),
489
+ ship_total: z.string(),
490
+ display_ship_total: z.string(),
491
+ adjustment_total: z.string(),
492
+ display_adjustment_total: z.string(),
493
+ promo_total: z.string(),
494
+ display_promo_total: z.string(),
495
+ tax_total: z.string(),
496
+ display_tax_total: z.string(),
497
+ included_tax_total: z.string(),
498
+ display_included_tax_total: z.string(),
499
+ additional_tax_total: z.string(),
500
+ display_additional_tax_total: z.string(),
501
+ total: z.string(),
502
+ display_total: z.string(),
503
+ completed_at: z.string().nullable(),
504
+ created_at: z.string(),
505
+ updated_at: z.string(),
506
+ order_promotions: z.array(StoreOrderPromotionSchema).optional(),
507
+ line_items: z.array(StoreLineItemSchema).optional(),
508
+ shipments: z.array(StoreShipmentSchema).optional(),
509
+ payments: z.array(StorePaymentSchema).optional(),
510
+ bill_address: StoreAddressSchema.optional(),
511
+ ship_address: StoreAddressSchema.optional(),
512
+ payment_methods: z.array(StorePaymentMethodSchema)
513
+ });
514
+ var StoreVariantSchema = z.object({
515
+ id: z.string(),
516
+ product_id: z.string(),
517
+ sku: z.string().nullable(),
518
+ is_master: z.boolean(),
519
+ options_text: z.string(),
520
+ track_inventory: z.boolean(),
521
+ image_count: z.number(),
522
+ created_at: z.string(),
523
+ updated_at: z.string(),
524
+ thumbnail: z.string().nullable(),
525
+ purchasable: z.boolean(),
526
+ in_stock: z.boolean(),
527
+ backorderable: z.boolean(),
528
+ weight: z.number().nullable(),
529
+ height: z.number().nullable(),
530
+ width: z.number().nullable(),
531
+ depth: z.number().nullable(),
532
+ price: StorePriceSchema,
533
+ original_price: StorePriceSchema.nullable(),
534
+ images: z.array(StoreImageSchema).optional(),
535
+ option_values: z.array(StoreOptionValueSchema),
536
+ metafields: z.array(StoreMetafieldSchema).optional()
537
+ });
538
+
539
+ // src/zod/generated/StoreProduct.ts
540
+ var StoreProductSchema = z.object({
541
+ id: z.string(),
542
+ name: z.string(),
543
+ description: z.string().nullable(),
544
+ slug: z.string(),
545
+ meta_description: z.string().nullable(),
546
+ meta_keywords: z.string().nullable(),
547
+ variant_count: z.number(),
548
+ available_on: z.string().nullable(),
549
+ created_at: z.string(),
550
+ updated_at: z.string(),
551
+ purchasable: z.boolean(),
552
+ in_stock: z.boolean(),
553
+ backorderable: z.boolean(),
554
+ available: z.boolean(),
555
+ default_variant_id: z.string(),
556
+ thumbnail_url: z.string().nullable(),
557
+ tags: z.array(z.string()),
558
+ price: StorePriceSchema,
559
+ original_price: StorePriceSchema.nullable(),
560
+ images: z.array(StoreImageSchema).optional(),
561
+ variants: z.array(StoreVariantSchema).optional(),
562
+ default_variant: StoreVariantSchema.optional(),
563
+ master_variant: StoreVariantSchema.optional(),
564
+ option_types: z.array(StoreOptionTypeSchema).optional(),
565
+ taxons: z.array(z.lazy(() => StoreTaxonSchema)).optional(),
566
+ metafields: z.array(StoreMetafieldSchema).optional()
567
+ });
568
+ var StoreStoreSchema = z.object({
569
+ id: z.string(),
570
+ name: z.string(),
571
+ url: z.string(),
572
+ meta_description: z.string().nullable(),
573
+ meta_keywords: z.string().nullable(),
574
+ seo_title: z.string().nullable(),
575
+ default_currency: z.string(),
576
+ code: z.string(),
577
+ default: z.boolean(),
578
+ facebook: z.string().nullable(),
579
+ twitter: z.string().nullable(),
580
+ instagram: z.string().nullable(),
581
+ customer_support_email: z.string().nullable(),
582
+ default_locale: z.string(),
583
+ created_at: z.string(),
584
+ updated_at: z.string(),
585
+ default_country_iso: z.string().nullable(),
586
+ supported_currencies: z.array(z.string()),
587
+ favicon_image_url: z.string().nullable(),
588
+ logo_image_url: z.string().nullable(),
589
+ social_image_url: z.string().nullable(),
590
+ supported_locales: z.array(z.string()),
591
+ payment_methods: z.array(StorePaymentMethodSchema)
592
+ });
593
+ var StoreTaxonomySchema = z.object({
594
+ id: z.string(),
595
+ name: z.string(),
596
+ position: z.number(),
597
+ created_at: z.string(),
598
+ updated_at: z.string(),
599
+ root_id: z.string().nullable(),
600
+ root: z.lazy(() => StoreTaxonSchema).optional(),
601
+ taxons: z.array(z.lazy(() => StoreTaxonSchema)).optional(),
602
+ metafields: z.array(StoreMetafieldSchema).optional()
603
+ });
604
+ var StoreWishedItemSchema = z.object({
605
+ id: z.string(),
606
+ variant_id: z.string(),
607
+ wishlist_id: z.string(),
608
+ quantity: z.number(),
609
+ created_at: z.string(),
610
+ updated_at: z.string(),
611
+ variant: StoreVariantSchema
612
+ });
613
+ var StoreWishlistSchema = z.object({
614
+ id: z.string(),
615
+ name: z.string(),
616
+ token: z.string(),
617
+ created_at: z.string(),
618
+ updated_at: z.string(),
619
+ is_default: z.boolean(),
620
+ is_private: z.boolean(),
621
+ items: z.array(StoreWishedItemSchema).optional()
622
+ });
623
+
624
+ export { AdminCustomerSchema, AdminMetafieldSchema, AdminOrderSchema, AdminPriceSchema, AdminProductSchema, AdminTaxonSchema, AdminTaxonomySchema, AdminVariantSchema, StoreAddressSchema, StoreBaseSchema, StoreCountrySchema, StoreCreditCardSchema, StoreCustomerSchema, StoreDigitalLinkSchema, StoreGiftCardSchema, StoreImageSchema, StoreLineItemSchema, StoreMetafieldSchema, StoreOptionTypeSchema, StoreOptionValueSchema, StoreOrderPromotionSchema, StoreOrderSchema, StorePaymentMethodSchema, StorePaymentSchema, StorePriceSchema, StoreProductSchema, StoreShipmentSchema, StoreShippingMethodSchema, StoreShippingRateSchema, StoreStateSchema, StoreStockLocationSchema, StoreStoreSchema, StoreTaxonSchema, StoreTaxonomySchema, StoreVariantSchema, StoreWishedItemSchema, StoreWishlistSchema };
625
+ //# sourceMappingURL=index.js.map
626
+ //# sourceMappingURL=index.js.map