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