@commercelayer/sdk 6.29.2 → 6.31.0

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.d.mts CHANGED
@@ -1292,10 +1292,10 @@ interface AdyenPaymentUpdate extends ResourceUpdate {
1292
1292
  */
1293
1293
  payment_request_details?: Record<string, any> | null;
1294
1294
  /**
1295
- * The Adyen payment response, used by client (includes 'resultCode' and 'action').
1296
- * @example ```{"foo":"bar"}```
1295
+ * Send this attribute if you want to authorize the payment.
1296
+ * @example ```true```
1297
1297
  */
1298
- payment_response?: Record<string, any> | null;
1298
+ _authorize?: boolean | null;
1299
1299
  /**
1300
1300
  * Send this attribute if you want to send additional details the payment request.
1301
1301
  * @example ```true```
@@ -1311,6 +1311,7 @@ declare class AdyenPayments extends ApiResource<AdyenPayment> {
1311
1311
  order(adyenPaymentId: string | AdyenPayment, params?: QueryParamsRetrieve<Order>, options?: ResourcesConfig): Promise<Order>;
1312
1312
  payment_gateway(adyenPaymentId: string | AdyenPayment, params?: QueryParamsRetrieve<PaymentGateway>, options?: ResourcesConfig): Promise<PaymentGateway>;
1313
1313
  versions(adyenPaymentId: string | AdyenPayment, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
1314
+ _authorize(id: string | AdyenPayment, params?: QueryParamsRetrieve<AdyenPayment>, options?: ResourcesConfig): Promise<AdyenPayment>;
1314
1315
  _details(id: string | AdyenPayment, params?: QueryParamsRetrieve<AdyenPayment>, options?: ResourcesConfig): Promise<AdyenPayment>;
1315
1316
  isAdyenPayment(resource: any): resource is AdyenPayment;
1316
1317
  relationship(id: string | ResourceId | null): AdyenPaymentRel$3;
@@ -2039,6 +2040,16 @@ interface StripePayment extends Resource {
2039
2040
  * @example ```"pk_live_xxxx-yyyy-zzzz"```
2040
2041
  */
2041
2042
  publishable_key?: string | null;
2043
+ /**
2044
+ * The Stripe account ID that these funds are intended for.
2045
+ * @example ```"xxxx-yyyy-zzzz"```
2046
+ */
2047
+ on_behalf_of?: string | null;
2048
+ /**
2049
+ * A string that identifies the resulting payment as part of a group.
2050
+ * @example ```"xxxx-yyyy-zzzz"```
2051
+ */
2052
+ transfer_group?: string | null;
2042
2053
  /**
2043
2054
  * Stripe payment options: 'customer', 'payment_method', 'return_url', etc. Check Stripe payment intent API for more details.
2044
2055
  * @example ```{"customer":"cus_xxx","payment_method":"pm_xxx"}```
@@ -4251,6 +4262,11 @@ interface ShippingMethod extends Resource {
4251
4262
  * @example ```"gr"```
4252
4263
  */
4253
4264
  unit_of_weight?: 'gr' | 'oz' | 'lb' | null;
4265
+ /**
4266
+ * The freight tax identifier code, specific for a particular tax calculator.
4267
+ * @example ```"FR010000"```
4268
+ */
4269
+ tax_code?: string | null;
4254
4270
  /**
4255
4271
  * Time at which this resource was disabled.
4256
4272
  * @example ```"2018-01-01T12:00:00.000Z"```
@@ -4328,6 +4344,11 @@ interface ShippingMethodCreate extends ResourceCreate {
4328
4344
  * @example ```"gr"```
4329
4345
  */
4330
4346
  unit_of_weight?: 'gr' | 'oz' | 'lb' | null;
4347
+ /**
4348
+ * The freight tax identifier code, specific for a particular tax calculator.
4349
+ * @example ```"FR010000"```
4350
+ */
4351
+ tax_code?: string | null;
4331
4352
  /**
4332
4353
  * Send this attribute if you want to mark this resource as disabled.
4333
4354
  * @example ```true```
@@ -4395,6 +4416,11 @@ interface ShippingMethodUpdate extends ResourceUpdate {
4395
4416
  * @example ```"gr"```
4396
4417
  */
4397
4418
  unit_of_weight?: 'gr' | 'oz' | 'lb' | null;
4419
+ /**
4420
+ * The freight tax identifier code, specific for a particular tax calculator.
4421
+ * @example ```"FR010000"```
4422
+ */
4423
+ tax_code?: string | null;
4398
4424
  /**
4399
4425
  * Send this attribute if you want to mark this resource as disabled.
4400
4426
  * @example ```true```
@@ -9057,6 +9083,11 @@ interface Customer extends Resource {
9057
9083
  * @example ```"xxx-yyy-zzz"```
9058
9084
  */
9059
9085
  profile_id?: string | null;
9086
+ /**
9087
+ * A specific code to identify the tax exemption reason for this customer.
9088
+ * @example ```"xxx-yyy-zzz"```
9089
+ */
9090
+ tax_exemption_code?: string | null;
9060
9091
  customer_group?: CustomerGroup | null;
9061
9092
  customer_addresses?: CustomerAddress[] | null;
9062
9093
  customer_payment_sources?: CustomerPaymentSource[] | null;
@@ -9090,6 +9121,11 @@ interface CustomerCreate extends ResourceCreate {
9090
9121
  * @example ```"xxx-yyy-zzz"```
9091
9122
  */
9092
9123
  profile_id?: string | null;
9124
+ /**
9125
+ * A specific code to identify the tax exemption reason for this customer.
9126
+ * @example ```"xxx-yyy-zzz"```
9127
+ */
9128
+ tax_exemption_code?: string | null;
9093
9129
  customer_group?: CustomerGroupRel$2 | null;
9094
9130
  tags?: TagRel$4[] | null;
9095
9131
  }
@@ -9114,6 +9150,11 @@ interface CustomerUpdate extends ResourceUpdate {
9114
9150
  * @example ```"xxx-yyy-zzz"```
9115
9151
  */
9116
9152
  profile_id?: string | null;
9153
+ /**
9154
+ * A specific code to identify the tax exemption reason for this customer.
9155
+ * @example ```"xxx-yyy-zzz"```
9156
+ */
9157
+ tax_exemption_code?: string | null;
9117
9158
  customer_group?: CustomerGroupRel$2 | null;
9118
9159
  tags?: TagRel$4[] | null;
9119
9160
  }
@@ -10227,7 +10268,7 @@ interface OrderUpdate extends ResourceUpdate {
10227
10268
  */
10228
10269
  _nullify_payment_source?: boolean | null;
10229
10270
  /**
10230
- * Send this attribute if you want to set the payment source associated with the last succeeded authorization. At the end of the fix the order should be placed and authorized and ready for approval. Cannot be passed by sales channels.
10271
+ * Send this attribute if you want to set the payment source associated with the last succeeded authorization. At the end of the fix the order should be placed and authorized and ready to be approved. A tentative to fix the payment source is done before approval automatically. Cannot be passed by sales channels.
10231
10272
  * @example ```true```
10232
10273
  */
10233
10274
  _fix_payment_source?: boolean | null;
@@ -12769,12 +12810,14 @@ interface TaxCalculator extends Resource {
12769
12810
  name: string;
12770
12811
  markets?: Market[] | null;
12771
12812
  attachments?: Attachment[] | null;
12813
+ events?: Event[] | null;
12772
12814
  versions?: Version[] | null;
12773
12815
  }
12774
12816
  declare class TaxCalculators extends ApiResource<TaxCalculator> {
12775
12817
  static readonly TYPE: TaxCalculatorType;
12776
12818
  markets(taxCalculatorId: string | TaxCalculator, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
12777
12819
  attachments(taxCalculatorId: string | TaxCalculator, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
12820
+ events(taxCalculatorId: string | TaxCalculator, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
12778
12821
  versions(taxCalculatorId: string | TaxCalculator, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
12779
12822
  isTaxCalculator(resource: any): resource is TaxCalculator;
12780
12823
  relationship(id: string | ResourceId | null): TaxCalculatorRel$1;
@@ -12786,7 +12829,7 @@ type AvalaraAccountType = 'avalara_accounts';
12786
12829
  type AvalaraAccountRel$2 = ResourceRel & {
12787
12830
  type: AvalaraAccountType;
12788
12831
  };
12789
- type TaxCategoryRel$3 = ResourceRel & {
12832
+ type TaxCategoryRel$4 = ResourceRel & {
12790
12833
  type: TaxCategoryType;
12791
12834
  };
12792
12835
  type AvalaraAccountSort = Pick<AvalaraAccount, 'id' | 'name'> & ResourceSort;
@@ -12819,9 +12862,9 @@ interface AvalaraAccount extends Resource {
12819
12862
  ddp?: boolean | null;
12820
12863
  markets?: Market[] | null;
12821
12864
  attachments?: Attachment[] | null;
12865
+ events?: Event[] | null;
12822
12866
  versions?: Version[] | null;
12823
12867
  tax_categories?: TaxCategory[] | null;
12824
- events?: Event[] | null;
12825
12868
  }
12826
12869
  interface AvalaraAccountCreate extends ResourceCreate {
12827
12870
  /**
@@ -12854,7 +12897,7 @@ interface AvalaraAccountCreate extends ResourceCreate {
12854
12897
  * @example ```true```
12855
12898
  */
12856
12899
  ddp?: boolean | null;
12857
- tax_categories?: TaxCategoryRel$3[] | null;
12900
+ tax_categories?: TaxCategoryRel$4[] | null;
12858
12901
  }
12859
12902
  interface AvalaraAccountUpdate extends ResourceUpdate {
12860
12903
  /**
@@ -12887,7 +12930,7 @@ interface AvalaraAccountUpdate extends ResourceUpdate {
12887
12930
  * @example ```true```
12888
12931
  */
12889
12932
  ddp?: boolean | null;
12890
- tax_categories?: TaxCategoryRel$3[] | null;
12933
+ tax_categories?: TaxCategoryRel$4[] | null;
12891
12934
  }
12892
12935
  declare class AvalaraAccounts extends ApiResource<AvalaraAccount> {
12893
12936
  static readonly TYPE: AvalaraAccountType;
@@ -12896,15 +12939,220 @@ declare class AvalaraAccounts extends ApiResource<AvalaraAccount> {
12896
12939
  delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
12897
12940
  markets(avalaraAccountId: string | AvalaraAccount, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
12898
12941
  attachments(avalaraAccountId: string | AvalaraAccount, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
12942
+ events(avalaraAccountId: string | AvalaraAccount, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
12899
12943
  versions(avalaraAccountId: string | AvalaraAccount, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
12900
12944
  tax_categories(avalaraAccountId: string | AvalaraAccount, params?: QueryParamsList<TaxCategory>, options?: ResourcesConfig): Promise<ListResponse<TaxCategory>>;
12901
- events(avalaraAccountId: string | AvalaraAccount, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
12902
12945
  isAvalaraAccount(resource: any): resource is AvalaraAccount;
12903
12946
  relationship(id: string | ResourceId | null): AvalaraAccountRel$2;
12904
12947
  relationshipToMany(...ids: string[]): AvalaraAccountRel$2[];
12905
12948
  type(): AvalaraAccountType;
12906
12949
  }
12907
12950
 
12951
+ type StripeTaxAccountType = 'stripe_tax_accounts';
12952
+ type StripeTaxAccountRel$2 = ResourceRel & {
12953
+ type: StripeTaxAccountType;
12954
+ };
12955
+ type TaxCategoryRel$3 = ResourceRel & {
12956
+ type: TaxCategoryType;
12957
+ };
12958
+ type StripeTaxAccountSort = Pick<StripeTaxAccount, 'id' | 'name'> & ResourceSort;
12959
+ interface StripeTaxAccount extends Resource {
12960
+ readonly type: StripeTaxAccountType;
12961
+ /**
12962
+ * The tax calculator's internal name.
12963
+ * @example ```"Personal tax calculator"```
12964
+ */
12965
+ name: string;
12966
+ /**
12967
+ * Indicates if the transaction will be recorded and visible on the Stripe website.
12968
+ * @example ```true```
12969
+ */
12970
+ commit_invoice?: boolean | null;
12971
+ markets?: Market[] | null;
12972
+ attachments?: Attachment[] | null;
12973
+ events?: Event[] | null;
12974
+ versions?: Version[] | null;
12975
+ tax_categories?: TaxCategory[] | null;
12976
+ }
12977
+ interface StripeTaxAccountCreate extends ResourceCreate {
12978
+ /**
12979
+ * The tax calculator's internal name.
12980
+ * @example ```"Personal tax calculator"```
12981
+ */
12982
+ name: string;
12983
+ /**
12984
+ * The Stripe account API key.
12985
+ * @example ```"STRIPE_API_KEY"```
12986
+ */
12987
+ api_key: string;
12988
+ /**
12989
+ * Indicates if the transaction will be recorded and visible on the Stripe website.
12990
+ * @example ```true```
12991
+ */
12992
+ commit_invoice?: boolean | null;
12993
+ tax_categories?: TaxCategoryRel$3[] | null;
12994
+ }
12995
+ interface StripeTaxAccountUpdate extends ResourceUpdate {
12996
+ /**
12997
+ * The tax calculator's internal name.
12998
+ * @example ```"Personal tax calculator"```
12999
+ */
13000
+ name?: string | null;
13001
+ /**
13002
+ * The Stripe account API key.
13003
+ * @example ```"STRIPE_API_KEY"```
13004
+ */
13005
+ api_key?: string | null;
13006
+ /**
13007
+ * Indicates if the transaction will be recorded and visible on the Stripe website.
13008
+ * @example ```true```
13009
+ */
13010
+ commit_invoice?: boolean | null;
13011
+ tax_categories?: TaxCategoryRel$3[] | null;
13012
+ }
13013
+ declare class StripeTaxAccounts extends ApiResource<StripeTaxAccount> {
13014
+ static readonly TYPE: StripeTaxAccountType;
13015
+ create(resource: StripeTaxAccountCreate, params?: QueryParamsRetrieve<StripeTaxAccount>, options?: ResourcesConfig): Promise<StripeTaxAccount>;
13016
+ update(resource: StripeTaxAccountUpdate, params?: QueryParamsRetrieve<StripeTaxAccount>, options?: ResourcesConfig): Promise<StripeTaxAccount>;
13017
+ delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
13018
+ markets(stripeTaxAccountId: string | StripeTaxAccount, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
13019
+ attachments(stripeTaxAccountId: string | StripeTaxAccount, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
13020
+ events(stripeTaxAccountId: string | StripeTaxAccount, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
13021
+ versions(stripeTaxAccountId: string | StripeTaxAccount, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
13022
+ tax_categories(stripeTaxAccountId: string | StripeTaxAccount, params?: QueryParamsList<TaxCategory>, options?: ResourcesConfig): Promise<ListResponse<TaxCategory>>;
13023
+ isStripeTaxAccount(resource: any): resource is StripeTaxAccount;
13024
+ relationship(id: string | ResourceId | null): StripeTaxAccountRel$2;
13025
+ relationshipToMany(...ids: string[]): StripeTaxAccountRel$2[];
13026
+ type(): StripeTaxAccountType;
13027
+ }
13028
+
13029
+ type VertexAccountType = 'vertex_accounts';
13030
+ type VertexAccountRel$2 = ResourceRel & {
13031
+ type: VertexAccountType;
13032
+ };
13033
+ type VertexAccountSort = Pick<VertexAccount, 'id' | 'name'> & ResourceSort;
13034
+ interface VertexAccount extends Resource {
13035
+ readonly type: VertexAccountType;
13036
+ /**
13037
+ * The tax calculator's internal name.
13038
+ * @example ```"Personal tax calculator"```
13039
+ */
13040
+ name: string;
13041
+ /**
13042
+ * The Vertex account kind. One of 'cloud', 'on_demand', or 'on_premise'.
13043
+ * @example ```"cloud"```
13044
+ */
13045
+ kind?: 'cloud' | 'on_demand' | 'on_premise' | null;
13046
+ /**
13047
+ * The Vertex API baseurl, optional for 'cloud' kind.
13048
+ * @example ```"yourbaseurl"```
13049
+ */
13050
+ baseurl?: string | null;
13051
+ /**
13052
+ * The API endpoint as computed by specified kind and baseurl.
13053
+ * @example ```"https://my_baseurl.ondemand.vertexinc.com"```
13054
+ */
13055
+ api_endpoint?: string | null;
13056
+ /**
13057
+ * Indicates if the transaction will be recorded and visible on the Vertex website.
13058
+ * @example ```true```
13059
+ */
13060
+ commit_invoice?: boolean | null;
13061
+ /**
13062
+ * The expiration date/time of the access token.
13063
+ * @example ```"2018-01-02T12:00:00.000Z"```
13064
+ */
13065
+ token_expires_at?: string | null;
13066
+ markets?: Market[] | null;
13067
+ attachments?: Attachment[] | null;
13068
+ events?: Event[] | null;
13069
+ versions?: Version[] | null;
13070
+ }
13071
+ interface VertexAccountCreate extends ResourceCreate {
13072
+ /**
13073
+ * The tax calculator's internal name.
13074
+ * @example ```"Personal tax calculator"```
13075
+ */
13076
+ name: string;
13077
+ /**
13078
+ * The Vertex account kind. One of 'cloud', 'on_demand', or 'on_premise'.
13079
+ * @example ```"cloud"```
13080
+ */
13081
+ kind?: 'cloud' | 'on_demand' | 'on_premise' | null;
13082
+ /**
13083
+ * The Vertex API baseurl, optional for 'cloud' kind.
13084
+ * @example ```"yourbaseurl"```
13085
+ */
13086
+ baseurl?: string | null;
13087
+ /**
13088
+ * The Vertex account client ID.
13089
+ * @example ```"xxx-yyy-zzz"```
13090
+ */
13091
+ client_id: string;
13092
+ /**
13093
+ * The Vertex account client secret.
13094
+ * @example ```"xxx-yyy-zzz"```
13095
+ */
13096
+ client_secret: string;
13097
+ /**
13098
+ * Indicates if the transaction will be recorded and visible on the Vertex website.
13099
+ * @example ```true```
13100
+ */
13101
+ commit_invoice?: boolean | null;
13102
+ }
13103
+ interface VertexAccountUpdate extends ResourceUpdate {
13104
+ /**
13105
+ * The tax calculator's internal name.
13106
+ * @example ```"Personal tax calculator"```
13107
+ */
13108
+ name?: string | null;
13109
+ /**
13110
+ * The Vertex account kind. One of 'cloud', 'on_demand', or 'on_premise'.
13111
+ * @example ```"cloud"```
13112
+ */
13113
+ kind?: 'cloud' | 'on_demand' | 'on_premise' | null;
13114
+ /**
13115
+ * The Vertex API baseurl, optional for 'cloud' kind.
13116
+ * @example ```"yourbaseurl"```
13117
+ */
13118
+ baseurl?: string | null;
13119
+ /**
13120
+ * The Vertex account client ID.
13121
+ * @example ```"xxx-yyy-zzz"```
13122
+ */
13123
+ client_id?: string | null;
13124
+ /**
13125
+ * The Vertex account client secret.
13126
+ * @example ```"xxx-yyy-zzz"```
13127
+ */
13128
+ client_secret?: string | null;
13129
+ /**
13130
+ * Indicates if the transaction will be recorded and visible on the Vertex website.
13131
+ * @example ```true```
13132
+ */
13133
+ commit_invoice?: boolean | null;
13134
+ /**
13135
+ * Send this attribute if you want to manually refresh the access token.
13136
+ * @example ```true```
13137
+ */
13138
+ _refresh_token?: boolean | null;
13139
+ }
13140
+ declare class VertexAccounts extends ApiResource<VertexAccount> {
13141
+ static readonly TYPE: VertexAccountType;
13142
+ create(resource: VertexAccountCreate, params?: QueryParamsRetrieve<VertexAccount>, options?: ResourcesConfig): Promise<VertexAccount>;
13143
+ update(resource: VertexAccountUpdate, params?: QueryParamsRetrieve<VertexAccount>, options?: ResourcesConfig): Promise<VertexAccount>;
13144
+ delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
13145
+ markets(vertexAccountId: string | VertexAccount, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
13146
+ attachments(vertexAccountId: string | VertexAccount, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
13147
+ events(vertexAccountId: string | VertexAccount, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
13148
+ versions(vertexAccountId: string | VertexAccount, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
13149
+ _refresh_token(id: string | VertexAccount, params?: QueryParamsRetrieve<VertexAccount>, options?: ResourcesConfig): Promise<VertexAccount>;
13150
+ isVertexAccount(resource: any): resource is VertexAccount;
13151
+ relationship(id: string | ResourceId | null): VertexAccountRel$2;
13152
+ relationshipToMany(...ids: string[]): VertexAccountRel$2[];
13153
+ type(): VertexAccountType;
13154
+ }
13155
+
12908
13156
  type TaxjarAccountType = 'taxjar_accounts';
12909
13157
  type TaxjarAccountRel$2 = ResourceRel & {
12910
13158
  type: TaxjarAccountType;
@@ -12922,6 +13170,7 @@ interface TaxjarAccount extends Resource {
12922
13170
  name: string;
12923
13171
  markets?: Market[] | null;
12924
13172
  attachments?: Attachment[] | null;
13173
+ events?: Event[] | null;
12925
13174
  versions?: Version[] | null;
12926
13175
  tax_categories?: TaxCategory[] | null;
12927
13176
  }
@@ -12958,6 +13207,7 @@ declare class TaxjarAccounts extends ApiResource<TaxjarAccount> {
12958
13207
  delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
12959
13208
  markets(taxjarAccountId: string | TaxjarAccount, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
12960
13209
  attachments(taxjarAccountId: string | TaxjarAccount, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
13210
+ events(taxjarAccountId: string | TaxjarAccount, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
12961
13211
  versions(taxjarAccountId: string | TaxjarAccount, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
12962
13212
  tax_categories(taxjarAccountId: string | TaxjarAccount, params?: QueryParamsList<TaxCategory>, options?: ResourcesConfig): Promise<ListResponse<TaxCategory>>;
12963
13213
  isTaxjarAccount(resource: any): resource is TaxjarAccount;
@@ -13188,6 +13438,7 @@ interface ManualTaxCalculator extends Resource {
13188
13438
  name: string;
13189
13439
  markets?: Market[] | null;
13190
13440
  attachments?: Attachment[] | null;
13441
+ events?: Event[] | null;
13191
13442
  versions?: Version[] | null;
13192
13443
  tax_rules?: TaxRule[] | null;
13193
13444
  }
@@ -13214,6 +13465,7 @@ declare class ManualTaxCalculators extends ApiResource<ManualTaxCalculator> {
13214
13465
  delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
13215
13466
  markets(manualTaxCalculatorId: string | ManualTaxCalculator, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
13216
13467
  attachments(manualTaxCalculatorId: string | ManualTaxCalculator, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
13468
+ events(manualTaxCalculatorId: string | ManualTaxCalculator, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
13217
13469
  versions(manualTaxCalculatorId: string | ManualTaxCalculator, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
13218
13470
  tax_rules(manualTaxCalculatorId: string | ManualTaxCalculator, params?: QueryParamsList<TaxRule>, options?: ResourcesConfig): Promise<ListResponse<TaxRule>>;
13219
13471
  isManualTaxCalculator(resource: any): resource is ManualTaxCalculator;
@@ -13256,6 +13508,7 @@ interface ExternalTaxCalculator extends Resource {
13256
13508
  shared_secret: string;
13257
13509
  markets?: Market[] | null;
13258
13510
  attachments?: Attachment[] | null;
13511
+ events?: Event[] | null;
13259
13512
  versions?: Version[] | null;
13260
13513
  }
13261
13514
  interface ExternalTaxCalculatorCreate extends ResourceCreate {
@@ -13294,6 +13547,7 @@ declare class ExternalTaxCalculators extends ApiResource<ExternalTaxCalculator>
13294
13547
  delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
13295
13548
  markets(externalTaxCalculatorId: string | ExternalTaxCalculator, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
13296
13549
  attachments(externalTaxCalculatorId: string | ExternalTaxCalculator, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
13550
+ events(externalTaxCalculatorId: string | ExternalTaxCalculator, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
13297
13551
  versions(externalTaxCalculatorId: string | ExternalTaxCalculator, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
13298
13552
  _reset_circuit(id: string | ExternalTaxCalculator, params?: QueryParamsRetrieve<ExternalTaxCalculator>, options?: ResourcesConfig): Promise<ExternalTaxCalculator>;
13299
13553
  isExternalTaxCalculator(resource: any): resource is ExternalTaxCalculator;
@@ -13312,6 +13566,12 @@ type SkuRel$2 = ResourceRel & {
13312
13566
  type AvalaraAccountRel$1 = ResourceRel & {
13313
13567
  type: AvalaraAccountType;
13314
13568
  };
13569
+ type StripeTaxAccountRel$1 = ResourceRel & {
13570
+ type: StripeTaxAccountType;
13571
+ };
13572
+ type VertexAccountRel$1 = ResourceRel & {
13573
+ type: VertexAccountType;
13574
+ };
13315
13575
  type TaxjarAccountRel$1 = ResourceRel & {
13316
13576
  type: TaxjarAccountType;
13317
13577
  };
@@ -13335,7 +13595,7 @@ interface TaxCategory extends Resource {
13335
13595
  */
13336
13596
  sku_code?: string | null;
13337
13597
  sku?: Sku | null;
13338
- tax_calculator?: AvalaraAccount | TaxjarAccount | ManualTaxCalculator | ExternalTaxCalculator | null;
13598
+ tax_calculator?: AvalaraAccount | StripeTaxAccount | VertexAccount | TaxjarAccount | ManualTaxCalculator | ExternalTaxCalculator | null;
13339
13599
  attachments?: Attachment[] | null;
13340
13600
  versions?: Version[] | null;
13341
13601
  }
@@ -13351,7 +13611,7 @@ interface TaxCategoryCreate extends ResourceCreate {
13351
13611
  */
13352
13612
  sku_code?: string | null;
13353
13613
  sku: SkuRel$2;
13354
- tax_calculator: AvalaraAccountRel$1 | TaxjarAccountRel$1 | ManualTaxCalculatorRel$1 | ExternalTaxCalculatorRel$1;
13614
+ tax_calculator: AvalaraAccountRel$1 | StripeTaxAccountRel$1 | VertexAccountRel$1 | TaxjarAccountRel$1 | ManualTaxCalculatorRel$1 | ExternalTaxCalculatorRel$1;
13355
13615
  }
13356
13616
  interface TaxCategoryUpdate extends ResourceUpdate {
13357
13617
  /**
@@ -13633,6 +13893,12 @@ type SubscriptionModelRel = ResourceRel & {
13633
13893
  type AvalaraAccountRel = ResourceRel & {
13634
13894
  type: AvalaraAccountType;
13635
13895
  };
13896
+ type StripeTaxAccountRel = ResourceRel & {
13897
+ type: StripeTaxAccountType;
13898
+ };
13899
+ type VertexAccountRel = ResourceRel & {
13900
+ type: VertexAccountType;
13901
+ };
13636
13902
  type TaxjarAccountRel = ResourceRel & {
13637
13903
  type: TaxjarAccountType;
13638
13904
  };
@@ -13711,7 +13977,7 @@ interface Market extends Resource {
13711
13977
  base_price_list?: PriceList | null;
13712
13978
  inventory_model?: InventoryModel | null;
13713
13979
  subscription_model?: SubscriptionModel | null;
13714
- tax_calculator?: AvalaraAccount | TaxjarAccount | ManualTaxCalculator | ExternalTaxCalculator | null;
13980
+ tax_calculator?: AvalaraAccount | StripeTaxAccount | VertexAccount | TaxjarAccount | ManualTaxCalculator | ExternalTaxCalculator | null;
13715
13981
  customer_group?: CustomerGroup | null;
13716
13982
  geocoder?: Geocoder | null;
13717
13983
  stores?: Store[] | null;
@@ -13769,7 +14035,7 @@ interface MarketCreate extends ResourceCreate {
13769
14035
  price_list: PriceListRel;
13770
14036
  inventory_model: InventoryModelRel;
13771
14037
  subscription_model?: SubscriptionModelRel | null;
13772
- tax_calculator?: AvalaraAccountRel | TaxjarAccountRel | ManualTaxCalculatorRel | ExternalTaxCalculatorRel | null;
14038
+ tax_calculator?: AvalaraAccountRel | StripeTaxAccountRel | VertexAccountRel | TaxjarAccountRel | ManualTaxCalculatorRel | ExternalTaxCalculatorRel | null;
13773
14039
  customer_group?: CustomerGroupRel | null;
13774
14040
  geocoder?: GeocoderRel$2 | null;
13775
14041
  }
@@ -13823,7 +14089,7 @@ interface MarketUpdate extends ResourceUpdate {
13823
14089
  price_list?: PriceListRel | null;
13824
14090
  inventory_model?: InventoryModelRel | null;
13825
14091
  subscription_model?: SubscriptionModelRel | null;
13826
- tax_calculator?: AvalaraAccountRel | TaxjarAccountRel | ManualTaxCalculatorRel | ExternalTaxCalculatorRel | null;
14092
+ tax_calculator?: AvalaraAccountRel | StripeTaxAccountRel | VertexAccountRel | TaxjarAccountRel | ManualTaxCalculatorRel | ExternalTaxCalculatorRel | null;
13827
14093
  customer_group?: CustomerGroupRel | null;
13828
14094
  geocoder?: GeocoderRel$2 | null;
13829
14095
  }
@@ -14227,6 +14493,10 @@ interface AdyenGateway extends Resource {
14227
14493
  * @example ```true```
14228
14494
  */
14229
14495
  async_api?: boolean | null;
14496
+ /**
14497
+ * Send this attribute if you want to enable partial payments for the order.
14498
+ */
14499
+ partial_payments?: boolean | null;
14230
14500
  /**
14231
14501
  * Indicates if the gateway will use the native customer payment sources.
14232
14502
  * @example ```true```
@@ -14282,6 +14552,10 @@ interface AdyenGatewayCreate extends ResourceCreate {
14282
14552
  * @example ```true```
14283
14553
  */
14284
14554
  async_api?: boolean | null;
14555
+ /**
14556
+ * Send this attribute if you want to enable partial payments for the order.
14557
+ */
14558
+ partial_payments?: boolean | null;
14285
14559
  /**
14286
14560
  * Indicates if the gateway will use the native customer payment sources.
14287
14561
  * @example ```true```
@@ -14330,6 +14604,10 @@ interface AdyenGatewayUpdate extends ResourceUpdate {
14330
14604
  * @example ```true```
14331
14605
  */
14332
14606
  async_api?: boolean | null;
14607
+ /**
14608
+ * Send this attribute if you want to enable partial payments for the order.
14609
+ */
14610
+ partial_payments?: boolean | null;
14333
14611
  /**
14334
14612
  * Indicates if the gateway will use the native customer payment sources.
14335
14613
  * @example ```true```
@@ -14369,10 +14647,10 @@ interface Application extends Resource {
14369
14647
  */
14370
14648
  name?: string | null;
14371
14649
  /**
14372
- * The application's kind, can be one of: 'sales_channel', 'integration' and 'webapp'.
14650
+ * The application's kind. One of 'sales_channel', 'integration', or 'webapp'.
14373
14651
  * @example ```"sales-channel"```
14374
14652
  */
14375
- kind?: string | null;
14653
+ kind?: 'dashboard' | 'user' | 'metrics' | 'contentful' | 'bundles' | 'customers' | 'datocms' | 'exports' | 'external' | 'gift_cards' | 'imports' | 'integration' | 'inventory' | 'orders' | 'price_lists' | 'promotions' | 'resources' | 'returns' | 'sales_channel' | 'sanity' | 'shipments' | 'skus' | 'sku_lists' | 'stock_transfers' | 'subscriptions' | 'tags' | 'webapp' | 'webhooks' | 'zapier' | null;
14376
14654
  /**
14377
14655
  * Indicates if the application has public access.
14378
14656
  * @example ```true```
@@ -14977,6 +15255,7 @@ interface Export extends Resource {
14977
15255
  */
14978
15256
  errors_log?: Record<string, any> | null;
14979
15257
  events?: Event[] | null;
15258
+ versions?: Version[] | null;
14980
15259
  }
14981
15260
  interface ExportCreate extends ResourceCreate {
14982
15261
  /**
@@ -15022,6 +15301,7 @@ declare class Exports extends ApiResource<Export> {
15022
15301
  update(resource: ExportUpdate, params?: QueryParamsRetrieve<Export>, options?: ResourcesConfig): Promise<Export>;
15023
15302
  delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
15024
15303
  events(exportId: string | Export, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
15304
+ versions(exportId: string | Export, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
15025
15305
  _interrupt(id: string | Export, params?: QueryParamsRetrieve<Export>, options?: ResourcesConfig): Promise<Export>;
15026
15306
  isExport(resource: any): resource is Export;
15027
15307
  relationship(id: string | ResourceId | null): ExportRel;
@@ -16060,6 +16340,11 @@ interface TalonOneAccount extends Resource {
16060
16340
  * Indicates if the discount engine manages both promotions and gift cards application at once.
16061
16341
  */
16062
16342
  manage_gift_cards?: boolean | null;
16343
+ /**
16344
+ * The API endpoint as computed by specified baseurl.
16345
+ * @example ```"https://my_baseurl.talon.one/v2"```
16346
+ */
16347
+ api_endpoint?: string | null;
16063
16348
  markets?: Market[] | null;
16064
16349
  discount_engine_items?: DiscountEngineItem[] | null;
16065
16350
  attachments?: Attachment[] | null;
@@ -16077,7 +16362,7 @@ interface TalonOneAccountCreate extends ResourceCreate {
16077
16362
  */
16078
16363
  api_key: string;
16079
16364
  /**
16080
- * The Talon.One API baseurl (excluding the talon.io domain).
16365
+ * The Talon.One API baseurl (excluding the talon.one suffix).
16081
16366
  * @example ```"yourbaseurl"```
16082
16367
  */
16083
16368
  baseurl: string;
@@ -16094,7 +16379,7 @@ interface TalonOneAccountUpdate extends ResourceUpdate {
16094
16379
  */
16095
16380
  api_key?: string | null;
16096
16381
  /**
16097
- * The Talon.One API baseurl (excluding the talon.io domain).
16382
+ * The Talon.One API baseurl (excluding the talon.one suffix).
16098
16383
  * @example ```"yourbaseurl"```
16099
16384
  */
16100
16385
  baseurl?: string | null;
@@ -16114,7 +16399,7 @@ declare class TalonOneAccounts extends ApiResource<TalonOneAccount> {
16114
16399
  type(): TalonOneAccountType;
16115
16400
  }
16116
16401
 
16117
- type ResourceTypeLock = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'applications' | 'attachments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | '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' | 'discount_engine_items' | 'discount_engines' | 'event_callbacks' | 'events' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'flex_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' | 'links' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'notifications' | 'order_amount_promotion_rules' | 'order_copies' | 'order_factories' | 'order_subscription_items' | 'order_subscriptions' | 'orders' | 'organizations' | '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' | 'stores' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'talon_one_accounts' | 'tax_calculators' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'transactions' | 'versions' | 'voids' | 'webhooks' | 'wire_transfers';
16402
+ type ResourceTypeLock = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'applications' | 'attachments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | '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' | 'discount_engine_items' | 'discount_engines' | 'event_callbacks' | 'events' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'flex_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' | 'links' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'notifications' | 'order_amount_promotion_rules' | 'order_copies' | 'order_factories' | 'order_subscription_items' | 'order_subscriptions' | 'orders' | 'organizations' | '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' | 'stores' | 'stripe_gateways' | 'stripe_payments' | 'stripe_tax_accounts' | 'subscription_models' | 'tags' | 'talon_one_accounts' | 'tax_calculators' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'transactions' | 'versions' | 'vertex_accounts' | 'voids' | 'webhooks' | 'wire_transfers';
16118
16403
  declare const resourceList: ResourceTypeLock[];
16119
16404
  declare const singletonList: ResourceTypeLock[];
16120
16405
  type RetrievableResourceType = ResourceTypeLock;
@@ -16125,15 +16410,15 @@ type ListableResourceType = Exclude<ResourceTypeLock, 'applications' | 'organiza
16125
16410
  type ListableResource = Resource & {
16126
16411
  type: ListableResourceType;
16127
16412
  };
16128
- type CreatableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | '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' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'flex_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' | 'links' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'notifications' | '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' | 'stores' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'talon_one_accounts' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'webhooks' | 'wire_transfers';
16413
+ type CreatableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | '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' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'flex_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' | 'links' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'notifications' | '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' | 'stores' | 'stripe_gateways' | 'stripe_payments' | 'stripe_tax_accounts' | 'subscription_models' | 'tags' | 'talon_one_accounts' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'vertex_accounts' | 'webhooks' | 'wire_transfers';
16129
16414
  type CreatableResource = Resource & {
16130
16415
  type: CreatableResourceType;
16131
16416
  };
16132
- type UpdatableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | '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' | 'events' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'flex_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' | 'links' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'notifications' | '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' | 'refunds' | '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' | 'stores' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'talon_one_accounts' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'voids' | 'webhooks' | 'wire_transfers';
16417
+ type UpdatableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | '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' | 'events' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'flex_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' | 'links' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'notifications' | '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' | 'refunds' | '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' | 'stores' | 'stripe_gateways' | 'stripe_payments' | 'stripe_tax_accounts' | 'subscription_models' | 'tags' | 'talon_one_accounts' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'vertex_accounts' | 'voids' | 'webhooks' | 'wire_transfers';
16133
16418
  type UpdatableResource = Resource & {
16134
16419
  type: UpdatableResourceType;
16135
16420
  };
16136
- type DeletableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | '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' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'flex_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' | 'links' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'notifications' | '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' | 'stores' | 'stripe_gateways' | 'stripe_payments' | 'subscription_models' | 'tags' | 'talon_one_accounts' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'webhooks' | 'wire_transfers';
16421
+ type DeletableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'attachments' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | 'bing_geocoders' | 'braintree_gateways' | 'braintree_payments' | 'bundles' | 'buy_x_pay_y_promotions' | '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' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'flex_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' | 'links' | 'manual_gateways' | 'manual_tax_calculators' | 'markets' | 'merchants' | 'notifications' | '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' | 'stores' | 'stripe_gateways' | 'stripe_payments' | 'stripe_tax_accounts' | 'subscription_models' | 'tags' | 'talon_one_accounts' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'vertex_accounts' | 'webhooks' | 'wire_transfers';
16137
16422
  type DeletableResource = Resource & {
16138
16423
  type: DeletableResourceType;
16139
16424
  };
@@ -16144,7 +16429,7 @@ type TaggableResource = Resource & {
16144
16429
  type: TagType;
16145
16430
  }> | null;
16146
16431
  };
16147
- type VersionableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | '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' | 'discount_engines' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'flex_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' | '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' | 'reserved_stocks' | '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' | 'stores' | 'stripe_gateways' | 'stripe_payments' | 'talon_one_accounts' | 'tax_calculators' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'transactions' | 'voids' | 'webhooks' | 'wire_transfers';
16432
+ type VersionableResourceType = 'addresses' | 'adjustments' | 'adyen_gateways' | 'adyen_payments' | 'authorizations' | 'avalara_accounts' | 'axerve_gateways' | 'axerve_payments' | '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' | 'discount_engines' | 'exports' | 'external_gateways' | 'external_payments' | 'external_promotions' | 'external_tax_calculators' | 'fixed_amount_promotions' | 'fixed_price_promotions' | 'flex_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' | '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' | 'reserved_stocks' | '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' | 'stores' | 'stripe_gateways' | 'stripe_payments' | 'stripe_tax_accounts' | 'talon_one_accounts' | 'tax_calculators' | 'tax_categories' | 'tax_rules' | 'taxjar_accounts' | 'transactions' | 'vertex_accounts' | 'voids' | 'webhooks' | 'wire_transfers';
16148
16433
  type VersionableResource = Resource & {
16149
16434
  type: VersionableResourceType;
16150
16435
  versions?: Array<ResourceRel & {
@@ -16267,6 +16552,7 @@ type ResourceFields = {
16267
16552
  stores: Store;
16268
16553
  stripe_gateways: StripeGateway;
16269
16554
  stripe_payments: StripePayment;
16555
+ stripe_tax_accounts: StripeTaxAccount;
16270
16556
  subscription_models: SubscriptionModel;
16271
16557
  tags: Tag;
16272
16558
  talon_one_accounts: TalonOneAccount;
@@ -16276,6 +16562,7 @@ type ResourceFields = {
16276
16562
  taxjar_accounts: TaxjarAccount;
16277
16563
  transactions: Transaction;
16278
16564
  versions: Version;
16565
+ vertex_accounts: VertexAccount;
16279
16566
  voids: Void;
16280
16567
  webhooks: Webhook;
16281
16568
  wire_transfers: WireTransfer;
@@ -16396,6 +16683,7 @@ type ResourceSortFields = {
16396
16683
  stores: StoreSort;
16397
16684
  stripe_gateways: StripeGatewaySort;
16398
16685
  stripe_payments: StripePaymentSort;
16686
+ stripe_tax_accounts: StripeTaxAccountSort;
16399
16687
  subscription_models: SubscriptionModelSort;
16400
16688
  tags: TagSort;
16401
16689
  talon_one_accounts: TalonOneAccountSort;
@@ -16405,6 +16693,7 @@ type ResourceSortFields = {
16405
16693
  taxjar_accounts: TaxjarAccountSort;
16406
16694
  transactions: TransactionSort;
16407
16695
  versions: VersionSort;
16696
+ vertex_accounts: VertexAccountSort;
16408
16697
  voids: VoidSort;
16409
16698
  webhooks: WebhookSort;
16410
16699
  wire_transfers: WireTransferSort;
@@ -16447,7 +16736,7 @@ type CommerceLayerInitConfig = SdkConfig & ResourcesInitConfig;
16447
16736
  type CommerceLayerConfig = Partial<CommerceLayerInitConfig>;
16448
16737
  declare class CommerceLayerClient {
16449
16738
  #private;
16450
- readonly openApiSchemaVersion = "7.6.2";
16739
+ readonly openApiSchemaVersion = "7.7.1";
16451
16740
  constructor(config: CommerceLayerInitConfig);
16452
16741
  get addresses(): Addresses;
16453
16742
  get adjustments(): Adjustments;
@@ -16564,6 +16853,7 @@ declare class CommerceLayerClient {
16564
16853
  get stores(): Stores;
16565
16854
  get stripe_gateways(): StripeGateways;
16566
16855
  get stripe_payments(): StripePayments;
16856
+ get stripe_tax_accounts(): StripeTaxAccounts;
16567
16857
  get subscription_models(): SubscriptionModels;
16568
16858
  get tags(): Tags;
16569
16859
  get talon_one_accounts(): TalonOneAccounts;
@@ -16573,6 +16863,7 @@ declare class CommerceLayerClient {
16573
16863
  get taxjar_accounts(): TaxjarAccounts;
16574
16864
  get transactions(): Transactions;
16575
16865
  get versions(): Versions;
16866
+ get vertex_accounts(): VertexAccounts;
16576
16867
  get voids(): Voids;
16577
16868
  get webhooks(): Webhooks;
16578
16869
  get wire_transfers(): WireTransfers;
@@ -16607,4 +16898,4 @@ declare const CommerceLayerStatic: {
16607
16898
  readonly schemaVersion: string;
16608
16899
  };
16609
16900
 
16610
- 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 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 CarrierAccountCreate, type CarrierAccountSort, type CarrierAccountUpdate, 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, type CleanupUpdate, 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 DiscountEngine, type DiscountEngineItem, type DiscountEngineItemSort, DiscountEngineItems, type DiscountEngineSort, DiscountEngines, type ErrorObj, ErrorType, type Event, type EventCallback, type EventCallbackSort, EventCallbacks, type EventSort, type EventUpdate, Events, type Export, type ExportCreate, type ExportSort, type ExportUpdate, 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 FlexPromotion, type FlexPromotionCreate, type FlexPromotionSort, type FlexPromotionUpdate, FlexPromotions, 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, type ImportUpdate, 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 Link, type LinkCreate, type LinkSort, type LinkUpdate, Links, 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 Notification, type NotificationCreate, type NotificationSort, type NotificationUpdate, Notifications, 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, 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 QueryFields, type QueryFilter, type QueryInclude, type QueryPageNumber, type QueryPageSize, type QueryParams, type QueryParamsList, type QueryParamsRetrieve, type QueryRecordFields, type QueryRecordSortable, type QuerySort, RecurringOrderCopies, type RecurringOrderCopy, type RecurringOrderCopyCreate, type RecurringOrderCopySort, type RecurringOrderCopyUpdate, type Refund, type RefundSort, type RefundUpdate, 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 Store, type StoreCreate, type StoreSort, type StoreUpdate, Stores, 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 TalonOneAccount, type TalonOneAccountCreate, type TalonOneAccountSort, type TalonOneAccountUpdate, TalonOneAccounts, 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, type VoidUpdate, 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 };
16901
+ 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 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 CarrierAccountCreate, type CarrierAccountSort, type CarrierAccountUpdate, 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, type CleanupUpdate, 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 DiscountEngine, type DiscountEngineItem, type DiscountEngineItemSort, DiscountEngineItems, type DiscountEngineSort, DiscountEngines, type ErrorObj, ErrorType, type Event, type EventCallback, type EventCallbackSort, EventCallbacks, type EventSort, type EventUpdate, Events, type Export, type ExportCreate, type ExportSort, type ExportUpdate, 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 FlexPromotion, type FlexPromotionCreate, type FlexPromotionSort, type FlexPromotionUpdate, FlexPromotions, 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, type ImportUpdate, 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 Link, type LinkCreate, type LinkSort, type LinkUpdate, Links, 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 Notification, type NotificationCreate, type NotificationSort, type NotificationUpdate, Notifications, 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, 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 QueryFields, type QueryFilter, type QueryInclude, type QueryPageNumber, type QueryPageSize, type QueryParams, type QueryParamsList, type QueryParamsRetrieve, type QueryRecordFields, type QueryRecordSortable, type QuerySort, RecurringOrderCopies, type RecurringOrderCopy, type RecurringOrderCopyCreate, type RecurringOrderCopySort, type RecurringOrderCopyUpdate, type Refund, type RefundSort, type RefundUpdate, 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 Store, type StoreCreate, type StoreSort, type StoreUpdate, Stores, type StripeGateway, type StripeGatewayCreate, type StripeGatewaySort, type StripeGatewayUpdate, StripeGateways, type StripePayment, type StripePaymentCreate, type StripePaymentSort, type StripePaymentUpdate, StripePayments, type StripeTaxAccount, type StripeTaxAccountCreate, type StripeTaxAccountSort, type StripeTaxAccountUpdate, StripeTaxAccounts, type SubscriptionModel, type SubscriptionModelCreate, type SubscriptionModelSort, type SubscriptionModelUpdate, SubscriptionModels, type Tag, type TagCreate, type TagSort, type TagUpdate, type TaggableResource, type TaggableResourceType, Tags, type TalonOneAccount, type TalonOneAccountCreate, type TalonOneAccountSort, type TalonOneAccountUpdate, TalonOneAccounts, 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 VertexAccount, type VertexAccountCreate, type VertexAccountSort, type VertexAccountUpdate, VertexAccounts, type Void, type VoidSort, type VoidUpdate, 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 };