@commercelayer/sdk 6.29.2 → 6.30.0
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/index.d.mts +299 -21
- package/lib/index.d.ts +299 -21
- package/lib/index.js +1 -1
- package/lib/index.mjs +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
@@ -2039,6 +2039,16 @@ interface StripePayment extends Resource {
|
|
2039
2039
|
* @example ```"pk_live_xxxx-yyyy-zzzz"```
|
2040
2040
|
*/
|
2041
2041
|
publishable_key?: string | null;
|
2042
|
+
/**
|
2043
|
+
* The Stripe account ID that these funds are intended for.
|
2044
|
+
* @example ```"xxxx-yyyy-zzzz"```
|
2045
|
+
*/
|
2046
|
+
on_behalf_of?: string | null;
|
2047
|
+
/**
|
2048
|
+
* A string that identifies the resulting payment as part of a group.
|
2049
|
+
* @example ```"xxxx-yyyy-zzzz"```
|
2050
|
+
*/
|
2051
|
+
transfer_group?: string | null;
|
2042
2052
|
/**
|
2043
2053
|
* Stripe payment options: 'customer', 'payment_method', 'return_url', etc. Check Stripe payment intent API for more details.
|
2044
2054
|
* @example ```{"customer":"cus_xxx","payment_method":"pm_xxx"}```
|
@@ -4251,6 +4261,11 @@ interface ShippingMethod extends Resource {
|
|
4251
4261
|
* @example ```"gr"```
|
4252
4262
|
*/
|
4253
4263
|
unit_of_weight?: 'gr' | 'oz' | 'lb' | null;
|
4264
|
+
/**
|
4265
|
+
* The freight tax identifier code, specific for a particular tax calculator.
|
4266
|
+
* @example ```"FR010000"```
|
4267
|
+
*/
|
4268
|
+
tax_code?: string | null;
|
4254
4269
|
/**
|
4255
4270
|
* Time at which this resource was disabled.
|
4256
4271
|
* @example ```"2018-01-01T12:00:00.000Z"```
|
@@ -4328,6 +4343,11 @@ interface ShippingMethodCreate extends ResourceCreate {
|
|
4328
4343
|
* @example ```"gr"```
|
4329
4344
|
*/
|
4330
4345
|
unit_of_weight?: 'gr' | 'oz' | 'lb' | null;
|
4346
|
+
/**
|
4347
|
+
* The freight tax identifier code, specific for a particular tax calculator.
|
4348
|
+
* @example ```"FR010000"```
|
4349
|
+
*/
|
4350
|
+
tax_code?: string | null;
|
4331
4351
|
/**
|
4332
4352
|
* Send this attribute if you want to mark this resource as disabled.
|
4333
4353
|
* @example ```true```
|
@@ -4395,6 +4415,11 @@ interface ShippingMethodUpdate extends ResourceUpdate {
|
|
4395
4415
|
* @example ```"gr"```
|
4396
4416
|
*/
|
4397
4417
|
unit_of_weight?: 'gr' | 'oz' | 'lb' | null;
|
4418
|
+
/**
|
4419
|
+
* The freight tax identifier code, specific for a particular tax calculator.
|
4420
|
+
* @example ```"FR010000"```
|
4421
|
+
*/
|
4422
|
+
tax_code?: string | null;
|
4398
4423
|
/**
|
4399
4424
|
* Send this attribute if you want to mark this resource as disabled.
|
4400
4425
|
* @example ```true```
|
@@ -9057,6 +9082,11 @@ interface Customer extends Resource {
|
|
9057
9082
|
* @example ```"xxx-yyy-zzz"```
|
9058
9083
|
*/
|
9059
9084
|
profile_id?: string | null;
|
9085
|
+
/**
|
9086
|
+
* A specific code to identify the tax exemption reason for this customer.
|
9087
|
+
* @example ```"xxx-yyy-zzz"```
|
9088
|
+
*/
|
9089
|
+
tax_exemption_code?: string | null;
|
9060
9090
|
customer_group?: CustomerGroup | null;
|
9061
9091
|
customer_addresses?: CustomerAddress[] | null;
|
9062
9092
|
customer_payment_sources?: CustomerPaymentSource[] | null;
|
@@ -9090,6 +9120,11 @@ interface CustomerCreate extends ResourceCreate {
|
|
9090
9120
|
* @example ```"xxx-yyy-zzz"```
|
9091
9121
|
*/
|
9092
9122
|
profile_id?: string | null;
|
9123
|
+
/**
|
9124
|
+
* A specific code to identify the tax exemption reason for this customer.
|
9125
|
+
* @example ```"xxx-yyy-zzz"```
|
9126
|
+
*/
|
9127
|
+
tax_exemption_code?: string | null;
|
9093
9128
|
customer_group?: CustomerGroupRel$2 | null;
|
9094
9129
|
tags?: TagRel$4[] | null;
|
9095
9130
|
}
|
@@ -9114,6 +9149,11 @@ interface CustomerUpdate extends ResourceUpdate {
|
|
9114
9149
|
* @example ```"xxx-yyy-zzz"```
|
9115
9150
|
*/
|
9116
9151
|
profile_id?: string | null;
|
9152
|
+
/**
|
9153
|
+
* A specific code to identify the tax exemption reason for this customer.
|
9154
|
+
* @example ```"xxx-yyy-zzz"```
|
9155
|
+
*/
|
9156
|
+
tax_exemption_code?: string | null;
|
9117
9157
|
customer_group?: CustomerGroupRel$2 | null;
|
9118
9158
|
tags?: TagRel$4[] | null;
|
9119
9159
|
}
|
@@ -12769,12 +12809,14 @@ interface TaxCalculator extends Resource {
|
|
12769
12809
|
name: string;
|
12770
12810
|
markets?: Market[] | null;
|
12771
12811
|
attachments?: Attachment[] | null;
|
12812
|
+
events?: Event[] | null;
|
12772
12813
|
versions?: Version[] | null;
|
12773
12814
|
}
|
12774
12815
|
declare class TaxCalculators extends ApiResource<TaxCalculator> {
|
12775
12816
|
static readonly TYPE: TaxCalculatorType;
|
12776
12817
|
markets(taxCalculatorId: string | TaxCalculator, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
|
12777
12818
|
attachments(taxCalculatorId: string | TaxCalculator, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
|
12819
|
+
events(taxCalculatorId: string | TaxCalculator, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
|
12778
12820
|
versions(taxCalculatorId: string | TaxCalculator, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
|
12779
12821
|
isTaxCalculator(resource: any): resource is TaxCalculator;
|
12780
12822
|
relationship(id: string | ResourceId | null): TaxCalculatorRel$1;
|
@@ -12786,7 +12828,7 @@ type AvalaraAccountType = 'avalara_accounts';
|
|
12786
12828
|
type AvalaraAccountRel$2 = ResourceRel & {
|
12787
12829
|
type: AvalaraAccountType;
|
12788
12830
|
};
|
12789
|
-
type TaxCategoryRel$
|
12831
|
+
type TaxCategoryRel$4 = ResourceRel & {
|
12790
12832
|
type: TaxCategoryType;
|
12791
12833
|
};
|
12792
12834
|
type AvalaraAccountSort = Pick<AvalaraAccount, 'id' | 'name'> & ResourceSort;
|
@@ -12819,9 +12861,9 @@ interface AvalaraAccount extends Resource {
|
|
12819
12861
|
ddp?: boolean | null;
|
12820
12862
|
markets?: Market[] | null;
|
12821
12863
|
attachments?: Attachment[] | null;
|
12864
|
+
events?: Event[] | null;
|
12822
12865
|
versions?: Version[] | null;
|
12823
12866
|
tax_categories?: TaxCategory[] | null;
|
12824
|
-
events?: Event[] | null;
|
12825
12867
|
}
|
12826
12868
|
interface AvalaraAccountCreate extends ResourceCreate {
|
12827
12869
|
/**
|
@@ -12854,7 +12896,7 @@ interface AvalaraAccountCreate extends ResourceCreate {
|
|
12854
12896
|
* @example ```true```
|
12855
12897
|
*/
|
12856
12898
|
ddp?: boolean | null;
|
12857
|
-
tax_categories?: TaxCategoryRel$
|
12899
|
+
tax_categories?: TaxCategoryRel$4[] | null;
|
12858
12900
|
}
|
12859
12901
|
interface AvalaraAccountUpdate extends ResourceUpdate {
|
12860
12902
|
/**
|
@@ -12887,7 +12929,7 @@ interface AvalaraAccountUpdate extends ResourceUpdate {
|
|
12887
12929
|
* @example ```true```
|
12888
12930
|
*/
|
12889
12931
|
ddp?: boolean | null;
|
12890
|
-
tax_categories?: TaxCategoryRel$
|
12932
|
+
tax_categories?: TaxCategoryRel$4[] | null;
|
12891
12933
|
}
|
12892
12934
|
declare class AvalaraAccounts extends ApiResource<AvalaraAccount> {
|
12893
12935
|
static readonly TYPE: AvalaraAccountType;
|
@@ -12896,15 +12938,220 @@ declare class AvalaraAccounts extends ApiResource<AvalaraAccount> {
|
|
12896
12938
|
delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
|
12897
12939
|
markets(avalaraAccountId: string | AvalaraAccount, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
|
12898
12940
|
attachments(avalaraAccountId: string | AvalaraAccount, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
|
12941
|
+
events(avalaraAccountId: string | AvalaraAccount, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
|
12899
12942
|
versions(avalaraAccountId: string | AvalaraAccount, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
|
12900
12943
|
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
12944
|
isAvalaraAccount(resource: any): resource is AvalaraAccount;
|
12903
12945
|
relationship(id: string | ResourceId | null): AvalaraAccountRel$2;
|
12904
12946
|
relationshipToMany(...ids: string[]): AvalaraAccountRel$2[];
|
12905
12947
|
type(): AvalaraAccountType;
|
12906
12948
|
}
|
12907
12949
|
|
12950
|
+
type StripeTaxAccountType = 'stripe_tax_accounts';
|
12951
|
+
type StripeTaxAccountRel$2 = ResourceRel & {
|
12952
|
+
type: StripeTaxAccountType;
|
12953
|
+
};
|
12954
|
+
type TaxCategoryRel$3 = ResourceRel & {
|
12955
|
+
type: TaxCategoryType;
|
12956
|
+
};
|
12957
|
+
type StripeTaxAccountSort = Pick<StripeTaxAccount, 'id' | 'name'> & ResourceSort;
|
12958
|
+
interface StripeTaxAccount extends Resource {
|
12959
|
+
readonly type: StripeTaxAccountType;
|
12960
|
+
/**
|
12961
|
+
* The tax calculator's internal name.
|
12962
|
+
* @example ```"Personal tax calculator"```
|
12963
|
+
*/
|
12964
|
+
name: string;
|
12965
|
+
/**
|
12966
|
+
* Indicates if the transaction will be recorded and visible on the Stripe website.
|
12967
|
+
* @example ```true```
|
12968
|
+
*/
|
12969
|
+
commit_invoice?: boolean | null;
|
12970
|
+
markets?: Market[] | null;
|
12971
|
+
attachments?: Attachment[] | null;
|
12972
|
+
events?: Event[] | null;
|
12973
|
+
versions?: Version[] | null;
|
12974
|
+
tax_categories?: TaxCategory[] | null;
|
12975
|
+
}
|
12976
|
+
interface StripeTaxAccountCreate extends ResourceCreate {
|
12977
|
+
/**
|
12978
|
+
* The tax calculator's internal name.
|
12979
|
+
* @example ```"Personal tax calculator"```
|
12980
|
+
*/
|
12981
|
+
name: string;
|
12982
|
+
/**
|
12983
|
+
* The Stripe account API key.
|
12984
|
+
* @example ```"STRIPE_API_KEY"```
|
12985
|
+
*/
|
12986
|
+
api_key: string;
|
12987
|
+
/**
|
12988
|
+
* Indicates if the transaction will be recorded and visible on the Stripe website.
|
12989
|
+
* @example ```true```
|
12990
|
+
*/
|
12991
|
+
commit_invoice?: boolean | null;
|
12992
|
+
tax_categories?: TaxCategoryRel$3[] | null;
|
12993
|
+
}
|
12994
|
+
interface StripeTaxAccountUpdate extends ResourceUpdate {
|
12995
|
+
/**
|
12996
|
+
* The tax calculator's internal name.
|
12997
|
+
* @example ```"Personal tax calculator"```
|
12998
|
+
*/
|
12999
|
+
name?: string | null;
|
13000
|
+
/**
|
13001
|
+
* The Stripe account API key.
|
13002
|
+
* @example ```"STRIPE_API_KEY"```
|
13003
|
+
*/
|
13004
|
+
api_key?: string | null;
|
13005
|
+
/**
|
13006
|
+
* Indicates if the transaction will be recorded and visible on the Stripe website.
|
13007
|
+
* @example ```true```
|
13008
|
+
*/
|
13009
|
+
commit_invoice?: boolean | null;
|
13010
|
+
tax_categories?: TaxCategoryRel$3[] | null;
|
13011
|
+
}
|
13012
|
+
declare class StripeTaxAccounts extends ApiResource<StripeTaxAccount> {
|
13013
|
+
static readonly TYPE: StripeTaxAccountType;
|
13014
|
+
create(resource: StripeTaxAccountCreate, params?: QueryParamsRetrieve<StripeTaxAccount>, options?: ResourcesConfig): Promise<StripeTaxAccount>;
|
13015
|
+
update(resource: StripeTaxAccountUpdate, params?: QueryParamsRetrieve<StripeTaxAccount>, options?: ResourcesConfig): Promise<StripeTaxAccount>;
|
13016
|
+
delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
|
13017
|
+
markets(stripeTaxAccountId: string | StripeTaxAccount, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
|
13018
|
+
attachments(stripeTaxAccountId: string | StripeTaxAccount, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
|
13019
|
+
events(stripeTaxAccountId: string | StripeTaxAccount, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
|
13020
|
+
versions(stripeTaxAccountId: string | StripeTaxAccount, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
|
13021
|
+
tax_categories(stripeTaxAccountId: string | StripeTaxAccount, params?: QueryParamsList<TaxCategory>, options?: ResourcesConfig): Promise<ListResponse<TaxCategory>>;
|
13022
|
+
isStripeTaxAccount(resource: any): resource is StripeTaxAccount;
|
13023
|
+
relationship(id: string | ResourceId | null): StripeTaxAccountRel$2;
|
13024
|
+
relationshipToMany(...ids: string[]): StripeTaxAccountRel$2[];
|
13025
|
+
type(): StripeTaxAccountType;
|
13026
|
+
}
|
13027
|
+
|
13028
|
+
type VertexAccountType = 'vertex_accounts';
|
13029
|
+
type VertexAccountRel$2 = ResourceRel & {
|
13030
|
+
type: VertexAccountType;
|
13031
|
+
};
|
13032
|
+
type VertexAccountSort = Pick<VertexAccount, 'id' | 'name'> & ResourceSort;
|
13033
|
+
interface VertexAccount extends Resource {
|
13034
|
+
readonly type: VertexAccountType;
|
13035
|
+
/**
|
13036
|
+
* The tax calculator's internal name.
|
13037
|
+
* @example ```"Personal tax calculator"```
|
13038
|
+
*/
|
13039
|
+
name: string;
|
13040
|
+
/**
|
13041
|
+
* The Vertex account kind. One of 'cloud', 'on_demand', or 'on_premise'.
|
13042
|
+
* @example ```"cloud"```
|
13043
|
+
*/
|
13044
|
+
kind?: 'cloud' | 'on_demand' | 'on_premise' | null;
|
13045
|
+
/**
|
13046
|
+
* The Vertex API baseurl, optional for 'cloud' kind.
|
13047
|
+
* @example ```"yourbaseurl"```
|
13048
|
+
*/
|
13049
|
+
baseurl?: string | null;
|
13050
|
+
/**
|
13051
|
+
* The API endpoint as computed by specified kind and baseurl.
|
13052
|
+
* @example ```"https://my_baseurl.ondemand.vertexinc.com"```
|
13053
|
+
*/
|
13054
|
+
api_endpoint?: string | null;
|
13055
|
+
/**
|
13056
|
+
* Indicates if the transaction will be recorded and visible on the Vertex website.
|
13057
|
+
* @example ```true```
|
13058
|
+
*/
|
13059
|
+
commit_invoice?: boolean | null;
|
13060
|
+
/**
|
13061
|
+
* The expiration date/time of the access token.
|
13062
|
+
* @example ```"2018-01-02T12:00:00.000Z"```
|
13063
|
+
*/
|
13064
|
+
token_expires_at?: string | null;
|
13065
|
+
markets?: Market[] | null;
|
13066
|
+
attachments?: Attachment[] | null;
|
13067
|
+
events?: Event[] | null;
|
13068
|
+
versions?: Version[] | null;
|
13069
|
+
}
|
13070
|
+
interface VertexAccountCreate extends ResourceCreate {
|
13071
|
+
/**
|
13072
|
+
* The tax calculator's internal name.
|
13073
|
+
* @example ```"Personal tax calculator"```
|
13074
|
+
*/
|
13075
|
+
name: string;
|
13076
|
+
/**
|
13077
|
+
* The Vertex account kind. One of 'cloud', 'on_demand', or 'on_premise'.
|
13078
|
+
* @example ```"cloud"```
|
13079
|
+
*/
|
13080
|
+
kind?: 'cloud' | 'on_demand' | 'on_premise' | null;
|
13081
|
+
/**
|
13082
|
+
* The Vertex API baseurl, optional for 'cloud' kind.
|
13083
|
+
* @example ```"yourbaseurl"```
|
13084
|
+
*/
|
13085
|
+
baseurl?: string | null;
|
13086
|
+
/**
|
13087
|
+
* The Vertex account client ID.
|
13088
|
+
* @example ```"xxx-yyy-zzz"```
|
13089
|
+
*/
|
13090
|
+
client_id: string;
|
13091
|
+
/**
|
13092
|
+
* The Vertex account client secret.
|
13093
|
+
* @example ```"xxx-yyy-zzz"```
|
13094
|
+
*/
|
13095
|
+
client_secret: string;
|
13096
|
+
/**
|
13097
|
+
* Indicates if the transaction will be recorded and visible on the Vertex website.
|
13098
|
+
* @example ```true```
|
13099
|
+
*/
|
13100
|
+
commit_invoice?: boolean | null;
|
13101
|
+
}
|
13102
|
+
interface VertexAccountUpdate extends ResourceUpdate {
|
13103
|
+
/**
|
13104
|
+
* The tax calculator's internal name.
|
13105
|
+
* @example ```"Personal tax calculator"```
|
13106
|
+
*/
|
13107
|
+
name?: string | null;
|
13108
|
+
/**
|
13109
|
+
* The Vertex account kind. One of 'cloud', 'on_demand', or 'on_premise'.
|
13110
|
+
* @example ```"cloud"```
|
13111
|
+
*/
|
13112
|
+
kind?: 'cloud' | 'on_demand' | 'on_premise' | null;
|
13113
|
+
/**
|
13114
|
+
* The Vertex API baseurl, optional for 'cloud' kind.
|
13115
|
+
* @example ```"yourbaseurl"```
|
13116
|
+
*/
|
13117
|
+
baseurl?: string | null;
|
13118
|
+
/**
|
13119
|
+
* The Vertex account client ID.
|
13120
|
+
* @example ```"xxx-yyy-zzz"```
|
13121
|
+
*/
|
13122
|
+
client_id?: string | null;
|
13123
|
+
/**
|
13124
|
+
* The Vertex account client secret.
|
13125
|
+
* @example ```"xxx-yyy-zzz"```
|
13126
|
+
*/
|
13127
|
+
client_secret?: string | null;
|
13128
|
+
/**
|
13129
|
+
* Indicates if the transaction will be recorded and visible on the Vertex website.
|
13130
|
+
* @example ```true```
|
13131
|
+
*/
|
13132
|
+
commit_invoice?: boolean | null;
|
13133
|
+
/**
|
13134
|
+
* Send this attribute if you want to manually refresh the access token.
|
13135
|
+
* @example ```true```
|
13136
|
+
*/
|
13137
|
+
_refresh_token?: boolean | null;
|
13138
|
+
}
|
13139
|
+
declare class VertexAccounts extends ApiResource<VertexAccount> {
|
13140
|
+
static readonly TYPE: VertexAccountType;
|
13141
|
+
create(resource: VertexAccountCreate, params?: QueryParamsRetrieve<VertexAccount>, options?: ResourcesConfig): Promise<VertexAccount>;
|
13142
|
+
update(resource: VertexAccountUpdate, params?: QueryParamsRetrieve<VertexAccount>, options?: ResourcesConfig): Promise<VertexAccount>;
|
13143
|
+
delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
|
13144
|
+
markets(vertexAccountId: string | VertexAccount, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
|
13145
|
+
attachments(vertexAccountId: string | VertexAccount, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
|
13146
|
+
events(vertexAccountId: string | VertexAccount, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
|
13147
|
+
versions(vertexAccountId: string | VertexAccount, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
|
13148
|
+
_refresh_token(id: string | VertexAccount, params?: QueryParamsRetrieve<VertexAccount>, options?: ResourcesConfig): Promise<VertexAccount>;
|
13149
|
+
isVertexAccount(resource: any): resource is VertexAccount;
|
13150
|
+
relationship(id: string | ResourceId | null): VertexAccountRel$2;
|
13151
|
+
relationshipToMany(...ids: string[]): VertexAccountRel$2[];
|
13152
|
+
type(): VertexAccountType;
|
13153
|
+
}
|
13154
|
+
|
12908
13155
|
type TaxjarAccountType = 'taxjar_accounts';
|
12909
13156
|
type TaxjarAccountRel$2 = ResourceRel & {
|
12910
13157
|
type: TaxjarAccountType;
|
@@ -12922,6 +13169,7 @@ interface TaxjarAccount extends Resource {
|
|
12922
13169
|
name: string;
|
12923
13170
|
markets?: Market[] | null;
|
12924
13171
|
attachments?: Attachment[] | null;
|
13172
|
+
events?: Event[] | null;
|
12925
13173
|
versions?: Version[] | null;
|
12926
13174
|
tax_categories?: TaxCategory[] | null;
|
12927
13175
|
}
|
@@ -12958,6 +13206,7 @@ declare class TaxjarAccounts extends ApiResource<TaxjarAccount> {
|
|
12958
13206
|
delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
|
12959
13207
|
markets(taxjarAccountId: string | TaxjarAccount, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
|
12960
13208
|
attachments(taxjarAccountId: string | TaxjarAccount, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
|
13209
|
+
events(taxjarAccountId: string | TaxjarAccount, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
|
12961
13210
|
versions(taxjarAccountId: string | TaxjarAccount, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
|
12962
13211
|
tax_categories(taxjarAccountId: string | TaxjarAccount, params?: QueryParamsList<TaxCategory>, options?: ResourcesConfig): Promise<ListResponse<TaxCategory>>;
|
12963
13212
|
isTaxjarAccount(resource: any): resource is TaxjarAccount;
|
@@ -13188,6 +13437,7 @@ interface ManualTaxCalculator extends Resource {
|
|
13188
13437
|
name: string;
|
13189
13438
|
markets?: Market[] | null;
|
13190
13439
|
attachments?: Attachment[] | null;
|
13440
|
+
events?: Event[] | null;
|
13191
13441
|
versions?: Version[] | null;
|
13192
13442
|
tax_rules?: TaxRule[] | null;
|
13193
13443
|
}
|
@@ -13214,6 +13464,7 @@ declare class ManualTaxCalculators extends ApiResource<ManualTaxCalculator> {
|
|
13214
13464
|
delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
|
13215
13465
|
markets(manualTaxCalculatorId: string | ManualTaxCalculator, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
|
13216
13466
|
attachments(manualTaxCalculatorId: string | ManualTaxCalculator, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
|
13467
|
+
events(manualTaxCalculatorId: string | ManualTaxCalculator, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
|
13217
13468
|
versions(manualTaxCalculatorId: string | ManualTaxCalculator, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
|
13218
13469
|
tax_rules(manualTaxCalculatorId: string | ManualTaxCalculator, params?: QueryParamsList<TaxRule>, options?: ResourcesConfig): Promise<ListResponse<TaxRule>>;
|
13219
13470
|
isManualTaxCalculator(resource: any): resource is ManualTaxCalculator;
|
@@ -13256,6 +13507,7 @@ interface ExternalTaxCalculator extends Resource {
|
|
13256
13507
|
shared_secret: string;
|
13257
13508
|
markets?: Market[] | null;
|
13258
13509
|
attachments?: Attachment[] | null;
|
13510
|
+
events?: Event[] | null;
|
13259
13511
|
versions?: Version[] | null;
|
13260
13512
|
}
|
13261
13513
|
interface ExternalTaxCalculatorCreate extends ResourceCreate {
|
@@ -13294,6 +13546,7 @@ declare class ExternalTaxCalculators extends ApiResource<ExternalTaxCalculator>
|
|
13294
13546
|
delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
|
13295
13547
|
markets(externalTaxCalculatorId: string | ExternalTaxCalculator, params?: QueryParamsList<Market>, options?: ResourcesConfig): Promise<ListResponse<Market>>;
|
13296
13548
|
attachments(externalTaxCalculatorId: string | ExternalTaxCalculator, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
|
13549
|
+
events(externalTaxCalculatorId: string | ExternalTaxCalculator, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
|
13297
13550
|
versions(externalTaxCalculatorId: string | ExternalTaxCalculator, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
|
13298
13551
|
_reset_circuit(id: string | ExternalTaxCalculator, params?: QueryParamsRetrieve<ExternalTaxCalculator>, options?: ResourcesConfig): Promise<ExternalTaxCalculator>;
|
13299
13552
|
isExternalTaxCalculator(resource: any): resource is ExternalTaxCalculator;
|
@@ -13312,6 +13565,12 @@ type SkuRel$2 = ResourceRel & {
|
|
13312
13565
|
type AvalaraAccountRel$1 = ResourceRel & {
|
13313
13566
|
type: AvalaraAccountType;
|
13314
13567
|
};
|
13568
|
+
type StripeTaxAccountRel$1 = ResourceRel & {
|
13569
|
+
type: StripeTaxAccountType;
|
13570
|
+
};
|
13571
|
+
type VertexAccountRel$1 = ResourceRel & {
|
13572
|
+
type: VertexAccountType;
|
13573
|
+
};
|
13315
13574
|
type TaxjarAccountRel$1 = ResourceRel & {
|
13316
13575
|
type: TaxjarAccountType;
|
13317
13576
|
};
|
@@ -13335,7 +13594,7 @@ interface TaxCategory extends Resource {
|
|
13335
13594
|
*/
|
13336
13595
|
sku_code?: string | null;
|
13337
13596
|
sku?: Sku | null;
|
13338
|
-
tax_calculator?: AvalaraAccount | TaxjarAccount | ManualTaxCalculator | ExternalTaxCalculator | null;
|
13597
|
+
tax_calculator?: AvalaraAccount | StripeTaxAccount | VertexAccount | TaxjarAccount | ManualTaxCalculator | ExternalTaxCalculator | null;
|
13339
13598
|
attachments?: Attachment[] | null;
|
13340
13599
|
versions?: Version[] | null;
|
13341
13600
|
}
|
@@ -13351,7 +13610,7 @@ interface TaxCategoryCreate extends ResourceCreate {
|
|
13351
13610
|
*/
|
13352
13611
|
sku_code?: string | null;
|
13353
13612
|
sku: SkuRel$2;
|
13354
|
-
tax_calculator: AvalaraAccountRel$1 | TaxjarAccountRel$1 | ManualTaxCalculatorRel$1 | ExternalTaxCalculatorRel$1;
|
13613
|
+
tax_calculator: AvalaraAccountRel$1 | StripeTaxAccountRel$1 | VertexAccountRel$1 | TaxjarAccountRel$1 | ManualTaxCalculatorRel$1 | ExternalTaxCalculatorRel$1;
|
13355
13614
|
}
|
13356
13615
|
interface TaxCategoryUpdate extends ResourceUpdate {
|
13357
13616
|
/**
|
@@ -13633,6 +13892,12 @@ type SubscriptionModelRel = ResourceRel & {
|
|
13633
13892
|
type AvalaraAccountRel = ResourceRel & {
|
13634
13893
|
type: AvalaraAccountType;
|
13635
13894
|
};
|
13895
|
+
type StripeTaxAccountRel = ResourceRel & {
|
13896
|
+
type: StripeTaxAccountType;
|
13897
|
+
};
|
13898
|
+
type VertexAccountRel = ResourceRel & {
|
13899
|
+
type: VertexAccountType;
|
13900
|
+
};
|
13636
13901
|
type TaxjarAccountRel = ResourceRel & {
|
13637
13902
|
type: TaxjarAccountType;
|
13638
13903
|
};
|
@@ -13711,7 +13976,7 @@ interface Market extends Resource {
|
|
13711
13976
|
base_price_list?: PriceList | null;
|
13712
13977
|
inventory_model?: InventoryModel | null;
|
13713
13978
|
subscription_model?: SubscriptionModel | null;
|
13714
|
-
tax_calculator?: AvalaraAccount | TaxjarAccount | ManualTaxCalculator | ExternalTaxCalculator | null;
|
13979
|
+
tax_calculator?: AvalaraAccount | StripeTaxAccount | VertexAccount | TaxjarAccount | ManualTaxCalculator | ExternalTaxCalculator | null;
|
13715
13980
|
customer_group?: CustomerGroup | null;
|
13716
13981
|
geocoder?: Geocoder | null;
|
13717
13982
|
stores?: Store[] | null;
|
@@ -13769,7 +14034,7 @@ interface MarketCreate extends ResourceCreate {
|
|
13769
14034
|
price_list: PriceListRel;
|
13770
14035
|
inventory_model: InventoryModelRel;
|
13771
14036
|
subscription_model?: SubscriptionModelRel | null;
|
13772
|
-
tax_calculator?: AvalaraAccountRel | TaxjarAccountRel | ManualTaxCalculatorRel | ExternalTaxCalculatorRel | null;
|
14037
|
+
tax_calculator?: AvalaraAccountRel | StripeTaxAccountRel | VertexAccountRel | TaxjarAccountRel | ManualTaxCalculatorRel | ExternalTaxCalculatorRel | null;
|
13773
14038
|
customer_group?: CustomerGroupRel | null;
|
13774
14039
|
geocoder?: GeocoderRel$2 | null;
|
13775
14040
|
}
|
@@ -13823,7 +14088,7 @@ interface MarketUpdate extends ResourceUpdate {
|
|
13823
14088
|
price_list?: PriceListRel | null;
|
13824
14089
|
inventory_model?: InventoryModelRel | null;
|
13825
14090
|
subscription_model?: SubscriptionModelRel | null;
|
13826
|
-
tax_calculator?: AvalaraAccountRel | TaxjarAccountRel | ManualTaxCalculatorRel | ExternalTaxCalculatorRel | null;
|
14091
|
+
tax_calculator?: AvalaraAccountRel | StripeTaxAccountRel | VertexAccountRel | TaxjarAccountRel | ManualTaxCalculatorRel | ExternalTaxCalculatorRel | null;
|
13827
14092
|
customer_group?: CustomerGroupRel | null;
|
13828
14093
|
geocoder?: GeocoderRel$2 | null;
|
13829
14094
|
}
|
@@ -14369,10 +14634,10 @@ interface Application extends Resource {
|
|
14369
14634
|
*/
|
14370
14635
|
name?: string | null;
|
14371
14636
|
/**
|
14372
|
-
* The application's kind,
|
14637
|
+
* The application's kind. One of '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', or 'zapier'.
|
14373
14638
|
* @example ```"sales-channel"```
|
14374
14639
|
*/
|
14375
|
-
kind?:
|
14640
|
+
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
14641
|
/**
|
14377
14642
|
* Indicates if the application has public access.
|
14378
14643
|
* @example ```true```
|
@@ -14977,6 +15242,7 @@ interface Export extends Resource {
|
|
14977
15242
|
*/
|
14978
15243
|
errors_log?: Record<string, any> | null;
|
14979
15244
|
events?: Event[] | null;
|
15245
|
+
versions?: Version[] | null;
|
14980
15246
|
}
|
14981
15247
|
interface ExportCreate extends ResourceCreate {
|
14982
15248
|
/**
|
@@ -15022,6 +15288,7 @@ declare class Exports extends ApiResource<Export> {
|
|
15022
15288
|
update(resource: ExportUpdate, params?: QueryParamsRetrieve<Export>, options?: ResourcesConfig): Promise<Export>;
|
15023
15289
|
delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
|
15024
15290
|
events(exportId: string | Export, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
|
15291
|
+
versions(exportId: string | Export, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
|
15025
15292
|
_interrupt(id: string | Export, params?: QueryParamsRetrieve<Export>, options?: ResourcesConfig): Promise<Export>;
|
15026
15293
|
isExport(resource: any): resource is Export;
|
15027
15294
|
relationship(id: string | ResourceId | null): ExportRel;
|
@@ -16060,6 +16327,11 @@ interface TalonOneAccount extends Resource {
|
|
16060
16327
|
* Indicates if the discount engine manages both promotions and gift cards application at once.
|
16061
16328
|
*/
|
16062
16329
|
manage_gift_cards?: boolean | null;
|
16330
|
+
/**
|
16331
|
+
* The API endpoint as computed by specified baseurl.
|
16332
|
+
* @example ```"https://my_baseurl.talon.one/v2"```
|
16333
|
+
*/
|
16334
|
+
api_endpoint?: string | null;
|
16063
16335
|
markets?: Market[] | null;
|
16064
16336
|
discount_engine_items?: DiscountEngineItem[] | null;
|
16065
16337
|
attachments?: Attachment[] | null;
|
@@ -16077,7 +16349,7 @@ interface TalonOneAccountCreate extends ResourceCreate {
|
|
16077
16349
|
*/
|
16078
16350
|
api_key: string;
|
16079
16351
|
/**
|
16080
|
-
* The Talon.One API baseurl (excluding the talon.
|
16352
|
+
* The Talon.One API baseurl (excluding the talon.one suffix).
|
16081
16353
|
* @example ```"yourbaseurl"```
|
16082
16354
|
*/
|
16083
16355
|
baseurl: string;
|
@@ -16094,7 +16366,7 @@ interface TalonOneAccountUpdate extends ResourceUpdate {
|
|
16094
16366
|
*/
|
16095
16367
|
api_key?: string | null;
|
16096
16368
|
/**
|
16097
|
-
* The Talon.One API baseurl (excluding the talon.
|
16369
|
+
* The Talon.One API baseurl (excluding the talon.one suffix).
|
16098
16370
|
* @example ```"yourbaseurl"```
|
16099
16371
|
*/
|
16100
16372
|
baseurl?: string | null;
|
@@ -16114,7 +16386,7 @@ declare class TalonOneAccounts extends ApiResource<TalonOneAccount> {
|
|
16114
16386
|
type(): TalonOneAccountType;
|
16115
16387
|
}
|
16116
16388
|
|
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';
|
16389
|
+
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
16390
|
declare const resourceList: ResourceTypeLock[];
|
16119
16391
|
declare const singletonList: ResourceTypeLock[];
|
16120
16392
|
type RetrievableResourceType = ResourceTypeLock;
|
@@ -16125,15 +16397,15 @@ type ListableResourceType = Exclude<ResourceTypeLock, 'applications' | 'organiza
|
|
16125
16397
|
type ListableResource = Resource & {
|
16126
16398
|
type: ListableResourceType;
|
16127
16399
|
};
|
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';
|
16400
|
+
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
16401
|
type CreatableResource = Resource & {
|
16130
16402
|
type: CreatableResourceType;
|
16131
16403
|
};
|
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';
|
16404
|
+
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
16405
|
type UpdatableResource = Resource & {
|
16134
16406
|
type: UpdatableResourceType;
|
16135
16407
|
};
|
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';
|
16408
|
+
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
16409
|
type DeletableResource = Resource & {
|
16138
16410
|
type: DeletableResourceType;
|
16139
16411
|
};
|
@@ -16144,7 +16416,7 @@ type TaggableResource = Resource & {
|
|
16144
16416
|
type: TagType;
|
16145
16417
|
}> | null;
|
16146
16418
|
};
|
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';
|
16419
|
+
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
16420
|
type VersionableResource = Resource & {
|
16149
16421
|
type: VersionableResourceType;
|
16150
16422
|
versions?: Array<ResourceRel & {
|
@@ -16267,6 +16539,7 @@ type ResourceFields = {
|
|
16267
16539
|
stores: Store;
|
16268
16540
|
stripe_gateways: StripeGateway;
|
16269
16541
|
stripe_payments: StripePayment;
|
16542
|
+
stripe_tax_accounts: StripeTaxAccount;
|
16270
16543
|
subscription_models: SubscriptionModel;
|
16271
16544
|
tags: Tag;
|
16272
16545
|
talon_one_accounts: TalonOneAccount;
|
@@ -16276,6 +16549,7 @@ type ResourceFields = {
|
|
16276
16549
|
taxjar_accounts: TaxjarAccount;
|
16277
16550
|
transactions: Transaction;
|
16278
16551
|
versions: Version;
|
16552
|
+
vertex_accounts: VertexAccount;
|
16279
16553
|
voids: Void;
|
16280
16554
|
webhooks: Webhook;
|
16281
16555
|
wire_transfers: WireTransfer;
|
@@ -16396,6 +16670,7 @@ type ResourceSortFields = {
|
|
16396
16670
|
stores: StoreSort;
|
16397
16671
|
stripe_gateways: StripeGatewaySort;
|
16398
16672
|
stripe_payments: StripePaymentSort;
|
16673
|
+
stripe_tax_accounts: StripeTaxAccountSort;
|
16399
16674
|
subscription_models: SubscriptionModelSort;
|
16400
16675
|
tags: TagSort;
|
16401
16676
|
talon_one_accounts: TalonOneAccountSort;
|
@@ -16405,6 +16680,7 @@ type ResourceSortFields = {
|
|
16405
16680
|
taxjar_accounts: TaxjarAccountSort;
|
16406
16681
|
transactions: TransactionSort;
|
16407
16682
|
versions: VersionSort;
|
16683
|
+
vertex_accounts: VertexAccountSort;
|
16408
16684
|
voids: VoidSort;
|
16409
16685
|
webhooks: WebhookSort;
|
16410
16686
|
wire_transfers: WireTransferSort;
|
@@ -16447,7 +16723,7 @@ type CommerceLayerInitConfig = SdkConfig & ResourcesInitConfig;
|
|
16447
16723
|
type CommerceLayerConfig = Partial<CommerceLayerInitConfig>;
|
16448
16724
|
declare class CommerceLayerClient {
|
16449
16725
|
#private;
|
16450
|
-
readonly openApiSchemaVersion = "7.
|
16726
|
+
readonly openApiSchemaVersion = "7.7.0";
|
16451
16727
|
constructor(config: CommerceLayerInitConfig);
|
16452
16728
|
get addresses(): Addresses;
|
16453
16729
|
get adjustments(): Adjustments;
|
@@ -16564,6 +16840,7 @@ declare class CommerceLayerClient {
|
|
16564
16840
|
get stores(): Stores;
|
16565
16841
|
get stripe_gateways(): StripeGateways;
|
16566
16842
|
get stripe_payments(): StripePayments;
|
16843
|
+
get stripe_tax_accounts(): StripeTaxAccounts;
|
16567
16844
|
get subscription_models(): SubscriptionModels;
|
16568
16845
|
get tags(): Tags;
|
16569
16846
|
get talon_one_accounts(): TalonOneAccounts;
|
@@ -16573,6 +16850,7 @@ declare class CommerceLayerClient {
|
|
16573
16850
|
get taxjar_accounts(): TaxjarAccounts;
|
16574
16851
|
get transactions(): Transactions;
|
16575
16852
|
get versions(): Versions;
|
16853
|
+
get vertex_accounts(): VertexAccounts;
|
16576
16854
|
get voids(): Voids;
|
16577
16855
|
get webhooks(): Webhooks;
|
16578
16856
|
get wire_transfers(): WireTransfers;
|
@@ -16607,4 +16885,4 @@ declare const CommerceLayerStatic: {
|
|
16607
16885
|
readonly schemaVersion: string;
|
16608
16886
|
};
|
16609
16887
|
|
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 };
|
16888
|
+
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 };
|