@commercelayer/sdk 6.0.2 → 6.2.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.
package/lib/index.d.ts CHANGED
@@ -626,7 +626,7 @@ type CustomerGroupType = 'customer_groups';
626
626
  type CustomerGroupRel$3 = ResourceRel & {
627
627
  type: CustomerGroupType;
628
628
  };
629
- type CustomerGroupSort = Pick<CustomerGroup, 'id' | 'name'> & ResourceSort;
629
+ type CustomerGroupSort = Pick<CustomerGroup, 'id' | 'name' | 'code'> & ResourceSort;
630
630
  interface CustomerGroup extends Resource {
631
631
  readonly type: CustomerGroupType;
632
632
  /**
@@ -634,6 +634,11 @@ interface CustomerGroup extends Resource {
634
634
  * @example ```"VIP"```
635
635
  */
636
636
  name: string;
637
+ /**
638
+ * A string that you can use to identify the customer group (must be unique within the environment)..
639
+ * @example ```"vip1"```
640
+ */
641
+ code?: string | null;
637
642
  customers?: Customer[] | null;
638
643
  markets?: Market[] | null;
639
644
  attachments?: Attachment[] | null;
@@ -645,6 +650,11 @@ interface CustomerGroupCreate extends ResourceCreate {
645
650
  * @example ```"VIP"```
646
651
  */
647
652
  name: string;
653
+ /**
654
+ * A string that you can use to identify the customer group (must be unique within the environment)..
655
+ * @example ```"vip1"```
656
+ */
657
+ code?: string | null;
648
658
  }
649
659
  interface CustomerGroupUpdate extends ResourceUpdate {
650
660
  /**
@@ -652,6 +662,11 @@ interface CustomerGroupUpdate extends ResourceUpdate {
652
662
  * @example ```"VIP"```
653
663
  */
654
664
  name?: string | null;
665
+ /**
666
+ * A string that you can use to identify the customer group (must be unique within the environment)..
667
+ * @example ```"vip1"```
668
+ */
669
+ code?: string | null;
655
670
  }
656
671
  declare class CustomerGroups extends ApiResource<CustomerGroup> {
657
672
  static readonly TYPE: CustomerGroupType;
@@ -951,7 +966,7 @@ type PaymentMethodType = 'payment_methods';
951
966
  type PaymentMethodRel$4 = ResourceRel & {
952
967
  type: PaymentMethodType;
953
968
  };
954
- type MarketRel$h = ResourceRel & {
969
+ type MarketRel$i = ResourceRel & {
955
970
  type: MarketType;
956
971
  };
957
972
  type PaymentGatewayRel = ResourceRel & {
@@ -1076,7 +1091,7 @@ interface PaymentMethodCreate extends ResourceCreate {
1076
1091
  * @example ```"true"```
1077
1092
  */
1078
1093
  _enable?: boolean | null;
1079
- market?: MarketRel$h | null;
1094
+ market?: MarketRel$i | null;
1080
1095
  payment_gateway: PaymentGatewayRel;
1081
1096
  }
1082
1097
  interface PaymentMethodUpdate extends ResourceUpdate {
@@ -1126,7 +1141,7 @@ interface PaymentMethodUpdate extends ResourceUpdate {
1126
1141
  * @example ```"true"```
1127
1142
  */
1128
1143
  _enable?: boolean | null;
1129
- market?: MarketRel$h | null;
1144
+ market?: MarketRel$i | null;
1130
1145
  payment_gateway?: PaymentGatewayRel | null;
1131
1146
  }
1132
1147
  declare class PaymentMethods extends ApiResource<PaymentMethod> {
@@ -1838,6 +1853,11 @@ interface StripePayment extends Resource {
1838
1853
  * @example ```"pi_1234XXX_secret_5678YYY"```
1839
1854
  */
1840
1855
  client_secret?: string | null;
1856
+ /**
1857
+ * The Stripe charge ID. Identifies money movement upon the payment intent confirmation..
1858
+ * @example ```"ch_1234XXX"```
1859
+ */
1860
+ charge_id?: string | null;
1841
1861
  /**
1842
1862
  * The Stripe publishable API key..
1843
1863
  * @example ```"pk_live_xxxx-yyyy-zzzz"```
@@ -2685,7 +2705,7 @@ type FixedPricePromotionType = 'fixed_price_promotions';
2685
2705
  type FixedPricePromotionRel$4 = ResourceRel & {
2686
2706
  type: FixedPricePromotionType;
2687
2707
  };
2688
- type MarketRel$g = ResourceRel & {
2708
+ type MarketRel$h = ResourceRel & {
2689
2709
  type: MarketType;
2690
2710
  };
2691
2711
  type OrderAmountPromotionRuleRel$7 = ResourceRel & {
@@ -2754,6 +2774,11 @@ interface FixedPricePromotion extends Resource {
2754
2774
  * @example ```"true"```
2755
2775
  */
2756
2776
  active?: boolean | null;
2777
+ /**
2778
+ * The promotion status, one of 'expired', 'pending', 'active', 'inactive', or 'disabled'..
2779
+ * @example ```"pending"```
2780
+ */
2781
+ status?: 'expired' | 'pending' | 'active' | 'inactive' | 'disabled' | null;
2757
2782
  /**
2758
2783
  * Time at which this resource was disabled..
2759
2784
  * @example ```"2018-01-01T12:00:00.000Z"```
@@ -2839,7 +2864,7 @@ interface FixedPricePromotionCreate extends ResourceCreate {
2839
2864
  * @example ```"1000"```
2840
2865
  */
2841
2866
  fixed_amount_cents: number;
2842
- market?: MarketRel$g | null;
2867
+ market?: MarketRel$h | null;
2843
2868
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$7 | null;
2844
2869
  sku_list_promotion_rule?: SkuListPromotionRuleRel$7 | null;
2845
2870
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$7 | null;
@@ -2898,7 +2923,7 @@ interface FixedPricePromotionUpdate extends ResourceUpdate {
2898
2923
  * @example ```"1000"```
2899
2924
  */
2900
2925
  fixed_amount_cents?: number | null;
2901
- market?: MarketRel$g | null;
2926
+ market?: MarketRel$h | null;
2902
2927
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$7 | null;
2903
2928
  sku_list_promotion_rule?: SkuListPromotionRuleRel$7 | null;
2904
2929
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$7 | null;
@@ -2935,7 +2960,7 @@ type FixedAmountPromotionType = 'fixed_amount_promotions';
2935
2960
  type FixedAmountPromotionRel$5 = ResourceRel & {
2936
2961
  type: FixedAmountPromotionType;
2937
2962
  };
2938
- type MarketRel$f = ResourceRel & {
2963
+ type MarketRel$g = ResourceRel & {
2939
2964
  type: MarketType;
2940
2965
  };
2941
2966
  type OrderAmountPromotionRuleRel$6 = ResourceRel & {
@@ -3004,6 +3029,11 @@ interface FixedAmountPromotion extends Resource {
3004
3029
  * @example ```"true"```
3005
3030
  */
3006
3031
  active?: boolean | null;
3032
+ /**
3033
+ * The promotion status, one of 'expired', 'pending', 'active', 'inactive', or 'disabled'..
3034
+ * @example ```"pending"```
3035
+ */
3036
+ status?: 'expired' | 'pending' | 'active' | 'inactive' | 'disabled' | null;
3007
3037
  /**
3008
3038
  * Time at which this resource was disabled..
3009
3039
  * @example ```"2018-01-01T12:00:00.000Z"```
@@ -3089,7 +3119,7 @@ interface FixedAmountPromotionCreate extends ResourceCreate {
3089
3119
  * @example ```"1000"```
3090
3120
  */
3091
3121
  fixed_amount_cents: number;
3092
- market?: MarketRel$f | null;
3122
+ market?: MarketRel$g | null;
3093
3123
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$6 | null;
3094
3124
  sku_list_promotion_rule?: SkuListPromotionRuleRel$6 | null;
3095
3125
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$6 | null;
@@ -3148,7 +3178,7 @@ interface FixedAmountPromotionUpdate extends ResourceUpdate {
3148
3178
  * @example ```"1000"```
3149
3179
  */
3150
3180
  fixed_amount_cents?: number | null;
3151
- market?: MarketRel$f | null;
3181
+ market?: MarketRel$g | null;
3152
3182
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$6 | null;
3153
3183
  sku_list_promotion_rule?: SkuListPromotionRuleRel$6 | null;
3154
3184
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$6 | null;
@@ -3249,7 +3279,7 @@ type FreeGiftPromotionType = 'free_gift_promotions';
3249
3279
  type FreeGiftPromotionRel$3 = ResourceRel & {
3250
3280
  type: FreeGiftPromotionType;
3251
3281
  };
3252
- type MarketRel$e = ResourceRel & {
3282
+ type MarketRel$f = ResourceRel & {
3253
3283
  type: MarketType;
3254
3284
  };
3255
3285
  type OrderAmountPromotionRuleRel$5 = ResourceRel & {
@@ -3318,6 +3348,11 @@ interface FreeGiftPromotion extends Resource {
3318
3348
  * @example ```"true"```
3319
3349
  */
3320
3350
  active?: boolean | null;
3351
+ /**
3352
+ * The promotion status, one of 'expired', 'pending', 'active', 'inactive', or 'disabled'..
3353
+ * @example ```"pending"```
3354
+ */
3355
+ status?: 'expired' | 'pending' | 'active' | 'inactive' | 'disabled' | null;
3321
3356
  /**
3322
3357
  * Time at which this resource was disabled..
3323
3358
  * @example ```"2018-01-01T12:00:00.000Z"```
@@ -3393,7 +3428,7 @@ interface FreeGiftPromotionCreate extends ResourceCreate {
3393
3428
  * @example ```"3"```
3394
3429
  */
3395
3430
  max_quantity?: number | null;
3396
- market?: MarketRel$e | null;
3431
+ market?: MarketRel$f | null;
3397
3432
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$5 | null;
3398
3433
  sku_list_promotion_rule?: SkuListPromotionRuleRel$5 | null;
3399
3434
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$5 | null;
@@ -3452,7 +3487,7 @@ interface FreeGiftPromotionUpdate extends ResourceUpdate {
3452
3487
  * @example ```"3"```
3453
3488
  */
3454
3489
  max_quantity?: number | null;
3455
- market?: MarketRel$e | null;
3490
+ market?: MarketRel$f | null;
3456
3491
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$5 | null;
3457
3492
  sku_list_promotion_rule?: SkuListPromotionRuleRel$5 | null;
3458
3493
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$5 | null;
@@ -3545,7 +3580,7 @@ type BuyXPayYPromotionType = 'buy_x_pay_y_promotions';
3545
3580
  type BuyXPayYPromotionRel$2 = ResourceRel & {
3546
3581
  type: BuyXPayYPromotionType;
3547
3582
  };
3548
- type MarketRel$d = ResourceRel & {
3583
+ type MarketRel$e = ResourceRel & {
3549
3584
  type: MarketType;
3550
3585
  };
3551
3586
  type OrderAmountPromotionRuleRel$4 = ResourceRel & {
@@ -3614,6 +3649,11 @@ interface BuyXPayYPromotion extends Resource {
3614
3649
  * @example ```"true"```
3615
3650
  */
3616
3651
  active?: boolean | null;
3652
+ /**
3653
+ * The promotion status, one of 'expired', 'pending', 'active', 'inactive', or 'disabled'..
3654
+ * @example ```"pending"```
3655
+ */
3656
+ status?: 'expired' | 'pending' | 'active' | 'inactive' | 'disabled' | null;
3617
3657
  /**
3618
3658
  * Time at which this resource was disabled..
3619
3659
  * @example ```"2018-01-01T12:00:00.000Z"```
@@ -3709,7 +3749,7 @@ interface BuyXPayYPromotionCreate extends ResourceCreate {
3709
3749
  * @example ```"true"```
3710
3750
  */
3711
3751
  cheapest_free?: boolean | null;
3712
- market?: MarketRel$d | null;
3752
+ market?: MarketRel$e | null;
3713
3753
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$4 | null;
3714
3754
  sku_list_promotion_rule?: SkuListPromotionRuleRel$4 | null;
3715
3755
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$3 | null;
@@ -3778,7 +3818,7 @@ interface BuyXPayYPromotionUpdate extends ResourceUpdate {
3778
3818
  * @example ```"true"```
3779
3819
  */
3780
3820
  cheapest_free?: boolean | null;
3781
- market?: MarketRel$d | null;
3821
+ market?: MarketRel$e | null;
3782
3822
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$4 | null;
3783
3823
  sku_list_promotion_rule?: SkuListPromotionRuleRel$4 | null;
3784
3824
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$3 | null;
@@ -3903,7 +3943,7 @@ type FreeShippingPromotionType = 'free_shipping_promotions';
3903
3943
  type FreeShippingPromotionRel$2 = ResourceRel & {
3904
3944
  type: FreeShippingPromotionType;
3905
3945
  };
3906
- type MarketRel$c = ResourceRel & {
3946
+ type MarketRel$d = ResourceRel & {
3907
3947
  type: MarketType;
3908
3948
  };
3909
3949
  type OrderAmountPromotionRuleRel$3 = ResourceRel & {
@@ -3972,6 +4012,11 @@ interface FreeShippingPromotion extends Resource {
3972
4012
  * @example ```"true"```
3973
4013
  */
3974
4014
  active?: boolean | null;
4015
+ /**
4016
+ * The promotion status, one of 'expired', 'pending', 'active', 'inactive', or 'disabled'..
4017
+ * @example ```"pending"```
4018
+ */
4019
+ status?: 'expired' | 'pending' | 'active' | 'inactive' | 'disabled' | null;
3975
4020
  /**
3976
4021
  * Time at which this resource was disabled..
3977
4022
  * @example ```"2018-01-01T12:00:00.000Z"```
@@ -4036,7 +4081,7 @@ interface FreeShippingPromotionCreate extends ResourceCreate {
4036
4081
  * @example ```"true"```
4037
4082
  */
4038
4083
  _enable?: boolean | null;
4039
- market?: MarketRel$c | null;
4084
+ market?: MarketRel$d | null;
4040
4085
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$3 | null;
4041
4086
  sku_list_promotion_rule?: SkuListPromotionRuleRel$2 | null;
4042
4087
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$2 | null;
@@ -4090,7 +4135,7 @@ interface FreeShippingPromotionUpdate extends ResourceUpdate {
4090
4135
  * @example ```"true"```
4091
4136
  */
4092
4137
  _enable?: boolean | null;
4093
- market?: MarketRel$c | null;
4138
+ market?: MarketRel$d | null;
4094
4139
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$3 | null;
4095
4140
  sku_list_promotion_rule?: SkuListPromotionRuleRel$2 | null;
4096
4141
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$2 | null;
@@ -4215,7 +4260,7 @@ type PercentageDiscountPromotionType = 'percentage_discount_promotions';
4215
4260
  type PercentageDiscountPromotionRel$1 = ResourceRel & {
4216
4261
  type: PercentageDiscountPromotionType;
4217
4262
  };
4218
- type MarketRel$b = ResourceRel & {
4263
+ type MarketRel$c = ResourceRel & {
4219
4264
  type: MarketType;
4220
4265
  };
4221
4266
  type OrderAmountPromotionRuleRel$1 = ResourceRel & {
@@ -4284,6 +4329,11 @@ interface PercentageDiscountPromotion extends Resource {
4284
4329
  * @example ```"true"```
4285
4330
  */
4286
4331
  active?: boolean | null;
4332
+ /**
4333
+ * The promotion status, one of 'expired', 'pending', 'active', 'inactive', or 'disabled'..
4334
+ * @example ```"pending"```
4335
+ */
4336
+ status?: 'expired' | 'pending' | 'active' | 'inactive' | 'disabled' | null;
4287
4337
  /**
4288
4338
  * Time at which this resource was disabled..
4289
4339
  * @example ```"2018-01-01T12:00:00.000Z"```
@@ -4359,7 +4409,7 @@ interface PercentageDiscountPromotionCreate extends ResourceCreate {
4359
4409
  * @example ```"10"```
4360
4410
  */
4361
4411
  percentage: number;
4362
- market?: MarketRel$b | null;
4412
+ market?: MarketRel$c | null;
4363
4413
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$1 | null;
4364
4414
  sku_list_promotion_rule?: SkuListPromotionRuleRel$1 | null;
4365
4415
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$1 | null;
@@ -4418,7 +4468,7 @@ interface PercentageDiscountPromotionUpdate extends ResourceUpdate {
4418
4468
  * @example ```"10"```
4419
4469
  */
4420
4470
  percentage?: number | null;
4421
- market?: MarketRel$b | null;
4471
+ market?: MarketRel$c | null;
4422
4472
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel$1 | null;
4423
4473
  sku_list_promotion_rule?: SkuListPromotionRuleRel$1 | null;
4424
4474
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel$1 | null;
@@ -4474,7 +4524,7 @@ type ExternalPromotionType = 'external_promotions';
4474
4524
  type ExternalPromotionRel$1 = ResourceRel & {
4475
4525
  type: ExternalPromotionType;
4476
4526
  };
4477
- type MarketRel$a = ResourceRel & {
4527
+ type MarketRel$b = ResourceRel & {
4478
4528
  type: MarketType;
4479
4529
  };
4480
4530
  type OrderAmountPromotionRuleRel = ResourceRel & {
@@ -4543,6 +4593,11 @@ interface ExternalPromotion extends Resource {
4543
4593
  * @example ```"true"```
4544
4594
  */
4545
4595
  active?: boolean | null;
4596
+ /**
4597
+ * The promotion status, one of 'expired', 'pending', 'active', 'inactive', or 'disabled'..
4598
+ * @example ```"pending"```
4599
+ */
4600
+ status?: 'expired' | 'pending' | 'active' | 'inactive' | 'disabled' | null;
4546
4601
  /**
4547
4602
  * Time at which this resource was disabled..
4548
4603
  * @example ```"2018-01-01T12:00:00.000Z"```
@@ -4633,7 +4688,7 @@ interface ExternalPromotionCreate extends ResourceCreate {
4633
4688
  * @example ```"https://external_promotion.yourbrand.com"```
4634
4689
  */
4635
4690
  promotion_url: string;
4636
- market?: MarketRel$a | null;
4691
+ market?: MarketRel$b | null;
4637
4692
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel | null;
4638
4693
  sku_list_promotion_rule?: SkuListPromotionRuleRel | null;
4639
4694
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel | null;
@@ -4697,7 +4752,7 @@ interface ExternalPromotionUpdate extends ResourceUpdate {
4697
4752
  * @example ```"true"```
4698
4753
  */
4699
4754
  _reset_circuit?: boolean | null;
4700
- market?: MarketRel$a | null;
4755
+ market?: MarketRel$b | null;
4701
4756
  order_amount_promotion_rule?: OrderAmountPromotionRuleRel | null;
4702
4757
  sku_list_promotion_rule?: SkuListPromotionRuleRel | null;
4703
4758
  coupon_codes_promotion_rule?: CouponCodesPromotionRuleRel | null;
@@ -4814,7 +4869,7 @@ type GiftCardType = 'gift_cards';
4814
4869
  type GiftCardRel$2 = ResourceRel & {
4815
4870
  type: GiftCardType;
4816
4871
  };
4817
- type MarketRel$9 = ResourceRel & {
4872
+ type MarketRel$a = ResourceRel & {
4818
4873
  type: MarketType;
4819
4874
  };
4820
4875
  type GiftCardRecipientRel$1 = ResourceRel & {
@@ -4977,7 +5032,7 @@ interface GiftCardCreate extends ResourceCreate {
4977
5032
  * @example ```"john@example.com"```
4978
5033
  */
4979
5034
  recipient_email?: string | null;
4980
- market?: MarketRel$9 | null;
5035
+ market?: MarketRel$a | null;
4981
5036
  gift_card_recipient?: GiftCardRecipientRel$1 | null;
4982
5037
  tags?: TagRel$a[] | null;
4983
5038
  }
@@ -5046,7 +5101,7 @@ interface GiftCardUpdate extends ResourceUpdate {
5046
5101
  * @example ```"-5000"```
5047
5102
  */
5048
5103
  _balance_change_cents?: number | null;
5049
- market?: MarketRel$9 | null;
5104
+ market?: MarketRel$a | null;
5050
5105
  gift_card_recipient?: GiftCardRecipientRel$1 | null;
5051
5106
  tags?: TagRel$a[] | null;
5052
5107
  }
@@ -5075,7 +5130,7 @@ type SkuOptionType = 'sku_options';
5075
5130
  type SkuOptionRel$2 = ResourceRel & {
5076
5131
  type: SkuOptionType;
5077
5132
  };
5078
- type MarketRel$8 = ResourceRel & {
5133
+ type MarketRel$9 = ResourceRel & {
5079
5134
  type: MarketType;
5080
5135
  };
5081
5136
  type TagRel$9 = ResourceRel & {
@@ -5166,7 +5221,7 @@ interface SkuOptionCreate extends ResourceCreate {
5166
5221
  * @example ```"^(A|B).*$"```
5167
5222
  */
5168
5223
  sku_code_regex?: string | null;
5169
- market?: MarketRel$8 | null;
5224
+ market?: MarketRel$9 | null;
5170
5225
  tags?: TagRel$9[] | null;
5171
5226
  }
5172
5227
  interface SkuOptionUpdate extends ResourceUpdate {
@@ -5200,7 +5255,7 @@ interface SkuOptionUpdate extends ResourceUpdate {
5200
5255
  * @example ```"^(A|B).*$"```
5201
5256
  */
5202
5257
  sku_code_regex?: string | null;
5203
- market?: MarketRel$8 | null;
5258
+ market?: MarketRel$9 | null;
5204
5259
  tags?: TagRel$9[] | null;
5205
5260
  }
5206
5261
  declare class SkuOptions extends ApiResource<SkuOption> {
@@ -5881,7 +5936,7 @@ interface LineItem extends Resource {
5881
5936
  */
5882
5937
  currency_code?: string | null;
5883
5938
  /**
5884
- * The unit amount of the line item, in cents. Can be specified only without an item, otherwise is automatically computed by order's price list, associated price tiers or external source..
5939
+ * The unit amount of the line item, in cents. Can be specified only via an integration application, or when the item is missing, otherwise is automatically computed by using one of the available methods..
5885
5940
  * @example ```"10000"```
5886
5941
  */
5887
5942
  unit_amount_cents?: number | null;
@@ -6068,7 +6123,7 @@ interface LineItemCreate extends ResourceCreate {
6068
6123
  */
6069
6124
  _reserve_stock?: boolean | null;
6070
6125
  /**
6071
- * The unit amount of the line item, in cents. Can be specified only without an item, otherwise is automatically computed by order's price list, associated price tiers or external source..
6126
+ * The unit amount of the line item, in cents. Can be specified only via an integration application, or when the item is missing, otherwise is automatically computed by using one of the available methods..
6072
6127
  * @example ```"10000"```
6073
6128
  */
6074
6129
  unit_amount_cents?: number | null;
@@ -6099,12 +6154,6 @@ interface LineItemCreate extends ResourceCreate {
6099
6154
  frequency?: string | null;
6100
6155
  order: OrderRel$9;
6101
6156
  item?: AdjustmentRel$1 | BundleRel$3 | ExternalPromotionRel | FixedAmountPromotionRel | FreeShippingPromotionRel | GiftCardRel$1 | PaymentMethodRel$2 | PercentageDiscountPromotionRel | ShipmentRel$4 | SkuRel$8 | null;
6102
- sku?: SkuRel$8 | null;
6103
- bundle?: BundleRel$3 | null;
6104
- adjustment?: AdjustmentRel$1 | null;
6105
- gift_card?: GiftCardRel$1 | null;
6106
- shipment?: ShipmentRel$4 | null;
6107
- payment_method?: PaymentMethodRel$2 | null;
6108
6157
  tags?: TagRel$6[] | null;
6109
6158
  }
6110
6159
  interface LineItemUpdate extends ResourceUpdate {
@@ -6133,6 +6182,11 @@ interface LineItemUpdate extends ResourceUpdate {
6133
6182
  * @example ```"true"```
6134
6183
  */
6135
6184
  _reserve_stock?: boolean | null;
6185
+ /**
6186
+ * The unit amount of the line item, in cents. Can be specified only via an integration application, or when the item is missing, otherwise is automatically computed by using one of the available methods..
6187
+ * @example ```"10000"```
6188
+ */
6189
+ unit_amount_cents?: number | null;
6136
6190
  /**
6137
6191
  * The compared price amount, in cents. Useful to display a percentage discount..
6138
6192
  * @example ```"13000"```
@@ -6469,7 +6523,7 @@ type OrderSubscriptionType = 'order_subscriptions';
6469
6523
  type OrderSubscriptionRel = ResourceRel & {
6470
6524
  type: OrderSubscriptionType;
6471
6525
  };
6472
- type MarketRel$7 = ResourceRel & {
6526
+ type MarketRel$8 = ResourceRel & {
6473
6527
  type: MarketType;
6474
6528
  };
6475
6529
  type OrderRel$7 = ResourceRel & {
@@ -6507,7 +6561,7 @@ interface OrderSubscription extends Resource {
6507
6561
  */
6508
6562
  place_target_order?: boolean | null;
6509
6563
  /**
6510
- * Indicates the number of hours the renewal alert will be triggered before the subscription next run..
6564
+ * Indicates the number of hours the renewal alert will be triggered before the subscription next run. Must be included between 1 and 720 hours..
6511
6565
  * @example ```"1"```
6512
6566
  */
6513
6567
  renewal_alert_period?: number | null;
@@ -6580,7 +6634,7 @@ interface OrderSubscriptionCreate extends ResourceCreate {
6580
6634
  */
6581
6635
  place_target_order?: boolean | null;
6582
6636
  /**
6583
- * Indicates the number of hours the renewal alert will be triggered before the subscription next run..
6637
+ * Indicates the number of hours the renewal alert will be triggered before the subscription next run. Must be included between 1 and 720 hours..
6584
6638
  * @example ```"1"```
6585
6639
  */
6586
6640
  renewal_alert_period?: number | null;
@@ -6594,7 +6648,7 @@ interface OrderSubscriptionCreate extends ResourceCreate {
6594
6648
  * @example ```"2018-01-02T12:00:00.000Z"```
6595
6649
  */
6596
6650
  expires_at?: string | null;
6597
- market?: MarketRel$7 | null;
6651
+ market?: MarketRel$8 | null;
6598
6652
  source_order: OrderRel$7;
6599
6653
  }
6600
6654
  interface OrderSubscriptionUpdate extends ResourceUpdate {
@@ -6614,7 +6668,7 @@ interface OrderSubscriptionUpdate extends ResourceUpdate {
6614
6668
  */
6615
6669
  place_target_order?: boolean | null;
6616
6670
  /**
6617
- * Indicates the number of hours the renewal alert will be triggered before the subscription next run..
6671
+ * Indicates the number of hours the renewal alert will be triggered before the subscription next run. Must be included between 1 and 720 hours..
6618
6672
  * @example ```"1"```
6619
6673
  */
6620
6674
  renewal_alert_period?: number | null;
@@ -6643,6 +6697,11 @@ interface OrderSubscriptionUpdate extends ResourceUpdate {
6643
6697
  * @example ```"true"```
6644
6698
  */
6645
6699
  _cancel?: boolean | null;
6700
+ /**
6701
+ * Send this attribute if you want to convert a manual subscription to an automatic one. A subscription model is required before conversion..
6702
+ * @example ```"true"```
6703
+ */
6704
+ _convert?: boolean | null;
6646
6705
  customer_payment_source?: CustomerPaymentSourceRel | null;
6647
6706
  }
6648
6707
  declare class OrderSubscriptions extends ApiResource<OrderSubscription> {
@@ -6664,6 +6723,7 @@ declare class OrderSubscriptions extends ApiResource<OrderSubscription> {
6664
6723
  _activate(id: string | OrderSubscription, params?: QueryParamsRetrieve<OrderSubscription>, options?: ResourcesConfig): Promise<OrderSubscription>;
6665
6724
  _deactivate(id: string | OrderSubscription, params?: QueryParamsRetrieve<OrderSubscription>, options?: ResourcesConfig): Promise<OrderSubscription>;
6666
6725
  _cancel(id: string | OrderSubscription, params?: QueryParamsRetrieve<OrderSubscription>, options?: ResourcesConfig): Promise<OrderSubscription>;
6726
+ _convert(id: string | OrderSubscription, params?: QueryParamsRetrieve<OrderSubscription>, options?: ResourcesConfig): Promise<OrderSubscription>;
6667
6727
  isOrderSubscription(resource: any): resource is OrderSubscription;
6668
6728
  relationship(id: string | ResourceId | null): OrderSubscriptionRel;
6669
6729
  relationshipToMany(...ids: string[]): OrderSubscriptionRel[];
@@ -7566,7 +7626,7 @@ type OrderType = 'orders';
7566
7626
  type OrderRel$2 = ResourceRel & {
7567
7627
  type: OrderType;
7568
7628
  };
7569
- type MarketRel$6 = ResourceRel & {
7629
+ type MarketRel$7 = ResourceRel & {
7570
7630
  type: MarketType;
7571
7631
  };
7572
7632
  type CustomerRel$2 = ResourceRel & {
@@ -8269,7 +8329,7 @@ interface OrderCreate extends ResourceCreate {
8269
8329
  * @example ```"https://yourdomain.com/privacy"```
8270
8330
  */
8271
8331
  privacy_url?: string | null;
8272
- market?: MarketRel$6 | null;
8332
+ market?: MarketRel$7 | null;
8273
8333
  customer?: CustomerRel$2 | null;
8274
8334
  shipping_address?: AddressRel$3 | null;
8275
8335
  billing_address?: AddressRel$3 | null;
@@ -8511,7 +8571,7 @@ interface OrderUpdate extends ResourceUpdate {
8511
8571
  * @example ```"true"```
8512
8572
  */
8513
8573
  _reset_circuit?: boolean | null;
8514
- market?: MarketRel$6 | null;
8574
+ market?: MarketRel$7 | null;
8515
8575
  customer?: CustomerRel$2 | null;
8516
8576
  shipping_address?: AddressRel$3 | null;
8517
8577
  billing_address?: AddressRel$3 | null;
@@ -8943,7 +9003,7 @@ type ShippingMethodType = 'shipping_methods';
8943
9003
  type ShippingMethodRel$2 = ResourceRel & {
8944
9004
  type: ShippingMethodType;
8945
9005
  };
8946
- type MarketRel$5 = ResourceRel & {
9006
+ type MarketRel$6 = ResourceRel & {
8947
9007
  type: MarketType;
8948
9008
  };
8949
9009
  type ShippingZoneRel$1 = ResourceRel & {
@@ -9130,7 +9190,7 @@ interface ShippingMethodCreate extends ResourceCreate {
9130
9190
  * @example ```"true"```
9131
9191
  */
9132
9192
  _enable?: boolean | null;
9133
- market?: MarketRel$5 | null;
9193
+ market?: MarketRel$6 | null;
9134
9194
  shipping_zone?: ShippingZoneRel$1 | null;
9135
9195
  shipping_category?: ShippingCategoryRel$3 | null;
9136
9196
  stock_location?: StockLocationRel$5 | null;
@@ -9202,7 +9262,7 @@ interface ShippingMethodUpdate extends ResourceUpdate {
9202
9262
  * @example ```"true"```
9203
9263
  */
9204
9264
  _reset_circuit?: boolean | null;
9205
- market?: MarketRel$5 | null;
9265
+ market?: MarketRel$6 | null;
9206
9266
  shipping_zone?: ShippingZoneRel$1 | null;
9207
9267
  shipping_category?: ShippingCategoryRel$3 | null;
9208
9268
  stock_location?: StockLocationRel$5 | null;
@@ -9889,7 +9949,7 @@ interface Shipment extends Resource {
9889
9949
  */
9890
9950
  number?: string | null;
9891
9951
  /**
9892
- * The shipment status, one of 'draft', 'upcoming', 'cancelled', 'on_hold', 'picking', 'packing', 'ready_to_ship', or 'shipped'.
9952
+ * The shipment status, one of 'draft', 'upcoming', 'cancelled', 'on_hold', 'picking', 'packing', 'ready_to_ship', or 'shipped'..
9893
9953
  * @example ```"draft"```
9894
9954
  */
9895
9955
  status: 'draft' | 'upcoming' | 'cancelled' | 'on_hold' | 'picking' | 'packing' | 'ready_to_ship' | 'shipped';
@@ -10240,6 +10300,8 @@ interface StockTransferUpdate extends ResourceUpdate {
10240
10300
  sku?: SkuRel$6 | null;
10241
10301
  origin_stock_location?: StockLocationRel$3 | null;
10242
10302
  destination_stock_location?: StockLocationRel$3 | null;
10303
+ shipment?: ShipmentRel$1 | null;
10304
+ line_item?: LineItemRel | null;
10243
10305
  }
10244
10306
  declare class StockTransfers extends ApiResource<StockTransfer> {
10245
10307
  static readonly TYPE: StockTransferType;
@@ -10885,7 +10947,7 @@ type PriceType = 'prices';
10885
10947
  type PriceRel$1 = ResourceRel & {
10886
10948
  type: PriceType;
10887
10949
  };
10888
- type PriceListRel$3 = ResourceRel & {
10950
+ type PriceListRel$4 = ResourceRel & {
10889
10951
  type: PriceListType;
10890
10952
  };
10891
10953
  type SkuRel$3 = ResourceRel & {
@@ -10964,7 +11026,7 @@ interface PriceCreate extends ResourceCreate {
10964
11026
  * @example ```"13000"```
10965
11027
  */
10966
11028
  compare_at_amount_cents?: number | null;
10967
- price_list: PriceListRel$3;
11029
+ price_list: PriceListRel$4;
10968
11030
  sku: SkuRel$3;
10969
11031
  price_tiers?: PriceTierRel[] | null;
10970
11032
  }
@@ -10984,7 +11046,7 @@ interface PriceUpdate extends ResourceUpdate {
10984
11046
  * @example ```"13000"```
10985
11047
  */
10986
11048
  compare_at_amount_cents?: number | null;
10987
- price_list?: PriceListRel$3 | null;
11049
+ price_list?: PriceListRel$4 | null;
10988
11050
  sku?: SkuRel$3 | null;
10989
11051
  price_tiers?: PriceTierRel[] | null;
10990
11052
  }
@@ -11009,6 +11071,129 @@ declare class Prices extends ApiResource<Price> {
11009
11071
  type(): PriceType;
11010
11072
  }
11011
11073
 
11074
+ type PriceListSchedulerType = 'price_list_schedulers';
11075
+ type PriceListSchedulerRel = ResourceRel & {
11076
+ type: PriceListSchedulerType;
11077
+ };
11078
+ type MarketRel$5 = ResourceRel & {
11079
+ type: MarketType;
11080
+ };
11081
+ type PriceListRel$3 = ResourceRel & {
11082
+ type: PriceListType;
11083
+ };
11084
+ type PriceListSchedulerSort = Pick<PriceListScheduler, 'id' | 'name' | 'starts_at' | 'expires_at' | 'disabled_at'> & ResourceSort;
11085
+ interface PriceListScheduler extends Resource {
11086
+ readonly type: PriceListSchedulerType;
11087
+ /**
11088
+ * The price list scheduler's internal name.
11089
+ * @example ```"FW SALE 2023"```
11090
+ */
11091
+ name: string;
11092
+ /**
11093
+ * The activation date/time of this price list scheduler..
11094
+ * @example ```"2018-01-01T12:00:00.000Z"```
11095
+ */
11096
+ starts_at: string;
11097
+ /**
11098
+ * The expiration date/time of this price list scheduler (must be after starts_at)..
11099
+ * @example ```"2018-01-02T12:00:00.000Z"```
11100
+ */
11101
+ expires_at: string;
11102
+ /**
11103
+ * Indicates if the price list scheduler is active (enabled and not expired)..
11104
+ * @example ```"true"```
11105
+ */
11106
+ active?: boolean | null;
11107
+ /**
11108
+ * The price list scheduler status, one of 'expired', 'pending', 'active', or 'disabled'..
11109
+ * @example ```"pending"```
11110
+ */
11111
+ status?: 'expired' | 'pending' | 'active' | 'disabled' | null;
11112
+ /**
11113
+ * Time at which this resource was disabled..
11114
+ * @example ```"2018-01-01T12:00:00.000Z"```
11115
+ */
11116
+ disabled_at?: string | null;
11117
+ market?: Market | null;
11118
+ price_list?: PriceList | null;
11119
+ events?: Event[] | null;
11120
+ versions?: Version[] | null;
11121
+ }
11122
+ interface PriceListSchedulerCreate extends ResourceCreate {
11123
+ /**
11124
+ * The price list scheduler's internal name.
11125
+ * @example ```"FW SALE 2023"```
11126
+ */
11127
+ name: string;
11128
+ /**
11129
+ * The activation date/time of this price list scheduler..
11130
+ * @example ```"2018-01-01T12:00:00.000Z"```
11131
+ */
11132
+ starts_at: string;
11133
+ /**
11134
+ * The expiration date/time of this price list scheduler (must be after starts_at)..
11135
+ * @example ```"2018-01-02T12:00:00.000Z"```
11136
+ */
11137
+ expires_at: string;
11138
+ /**
11139
+ * Send this attribute if you want to mark this resource as disabled..
11140
+ * @example ```"true"```
11141
+ */
11142
+ _disable?: boolean | null;
11143
+ /**
11144
+ * Send this attribute if you want to mark this resource as enabled..
11145
+ * @example ```"true"```
11146
+ */
11147
+ _enable?: boolean | null;
11148
+ market: MarketRel$5;
11149
+ price_list: PriceListRel$3;
11150
+ }
11151
+ interface PriceListSchedulerUpdate extends ResourceUpdate {
11152
+ /**
11153
+ * The price list scheduler's internal name.
11154
+ * @example ```"FW SALE 2023"```
11155
+ */
11156
+ name?: string | null;
11157
+ /**
11158
+ * The activation date/time of this price list scheduler..
11159
+ * @example ```"2018-01-01T12:00:00.000Z"```
11160
+ */
11161
+ starts_at?: string | null;
11162
+ /**
11163
+ * The expiration date/time of this price list scheduler (must be after starts_at)..
11164
+ * @example ```"2018-01-02T12:00:00.000Z"```
11165
+ */
11166
+ expires_at?: string | null;
11167
+ /**
11168
+ * Send this attribute if you want to mark this resource as disabled..
11169
+ * @example ```"true"```
11170
+ */
11171
+ _disable?: boolean | null;
11172
+ /**
11173
+ * Send this attribute if you want to mark this resource as enabled..
11174
+ * @example ```"true"```
11175
+ */
11176
+ _enable?: boolean | null;
11177
+ market?: MarketRel$5 | null;
11178
+ price_list?: PriceListRel$3 | null;
11179
+ }
11180
+ declare class PriceListSchedulers extends ApiResource<PriceListScheduler> {
11181
+ static readonly TYPE: PriceListSchedulerType;
11182
+ create(resource: PriceListSchedulerCreate, params?: QueryParamsRetrieve<PriceListScheduler>, options?: ResourcesConfig): Promise<PriceListScheduler>;
11183
+ update(resource: PriceListSchedulerUpdate, params?: QueryParamsRetrieve<PriceListScheduler>, options?: ResourcesConfig): Promise<PriceListScheduler>;
11184
+ delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
11185
+ market(priceListSchedulerId: string | PriceListScheduler, params?: QueryParamsRetrieve<Market>, options?: ResourcesConfig): Promise<Market>;
11186
+ price_list(priceListSchedulerId: string | PriceListScheduler, params?: QueryParamsRetrieve<PriceList>, options?: ResourcesConfig): Promise<PriceList>;
11187
+ events(priceListSchedulerId: string | PriceListScheduler, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
11188
+ versions(priceListSchedulerId: string | PriceListScheduler, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
11189
+ _disable(id: string | PriceListScheduler, params?: QueryParamsRetrieve<PriceListScheduler>, options?: ResourcesConfig): Promise<PriceListScheduler>;
11190
+ _enable(id: string | PriceListScheduler, params?: QueryParamsRetrieve<PriceListScheduler>, options?: ResourcesConfig): Promise<PriceListScheduler>;
11191
+ isPriceListScheduler(resource: any): resource is PriceListScheduler;
11192
+ relationship(id: string | ResourceId | null): PriceListSchedulerRel;
11193
+ relationshipToMany(...ids: string[]): PriceListSchedulerRel[];
11194
+ type(): PriceListSchedulerType;
11195
+ }
11196
+
11012
11197
  type PriceListType = 'price_lists';
11013
11198
  type PriceListRel$2 = ResourceRel & {
11014
11199
  type: PriceListType;
@@ -11037,6 +11222,7 @@ interface PriceList extends Resource {
11037
11222
  */
11038
11223
  tax_included?: boolean | null;
11039
11224
  prices?: Price[] | null;
11225
+ price_list_schedulers?: PriceListScheduler[] | null;
11040
11226
  attachments?: Attachment[] | null;
11041
11227
  versions?: Version[] | null;
11042
11228
  }
@@ -11090,6 +11276,7 @@ declare class PriceLists extends ApiResource<PriceList> {
11090
11276
  update(resource: PriceListUpdate, params?: QueryParamsRetrieve<PriceList>, options?: ResourcesConfig): Promise<PriceList>;
11091
11277
  delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
11092
11278
  prices(priceListId: string | PriceList, params?: QueryParamsList<Price>, options?: ResourcesConfig): Promise<ListResponse<Price>>;
11279
+ price_list_schedulers(priceListId: string | PriceList, params?: QueryParamsList<PriceListScheduler>, options?: ResourcesConfig): Promise<ListResponse<PriceListScheduler>>;
11093
11280
  attachments(priceListId: string | PriceList, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
11094
11281
  versions(priceListId: string | PriceList, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
11095
11282
  isPriceList(resource: any): resource is PriceList;
@@ -11206,6 +11393,7 @@ interface Market extends Resource {
11206
11393
  subscription_model?: SubscriptionModel | null;
11207
11394
  tax_calculator?: TaxCalculator | null;
11208
11395
  customer_group?: CustomerGroup | null;
11396
+ price_list_schedulers?: PriceListScheduler[] | null;
11209
11397
  attachments?: Attachment[] | null;
11210
11398
  versions?: Version[] | null;
11211
11399
  }
@@ -11316,6 +11504,7 @@ declare class Markets extends ApiResource<Market> {
11316
11504
  subscription_model(marketId: string | Market, params?: QueryParamsRetrieve<SubscriptionModel>, options?: ResourcesConfig): Promise<SubscriptionModel>;
11317
11505
  tax_calculator(marketId: string | Market, params?: QueryParamsRetrieve<TaxCalculator>, options?: ResourcesConfig): Promise<TaxCalculator>;
11318
11506
  customer_group(marketId: string | Market, params?: QueryParamsRetrieve<CustomerGroup>, options?: ResourcesConfig): Promise<CustomerGroup>;
11507
+ price_list_schedulers(marketId: string | Market, params?: QueryParamsList<PriceListScheduler>, options?: ResourcesConfig): Promise<ListResponse<PriceListScheduler>>;
11319
11508
  attachments(marketId: string | Market, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
11320
11509
  versions(marketId: string | Market, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
11321
11510
  _disable(id: string | Market, params?: QueryParamsRetrieve<Market>, options?: ResourcesConfig): Promise<Market>;
@@ -11622,6 +11811,11 @@ interface Promotion extends Resource {
11622
11811
  * @example ```"true"```
11623
11812
  */
11624
11813
  active?: boolean | null;
11814
+ /**
11815
+ * The promotion status, one of 'expired', 'pending', 'active', 'inactive', or 'disabled'..
11816
+ * @example ```"pending"```
11817
+ */
11818
+ status?: 'expired' | 'pending' | 'active' | 'inactive' | 'disabled' | null;
11625
11819
  /**
11626
11820
  * Time at which this resource was disabled..
11627
11821
  * @example ```"2018-01-01T12:00:00.000Z"```
@@ -14486,8 +14680,8 @@ declare class Transactions extends ApiResource<Transaction> {
14486
14680
  type(): TransactionType;
14487
14681
  }
14488
14682
 
14489
- type ResourceTypeLock = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'application' | 'attachments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'billing_info_validation_rules' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | 'captures' | 'carrier_accounts' | 'checkout_com_gateways' | 'checkout_com_payments' | 'cleanups' | 'coupon_codes_promotion_rules' | 'coupon_recipients' | 'coupons' | 'custom_promotion_rules' | 'customer_addresses' | 'customer_groups' | 'customer_password_resets' | 'customer_payment_sources' | 'customer_subscriptions' | 'customers' | 'delivery_lead_times' | 'event_callbacks' | 'events' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'free_gift_promotions' | 'free_shipping_promotions' | 'geocoders' | 'gift_card_recipients' | 'gift_cards' | 'google_geocoders' | 'imports' | 'in_stock_subscriptions' | 'inventory_models' | 'inventory_return_locations' | 'inventory_stock_locations' | 'klarna_gateways' | 'klarna_payments' | 'line_item_options' | 'line_items' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'order_amount_promotion_rules' | 'order_copies' | 'order_factories' | 'order_subscription_items' | 'order_subscriptions' | 'order_validation_rules' | 'orders' | 'organization' | 'packages' | 'parcel_line_items' | 'parcels' | 'payment_gateways' | 'payment_methods' | 'payment_options' | 'paypal_gateways' | 'paypal_payments' | 'percentage_discount_promotions' | 'price_frequency_tiers' | 'price_lists' | 'price_tiers' | 'price_volume_tiers' | 'prices' | 'promotion_rules' | 'promotions' | 'recurring_order_copies' | 'refunds' | 'reserved_stocks' | 'resource_errors' | 'return_line_items' | 'returns' | 'satispay_gateways' | 'satispay_payments' | 'shipments' | 'shipping_categories' | 'shipping_method_tiers' | 'shipping_methods' | 'shipping_weight_tiers' | 'shipping_zones' | 'sku_list_items' | 'sku_list_promotion_rules' | 'sku_lists' | 'sku_options' | 'skus' | 'stock_items' | 'stock_line_items' | 'stock_locations' | 'stock_reservations' | 'stock_transfers' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'tax_calculators' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'transactions' | 'versions' | 'voids' | 'webhooks' | 'wire_transfers';
14490
- declare const resourceList: readonly ["addresses", "adjustments", "adyen_gateways", "adyen_payments", "application", "attachments", "authorizations", "avalara_accounts", "axerve_gateways", "axerve_payments", "billing_info_validation_rules", "bing_geocoders", "braintree_gateways", "braintree_payments", "bundles", "buy_x_pay_y_promotions", "captures", "carrier_accounts", "checkout_com_gateways", "checkout_com_payments", "cleanups", "coupon_codes_promotion_rules", "coupon_recipients", "coupons", "custom_promotion_rules", "customer_addresses", "customer_groups", "customer_password_resets", "customer_payment_sources", "customer_subscriptions", "customers", "delivery_lead_times", "event_callbacks", "events", "exports", "external_gateways", "external_payments", "external_promotions", "external_tax_calculators", "fixed_amount_promotions", "fixed_price_promotions", "free_gift_promotions", "free_shipping_promotions", "geocoders", "gift_card_recipients", "gift_cards", "google_geocoders", "imports", "in_stock_subscriptions", "inventory_models", "inventory_return_locations", "inventory_stock_locations", "klarna_gateways", "klarna_payments", "line_item_options", "line_items", "manual_gateways", "manual_tax_calculators", "markets", "merchants", "order_amount_promotion_rules", "order_copies", "order_factories", "order_subscription_items", "order_subscriptions", "order_validation_rules", "orders", "organization", "packages", "parcel_line_items", "parcels", "payment_gateways", "payment_methods", "payment_options", "paypal_gateways", "paypal_payments", "percentage_discount_promotions", "price_frequency_tiers", "price_lists", "price_tiers", "price_volume_tiers", "prices", "promotion_rules", "promotions", "recurring_order_copies", "refunds", "reserved_stocks", "resource_errors", "return_line_items", "returns", "satispay_gateways", "satispay_payments", "shipments", "shipping_categories", "shipping_method_tiers", "shipping_methods", "shipping_weight_tiers", "shipping_zones", "sku_list_items", "sku_list_promotion_rules", "sku_lists", "sku_options", "skus", "stock_items", "stock_line_items", "stock_locations", "stock_reservations", "stock_transfers", "stripe_gateways", "stripe_payments", "subscription_models", "tags", "tax_calculators", "tax_categories", "tax_rules", "taxjar_accounts", "transactions", "versions", "voids", "webhooks", "wire_transfers"];
14683
+ type ResourceTypeLock = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'application' | 'attachments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'billing_info_validation_rules' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | 'captures' | 'carrier_accounts' | 'checkout_com_gateways' | 'checkout_com_payments' | 'cleanups' | 'coupon_codes_promotion_rules' | 'coupon_recipients' | 'coupons' | 'custom_promotion_rules' | 'customer_addresses' | 'customer_groups' | 'customer_password_resets' | 'customer_payment_sources' | 'customer_subscriptions' | 'customers' | 'delivery_lead_times' | 'event_callbacks' | 'events' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'free_gift_promotions' | 'free_shipping_promotions' | 'geocoders' | 'gift_card_recipients' | 'gift_cards' | 'google_geocoders' | 'imports' | 'in_stock_subscriptions' | 'inventory_models' | 'inventory_return_locations' | 'inventory_stock_locations' | 'klarna_gateways' | 'klarna_payments' | 'line_item_options' | 'line_items' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'order_amount_promotion_rules' | 'order_copies' | 'order_factories' | 'order_subscription_items' | 'order_subscriptions' | 'order_validation_rules' | 'orders' | 'organization' | 'packages' | 'parcel_line_items' | 'parcels' | 'payment_gateways' | 'payment_methods' | 'payment_options' | 'paypal_gateways' | 'paypal_payments' | 'percentage_discount_promotions' | 'price_frequency_tiers' | 'price_list_schedulers' | 'price_lists' | 'price_tiers' | 'price_volume_tiers' | 'prices' | 'promotion_rules' | 'promotions' | 'recurring_order_copies' | 'refunds' | 'reserved_stocks' | 'resource_errors' | 'return_line_items' | 'returns' | 'satispay_gateways' | 'satispay_payments' | 'shipments' | 'shipping_categories' | 'shipping_method_tiers' | 'shipping_methods' | 'shipping_weight_tiers' | 'shipping_zones' | 'sku_list_items' | 'sku_list_promotion_rules' | 'sku_lists' | 'sku_options' | 'skus' | 'stock_items' | 'stock_line_items' | 'stock_locations' | 'stock_reservations' | 'stock_transfers' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'tax_calculators' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'transactions' | 'versions' | 'voids' | 'webhooks' | 'wire_transfers';
14684
+ declare const resourceList: readonly ["addresses", "adjustments", "adyen_gateways", "adyen_payments", "application", "attachments", "authorizations", "avalara_accounts", "axerve_gateways", "axerve_payments", "billing_info_validation_rules", "bing_geocoders", "braintree_gateways", "braintree_payments", "bundles", "buy_x_pay_y_promotions", "captures", "carrier_accounts", "checkout_com_gateways", "checkout_com_payments", "cleanups", "coupon_codes_promotion_rules", "coupon_recipients", "coupons", "custom_promotion_rules", "customer_addresses", "customer_groups", "customer_password_resets", "customer_payment_sources", "customer_subscriptions", "customers", "delivery_lead_times", "event_callbacks", "events", "exports", "external_gateways", "external_payments", "external_promotions", "external_tax_calculators", "fixed_amount_promotions", "fixed_price_promotions", "free_gift_promotions", "free_shipping_promotions", "geocoders", "gift_card_recipients", "gift_cards", "google_geocoders", "imports", "in_stock_subscriptions", "inventory_models", "inventory_return_locations", "inventory_stock_locations", "klarna_gateways", "klarna_payments", "line_item_options", "line_items", "manual_gateways", "manual_tax_calculators", "markets", "merchants", "order_amount_promotion_rules", "order_copies", "order_factories", "order_subscription_items", "order_subscriptions", "order_validation_rules", "orders", "organization", "packages", "parcel_line_items", "parcels", "payment_gateways", "payment_methods", "payment_options", "paypal_gateways", "paypal_payments", "percentage_discount_promotions", "price_frequency_tiers", "price_list_schedulers", "price_lists", "price_tiers", "price_volume_tiers", "prices", "promotion_rules", "promotions", "recurring_order_copies", "refunds", "reserved_stocks", "resource_errors", "return_line_items", "returns", "satispay_gateways", "satispay_payments", "shipments", "shipping_categories", "shipping_method_tiers", "shipping_methods", "shipping_weight_tiers", "shipping_zones", "sku_list_items", "sku_list_promotion_rules", "sku_lists", "sku_options", "skus", "stock_items", "stock_line_items", "stock_locations", "stock_reservations", "stock_transfers", "stripe_gateways", "stripe_payments", "subscription_models", "tags", "tax_calculators", "tax_categories", "tax_rules", "taxjar_accounts", "transactions", "versions", "voids", "webhooks", "wire_transfers"];
14491
14685
  declare const singletonList: readonly ["application", "organization"];
14492
14686
  type RetrievableResourceType = ResourceTypeLock;
14493
14687
  type RetrievableResource = Resource & {
@@ -14497,15 +14691,15 @@ type ListableResourceType = Exclude<ResourceTypeLock, 'application' | 'organizat
14497
14691
  type ListableResource = Resource & {
14498
14692
  type: ListableResourceType;
14499
14693
  };
14500
- type CreatableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'billing_info_validation_rules' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | 'checkout_com_gateways' | 'checkout_com_payments' | 'cleanups' | 'coupon_codes_promotion_rules' | 'coupon_recipients' | 'coupons' | 'custom_promotion_rules' | 'customer_addresses' | 'customer_groups' | 'customer_password_resets' | 'customer_payment_sources' | 'customer_subscriptions' | 'customers' | 'delivery_lead_times' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'free_gift_promotions' | 'free_shipping_promotions' | 'gift_card_recipients' | 'gift_cards' | 'google_geocoders' | 'imports' | 'in_stock_subscriptions' | 'inventory_models' | 'inventory_return_locations' | 'inventory_stock_locations' | 'klarna_gateways' | 'klarna_payments' | 'line_item_options' | 'line_items' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'order_amount_promotion_rules' | 'order_copies' | 'order_subscription_items' | 'order_subscriptions' | 'orders' | 'packages' | 'parcel_line_items' | 'parcels' | 'payment_methods' | 'payment_options' | 'paypal_gateways' | 'paypal_payments' | 'percentage_discount_promotions' | 'price_frequency_tiers' | 'price_lists' | 'price_volume_tiers' | 'prices' | 'recurring_order_copies' | 'return_line_items' | 'returns' | 'satispay_gateways' | 'satispay_payments' | 'shipments' | 'shipping_categories' | 'shipping_methods' | 'shipping_weight_tiers' | 'shipping_zones' | 'sku_list_items' | 'sku_list_promotion_rules' | 'sku_lists' | 'sku_options' | 'skus' | 'stock_items' | 'stock_line_items' | 'stock_locations' | 'stock_reservations' | 'stock_transfers' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'webhooks' | 'wire_transfers';
14694
+ type CreatableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'billing_info_validation_rules' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | 'checkout_com_gateways' | 'checkout_com_payments' | 'cleanups' | 'coupon_codes_promotion_rules' | 'coupon_recipients' | 'coupons' | 'custom_promotion_rules' | 'customer_addresses' | 'customer_groups' | 'customer_password_resets' | 'customer_payment_sources' | 'customer_subscriptions' | 'customers' | 'delivery_lead_times' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'free_gift_promotions' | 'free_shipping_promotions' | 'gift_card_recipients' | 'gift_cards' | 'google_geocoders' | 'imports' | 'in_stock_subscriptions' | 'inventory_models' | 'inventory_return_locations' | 'inventory_stock_locations' | 'klarna_gateways' | 'klarna_payments' | 'line_item_options' | 'line_items' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'order_amount_promotion_rules' | 'order_copies' | 'order_subscription_items' | 'order_subscriptions' | 'orders' | 'packages' | 'parcel_line_items' | 'parcels' | 'payment_methods' | 'payment_options' | 'paypal_gateways' | 'paypal_payments' | 'percentage_discount_promotions' | 'price_frequency_tiers' | 'price_list_schedulers' | 'price_lists' | 'price_volume_tiers' | 'prices' | 'recurring_order_copies' | 'return_line_items' | 'returns' | 'satispay_gateways' | 'satispay_payments' | 'shipments' | 'shipping_categories' | 'shipping_methods' | 'shipping_weight_tiers' | 'shipping_zones' | 'sku_list_items' | 'sku_list_promotion_rules' | 'sku_lists' | 'sku_options' | 'skus' | 'stock_items' | 'stock_line_items' | 'stock_locations' | 'stock_reservations' | 'stock_transfers' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'webhooks' | 'wire_transfers';
14501
14695
  type CreatableResource = Resource & {
14502
14696
  type: CreatableResourceType;
14503
14697
  };
14504
- type UpdatableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'billing_info_validation_rules' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | 'captures' | 'checkout_com_gateways' | 'checkout_com_payments' | 'coupon_codes_promotion_rules' | 'coupon_recipients' | 'coupons' | 'custom_promotion_rules' | 'customer_addresses' | 'customer_groups' | 'customer_password_resets' | 'customer_payment_sources' | 'customer_subscriptions' | 'customers' | 'delivery_lead_times' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'free_gift_promotions' | 'free_shipping_promotions' | 'gift_card_recipients' | 'gift_cards' | 'google_geocoders' | 'in_stock_subscriptions' | 'inventory_models' | 'inventory_return_locations' | 'inventory_stock_locations' | 'klarna_gateways' | 'klarna_payments' | 'line_item_options' | 'line_items' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'order_amount_promotion_rules' | 'order_copies' | 'order_subscription_items' | 'order_subscriptions' | 'orders' | 'packages' | 'parcel_line_items' | 'parcels' | 'payment_methods' | 'payment_options' | 'paypal_gateways' | 'paypal_payments' | 'percentage_discount_promotions' | 'price_frequency_tiers' | 'price_lists' | 'price_volume_tiers' | 'prices' | 'recurring_order_copies' | 'return_line_items' | 'returns' | 'satispay_gateways' | 'satispay_payments' | 'shipments' | 'shipping_categories' | 'shipping_methods' | 'shipping_weight_tiers' | 'shipping_zones' | 'sku_list_items' | 'sku_list_promotion_rules' | 'sku_lists' | 'sku_options' | 'skus' | 'stock_items' | 'stock_line_items' | 'stock_locations' | 'stock_reservations' | 'stock_transfers' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'webhooks' | 'wire_transfers';
14698
+ type UpdatableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'billing_info_validation_rules' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | 'captures' | 'checkout_com_gateways' | 'checkout_com_payments' | 'coupon_codes_promotion_rules' | 'coupon_recipients' | 'coupons' | 'custom_promotion_rules' | 'customer_addresses' | 'customer_groups' | 'customer_password_resets' | 'customer_payment_sources' | 'customer_subscriptions' | 'customers' | 'delivery_lead_times' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'free_gift_promotions' | 'free_shipping_promotions' | 'gift_card_recipients' | 'gift_cards' | 'google_geocoders' | 'in_stock_subscriptions' | 'inventory_models' | 'inventory_return_locations' | 'inventory_stock_locations' | 'klarna_gateways' | 'klarna_payments' | 'line_item_options' | 'line_items' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'order_amount_promotion_rules' | 'order_copies' | 'order_subscription_items' | 'order_subscriptions' | 'orders' | 'packages' | 'parcel_line_items' | 'parcels' | 'payment_methods' | 'payment_options' | 'paypal_gateways' | 'paypal_payments' | 'percentage_discount_promotions' | 'price_frequency_tiers' | 'price_list_schedulers' | 'price_lists' | 'price_volume_tiers' | 'prices' | 'recurring_order_copies' | 'return_line_items' | 'returns' | 'satispay_gateways' | 'satispay_payments' | 'shipments' | 'shipping_categories' | 'shipping_methods' | 'shipping_weight_tiers' | 'shipping_zones' | 'sku_list_items' | 'sku_list_promotion_rules' | 'sku_lists' | 'sku_options' | 'skus' | 'stock_items' | 'stock_line_items' | 'stock_locations' | 'stock_reservations' | 'stock_transfers' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'webhooks' | 'wire_transfers';
14505
14699
  type UpdatableResource = Resource & {
14506
14700
  type: UpdatableResourceType;
14507
14701
  };
14508
- type DeletableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'billing_info_validation_rules' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | 'checkout_com_gateways' | 'checkout_com_payments' | 'cleanups' | 'coupon_codes_promotion_rules' | 'coupon_recipients' | 'coupons' | 'custom_promotion_rules' | 'customer_addresses' | 'customer_groups' | 'customer_password_resets' | 'customer_payment_sources' | 'customer_subscriptions' | 'customers' | 'delivery_lead_times' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'free_gift_promotions' | 'free_shipping_promotions' | 'gift_card_recipients' | 'gift_cards' | 'google_geocoders' | 'imports' | 'in_stock_subscriptions' | 'inventory_models' | 'inventory_return_locations' | 'inventory_stock_locations' | 'klarna_gateways' | 'klarna_payments' | 'line_item_options' | 'line_items' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'order_amount_promotion_rules' | 'order_copies' | 'order_subscription_items' | 'order_subscriptions' | 'orders' | 'packages' | 'parcel_line_items' | 'parcels' | 'payment_methods' | 'payment_options' | 'paypal_gateways' | 'paypal_payments' | 'percentage_discount_promotions' | 'price_frequency_tiers' | 'price_lists' | 'price_volume_tiers' | 'prices' | 'recurring_order_copies' | 'return_line_items' | 'returns' | 'satispay_gateways' | 'satispay_payments' | 'shipments' | 'shipping_categories' | 'shipping_methods' | 'shipping_weight_tiers' | 'shipping_zones' | 'sku_list_items' | 'sku_list_promotion_rules' | 'sku_lists' | 'sku_options' | 'skus' | 'stock_items' | 'stock_line_items' | 'stock_locations' | 'stock_reservations' | 'stock_transfers' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'webhooks' | 'wire_transfers';
14702
+ type DeletableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'billing_info_validation_rules' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | 'checkout_com_gateways' | 'checkout_com_payments' | 'cleanups' | 'coupon_codes_promotion_rules' | 'coupon_recipients' | 'coupons' | 'custom_promotion_rules' | 'customer_addresses' | 'customer_groups' | 'customer_password_resets' | 'customer_payment_sources' | 'customer_subscriptions' | 'customers' | 'delivery_lead_times' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'free_gift_promotions' | 'free_shipping_promotions' | 'gift_card_recipients' | 'gift_cards' | 'google_geocoders' | 'imports' | 'in_stock_subscriptions' | 'inventory_models' | 'inventory_return_locations' | 'inventory_stock_locations' | 'klarna_gateways' | 'klarna_payments' | 'line_item_options' | 'line_items' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'order_amount_promotion_rules' | 'order_copies' | 'order_subscription_items' | 'order_subscriptions' | 'orders' | 'packages' | 'parcel_line_items' | 'parcels' | 'payment_methods' | 'payment_options' | 'paypal_gateways' | 'paypal_payments' | 'percentage_discount_promotions' | 'price_frequency_tiers' | 'price_list_schedulers' | 'price_lists' | 'price_volume_tiers' | 'prices' | 'recurring_order_copies' | 'return_line_items' | 'returns' | 'satispay_gateways' | 'satispay_payments' | 'shipments' | 'shipping_categories' | 'shipping_methods' | 'shipping_weight_tiers' | 'shipping_zones' | 'sku_list_items' | 'sku_list_promotion_rules' | 'sku_lists' | 'sku_options' | 'skus' | 'stock_items' | 'stock_line_items' | 'stock_locations' | 'stock_reservations' | 'stock_transfers' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'webhooks' | 'wire_transfers';
14509
14703
  type DeletableResource = Resource & {
14510
14704
  type: DeletableResourceType;
14511
14705
  };
@@ -14516,7 +14710,7 @@ type TaggableResource = Resource & {
14516
14710
  type: TagType;
14517
14711
  }> | null;
14518
14712
  };
14519
- type VersionableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'billing_info_validation_rules' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | 'captures' | 'carrier_accounts' | 'checkout_com_gateways' | 'checkout_com_payments' | 'cleanups' | 'coupon_codes_promotion_rules' | 'coupon_recipients' | 'coupons' | 'custom_promotion_rules' | 'customer_addresses' | 'customer_groups' | 'customer_payment_sources' | 'customer_subscriptions' | 'delivery_lead_times' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'free_gift_promotions' | 'free_shipping_promotions' | 'gift_card_recipients' | 'gift_cards' | 'in_stock_subscriptions' | 'inventory_models' | 'inventory_return_locations' | 'inventory_stock_locations' | 'klarna_gateways' | 'klarna_payments' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'order_amount_promotion_rules' | 'order_subscriptions' | 'order_validation_rules' | 'orders' | 'packages' | 'parcel_line_items' | 'parcels' | 'payment_gateways' | 'payment_methods' | 'paypal_gateways' | 'paypal_payments' | 'percentage_discount_promotions' | 'price_frequency_tiers' | 'price_lists' | 'price_tiers' | 'price_volume_tiers' | 'prices' | 'promotion_rules' | 'promotions' | 'refunds' | 'returns' | 'satispay_gateways' | 'satispay_payments' | 'shipments' | 'shipping_categories' | 'shipping_method_tiers' | 'shipping_methods' | 'shipping_weight_tiers' | 'shipping_zones' | 'sku_list_items' | 'sku_list_promotion_rules' | 'sku_lists' | 'sku_options' | 'skus' | 'stock_items' | 'stock_line_items' | 'stock_locations' | 'stock_transfers' | 'stripe_gateways' | 'stripe_payments' | 'tax_calculators' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'transactions' | 'voids' | 'webhooks' | 'wire_transfers';
14713
+ type VersionableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'billing_info_validation_rules' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | 'captures' | 'carrier_accounts' | 'checkout_com_gateways' | 'checkout_com_payments' | 'cleanups' | 'coupon_codes_promotion_rules' | 'coupon_recipients' | 'coupons' | 'custom_promotion_rules' | 'customer_addresses' | 'customer_groups' | 'customer_payment_sources' | 'customer_subscriptions' | 'delivery_lead_times' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'free_gift_promotions' | 'free_shipping_promotions' | 'gift_card_recipients' | 'gift_cards' | 'in_stock_subscriptions' | 'inventory_models' | 'inventory_return_locations' | 'inventory_stock_locations' | 'klarna_gateways' | 'klarna_payments' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'order_amount_promotion_rules' | 'order_subscriptions' | 'order_validation_rules' | 'orders' | 'packages' | 'parcel_line_items' | 'parcels' | 'payment_gateways' | 'payment_methods' | 'paypal_gateways' | 'paypal_payments' | 'percentage_discount_promotions' | 'price_frequency_tiers' | 'price_list_schedulers' | 'price_lists' | 'price_tiers' | 'price_volume_tiers' | 'prices' | 'promotion_rules' | 'promotions' | 'refunds' | 'returns' | 'satispay_gateways' | 'satispay_payments' | 'shipments' | 'shipping_categories' | 'shipping_method_tiers' | 'shipping_methods' | 'shipping_weight_tiers' | 'shipping_zones' | 'sku_list_items' | 'sku_list_promotion_rules' | 'sku_lists' | 'sku_options' | 'skus' | 'stock_items' | 'stock_line_items' | 'stock_locations' | 'stock_transfers' | 'stripe_gateways' | 'stripe_payments' | 'tax_calculators' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'transactions' | 'voids' | 'webhooks' | 'wire_transfers';
14520
14714
  type VersionableResource = Resource & {
14521
14715
  type: VersionableResourceType;
14522
14716
  versions?: Array<ResourceRel & {
@@ -14602,6 +14796,7 @@ type ResourceFields = {
14602
14796
  paypal_payments: PaypalPayment;
14603
14797
  percentage_discount_promotions: PercentageDiscountPromotion;
14604
14798
  price_frequency_tiers: PriceFrequencyTier;
14799
+ price_list_schedulers: PriceListScheduler;
14605
14800
  price_lists: PriceList;
14606
14801
  price_tiers: PriceTier;
14607
14802
  price_volume_tiers: PriceVolumeTier;
@@ -14725,6 +14920,7 @@ type ResourceSortFields = {
14725
14920
  paypal_payments: PaypalPaymentSort;
14726
14921
  percentage_discount_promotions: PercentageDiscountPromotionSort;
14727
14922
  price_frequency_tiers: PriceFrequencyTierSort;
14923
+ price_list_schedulers: PriceListSchedulerSort;
14728
14924
  price_lists: PriceListSort;
14729
14925
  price_tiers: PriceTierSort;
14730
14926
  price_volume_tiers: PriceVolumeTierSort;
@@ -14804,7 +15000,7 @@ type CommerceLayerInitConfig = SdkConfig & ResourcesInitConfig;
14804
15000
  type CommerceLayerConfig = Partial<CommerceLayerInitConfig>;
14805
15001
  declare class CommerceLayerClient {
14806
15002
  #private;
14807
- readonly openApiSchemaVersion = "5.2.2";
15003
+ readonly openApiSchemaVersion = "5.3.1";
14808
15004
  constructor(config: CommerceLayerInitConfig);
14809
15005
  get addresses(): Addresses;
14810
15006
  get adjustments(): Adjustments;
@@ -14884,6 +15080,7 @@ declare class CommerceLayerClient {
14884
15080
  get paypal_payments(): PaypalPayments;
14885
15081
  get percentage_discount_promotions(): PercentageDiscountPromotions;
14886
15082
  get price_frequency_tiers(): PriceFrequencyTiers;
15083
+ get price_list_schedulers(): PriceListSchedulers;
14887
15084
  get price_lists(): PriceLists;
14888
15085
  get price_tiers(): PriceTiers;
14889
15086
  get price_volume_tiers(): PriceVolumeTiers;
@@ -14955,4 +15152,4 @@ declare const CommerceLayerStatic: {
14955
15152
  readonly schemaVersion: string;
14956
15153
  };
14957
15154
 
14958
- export { type Address, type AddressCreate, type AddressSort, type AddressUpdate, Addresses, type Adjustment, type AdjustmentCreate, type AdjustmentSort, type AdjustmentUpdate, Adjustments, type AdyenGateway, type AdyenGatewayCreate, type AdyenGatewaySort, type AdyenGatewayUpdate, AdyenGateways, type AdyenPayment, type AdyenPaymentCreate, type AdyenPaymentSort, type AdyenPaymentUpdate, AdyenPayments, ApiError, ApiResource, ApiSingleton, type Application, type ApplicationSort, Applications, type Attachment, type AttachmentCreate, type AttachmentSort, type AttachmentUpdate, Attachments, type Authorization, type AuthorizationSort, type AuthorizationUpdate, Authorizations, type AvalaraAccount, type AvalaraAccountCreate, type AvalaraAccountSort, type AvalaraAccountUpdate, AvalaraAccounts, type AxerveGateway, type AxerveGatewayCreate, type AxerveGatewaySort, type AxerveGatewayUpdate, AxerveGateways, type AxervePayment, type AxervePaymentCreate, type AxervePaymentSort, type AxervePaymentUpdate, AxervePayments, type BillingInfoValidationRule, type BillingInfoValidationRuleCreate, type BillingInfoValidationRuleSort, type BillingInfoValidationRuleUpdate, BillingInfoValidationRules, type BingGeocoder, type BingGeocoderCreate, type BingGeocoderSort, type BingGeocoderUpdate, BingGeocoders, type BraintreeGateway, type BraintreeGatewayCreate, type BraintreeGatewaySort, type BraintreeGatewayUpdate, BraintreeGateways, type BraintreePayment, type BraintreePaymentCreate, type BraintreePaymentSort, type BraintreePaymentUpdate, BraintreePayments, type Bundle, type BundleCreate, type BundleSort, type BundleUpdate, Bundles, type BuyXPayYPromotion, type BuyXPayYPromotionCreate, type BuyXPayYPromotionSort, type BuyXPayYPromotionUpdate, BuyXPayYPromotions, type Capture, type CaptureSort, type CaptureUpdate, Captures, type CarrierAccount, type CarrierAccountSort, CarrierAccounts, type CheckoutComGateway, type CheckoutComGatewayCreate, type CheckoutComGatewaySort, type CheckoutComGatewayUpdate, CheckoutComGateways, type CheckoutComPayment, type CheckoutComPaymentCreate, type CheckoutComPaymentSort, type CheckoutComPaymentUpdate, CheckoutComPayments, type Cleanup, type CleanupCreate, type CleanupSort, Cleanups, CommerceLayer, CommerceLayerClient, type CommerceLayerConfig, type CommerceLayerInitConfig, CommerceLayerStatic, type Coupon, type CouponCodesPromotionRule, type CouponCodesPromotionRuleCreate, type CouponCodesPromotionRuleSort, type CouponCodesPromotionRuleUpdate, CouponCodesPromotionRules, type CouponCreate, type CouponRecipient, type CouponRecipientCreate, type CouponRecipientSort, type CouponRecipientUpdate, CouponRecipients, type CouponSort, type CouponUpdate, Coupons, type CreatableResource, type CreatableResourceType, type CustomPromotionRule, type CustomPromotionRuleCreate, type CustomPromotionRuleSort, type CustomPromotionRuleUpdate, CustomPromotionRules, type Customer, type CustomerAddress, type CustomerAddressCreate, type CustomerAddressSort, type CustomerAddressUpdate, CustomerAddresses, type CustomerCreate, type CustomerGroup, type CustomerGroupCreate, type CustomerGroupSort, type CustomerGroupUpdate, CustomerGroups, type CustomerPasswordReset, type CustomerPasswordResetCreate, type CustomerPasswordResetSort, type CustomerPasswordResetUpdate, CustomerPasswordResets, type CustomerPaymentSource, type CustomerPaymentSourceCreate, type CustomerPaymentSourceSort, type CustomerPaymentSourceUpdate, CustomerPaymentSources, type CustomerSort, type CustomerSubscription, type CustomerSubscriptionCreate, type CustomerSubscriptionSort, type CustomerSubscriptionUpdate, CustomerSubscriptions, type CustomerUpdate, Customers, type DeletableResource, type DeletableResourceType, type DeliveryLeadTime, type DeliveryLeadTimeCreate, type DeliveryLeadTimeSort, type DeliveryLeadTimeUpdate, DeliveryLeadTimes, type ErrorObj, ErrorType, type Event, type EventCallback, type EventCallbackSort, EventCallbacks, type EventSort, Events, type Export, type ExportCreate, type ExportSort, Exports, type ExternalGateway, type ExternalGatewayCreate, type ExternalGatewaySort, type ExternalGatewayUpdate, ExternalGateways, type ExternalPayment, type ExternalPaymentCreate, type ExternalPaymentSort, type ExternalPaymentUpdate, ExternalPayments, type ExternalPromotion, type ExternalPromotionCreate, type ExternalPromotionSort, type ExternalPromotionUpdate, ExternalPromotions, type ExternalTaxCalculator, type ExternalTaxCalculatorCreate, type ExternalTaxCalculatorSort, type ExternalTaxCalculatorUpdate, ExternalTaxCalculators, type FixedAmountPromotion, type FixedAmountPromotionCreate, type FixedAmountPromotionSort, type FixedAmountPromotionUpdate, FixedAmountPromotions, type FixedPricePromotion, type FixedPricePromotionCreate, type FixedPricePromotionSort, type FixedPricePromotionUpdate, FixedPricePromotions, type FreeGiftPromotion, type FreeGiftPromotionCreate, type FreeGiftPromotionSort, type FreeGiftPromotionUpdate, FreeGiftPromotions, type FreeShippingPromotion, type FreeShippingPromotionCreate, type FreeShippingPromotionSort, type FreeShippingPromotionUpdate, FreeShippingPromotions, type Geocoder, type GeocoderSort, Geocoders, type GiftCard, type GiftCardCreate, type GiftCardRecipient, type GiftCardRecipientCreate, type GiftCardRecipientSort, type GiftCardRecipientUpdate, GiftCardRecipients, type GiftCardSort, type GiftCardUpdate, GiftCards, type GoogleGeocoder, type GoogleGeocoderCreate, type GoogleGeocoderSort, type GoogleGeocoderUpdate, GoogleGeocoders, type HeadersObj, type Import, type ImportCreate, type ImportSort, Imports, type InStockSubscription, type InStockSubscriptionCreate, type InStockSubscriptionSort, type InStockSubscriptionUpdate, InStockSubscriptions, type InventoryModel, type InventoryModelCreate, type InventoryModelSort, type InventoryModelUpdate, InventoryModels, type InventoryReturnLocation, type InventoryReturnLocationCreate, type InventoryReturnLocationSort, type InventoryReturnLocationUpdate, InventoryReturnLocations, type InventoryStockLocation, type InventoryStockLocationCreate, type InventoryStockLocationSort, type InventoryStockLocationUpdate, InventoryStockLocations, type KlarnaGateway, type KlarnaGatewayCreate, type KlarnaGatewaySort, type KlarnaGatewayUpdate, KlarnaGateways, type KlarnaPayment, type KlarnaPaymentCreate, type KlarnaPaymentSort, type KlarnaPaymentUpdate, KlarnaPayments, type LineItem, type LineItemCreate, type LineItemOption, type LineItemOptionCreate, type LineItemOptionSort, type LineItemOptionUpdate, LineItemOptions, type LineItemSort, type LineItemUpdate, LineItems, type ListMeta, ListResponse, type ListableResource, type ListableResourceType, type ManualGateway, type ManualGatewayCreate, type ManualGatewaySort, type ManualGatewayUpdate, ManualGateways, type ManualTaxCalculator, type ManualTaxCalculatorCreate, type ManualTaxCalculatorSort, type ManualTaxCalculatorUpdate, ManualTaxCalculators, type Market, type MarketCreate, type MarketSort, type MarketUpdate, Markets, type Merchant, type MerchantCreate, type MerchantSort, type MerchantUpdate, Merchants, type Metadata, type Order, type OrderAmountPromotionRule, type OrderAmountPromotionRuleCreate, type OrderAmountPromotionRuleSort, type OrderAmountPromotionRuleUpdate, OrderAmountPromotionRules, OrderCopies, type OrderCopy, type OrderCopyCreate, type OrderCopySort, type OrderCopyUpdate, type OrderCreate, OrderFactories, type OrderFactory, type OrderFactorySort, type OrderSort, type OrderSubscription, type OrderSubscriptionCreate, type OrderSubscriptionItem, type OrderSubscriptionItemCreate, type OrderSubscriptionItemSort, type OrderSubscriptionItemUpdate, OrderSubscriptionItems, type OrderSubscriptionSort, type OrderSubscriptionUpdate, OrderSubscriptions, type OrderUpdate, type OrderValidationRule, type OrderValidationRuleSort, OrderValidationRules, Orders, type Organization, type OrganizationSort, Organizations, type Package, type PackageCreate, type PackageSort, type PackageUpdate, Packages, type Parcel, type ParcelCreate, type ParcelLineItem, type ParcelLineItemCreate, type ParcelLineItemSort, type ParcelLineItemUpdate, ParcelLineItems, type ParcelSort, type ParcelUpdate, Parcels, type PaymentGateway, type PaymentGatewaySort, PaymentGateways, type PaymentMethod, type PaymentMethodCreate, type PaymentMethodSort, type PaymentMethodUpdate, PaymentMethods, type PaymentOption, type PaymentOptionCreate, type PaymentOptionSort, type PaymentOptionUpdate, PaymentOptions, type PaypalGateway, type PaypalGatewayCreate, type PaypalGatewaySort, type PaypalGatewayUpdate, PaypalGateways, type PaypalPayment, type PaypalPaymentCreate, type PaypalPaymentSort, type PaypalPaymentUpdate, PaypalPayments, type PercentageDiscountPromotion, type PercentageDiscountPromotionCreate, type PercentageDiscountPromotionSort, type PercentageDiscountPromotionUpdate, PercentageDiscountPromotions, type Price, type PriceCreate, type PriceFrequencyTier, type PriceFrequencyTierCreate, type PriceFrequencyTierSort, type PriceFrequencyTierUpdate, PriceFrequencyTiers, type PriceList, type PriceListCreate, type PriceListSort, type PriceListUpdate, PriceLists, type PriceSort, type PriceTier, type PriceTierSort, PriceTiers, type PriceUpdate, type PriceVolumeTier, type PriceVolumeTierCreate, type PriceVolumeTierSort, type PriceVolumeTierUpdate, PriceVolumeTiers, Prices, type Promotion, type PromotionRule, type PromotionRuleSort, PromotionRules, type PromotionSort, Promotions, type QueryArrayFields, type QueryArraySortable, type QueryFilter, type QueryInclude, type QueryPageNumber, type QueryPageSize, type QueryParams, type QueryParamsList, type QueryParamsRetrieve, type QueryRecordFields, type QueryRecordSortable, RecurringOrderCopies, type RecurringOrderCopy, type RecurringOrderCopyCreate, type RecurringOrderCopySort, type RecurringOrderCopyUpdate, type Refund, type RefundSort, Refunds, type RequestObj, type ReservedStock, type ReservedStockSort, ReservedStocks, type Resource, ResourceAdapter, type ResourceCreate, type ResourceError, type ResourceErrorSort, ResourceErrors, type ResourceFields, type ResourceFilter, type ResourceId, type ResourceRel, type ResourceSort, type ResourceSortFields, type ResourceType, type ResourceTypeLock, type ResourceUpdate, type ResourcesConfig, type ResourcesInitConfig, type ResponseObj, type RetrievableResource, type RetrievableResourceType, type Return, type ReturnCreate, type ReturnLineItem, type ReturnLineItemCreate, type ReturnLineItemSort, type ReturnLineItemUpdate, ReturnLineItems, type ReturnSort, type ReturnUpdate, Returns, type SatispayGateway, type SatispayGatewayCreate, type SatispayGatewaySort, type SatispayGatewayUpdate, SatispayGateways, type SatispayPayment, type SatispayPaymentCreate, type SatispayPaymentSort, type SatispayPaymentUpdate, SatispayPayments, SdkError, type Shipment, type ShipmentCreate, type ShipmentSort, type ShipmentUpdate, Shipments, ShippingCategories, type ShippingCategory, type ShippingCategoryCreate, type ShippingCategorySort, type ShippingCategoryUpdate, type ShippingMethod, type ShippingMethodCreate, type ShippingMethodSort, type ShippingMethodTier, type ShippingMethodTierSort, ShippingMethodTiers, type ShippingMethodUpdate, ShippingMethods, type ShippingWeightTier, type ShippingWeightTierCreate, type ShippingWeightTierSort, type ShippingWeightTierUpdate, ShippingWeightTiers, type ShippingZone, type ShippingZoneCreate, type ShippingZoneSort, type ShippingZoneUpdate, ShippingZones, type Sku, type SkuCreate, type SkuList, type SkuListCreate, type SkuListItem, type SkuListItemCreate, type SkuListItemSort, type SkuListItemUpdate, SkuListItems, type SkuListPromotionRule, type SkuListPromotionRuleCreate, type SkuListPromotionRuleSort, type SkuListPromotionRuleUpdate, SkuListPromotionRules, type SkuListSort, type SkuListUpdate, SkuLists, type SkuOption, type SkuOptionCreate, type SkuOptionSort, type SkuOptionUpdate, SkuOptions, type SkuSort, type SkuUpdate, Skus, type StockItem, type StockItemCreate, type StockItemSort, type StockItemUpdate, StockItems, type StockLineItem, type StockLineItemCreate, type StockLineItemSort, type StockLineItemUpdate, StockLineItems, type StockLocation, type StockLocationCreate, type StockLocationSort, type StockLocationUpdate, StockLocations, type StockReservation, type StockReservationCreate, type StockReservationSort, type StockReservationUpdate, StockReservations, type StockTransfer, type StockTransferCreate, type StockTransferSort, type StockTransferUpdate, StockTransfers, type StripeGateway, type StripeGatewayCreate, type StripeGatewaySort, type StripeGatewayUpdate, StripeGateways, type StripePayment, type StripePaymentCreate, type StripePaymentSort, type StripePaymentUpdate, StripePayments, type SubscriptionModel, type SubscriptionModelCreate, type SubscriptionModelSort, type SubscriptionModelUpdate, SubscriptionModels, type Tag, type TagCreate, type TagSort, type TagUpdate, type TaggableResource, type TaggableResourceType, Tags, type TaxCalculator, type TaxCalculatorSort, TaxCalculators, TaxCategories, type TaxCategory, type TaxCategoryCreate, type TaxCategorySort, type TaxCategoryUpdate, type TaxRule, type TaxRuleCreate, type TaxRuleSort, type TaxRuleUpdate, TaxRules, type TaxjarAccount, type TaxjarAccountCreate, type TaxjarAccountSort, type TaxjarAccountUpdate, TaxjarAccounts, type Transaction, type TransactionSort, Transactions, type UpdatableResource, type UpdatableResourceType, type Version, type VersionSort, type VersionableResource, type VersionableResourceType, Versions, type Void, type VoidSort, Voids, type Webhook, type WebhookCreate, type WebhookSort, type WebhookUpdate, Webhooks, type WireTransfer, type WireTransferCreate, type WireTransferSort, type WireTransferUpdate, WireTransfers, apiResourceAdapter, CommerceLayer as default, generateQueryStringParams, generateSearchString, isParamsList, resourceList, singletonList };
15155
+ export { type Address, type AddressCreate, type AddressSort, type AddressUpdate, Addresses, type Adjustment, type AdjustmentCreate, type AdjustmentSort, type AdjustmentUpdate, Adjustments, type AdyenGateway, type AdyenGatewayCreate, type AdyenGatewaySort, type AdyenGatewayUpdate, AdyenGateways, type AdyenPayment, type AdyenPaymentCreate, type AdyenPaymentSort, type AdyenPaymentUpdate, AdyenPayments, ApiError, ApiResource, ApiSingleton, type Application, type ApplicationSort, Applications, type Attachment, type AttachmentCreate, type AttachmentSort, type AttachmentUpdate, Attachments, type Authorization, type AuthorizationSort, type AuthorizationUpdate, Authorizations, type AvalaraAccount, type AvalaraAccountCreate, type AvalaraAccountSort, type AvalaraAccountUpdate, AvalaraAccounts, type AxerveGateway, type AxerveGatewayCreate, type AxerveGatewaySort, type AxerveGatewayUpdate, AxerveGateways, type AxervePayment, type AxervePaymentCreate, type AxervePaymentSort, type AxervePaymentUpdate, AxervePayments, type BillingInfoValidationRule, type BillingInfoValidationRuleCreate, type BillingInfoValidationRuleSort, type BillingInfoValidationRuleUpdate, BillingInfoValidationRules, type BingGeocoder, type BingGeocoderCreate, type BingGeocoderSort, type BingGeocoderUpdate, BingGeocoders, type BraintreeGateway, type BraintreeGatewayCreate, type BraintreeGatewaySort, type BraintreeGatewayUpdate, BraintreeGateways, type BraintreePayment, type BraintreePaymentCreate, type BraintreePaymentSort, type BraintreePaymentUpdate, BraintreePayments, type Bundle, type BundleCreate, type BundleSort, type BundleUpdate, Bundles, type BuyXPayYPromotion, type BuyXPayYPromotionCreate, type BuyXPayYPromotionSort, type BuyXPayYPromotionUpdate, BuyXPayYPromotions, type Capture, type CaptureSort, type CaptureUpdate, Captures, type CarrierAccount, type CarrierAccountSort, CarrierAccounts, type CheckoutComGateway, type CheckoutComGatewayCreate, type CheckoutComGatewaySort, type CheckoutComGatewayUpdate, CheckoutComGateways, type CheckoutComPayment, type CheckoutComPaymentCreate, type CheckoutComPaymentSort, type CheckoutComPaymentUpdate, CheckoutComPayments, type Cleanup, type CleanupCreate, type CleanupSort, Cleanups, CommerceLayer, CommerceLayerClient, type CommerceLayerConfig, type CommerceLayerInitConfig, CommerceLayerStatic, type Coupon, type CouponCodesPromotionRule, type CouponCodesPromotionRuleCreate, type CouponCodesPromotionRuleSort, type CouponCodesPromotionRuleUpdate, CouponCodesPromotionRules, type CouponCreate, type CouponRecipient, type CouponRecipientCreate, type CouponRecipientSort, type CouponRecipientUpdate, CouponRecipients, type CouponSort, type CouponUpdate, Coupons, type CreatableResource, type CreatableResourceType, type CustomPromotionRule, type CustomPromotionRuleCreate, type CustomPromotionRuleSort, type CustomPromotionRuleUpdate, CustomPromotionRules, type Customer, type CustomerAddress, type CustomerAddressCreate, type CustomerAddressSort, type CustomerAddressUpdate, CustomerAddresses, type CustomerCreate, type CustomerGroup, type CustomerGroupCreate, type CustomerGroupSort, type CustomerGroupUpdate, CustomerGroups, type CustomerPasswordReset, type CustomerPasswordResetCreate, type CustomerPasswordResetSort, type CustomerPasswordResetUpdate, CustomerPasswordResets, type CustomerPaymentSource, type CustomerPaymentSourceCreate, type CustomerPaymentSourceSort, type CustomerPaymentSourceUpdate, CustomerPaymentSources, type CustomerSort, type CustomerSubscription, type CustomerSubscriptionCreate, type CustomerSubscriptionSort, type CustomerSubscriptionUpdate, CustomerSubscriptions, type CustomerUpdate, Customers, type DeletableResource, type DeletableResourceType, type DeliveryLeadTime, type DeliveryLeadTimeCreate, type DeliveryLeadTimeSort, type DeliveryLeadTimeUpdate, DeliveryLeadTimes, type ErrorObj, ErrorType, type Event, type EventCallback, type EventCallbackSort, EventCallbacks, type EventSort, Events, type Export, type ExportCreate, type ExportSort, Exports, type ExternalGateway, type ExternalGatewayCreate, type ExternalGatewaySort, type ExternalGatewayUpdate, ExternalGateways, type ExternalPayment, type ExternalPaymentCreate, type ExternalPaymentSort, type ExternalPaymentUpdate, ExternalPayments, type ExternalPromotion, type ExternalPromotionCreate, type ExternalPromotionSort, type ExternalPromotionUpdate, ExternalPromotions, type ExternalTaxCalculator, type ExternalTaxCalculatorCreate, type ExternalTaxCalculatorSort, type ExternalTaxCalculatorUpdate, ExternalTaxCalculators, type FixedAmountPromotion, type FixedAmountPromotionCreate, type FixedAmountPromotionSort, type FixedAmountPromotionUpdate, FixedAmountPromotions, type FixedPricePromotion, type FixedPricePromotionCreate, type FixedPricePromotionSort, type FixedPricePromotionUpdate, FixedPricePromotions, type FreeGiftPromotion, type FreeGiftPromotionCreate, type FreeGiftPromotionSort, type FreeGiftPromotionUpdate, FreeGiftPromotions, type FreeShippingPromotion, type FreeShippingPromotionCreate, type FreeShippingPromotionSort, type FreeShippingPromotionUpdate, FreeShippingPromotions, type Geocoder, type GeocoderSort, Geocoders, type GiftCard, type GiftCardCreate, type GiftCardRecipient, type GiftCardRecipientCreate, type GiftCardRecipientSort, type GiftCardRecipientUpdate, GiftCardRecipients, type GiftCardSort, type GiftCardUpdate, GiftCards, type GoogleGeocoder, type GoogleGeocoderCreate, type GoogleGeocoderSort, type GoogleGeocoderUpdate, GoogleGeocoders, type HeadersObj, type Import, type ImportCreate, type ImportSort, Imports, type InStockSubscription, type InStockSubscriptionCreate, type InStockSubscriptionSort, type InStockSubscriptionUpdate, InStockSubscriptions, type InventoryModel, type InventoryModelCreate, type InventoryModelSort, type InventoryModelUpdate, InventoryModels, type InventoryReturnLocation, type InventoryReturnLocationCreate, type InventoryReturnLocationSort, type InventoryReturnLocationUpdate, InventoryReturnLocations, type InventoryStockLocation, type InventoryStockLocationCreate, type InventoryStockLocationSort, type InventoryStockLocationUpdate, InventoryStockLocations, type KlarnaGateway, type KlarnaGatewayCreate, type KlarnaGatewaySort, type KlarnaGatewayUpdate, KlarnaGateways, type KlarnaPayment, type KlarnaPaymentCreate, type KlarnaPaymentSort, type KlarnaPaymentUpdate, KlarnaPayments, type LineItem, type LineItemCreate, type LineItemOption, type LineItemOptionCreate, type LineItemOptionSort, type LineItemOptionUpdate, LineItemOptions, type LineItemSort, type LineItemUpdate, LineItems, type ListMeta, ListResponse, type ListableResource, type ListableResourceType, type ManualGateway, type ManualGatewayCreate, type ManualGatewaySort, type ManualGatewayUpdate, ManualGateways, type ManualTaxCalculator, type ManualTaxCalculatorCreate, type ManualTaxCalculatorSort, type ManualTaxCalculatorUpdate, ManualTaxCalculators, type Market, type MarketCreate, type MarketSort, type MarketUpdate, Markets, type Merchant, type MerchantCreate, type MerchantSort, type MerchantUpdate, Merchants, type Metadata, type Order, type OrderAmountPromotionRule, type OrderAmountPromotionRuleCreate, type OrderAmountPromotionRuleSort, type OrderAmountPromotionRuleUpdate, OrderAmountPromotionRules, OrderCopies, type OrderCopy, type OrderCopyCreate, type OrderCopySort, type OrderCopyUpdate, type OrderCreate, OrderFactories, type OrderFactory, type OrderFactorySort, type OrderSort, type OrderSubscription, type OrderSubscriptionCreate, type OrderSubscriptionItem, type OrderSubscriptionItemCreate, type OrderSubscriptionItemSort, type OrderSubscriptionItemUpdate, OrderSubscriptionItems, type OrderSubscriptionSort, type OrderSubscriptionUpdate, OrderSubscriptions, type OrderUpdate, type OrderValidationRule, type OrderValidationRuleSort, OrderValidationRules, Orders, type Organization, type OrganizationSort, Organizations, type Package, type PackageCreate, type PackageSort, type PackageUpdate, Packages, type Parcel, type ParcelCreate, type ParcelLineItem, type ParcelLineItemCreate, type ParcelLineItemSort, type ParcelLineItemUpdate, ParcelLineItems, type ParcelSort, type ParcelUpdate, Parcels, type PaymentGateway, type PaymentGatewaySort, PaymentGateways, type PaymentMethod, type PaymentMethodCreate, type PaymentMethodSort, type PaymentMethodUpdate, PaymentMethods, type PaymentOption, type PaymentOptionCreate, type PaymentOptionSort, type PaymentOptionUpdate, PaymentOptions, type PaypalGateway, type PaypalGatewayCreate, type PaypalGatewaySort, type PaypalGatewayUpdate, PaypalGateways, type PaypalPayment, type PaypalPaymentCreate, type PaypalPaymentSort, type PaypalPaymentUpdate, PaypalPayments, type PercentageDiscountPromotion, type PercentageDiscountPromotionCreate, type PercentageDiscountPromotionSort, type PercentageDiscountPromotionUpdate, PercentageDiscountPromotions, type Price, type PriceCreate, type PriceFrequencyTier, type PriceFrequencyTierCreate, type PriceFrequencyTierSort, type PriceFrequencyTierUpdate, PriceFrequencyTiers, type PriceList, type PriceListCreate, type PriceListScheduler, type PriceListSchedulerCreate, type PriceListSchedulerSort, type PriceListSchedulerUpdate, PriceListSchedulers, type PriceListSort, type PriceListUpdate, PriceLists, type PriceSort, type PriceTier, type PriceTierSort, PriceTiers, type PriceUpdate, type PriceVolumeTier, type PriceVolumeTierCreate, type PriceVolumeTierSort, type PriceVolumeTierUpdate, PriceVolumeTiers, Prices, type Promotion, type PromotionRule, type PromotionRuleSort, PromotionRules, type PromotionSort, Promotions, type QueryArrayFields, type QueryArraySortable, type QueryFilter, type QueryInclude, type QueryPageNumber, type QueryPageSize, type QueryParams, type QueryParamsList, type QueryParamsRetrieve, type QueryRecordFields, type QueryRecordSortable, RecurringOrderCopies, type RecurringOrderCopy, type RecurringOrderCopyCreate, type RecurringOrderCopySort, type RecurringOrderCopyUpdate, type Refund, type RefundSort, Refunds, type RequestObj, type ReservedStock, type ReservedStockSort, ReservedStocks, type Resource, ResourceAdapter, type ResourceCreate, type ResourceError, type ResourceErrorSort, ResourceErrors, type ResourceFields, type ResourceFilter, type ResourceId, type ResourceRel, type ResourceSort, type ResourceSortFields, type ResourceType, type ResourceTypeLock, type ResourceUpdate, type ResourcesConfig, type ResourcesInitConfig, type ResponseObj, type RetrievableResource, type RetrievableResourceType, type Return, type ReturnCreate, type ReturnLineItem, type ReturnLineItemCreate, type ReturnLineItemSort, type ReturnLineItemUpdate, ReturnLineItems, type ReturnSort, type ReturnUpdate, Returns, type SatispayGateway, type SatispayGatewayCreate, type SatispayGatewaySort, type SatispayGatewayUpdate, SatispayGateways, type SatispayPayment, type SatispayPaymentCreate, type SatispayPaymentSort, type SatispayPaymentUpdate, SatispayPayments, SdkError, type Shipment, type ShipmentCreate, type ShipmentSort, type ShipmentUpdate, Shipments, ShippingCategories, type ShippingCategory, type ShippingCategoryCreate, type ShippingCategorySort, type ShippingCategoryUpdate, type ShippingMethod, type ShippingMethodCreate, type ShippingMethodSort, type ShippingMethodTier, type ShippingMethodTierSort, ShippingMethodTiers, type ShippingMethodUpdate, ShippingMethods, type ShippingWeightTier, type ShippingWeightTierCreate, type ShippingWeightTierSort, type ShippingWeightTierUpdate, ShippingWeightTiers, type ShippingZone, type ShippingZoneCreate, type ShippingZoneSort, type ShippingZoneUpdate, ShippingZones, type Sku, type SkuCreate, type SkuList, type SkuListCreate, type SkuListItem, type SkuListItemCreate, type SkuListItemSort, type SkuListItemUpdate, SkuListItems, type SkuListPromotionRule, type SkuListPromotionRuleCreate, type SkuListPromotionRuleSort, type SkuListPromotionRuleUpdate, SkuListPromotionRules, type SkuListSort, type SkuListUpdate, SkuLists, type SkuOption, type SkuOptionCreate, type SkuOptionSort, type SkuOptionUpdate, SkuOptions, type SkuSort, type SkuUpdate, Skus, type StockItem, type StockItemCreate, type StockItemSort, type StockItemUpdate, StockItems, type StockLineItem, type StockLineItemCreate, type StockLineItemSort, type StockLineItemUpdate, StockLineItems, type StockLocation, type StockLocationCreate, type StockLocationSort, type StockLocationUpdate, StockLocations, type StockReservation, type StockReservationCreate, type StockReservationSort, type StockReservationUpdate, StockReservations, type StockTransfer, type StockTransferCreate, type StockTransferSort, type StockTransferUpdate, StockTransfers, type StripeGateway, type StripeGatewayCreate, type StripeGatewaySort, type StripeGatewayUpdate, StripeGateways, type StripePayment, type StripePaymentCreate, type StripePaymentSort, type StripePaymentUpdate, StripePayments, type SubscriptionModel, type SubscriptionModelCreate, type SubscriptionModelSort, type SubscriptionModelUpdate, SubscriptionModels, type Tag, type TagCreate, type TagSort, type TagUpdate, type TaggableResource, type TaggableResourceType, Tags, type TaxCalculator, type TaxCalculatorSort, TaxCalculators, TaxCategories, type TaxCategory, type TaxCategoryCreate, type TaxCategorySort, type TaxCategoryUpdate, type TaxRule, type TaxRuleCreate, type TaxRuleSort, type TaxRuleUpdate, TaxRules, type TaxjarAccount, type TaxjarAccountCreate, type TaxjarAccountSort, type TaxjarAccountUpdate, TaxjarAccounts, type Transaction, type TransactionSort, Transactions, type UpdatableResource, type UpdatableResourceType, type Version, type VersionSort, type VersionableResource, type VersionableResourceType, Versions, type Void, type VoidSort, Voids, type Webhook, type WebhookCreate, type WebhookSort, type WebhookUpdate, Webhooks, type WireTransfer, type WireTransferCreate, type WireTransferSort, type WireTransferUpdate, WireTransfers, apiResourceAdapter, CommerceLayer as default, generateQueryStringParams, generateSearchString, isParamsList, resourceList, singletonList };