@spree/sdk 0.1.0

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,786 @@
1
+ type StoreAddress = {
2
+ id: string;
3
+ firstname: string | null;
4
+ lastname: string | null;
5
+ full_name: string;
6
+ address1: string | null;
7
+ address2: string | null;
8
+ city: string | null;
9
+ zipcode: string | null;
10
+ phone: string | null;
11
+ company: string | null;
12
+ country_name: string;
13
+ country_iso: string;
14
+ state_text: string | null;
15
+ state_abbr: string | null;
16
+ state_name: string | null;
17
+ };
18
+
19
+ type AdminMetafield = {
20
+ id: string;
21
+ name: string;
22
+ type: string;
23
+ key: string;
24
+ value: any;
25
+ display_on: string;
26
+ };
27
+
28
+ type AdminOrder = {
29
+ id: string;
30
+ number: string;
31
+ state: string;
32
+ token: string;
33
+ email: string | null;
34
+ special_instructions: string | null;
35
+ currency: string;
36
+ item_count: number;
37
+ shipment_state: string | null;
38
+ payment_state: string | null;
39
+ item_total: string;
40
+ display_item_total: string;
41
+ ship_total: string;
42
+ display_ship_total: string;
43
+ adjustment_total: string;
44
+ display_adjustment_total: string;
45
+ promo_total: string;
46
+ display_promo_total: string;
47
+ tax_total: string;
48
+ display_tax_total: string;
49
+ included_tax_total: string;
50
+ display_included_tax_total: string;
51
+ additional_tax_total: string;
52
+ display_additional_tax_total: string;
53
+ total: string;
54
+ display_total: string;
55
+ completed_at: string | null;
56
+ created_at: string;
57
+ updated_at: string;
58
+ order_promotions?: Array<StoreOrderPromotion>;
59
+ line_items?: Array<StoreLineItem>;
60
+ shipments?: Array<StoreShipment>;
61
+ payments?: Array<StorePayment>;
62
+ bill_address?: StoreAddress;
63
+ ship_address?: StoreAddress;
64
+ payment_methods: Array<StorePaymentMethod>;
65
+ channel: string | null;
66
+ last_ip_address: string | null;
67
+ considered_risky: boolean;
68
+ confirmation_delivered: boolean;
69
+ store_owner_notification_delivered: boolean;
70
+ internal_note: string | null;
71
+ approver_id: string | null;
72
+ canceled_at: string | null;
73
+ approved_at: string | null;
74
+ canceler_id: string | null;
75
+ created_by_id: string | null;
76
+ user?: AdminUser;
77
+ };
78
+
79
+ type AdminPrice = {
80
+ id: string;
81
+ amount: string | null;
82
+ amount_in_cents: number | null;
83
+ compare_at_amount: string | null;
84
+ compare_at_amount_in_cents: number | null;
85
+ currency: string | null;
86
+ display_amount: string | null;
87
+ display_compare_at_amount: string | null;
88
+ price_list_id: string | null;
89
+ variant_id: string | null;
90
+ created_at: string;
91
+ updated_at: string;
92
+ };
93
+
94
+ type AdminProduct = {
95
+ id: string;
96
+ name: string;
97
+ description: string | null;
98
+ slug: string;
99
+ meta_description: string | null;
100
+ meta_keywords: string | null;
101
+ variant_count: number;
102
+ available_on: string | null;
103
+ created_at: string;
104
+ updated_at: string;
105
+ purchasable: boolean;
106
+ in_stock: boolean;
107
+ backorderable: boolean;
108
+ available: boolean;
109
+ default_variant_id: string;
110
+ thumbnail_url: string | null;
111
+ tags: Array<string>;
112
+ price: StorePrice;
113
+ original_price: StorePrice | null;
114
+ images?: Array<StoreImage>;
115
+ variants?: Array<AdminVariant>;
116
+ default_variant?: AdminVariant;
117
+ master_variant?: AdminVariant;
118
+ option_types?: Array<StoreOptionType>;
119
+ taxons?: Array<StoreTaxon>;
120
+ metafields?: Array<AdminMetafield>;
121
+ status: string;
122
+ make_active_at: string | null;
123
+ discontinue_on: string | null;
124
+ deleted_at: string | null;
125
+ cost_price: number | null;
126
+ cost_currency: string | null;
127
+ };
128
+
129
+ type AdminTaxon = {
130
+ id: string;
131
+ name: string;
132
+ permalink: string;
133
+ position: number;
134
+ depth: number;
135
+ meta_title: string | null;
136
+ meta_description: string | null;
137
+ meta_keywords: string | null;
138
+ children_count: number;
139
+ created_at: string;
140
+ updated_at: string;
141
+ parent_id: string | null;
142
+ taxonomy_id: string;
143
+ description: string;
144
+ description_html: string;
145
+ image_url: string | null;
146
+ square_image_url: string | null;
147
+ is_root: boolean;
148
+ is_child: boolean;
149
+ is_leaf: boolean;
150
+ parent?: StoreTaxon;
151
+ children?: Array<StoreTaxon>;
152
+ ancestors?: Array<StoreTaxon>;
153
+ metafields?: Array<AdminMetafield>;
154
+ lft: number;
155
+ rgt: number;
156
+ };
157
+
158
+ type AdminTaxonomy = {
159
+ id: string;
160
+ name: string;
161
+ position: number;
162
+ created_at: string;
163
+ updated_at: string;
164
+ root_id: string | null;
165
+ root?: StoreTaxon;
166
+ taxons?: Array<StoreTaxon>;
167
+ metafields?: Array<AdminMetafield>;
168
+ };
169
+
170
+ type AdminUser = {
171
+ id: string;
172
+ email: string;
173
+ first_name: string | null;
174
+ last_name: string | null;
175
+ created_at: string;
176
+ updated_at: string;
177
+ addresses: Array<StoreAddress>;
178
+ default_billing_address: StoreAddress;
179
+ default_shipping_address: StoreAddress;
180
+ phone: string | null;
181
+ login: string | null;
182
+ accepts_email_marketing: boolean;
183
+ last_sign_in_at: string | null;
184
+ current_sign_in_at: string | null;
185
+ sign_in_count: number;
186
+ failed_attempts: number;
187
+ last_sign_in_ip: string | null;
188
+ current_sign_in_ip: string | null;
189
+ orders?: Array<AdminOrder>;
190
+ };
191
+
192
+ type AdminVariant = {
193
+ id: string;
194
+ product_id: string;
195
+ sku: string | null;
196
+ is_master: boolean;
197
+ options_text: string;
198
+ track_inventory: boolean;
199
+ image_count: number;
200
+ created_at: string;
201
+ updated_at: string;
202
+ thumbnail: string | null;
203
+ purchasable: boolean;
204
+ in_stock: boolean;
205
+ backorderable: boolean;
206
+ weight: number | null;
207
+ height: number | null;
208
+ width: number | null;
209
+ depth: number | null;
210
+ price: StorePrice;
211
+ original_price: StorePrice | null;
212
+ images?: Array<StoreImage>;
213
+ option_values: Array<StoreOptionValue>;
214
+ metafields?: Array<AdminMetafield>;
215
+ position: number;
216
+ tax_category_id: string | null;
217
+ deleted_at: string | null;
218
+ cost_price: number | null;
219
+ cost_currency: string | null;
220
+ total_on_hand: number | null;
221
+ prices?: Array<AdminPrice>;
222
+ };
223
+
224
+ type StoreBase = {
225
+ id: string;
226
+ };
227
+
228
+ type StoreCountry = {
229
+ iso: string;
230
+ iso3: string;
231
+ name: string;
232
+ states_required: boolean;
233
+ zipcode_required: boolean;
234
+ default_currency: string | null;
235
+ default_locale: string | null;
236
+ states?: Array<StoreState>;
237
+ };
238
+
239
+ type StoreCreditCard = {
240
+ id: string;
241
+ cc_type: string;
242
+ last_digits: string;
243
+ month: number;
244
+ year: number;
245
+ name: string | null;
246
+ default: boolean;
247
+ };
248
+
249
+ type StoreDigitalLink = {
250
+ id: string;
251
+ access_counter: number;
252
+ filename: string;
253
+ content_type: string;
254
+ created_at: string;
255
+ updated_at: string;
256
+ authorizable: boolean;
257
+ expired: boolean;
258
+ access_limit_exceeded: boolean;
259
+ };
260
+
261
+ type StoreGiftCard = {
262
+ id: string;
263
+ code: string;
264
+ state: string;
265
+ currency: string;
266
+ amount: number;
267
+ amount_used: number;
268
+ amount_authorized: number;
269
+ amount_remaining: number;
270
+ display_amount: string;
271
+ display_amount_used: string;
272
+ display_amount_remaining: string;
273
+ expires_at: string | null;
274
+ redeemed_at: string | null;
275
+ expired: boolean;
276
+ active: boolean;
277
+ created_at: string;
278
+ updated_at: string;
279
+ };
280
+
281
+ type StoreImage = {
282
+ id: string;
283
+ viewable_id: string;
284
+ position: number;
285
+ alt: string | null;
286
+ viewable_type: string;
287
+ created_at: string;
288
+ updated_at: string;
289
+ original_url: string | null;
290
+ mini_url: string | null;
291
+ small_url: string | null;
292
+ medium_url: string | null;
293
+ large_url: string | null;
294
+ xlarge_url: string | null;
295
+ og_image_url: string | null;
296
+ };
297
+
298
+ type StoreLineItem = {
299
+ id: string;
300
+ variant_id: string;
301
+ quantity: number;
302
+ name: string;
303
+ slug: string;
304
+ options_text: string;
305
+ price: string;
306
+ display_price: string;
307
+ total: string;
308
+ display_total: string;
309
+ adjustment_total: string;
310
+ display_adjustment_total: string;
311
+ additional_tax_total: string;
312
+ display_additional_tax_total: string;
313
+ included_tax_total: string;
314
+ display_included_tax_total: string;
315
+ promo_total: string;
316
+ display_promo_total: string;
317
+ pre_tax_amount: string;
318
+ display_pre_tax_amount: string;
319
+ discounted_amount: string;
320
+ display_discounted_amount: string;
321
+ display_compare_at_amount: string | null;
322
+ created_at: string;
323
+ updated_at: string;
324
+ compare_at_amount: string | null;
325
+ thumbnail_url: string | null;
326
+ option_values: Array<StoreOptionValue>;
327
+ };
328
+
329
+ type StoreMetafield = {
330
+ id: string;
331
+ name: string;
332
+ type: string;
333
+ key: string;
334
+ value: any;
335
+ };
336
+
337
+ type StoreOptionType = {
338
+ id: string;
339
+ name: string;
340
+ presentation: string;
341
+ position: number;
342
+ };
343
+
344
+ type StoreOptionValue = {
345
+ id: string;
346
+ option_type_id: string;
347
+ name: string;
348
+ presentation: string;
349
+ position: number;
350
+ option_type_name: string;
351
+ option_type_presentation: string;
352
+ };
353
+
354
+ type StoreOrderPromotion = {
355
+ id: string;
356
+ promotion_id: string;
357
+ name: string;
358
+ description: string | null;
359
+ code: string | null;
360
+ amount: string;
361
+ display_amount: string;
362
+ };
363
+
364
+ type StoreOrder = {
365
+ id: string;
366
+ number: string;
367
+ state: string;
368
+ token: string;
369
+ email: string | null;
370
+ special_instructions: string | null;
371
+ currency: string;
372
+ item_count: number;
373
+ shipment_state: string | null;
374
+ payment_state: string | null;
375
+ item_total: string;
376
+ display_item_total: string;
377
+ ship_total: string;
378
+ display_ship_total: string;
379
+ adjustment_total: string;
380
+ display_adjustment_total: string;
381
+ promo_total: string;
382
+ display_promo_total: string;
383
+ tax_total: string;
384
+ display_tax_total: string;
385
+ included_tax_total: string;
386
+ display_included_tax_total: string;
387
+ additional_tax_total: string;
388
+ display_additional_tax_total: string;
389
+ total: string;
390
+ display_total: string;
391
+ completed_at: string | null;
392
+ created_at: string;
393
+ updated_at: string;
394
+ order_promotions?: Array<StoreOrderPromotion>;
395
+ line_items?: Array<StoreLineItem>;
396
+ shipments?: Array<StoreShipment>;
397
+ payments?: Array<StorePayment>;
398
+ bill_address?: StoreAddress;
399
+ ship_address?: StoreAddress;
400
+ payment_methods: Array<StorePaymentMethod>;
401
+ };
402
+
403
+ type StorePaymentMethod = {
404
+ id: string;
405
+ name: string;
406
+ description: string | null;
407
+ type: string;
408
+ };
409
+
410
+ type StorePayment = {
411
+ id: string;
412
+ payment_method_id: string;
413
+ state: string;
414
+ response_code: string | null;
415
+ number: string;
416
+ amount: string;
417
+ display_amount: string;
418
+ created_at: string;
419
+ updated_at: string;
420
+ payment_method: StorePaymentMethod;
421
+ };
422
+
423
+ type StorePrice = {
424
+ id: string;
425
+ amount: string | null;
426
+ amount_in_cents: number | null;
427
+ compare_at_amount: string | null;
428
+ compare_at_amount_in_cents: number | null;
429
+ currency: string | null;
430
+ display_amount: string | null;
431
+ display_compare_at_amount: string | null;
432
+ price_list_id: string | null;
433
+ };
434
+
435
+ type StoreProduct = {
436
+ id: string;
437
+ name: string;
438
+ description: string | null;
439
+ slug: string;
440
+ meta_description: string | null;
441
+ meta_keywords: string | null;
442
+ variant_count: number;
443
+ available_on: string | null;
444
+ created_at: string;
445
+ updated_at: string;
446
+ purchasable: boolean;
447
+ in_stock: boolean;
448
+ backorderable: boolean;
449
+ available: boolean;
450
+ default_variant_id: string;
451
+ thumbnail_url: string | null;
452
+ tags: Array<string>;
453
+ price: StorePrice;
454
+ original_price: StorePrice | null;
455
+ images?: Array<StoreImage>;
456
+ variants?: Array<StoreVariant>;
457
+ default_variant?: StoreVariant;
458
+ master_variant?: StoreVariant;
459
+ option_types?: Array<StoreOptionType>;
460
+ taxons?: Array<StoreTaxon>;
461
+ metafields?: Array<StoreMetafield>;
462
+ };
463
+
464
+ type StoreShipment = {
465
+ id: string;
466
+ number: string;
467
+ state: string;
468
+ tracking: string | null;
469
+ tracking_url: string | null;
470
+ cost: string;
471
+ display_cost: string;
472
+ shipped_at: string | null;
473
+ created_at: string;
474
+ updated_at: string;
475
+ shipping_method: StoreShippingMethod;
476
+ stock_location: StoreStockLocation;
477
+ shipping_rates: Array<StoreShippingRate>;
478
+ };
479
+
480
+ type StoreShippingMethod = {
481
+ id: string;
482
+ name: string;
483
+ code: string | null;
484
+ };
485
+
486
+ type StoreShippingRate = {
487
+ id: string;
488
+ shipping_method_id: string;
489
+ name: string;
490
+ selected: boolean;
491
+ cost: number;
492
+ display_cost: string;
493
+ shipping_method: StoreShippingMethod;
494
+ };
495
+
496
+ type StoreState = {
497
+ abbr: string;
498
+ name: string;
499
+ };
500
+
501
+ type StoreStockLocation = {
502
+ id: string;
503
+ state_abbr: string | null;
504
+ name: string;
505
+ address1: string | null;
506
+ city: string | null;
507
+ zipcode: string | null;
508
+ country_iso: string | null;
509
+ country_name: string | null;
510
+ state_text: string | null;
511
+ };
512
+
513
+ type StoreStore = {
514
+ id: string;
515
+ name: string;
516
+ url: string;
517
+ meta_description: string | null;
518
+ meta_keywords: string | null;
519
+ seo_title: string | null;
520
+ default_currency: string;
521
+ code: string;
522
+ default: boolean;
523
+ facebook: string | null;
524
+ twitter: string | null;
525
+ instagram: string | null;
526
+ customer_support_email: string | null;
527
+ default_locale: string;
528
+ created_at: string;
529
+ updated_at: string;
530
+ default_country_iso: string | null;
531
+ supported_currencies: Array<string>;
532
+ favicon_image_url: string | null;
533
+ logo_image_url: string | null;
534
+ social_image_url: string | null;
535
+ supported_locales: Array<string>;
536
+ payment_methods: Array<StorePaymentMethod>;
537
+ };
538
+
539
+ type StoreTaxon = {
540
+ id: string;
541
+ name: string;
542
+ permalink: string;
543
+ position: number;
544
+ depth: number;
545
+ meta_title: string | null;
546
+ meta_description: string | null;
547
+ meta_keywords: string | null;
548
+ children_count: number;
549
+ created_at: string;
550
+ updated_at: string;
551
+ parent_id: string | null;
552
+ taxonomy_id: string;
553
+ description: string;
554
+ description_html: string;
555
+ image_url: string | null;
556
+ square_image_url: string | null;
557
+ is_root: boolean;
558
+ is_child: boolean;
559
+ is_leaf: boolean;
560
+ parent?: StoreTaxon;
561
+ children?: Array<StoreTaxon>;
562
+ ancestors?: Array<StoreTaxon>;
563
+ metafields?: Array<StoreMetafield>;
564
+ };
565
+
566
+ type StoreTaxonomy = {
567
+ id: string;
568
+ name: string;
569
+ position: number;
570
+ created_at: string;
571
+ updated_at: string;
572
+ root_id: string | null;
573
+ root?: StoreTaxon;
574
+ taxons?: Array<StoreTaxon>;
575
+ metafields?: Array<StoreMetafield>;
576
+ };
577
+
578
+ type StoreUser = {
579
+ id: string;
580
+ email: string;
581
+ first_name: string | null;
582
+ last_name: string | null;
583
+ created_at: string;
584
+ updated_at: string;
585
+ addresses: Array<StoreAddress>;
586
+ default_billing_address: StoreAddress;
587
+ default_shipping_address: StoreAddress;
588
+ };
589
+
590
+ type StoreVariant = {
591
+ id: string;
592
+ product_id: string;
593
+ sku: string | null;
594
+ is_master: boolean;
595
+ options_text: string;
596
+ track_inventory: boolean;
597
+ image_count: number;
598
+ created_at: string;
599
+ updated_at: string;
600
+ thumbnail: string | null;
601
+ purchasable: boolean;
602
+ in_stock: boolean;
603
+ backorderable: boolean;
604
+ weight: number | null;
605
+ height: number | null;
606
+ width: number | null;
607
+ depth: number | null;
608
+ price: StorePrice;
609
+ original_price: StorePrice | null;
610
+ images?: Array<StoreImage>;
611
+ option_values: Array<StoreOptionValue>;
612
+ metafields?: Array<StoreMetafield>;
613
+ };
614
+
615
+ type StoreWishedItem = {
616
+ id: string;
617
+ variant_id: string;
618
+ wishlist_id: string;
619
+ quantity: number;
620
+ created_at: string;
621
+ updated_at: string;
622
+ variant: StoreVariant;
623
+ };
624
+
625
+ type StoreWishlist = {
626
+ id: string;
627
+ name: string;
628
+ token: string;
629
+ created_at: string;
630
+ updated_at: string;
631
+ is_default: boolean;
632
+ is_private: boolean;
633
+ items?: Array<StoreWishedItem>;
634
+ };
635
+
636
+ interface PaginationMeta {
637
+ page: number;
638
+ limit: number;
639
+ count: number;
640
+ pages: number;
641
+ }
642
+ interface PaginatedResponse<T> {
643
+ data: T[];
644
+ meta: PaginationMeta;
645
+ }
646
+ interface ErrorResponse {
647
+ error: {
648
+ code: string;
649
+ message: string;
650
+ details?: Record<string, string[]>;
651
+ };
652
+ }
653
+ interface AuthTokens {
654
+ token: string;
655
+ user: {
656
+ id: string;
657
+ email: string;
658
+ first_name: string | null;
659
+ last_name: string | null;
660
+ };
661
+ }
662
+ interface LoginCredentials {
663
+ email: string;
664
+ password: string;
665
+ }
666
+ interface RegisterParams {
667
+ email: string;
668
+ password: string;
669
+ password_confirmation: string;
670
+ first_name?: string;
671
+ last_name?: string;
672
+ }
673
+ interface ListParams {
674
+ page?: number;
675
+ per_page?: number;
676
+ includes?: string;
677
+ }
678
+ interface ProductListParams extends ListParams {
679
+ 'q[name_cont]'?: string;
680
+ 'q[price_gte]'?: number;
681
+ 'q[price_lte]'?: number;
682
+ 'q[taxons_id_eq]'?: string;
683
+ }
684
+ interface TaxonListParams extends ListParams {
685
+ 'q[taxonomy_id_eq]'?: string | number;
686
+ 'q[parent_id_eq]'?: string | number;
687
+ 'q[depth_eq]'?: number;
688
+ 'q[name_cont]'?: string;
689
+ }
690
+ interface OrderListParams extends ListParams {
691
+ 'q[state_eq]'?: string;
692
+ 'q[completed_at_gte]'?: string;
693
+ 'q[completed_at_lte]'?: string;
694
+ }
695
+ interface AddLineItemParams {
696
+ variant_id: string;
697
+ quantity: number;
698
+ }
699
+ interface UpdateLineItemParams {
700
+ quantity: number;
701
+ }
702
+ interface AddressParams {
703
+ firstname: string;
704
+ lastname: string;
705
+ address1: string;
706
+ address2?: string;
707
+ city: string;
708
+ zipcode: string;
709
+ phone?: string;
710
+ company?: string;
711
+ /** ISO 3166-1 alpha-2 country code (e.g., "US", "DE") */
712
+ country_iso: string;
713
+ /** ISO 3166-2 subdivision code without country prefix (e.g., "CA", "NY") */
714
+ state_abbr?: string;
715
+ /** State name - used for countries without predefined states */
716
+ state_name?: string;
717
+ }
718
+ interface UpdateOrderParams {
719
+ email?: string;
720
+ currency?: string;
721
+ special_instructions?: string;
722
+ /** Existing address ID to use */
723
+ bill_address_id?: string;
724
+ /** Existing address ID to use */
725
+ ship_address_id?: string;
726
+ /** New billing address */
727
+ bill_address?: AddressParams;
728
+ /** New shipping address */
729
+ ship_address?: AddressParams;
730
+ }
731
+ interface FilterOption {
732
+ id: string;
733
+ label: string;
734
+ count: number;
735
+ }
736
+ interface OptionFilterOption extends FilterOption {
737
+ name: string;
738
+ position: number;
739
+ }
740
+ interface TaxonFilterOption extends FilterOption {
741
+ permalink: string;
742
+ }
743
+ interface PriceRangeFilter {
744
+ id: 'price';
745
+ type: 'price_range';
746
+ label: string;
747
+ min: number;
748
+ max: number;
749
+ currency: string;
750
+ }
751
+ interface AvailabilityFilter {
752
+ id: 'availability';
753
+ type: 'availability';
754
+ label: string;
755
+ options: FilterOption[];
756
+ }
757
+ interface OptionFilter {
758
+ id: string;
759
+ type: 'option';
760
+ label: string;
761
+ name: string;
762
+ options: OptionFilterOption[];
763
+ }
764
+ interface TaxonFilter {
765
+ id: 'taxons';
766
+ type: 'taxon';
767
+ label: string;
768
+ options: TaxonFilterOption[];
769
+ }
770
+ type ProductFilter = PriceRangeFilter | AvailabilityFilter | OptionFilter | TaxonFilter;
771
+ interface SortOption {
772
+ id: string;
773
+ label: string;
774
+ }
775
+ interface ProductFiltersResponse {
776
+ filters: ProductFilter[];
777
+ sort_options: SortOption[];
778
+ default_sort: string;
779
+ total_count: number;
780
+ }
781
+ interface ProductFiltersParams {
782
+ taxon_id?: string;
783
+ q?: Record<string, unknown>;
784
+ }
785
+
786
+ export type { AddLineItemParams, AddressParams, AdminMetafield, AdminOrder, AdminPrice, AdminProduct, AdminTaxon, AdminTaxonomy, AdminUser, AdminVariant, AuthTokens, AvailabilityFilter, ErrorResponse, FilterOption, ListParams, LoginCredentials, OptionFilter, OptionFilterOption, OrderListParams, PaginatedResponse, PaginationMeta, PriceRangeFilter, ProductFilter, ProductFiltersParams, ProductFiltersResponse, ProductListParams, RegisterParams, SortOption, StoreAddress, StoreBase, StoreCountry, StoreCreditCard, StoreDigitalLink, StoreGiftCard, StoreImage, StoreLineItem, StoreMetafield, StoreOptionType, StoreOptionValue, StoreOrder, StoreOrderPromotion, StorePayment, StorePaymentMethod, StorePrice, StoreProduct, StoreShipment, StoreShippingMethod, StoreShippingRate, StoreState, StoreStockLocation, StoreStore, StoreTaxon, StoreTaxonomy, StoreUser, StoreVariant, StoreWishedItem, StoreWishlist, TaxonFilter, TaxonFilterOption, TaxonListParams, UpdateLineItemParams, UpdateOrderParams };