@commercelayer/sdk 7.0.0-beta.6 → 7.0.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.cjs +2 -2
- package/lib/index.d.cts +387 -113
- package/lib/index.d.ts +387 -113
- package/lib/index.js +2 -2
- package/package.json +3 -3
package/lib/index.d.ts
CHANGED
@@ -3610,7 +3610,7 @@ type StockLineItemType = 'stock_line_items';
|
|
3610
3610
|
type StockLineItemRel$1 = ResourceRel & {
|
3611
3611
|
type: StockLineItemType;
|
3612
3612
|
};
|
3613
|
-
type ShipmentRel$
|
3613
|
+
type ShipmentRel$6 = ResourceRel & {
|
3614
3614
|
type: ShipmentType;
|
3615
3615
|
};
|
3616
3616
|
type LineItemRel$3 = ResourceRel & {
|
@@ -3668,7 +3668,7 @@ interface StockLineItemCreate extends ResourceCreate {
|
|
3668
3668
|
* @example ```4```
|
3669
3669
|
*/
|
3670
3670
|
quantity: number;
|
3671
|
-
shipment?: ShipmentRel$
|
3671
|
+
shipment?: ShipmentRel$6 | null;
|
3672
3672
|
line_item?: LineItemRel$3 | null;
|
3673
3673
|
stock_item?: StockItemRel$3 | null;
|
3674
3674
|
sku?: SkuRel$b | null;
|
@@ -3699,7 +3699,7 @@ interface StockLineItemUpdate extends ResourceUpdate {
|
|
3699
3699
|
* @example ```true```
|
3700
3700
|
*/
|
3701
3701
|
_decrement_stock?: boolean | null;
|
3702
|
-
shipment?: ShipmentRel$
|
3702
|
+
shipment?: ShipmentRel$6 | null;
|
3703
3703
|
line_item?: LineItemRel$3 | null;
|
3704
3704
|
stock_item?: StockItemRel$3 | null;
|
3705
3705
|
sku?: SkuRel$b | null;
|
@@ -8182,7 +8182,7 @@ type BundleRel$2 = ResourceRel & {
|
|
8182
8182
|
type GiftCardRel$1 = ResourceRel & {
|
8183
8183
|
type: GiftCardType;
|
8184
8184
|
};
|
8185
|
-
type ShipmentRel$
|
8185
|
+
type ShipmentRel$5 = ResourceRel & {
|
8186
8186
|
type: ShipmentType;
|
8187
8187
|
};
|
8188
8188
|
type PaymentMethodRel$2 = ResourceRel & {
|
@@ -8468,7 +8468,7 @@ interface LineItemCreate extends ResourceCreate {
|
|
8468
8468
|
*/
|
8469
8469
|
frequency?: string | null;
|
8470
8470
|
order: OrderRel$7;
|
8471
|
-
item?: SkuRel$8 | BundleRel$2 | GiftCardRel$1 | ShipmentRel$
|
8471
|
+
item?: SkuRel$8 | BundleRel$2 | GiftCardRel$1 | ShipmentRel$5 | PaymentMethodRel$2 | AdjustmentRel$1 | DiscountEngineItemRel | PercentageDiscountPromotionRel | FreeShippingPromotionRel | BuyXPayYPromotionRel | FreeGiftPromotionRel | FixedPricePromotionRel | ExternalPromotionRel | FixedAmountPromotionRel | FlexPromotionRel | null;
|
8472
8472
|
tags?: TagRel$6[] | null;
|
8473
8473
|
}
|
8474
8474
|
interface LineItemUpdate extends ResourceUpdate {
|
@@ -10454,90 +10454,6 @@ declare class Orders extends ApiResource<Order> {
|
|
10454
10454
|
type(): OrderType;
|
10455
10455
|
}
|
10456
10456
|
|
10457
|
-
type CarrierAccountType = 'carrier_accounts';
|
10458
|
-
type CarrierAccountRel$1 = ResourceRel & {
|
10459
|
-
type: CarrierAccountType;
|
10460
|
-
};
|
10461
|
-
type MarketRel$4 = ResourceRel & {
|
10462
|
-
type: MarketType;
|
10463
|
-
};
|
10464
|
-
type CarrierAccountSort = Pick<CarrierAccount, 'id' | 'name'> & ResourceSort;
|
10465
|
-
interface CarrierAccount extends Resource {
|
10466
|
-
readonly type: CarrierAccountType;
|
10467
|
-
/**
|
10468
|
-
* The carrier account internal name.
|
10469
|
-
* @example ```"Accurate"```
|
10470
|
-
*/
|
10471
|
-
name: string;
|
10472
|
-
/**
|
10473
|
-
* The Easypost service carrier type.
|
10474
|
-
* @example ```"AccurateAccount"```
|
10475
|
-
*/
|
10476
|
-
easypost_type: string;
|
10477
|
-
/**
|
10478
|
-
* The Easypost internal reference ID.
|
10479
|
-
* @example ```"xxxx-yyyy-zzzz"```
|
10480
|
-
*/
|
10481
|
-
easypost_id?: string | null;
|
10482
|
-
/**
|
10483
|
-
* The Easypost carrier accounts credentials fields.
|
10484
|
-
* @example ```{"username":"xxxx","password":"secret"}```
|
10485
|
-
*/
|
10486
|
-
credentials: Record<string, any>;
|
10487
|
-
market?: Market | null;
|
10488
|
-
attachments?: Attachment[] | null;
|
10489
|
-
versions?: Version[] | null;
|
10490
|
-
}
|
10491
|
-
interface CarrierAccountCreate extends ResourceCreate {
|
10492
|
-
/**
|
10493
|
-
* The carrier account internal name.
|
10494
|
-
* @example ```"Accurate"```
|
10495
|
-
*/
|
10496
|
-
name: string;
|
10497
|
-
/**
|
10498
|
-
* The Easypost service carrier type.
|
10499
|
-
* @example ```"AccurateAccount"```
|
10500
|
-
*/
|
10501
|
-
easypost_type: string;
|
10502
|
-
/**
|
10503
|
-
* The Easypost carrier accounts credentials fields.
|
10504
|
-
* @example ```{"username":"xxxx","password":"secret"}```
|
10505
|
-
*/
|
10506
|
-
credentials: Record<string, any>;
|
10507
|
-
market?: MarketRel$4 | null;
|
10508
|
-
}
|
10509
|
-
interface CarrierAccountUpdate extends ResourceUpdate {
|
10510
|
-
/**
|
10511
|
-
* The carrier account internal name.
|
10512
|
-
* @example ```"Accurate"```
|
10513
|
-
*/
|
10514
|
-
name?: string | null;
|
10515
|
-
/**
|
10516
|
-
* The Easypost service carrier type.
|
10517
|
-
* @example ```"AccurateAccount"```
|
10518
|
-
*/
|
10519
|
-
easypost_type?: string | null;
|
10520
|
-
/**
|
10521
|
-
* The Easypost carrier accounts credentials fields.
|
10522
|
-
* @example ```{"username":"xxxx","password":"secret"}```
|
10523
|
-
*/
|
10524
|
-
credentials?: Record<string, any> | null;
|
10525
|
-
market?: MarketRel$4 | null;
|
10526
|
-
}
|
10527
|
-
declare class CarrierAccounts extends ApiResource<CarrierAccount> {
|
10528
|
-
static readonly TYPE: CarrierAccountType;
|
10529
|
-
create(resource: CarrierAccountCreate, params?: QueryParamsRetrieve<CarrierAccount>, options?: ResourcesConfig): Promise<CarrierAccount>;
|
10530
|
-
update(resource: CarrierAccountUpdate, params?: QueryParamsRetrieve<CarrierAccount>, options?: ResourcesConfig): Promise<CarrierAccount>;
|
10531
|
-
delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
|
10532
|
-
market(carrierAccountId: string | CarrierAccount, params?: QueryParamsRetrieve<Market>, options?: ResourcesConfig): Promise<Market>;
|
10533
|
-
attachments(carrierAccountId: string | CarrierAccount, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
|
10534
|
-
versions(carrierAccountId: string | CarrierAccount, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
|
10535
|
-
isCarrierAccount(resource: any): resource is CarrierAccount;
|
10536
|
-
relationship(id: string | ResourceId | null): CarrierAccountRel$1;
|
10537
|
-
relationshipToMany(...ids: string[]): CarrierAccountRel$1[];
|
10538
|
-
type(): CarrierAccountType;
|
10539
|
-
}
|
10540
|
-
|
10541
10457
|
type PackageType = 'packages';
|
10542
10458
|
type PackageRel$2 = ResourceRel & {
|
10543
10459
|
type: PackageType;
|
@@ -10734,7 +10650,7 @@ type ParcelType = 'parcels';
|
|
10734
10650
|
type ParcelRel$1 = ResourceRel & {
|
10735
10651
|
type: ParcelType;
|
10736
10652
|
};
|
10737
|
-
type ShipmentRel$
|
10653
|
+
type ShipmentRel$4 = ResourceRel & {
|
10738
10654
|
type: ShipmentType;
|
10739
10655
|
};
|
10740
10656
|
type PackageRel$1 = ResourceRel & {
|
@@ -10988,7 +10904,7 @@ interface ParcelCreate extends ResourceCreate {
|
|
10988
10904
|
* @example ```"SIGNATURE"```
|
10989
10905
|
*/
|
10990
10906
|
delivery_confirmation?: string | null;
|
10991
|
-
shipment: ShipmentRel$
|
10907
|
+
shipment: ShipmentRel$4;
|
10992
10908
|
package: PackageRel$1;
|
10993
10909
|
}
|
10994
10910
|
interface ParcelUpdate extends ResourceUpdate {
|
@@ -11108,7 +11024,7 @@ interface ParcelUpdate extends ResourceUpdate {
|
|
11108
11024
|
* @example ```"SIGNATURE"```
|
11109
11025
|
*/
|
11110
11026
|
delivery_confirmation?: string | null;
|
11111
|
-
shipment?: ShipmentRel$
|
11027
|
+
shipment?: ShipmentRel$4 | null;
|
11112
11028
|
package?: PackageRel$1 | null;
|
11113
11029
|
}
|
11114
11030
|
declare class Parcels extends ApiResource<Parcel> {
|
@@ -11128,8 +11044,124 @@ declare class Parcels extends ApiResource<Parcel> {
|
|
11128
11044
|
type(): ParcelType;
|
11129
11045
|
}
|
11130
11046
|
|
11047
|
+
type PickupType = 'pickups';
|
11048
|
+
type PickupRel = ResourceRel & {
|
11049
|
+
type: PickupType;
|
11050
|
+
};
|
11051
|
+
type PickupSort = Pick<Pickup, 'id' | 'status'> & ResourceSort;
|
11052
|
+
interface Pickup extends Resource {
|
11053
|
+
readonly type: PickupType;
|
11054
|
+
/**
|
11055
|
+
* The pick up status.
|
11056
|
+
* @example ```"unknown"```
|
11057
|
+
*/
|
11058
|
+
status?: string | null;
|
11059
|
+
/**
|
11060
|
+
* The pick up service internal ID.
|
11061
|
+
* @example ```"pickup_13e5d7e2a7824432a07975bc553944bc"```
|
11062
|
+
*/
|
11063
|
+
internal_id: string;
|
11064
|
+
shipment?: Shipment | null;
|
11065
|
+
parcels?: Parcel[] | null;
|
11066
|
+
events?: Event[] | null;
|
11067
|
+
}
|
11068
|
+
declare class Pickups extends ApiResource<Pickup> {
|
11069
|
+
static readonly TYPE: PickupType;
|
11070
|
+
shipment(pickupId: string | Pickup, params?: QueryParamsRetrieve<Shipment>, options?: ResourcesConfig): Promise<Shipment>;
|
11071
|
+
parcels(pickupId: string | Pickup, params?: QueryParamsList<Parcel>, options?: ResourcesConfig): Promise<ListResponse<Parcel>>;
|
11072
|
+
events(pickupId: string | Pickup, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
|
11073
|
+
isPickup(resource: any): resource is Pickup;
|
11074
|
+
relationship(id: string | ResourceId | null): PickupRel;
|
11075
|
+
relationshipToMany(...ids: string[]): PickupRel[];
|
11076
|
+
type(): PickupType;
|
11077
|
+
}
|
11078
|
+
|
11079
|
+
type CarrierAccountType = 'carrier_accounts';
|
11080
|
+
type CarrierAccountRel$1 = ResourceRel & {
|
11081
|
+
type: CarrierAccountType;
|
11082
|
+
};
|
11083
|
+
type MarketRel$4 = ResourceRel & {
|
11084
|
+
type: MarketType;
|
11085
|
+
};
|
11086
|
+
type CarrierAccountSort = Pick<CarrierAccount, 'id' | 'name'> & ResourceSort;
|
11087
|
+
interface CarrierAccount extends Resource {
|
11088
|
+
readonly type: CarrierAccountType;
|
11089
|
+
/**
|
11090
|
+
* The carrier account internal name.
|
11091
|
+
* @example ```"Accurate"```
|
11092
|
+
*/
|
11093
|
+
name: string;
|
11094
|
+
/**
|
11095
|
+
* The Easypost service carrier type.
|
11096
|
+
* @example ```"AccurateAccount"```
|
11097
|
+
*/
|
11098
|
+
easypost_type: string;
|
11099
|
+
/**
|
11100
|
+
* The Easypost internal reference ID.
|
11101
|
+
* @example ```"xxxx-yyyy-zzzz"```
|
11102
|
+
*/
|
11103
|
+
easypost_id?: string | null;
|
11104
|
+
/**
|
11105
|
+
* The Easypost carrier accounts credentials fields.
|
11106
|
+
* @example ```{"username":"xxxx","password":"secret"}```
|
11107
|
+
*/
|
11108
|
+
credentials: Record<string, any>;
|
11109
|
+
market?: Market | null;
|
11110
|
+
attachments?: Attachment[] | null;
|
11111
|
+
versions?: Version[] | null;
|
11112
|
+
}
|
11113
|
+
interface CarrierAccountCreate extends ResourceCreate {
|
11114
|
+
/**
|
11115
|
+
* The carrier account internal name.
|
11116
|
+
* @example ```"Accurate"```
|
11117
|
+
*/
|
11118
|
+
name: string;
|
11119
|
+
/**
|
11120
|
+
* The Easypost service carrier type.
|
11121
|
+
* @example ```"AccurateAccount"```
|
11122
|
+
*/
|
11123
|
+
easypost_type: string;
|
11124
|
+
/**
|
11125
|
+
* The Easypost carrier accounts credentials fields.
|
11126
|
+
* @example ```{"username":"xxxx","password":"secret"}```
|
11127
|
+
*/
|
11128
|
+
credentials: Record<string, any>;
|
11129
|
+
market?: MarketRel$4 | null;
|
11130
|
+
}
|
11131
|
+
interface CarrierAccountUpdate extends ResourceUpdate {
|
11132
|
+
/**
|
11133
|
+
* The carrier account internal name.
|
11134
|
+
* @example ```"Accurate"```
|
11135
|
+
*/
|
11136
|
+
name?: string | null;
|
11137
|
+
/**
|
11138
|
+
* The Easypost service carrier type.
|
11139
|
+
* @example ```"AccurateAccount"```
|
11140
|
+
*/
|
11141
|
+
easypost_type?: string | null;
|
11142
|
+
/**
|
11143
|
+
* The Easypost carrier accounts credentials fields.
|
11144
|
+
* @example ```{"username":"xxxx","password":"secret"}```
|
11145
|
+
*/
|
11146
|
+
credentials?: Record<string, any> | null;
|
11147
|
+
market?: MarketRel$4 | null;
|
11148
|
+
}
|
11149
|
+
declare class CarrierAccounts extends ApiResource<CarrierAccount> {
|
11150
|
+
static readonly TYPE: CarrierAccountType;
|
11151
|
+
create(resource: CarrierAccountCreate, params?: QueryParamsRetrieve<CarrierAccount>, options?: ResourcesConfig): Promise<CarrierAccount>;
|
11152
|
+
update(resource: CarrierAccountUpdate, params?: QueryParamsRetrieve<CarrierAccount>, options?: ResourcesConfig): Promise<CarrierAccount>;
|
11153
|
+
delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
|
11154
|
+
market(carrierAccountId: string | CarrierAccount, params?: QueryParamsRetrieve<Market>, options?: ResourcesConfig): Promise<Market>;
|
11155
|
+
attachments(carrierAccountId: string | CarrierAccount, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>>;
|
11156
|
+
versions(carrierAccountId: string | CarrierAccount, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>>;
|
11157
|
+
isCarrierAccount(resource: any): resource is CarrierAccount;
|
11158
|
+
relationship(id: string | ResourceId | null): CarrierAccountRel$1;
|
11159
|
+
relationshipToMany(...ids: string[]): CarrierAccountRel$1[];
|
11160
|
+
type(): CarrierAccountType;
|
11161
|
+
}
|
11162
|
+
|
11131
11163
|
type ShipmentType = 'shipments';
|
11132
|
-
type ShipmentRel$
|
11164
|
+
type ShipmentRel$3 = ResourceRel & {
|
11133
11165
|
type: ShipmentType;
|
11134
11166
|
};
|
11135
11167
|
type OrderRel$1 = ResourceRel & {
|
@@ -11271,6 +11303,7 @@ interface Shipment extends Resource {
|
|
11271
11303
|
shipping_address?: Address | null;
|
11272
11304
|
shipping_method?: ShippingMethod | null;
|
11273
11305
|
delivery_lead_time?: DeliveryLeadTime | null;
|
11306
|
+
pickup?: Pickup | null;
|
11274
11307
|
stock_line_items?: StockLineItem[] | null;
|
11275
11308
|
stock_transfers?: StockTransfer[] | null;
|
11276
11309
|
line_items?: LineItem[] | null;
|
@@ -11385,6 +11418,7 @@ declare class Shipments extends ApiResource<Shipment> {
|
|
11385
11418
|
shipping_address(shipmentId: string | Shipment, params?: QueryParamsRetrieve<Address>, options?: ResourcesConfig): Promise<Address>;
|
11386
11419
|
shipping_method(shipmentId: string | Shipment, params?: QueryParamsRetrieve<ShippingMethod>, options?: ResourcesConfig): Promise<ShippingMethod>;
|
11387
11420
|
delivery_lead_time(shipmentId: string | Shipment, params?: QueryParamsRetrieve<DeliveryLeadTime>, options?: ResourcesConfig): Promise<DeliveryLeadTime>;
|
11421
|
+
pickup(shipmentId: string | Shipment, params?: QueryParamsRetrieve<Pickup>, options?: ResourcesConfig): Promise<Pickup>;
|
11388
11422
|
stock_line_items(shipmentId: string | Shipment, params?: QueryParamsList<StockLineItem>, options?: ResourcesConfig): Promise<ListResponse<StockLineItem>>;
|
11389
11423
|
stock_transfers(shipmentId: string | Shipment, params?: QueryParamsList<StockTransfer>, options?: ResourcesConfig): Promise<ListResponse<StockTransfer>>;
|
11390
11424
|
line_items(shipmentId: string | Shipment, params?: QueryParamsList<LineItem>, options?: ResourcesConfig): Promise<ListResponse<LineItem>>;
|
@@ -11409,8 +11443,8 @@ declare class Shipments extends ApiResource<Shipment> {
|
|
11409
11443
|
_get_rates(id: string | Shipment, params?: QueryParamsRetrieve<Shipment>, options?: ResourcesConfig): Promise<Shipment>;
|
11410
11444
|
_purchase(id: string | Shipment, params?: QueryParamsRetrieve<Shipment>, options?: ResourcesConfig): Promise<Shipment>;
|
11411
11445
|
isShipment(resource: any): resource is Shipment;
|
11412
|
-
relationship(id: string | ResourceId | null): ShipmentRel$
|
11413
|
-
relationshipToMany(...ids: string[]): ShipmentRel$
|
11446
|
+
relationship(id: string | ResourceId | null): ShipmentRel$3;
|
11447
|
+
relationshipToMany(...ids: string[]): ShipmentRel$3[];
|
11414
11448
|
type(): ShipmentType;
|
11415
11449
|
}
|
11416
11450
|
|
@@ -11424,7 +11458,7 @@ type SkuRel$6 = ResourceRel & {
|
|
11424
11458
|
type StockLocationRel$3 = ResourceRel & {
|
11425
11459
|
type: StockLocationType;
|
11426
11460
|
};
|
11427
|
-
type ShipmentRel$
|
11461
|
+
type ShipmentRel$2 = ResourceRel & {
|
11428
11462
|
type: ShipmentType;
|
11429
11463
|
};
|
11430
11464
|
type LineItemRel = ResourceRel & {
|
@@ -11507,7 +11541,7 @@ interface StockTransferCreate extends ResourceCreate {
|
|
11507
11541
|
sku: SkuRel$6;
|
11508
11542
|
origin_stock_location: StockLocationRel$3;
|
11509
11543
|
destination_stock_location: StockLocationRel$3;
|
11510
|
-
shipment?: ShipmentRel$
|
11544
|
+
shipment?: ShipmentRel$2 | null;
|
11511
11545
|
line_item?: LineItemRel | null;
|
11512
11546
|
}
|
11513
11547
|
interface StockTransferUpdate extends ResourceUpdate {
|
@@ -11559,7 +11593,7 @@ interface StockTransferUpdate extends ResourceUpdate {
|
|
11559
11593
|
sku?: SkuRel$6 | null;
|
11560
11594
|
origin_stock_location?: StockLocationRel$3 | null;
|
11561
11595
|
destination_stock_location?: StockLocationRel$3 | null;
|
11562
|
-
shipment?: ShipmentRel$
|
11596
|
+
shipment?: ShipmentRel$2 | null;
|
11563
11597
|
line_item?: LineItemRel | null;
|
11564
11598
|
}
|
11565
11599
|
declare class StockTransfers extends ApiResource<StockTransfer> {
|
@@ -13730,6 +13764,12 @@ type ShippingMethodRel = ResourceRel & {
|
|
13730
13764
|
type DiscountEngineRel = ResourceRel & {
|
13731
13765
|
type: DiscountEngineType;
|
13732
13766
|
};
|
13767
|
+
type ShipmentRel$1 = ResourceRel & {
|
13768
|
+
type: ShipmentType;
|
13769
|
+
};
|
13770
|
+
type ParcelRel = ResourceRel & {
|
13771
|
+
type: ParcelType;
|
13772
|
+
};
|
13733
13773
|
type GiftCardRecipientRel = ResourceRel & {
|
13734
13774
|
type: GiftCardRecipientType;
|
13735
13775
|
};
|
@@ -13751,18 +13791,12 @@ type MerchantRel$2 = ResourceRel & {
|
|
13751
13791
|
type SubscriptionModelRel$1 = ResourceRel & {
|
13752
13792
|
type: SubscriptionModelType;
|
13753
13793
|
};
|
13754
|
-
type ShipmentRel = ResourceRel & {
|
13755
|
-
type: ShipmentType;
|
13756
|
-
};
|
13757
13794
|
type PaymentOptionRel = ResourceRel & {
|
13758
13795
|
type: PaymentOptionType;
|
13759
13796
|
};
|
13760
13797
|
type PackageRel = ResourceRel & {
|
13761
13798
|
type: PackageType;
|
13762
13799
|
};
|
13763
|
-
type ParcelRel = ResourceRel & {
|
13764
|
-
type: ParcelType;
|
13765
|
-
};
|
13766
13800
|
type PriceRel = ResourceRel & {
|
13767
13801
|
type: PriceType;
|
13768
13802
|
};
|
@@ -13793,7 +13827,7 @@ interface Attachment extends Resource {
|
|
13793
13827
|
* @example ```"https://s3.yourdomain.com/attachment.pdf"```
|
13794
13828
|
*/
|
13795
13829
|
url?: string | null;
|
13796
|
-
attachable?: Geocoder | PriceList | PaymentMethod | Market | CustomerGroup | Order | Transaction | Promotion | TaxCalculator | TaxCategory | Sku | ShippingCategory | Bundle | SkuList | StockItem | StockLocation | Return | CarrierAccount | CouponRecipient | Customer | DeliveryLeadTime | ShippingMethod | DiscountEngine | GiftCardRecipient | GiftCard | InventoryModel | StockTransfer | SkuOption | Merchant | SubscriptionModel |
|
13830
|
+
attachable?: Geocoder | PriceList | PaymentMethod | Market | CustomerGroup | Order | Transaction | Promotion | TaxCalculator | TaxCategory | Sku | ShippingCategory | Bundle | SkuList | StockItem | StockLocation | Return | CarrierAccount | CouponRecipient | Customer | DeliveryLeadTime | ShippingMethod | DiscountEngine | Shipment | Parcel | GiftCardRecipient | GiftCard | InventoryModel | StockTransfer | SkuOption | Merchant | SubscriptionModel | PaymentOption | Package | Price | PriceTier | ShippingMethodTier | ShippingZone | null;
|
13797
13831
|
}
|
13798
13832
|
interface AttachmentCreate extends ResourceCreate {
|
13799
13833
|
/**
|
@@ -13811,7 +13845,7 @@ interface AttachmentCreate extends ResourceCreate {
|
|
13811
13845
|
* @example ```"https://s3.yourdomain.com/attachment.pdf"```
|
13812
13846
|
*/
|
13813
13847
|
url?: string | null;
|
13814
|
-
attachable: GeocoderRel$3 | PriceListRel$1 | PaymentMethodRel | MarketRel$2 | CustomerGroupRel$1 | OrderRel | TransactionRel | PromotionRel | TaxCalculatorRel | TaxCategoryRel | SkuRel$1 | ShippingCategoryRel | BundleRel | SkuListRel | StockItemRel | StockLocationRel | ReturnRel | CarrierAccountRel | CouponRecipientRel | CustomerRel$1 | DeliveryLeadTimeRel | ShippingMethodRel | DiscountEngineRel | GiftCardRecipientRel | GiftCardRel | InventoryModelRel$1 | StockTransferRel | SkuOptionRel | MerchantRel$2 | SubscriptionModelRel$1 |
|
13848
|
+
attachable: GeocoderRel$3 | PriceListRel$1 | PaymentMethodRel | MarketRel$2 | CustomerGroupRel$1 | OrderRel | TransactionRel | PromotionRel | TaxCalculatorRel | TaxCategoryRel | SkuRel$1 | ShippingCategoryRel | BundleRel | SkuListRel | StockItemRel | StockLocationRel | ReturnRel | CarrierAccountRel | CouponRecipientRel | CustomerRel$1 | DeliveryLeadTimeRel | ShippingMethodRel | DiscountEngineRel | ShipmentRel$1 | ParcelRel | GiftCardRecipientRel | GiftCardRel | InventoryModelRel$1 | StockTransferRel | SkuOptionRel | MerchantRel$2 | SubscriptionModelRel$1 | PaymentOptionRel | PackageRel | PriceRel | PriceTierRel | ShippingMethodTierRel | ShippingZoneRel;
|
13815
13849
|
}
|
13816
13850
|
interface AttachmentUpdate extends ResourceUpdate {
|
13817
13851
|
/**
|
@@ -13829,7 +13863,7 @@ interface AttachmentUpdate extends ResourceUpdate {
|
|
13829
13863
|
* @example ```"https://s3.yourdomain.com/attachment.pdf"```
|
13830
13864
|
*/
|
13831
13865
|
url?: string | null;
|
13832
|
-
attachable?: GeocoderRel$3 | PriceListRel$1 | PaymentMethodRel | MarketRel$2 | CustomerGroupRel$1 | OrderRel | TransactionRel | PromotionRel | TaxCalculatorRel | TaxCategoryRel | SkuRel$1 | ShippingCategoryRel | BundleRel | SkuListRel | StockItemRel | StockLocationRel | ReturnRel | CarrierAccountRel | CouponRecipientRel | CustomerRel$1 | DeliveryLeadTimeRel | ShippingMethodRel | DiscountEngineRel | GiftCardRecipientRel | GiftCardRel | InventoryModelRel$1 | StockTransferRel | SkuOptionRel | MerchantRel$2 | SubscriptionModelRel$1 |
|
13866
|
+
attachable?: GeocoderRel$3 | PriceListRel$1 | PaymentMethodRel | MarketRel$2 | CustomerGroupRel$1 | OrderRel | TransactionRel | PromotionRel | TaxCalculatorRel | TaxCategoryRel | SkuRel$1 | ShippingCategoryRel | BundleRel | SkuListRel | StockItemRel | StockLocationRel | ReturnRel | CarrierAccountRel | CouponRecipientRel | CustomerRel$1 | DeliveryLeadTimeRel | ShippingMethodRel | DiscountEngineRel | ShipmentRel$1 | ParcelRel | GiftCardRecipientRel | GiftCardRel | InventoryModelRel$1 | StockTransferRel | SkuOptionRel | MerchantRel$2 | SubscriptionModelRel$1 | PaymentOptionRel | PackageRel | PriceRel | PriceTierRel | ShippingMethodTierRel | ShippingZoneRel | null;
|
13833
13867
|
}
|
13834
13868
|
declare class Attachments extends ApiResource<Attachment> {
|
13835
13869
|
static readonly TYPE: AttachmentType;
|
@@ -15200,6 +15234,111 @@ declare class CustomerPasswordResets extends ApiResource<CustomerPasswordReset>
|
|
15200
15234
|
type(): CustomerPasswordResetType;
|
15201
15235
|
}
|
15202
15236
|
|
15237
|
+
type EasypostPickupType = 'easypost_pickups';
|
15238
|
+
type EasypostPickupRel = ResourceRel & {
|
15239
|
+
type: EasypostPickupType;
|
15240
|
+
};
|
15241
|
+
type ShipmentRel = ResourceRel & {
|
15242
|
+
type: ShipmentType;
|
15243
|
+
};
|
15244
|
+
type EasypostPickupSort = Pick<EasypostPickup, 'id' | 'status' | 'min_datetime' | 'max_datetime' | 'purchase_started_at' | 'purchase_completed_at'> & ResourceSort;
|
15245
|
+
interface EasypostPickup extends Resource {
|
15246
|
+
readonly type: EasypostPickupType;
|
15247
|
+
/**
|
15248
|
+
* The pick up status.
|
15249
|
+
* @example ```"unknown"```
|
15250
|
+
*/
|
15251
|
+
status?: string | null;
|
15252
|
+
/**
|
15253
|
+
* The pick up service internal ID.
|
15254
|
+
* @example ```"pickup_13e5d7e2a7824432a07975bc553944bc"```
|
15255
|
+
*/
|
15256
|
+
internal_id: string;
|
15257
|
+
/**
|
15258
|
+
* The selected purchase rate from the available pick up rates.
|
15259
|
+
* @example ```"pickuprate_a6cd2647a898410aa5d33febde44e1b2"```
|
15260
|
+
*/
|
15261
|
+
selected_rate_id?: string | null;
|
15262
|
+
/**
|
15263
|
+
* The available pick up rates.
|
15264
|
+
* @example ```[{"id":"pickuprate_a6cd2647a898410aa5d33febde44e1b2","rate":"45.59","carrier":"USPS","service":"NextDay"}]```
|
15265
|
+
*/
|
15266
|
+
rates: Array<Record<string, any>>;
|
15267
|
+
/**
|
15268
|
+
* Additional text to help the driver successfully obtain the package, automatically enriched with parcels and package informations.
|
15269
|
+
* @example ```"Knock loudly"```
|
15270
|
+
*/
|
15271
|
+
instructions?: string | null;
|
15272
|
+
/**
|
15273
|
+
* The earliest time at which the package is available to pick up, must be larger than 2 hours from creation time.
|
15274
|
+
* @example ```"2018-01-01T12:00:00.000Z"```
|
15275
|
+
*/
|
15276
|
+
min_datetime: string;
|
15277
|
+
/**
|
15278
|
+
* The latest time at which the package is available to pick up, must be smaller than 24 hours from creation time.
|
15279
|
+
* @example ```"2018-01-01T12:00:00.000Z"```
|
15280
|
+
*/
|
15281
|
+
max_datetime: string;
|
15282
|
+
/**
|
15283
|
+
* Time at which the purchasing of the pick up rate started.
|
15284
|
+
* @example ```"2018-01-01T12:00:00.000Z"```
|
15285
|
+
*/
|
15286
|
+
purchase_started_at?: string | null;
|
15287
|
+
/**
|
15288
|
+
* Time at which the purchasing of the pick up rate completed.
|
15289
|
+
* @example ```"2018-01-01T12:00:00.000Z"```
|
15290
|
+
*/
|
15291
|
+
purchase_completed_at?: string | null;
|
15292
|
+
shipment?: Shipment | null;
|
15293
|
+
parcels?: Parcel[] | null;
|
15294
|
+
events?: Event[] | null;
|
15295
|
+
}
|
15296
|
+
interface EasypostPickupCreate extends ResourceCreate {
|
15297
|
+
/**
|
15298
|
+
* Additional text to help the driver successfully obtain the package, automatically enriched with parcels and package informations.
|
15299
|
+
* @example ```"Knock loudly"```
|
15300
|
+
*/
|
15301
|
+
instructions?: string | null;
|
15302
|
+
/**
|
15303
|
+
* The earliest time at which the package is available to pick up, must be larger than 2 hours from creation time.
|
15304
|
+
* @example ```"2018-01-01T12:00:00.000Z"```
|
15305
|
+
*/
|
15306
|
+
min_datetime: string;
|
15307
|
+
/**
|
15308
|
+
* The latest time at which the package is available to pick up, must be smaller than 24 hours from creation time.
|
15309
|
+
* @example ```"2018-01-01T12:00:00.000Z"```
|
15310
|
+
*/
|
15311
|
+
max_datetime: string;
|
15312
|
+
shipment: ShipmentRel;
|
15313
|
+
}
|
15314
|
+
interface EasypostPickupUpdate extends ResourceUpdate {
|
15315
|
+
/**
|
15316
|
+
* The selected purchase rate from the available pick up rates.
|
15317
|
+
* @example ```"pickuprate_a6cd2647a898410aa5d33febde44e1b2"```
|
15318
|
+
*/
|
15319
|
+
selected_rate_id?: string | null;
|
15320
|
+
/**
|
15321
|
+
* Send this attribute if you want to purchase this pick up with the selected rate.
|
15322
|
+
* @example ```true```
|
15323
|
+
*/
|
15324
|
+
_purchase?: boolean | null;
|
15325
|
+
shipment?: ShipmentRel | null;
|
15326
|
+
}
|
15327
|
+
declare class EasypostPickups extends ApiResource<EasypostPickup> {
|
15328
|
+
static readonly TYPE: EasypostPickupType;
|
15329
|
+
create(resource: EasypostPickupCreate, params?: QueryParamsRetrieve<EasypostPickup>, options?: ResourcesConfig): Promise<EasypostPickup>;
|
15330
|
+
update(resource: EasypostPickupUpdate, params?: QueryParamsRetrieve<EasypostPickup>, options?: ResourcesConfig): Promise<EasypostPickup>;
|
15331
|
+
delete(id: string | ResourceId, options?: ResourcesConfig): Promise<void>;
|
15332
|
+
shipment(easypostPickupId: string | EasypostPickup, params?: QueryParamsRetrieve<Shipment>, options?: ResourcesConfig): Promise<Shipment>;
|
15333
|
+
parcels(easypostPickupId: string | EasypostPickup, params?: QueryParamsList<Parcel>, options?: ResourcesConfig): Promise<ListResponse<Parcel>>;
|
15334
|
+
events(easypostPickupId: string | EasypostPickup, params?: QueryParamsList<Event>, options?: ResourcesConfig): Promise<ListResponse<Event>>;
|
15335
|
+
_purchase(id: string | EasypostPickup, params?: QueryParamsRetrieve<EasypostPickup>, options?: ResourcesConfig): Promise<EasypostPickup>;
|
15336
|
+
isEasypostPickup(resource: any): resource is EasypostPickup;
|
15337
|
+
relationship(id: string | ResourceId | null): EasypostPickupRel;
|
15338
|
+
relationshipToMany(...ids: string[]): EasypostPickupRel[];
|
15339
|
+
type(): EasypostPickupType;
|
15340
|
+
}
|
15341
|
+
|
15203
15342
|
type ExportType = 'exports';
|
15204
15343
|
type ExportRel = ResourceRel & {
|
15205
15344
|
type: ExportType;
|
@@ -16421,7 +16560,7 @@ declare class TalonOneAccounts extends ApiResource<TalonOneAccount> {
|
|
16421
16560
|
type(): TalonOneAccountType;
|
16422
16561
|
}
|
16423
16562
|
|
16424
|
-
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';
|
16563
|
+
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' | 'easypost_pickups' | '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' | 'pickups' | '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';
|
16425
16564
|
declare const resourceList: ResourceTypeLock[];
|
16426
16565
|
declare const singletonList: ResourceTypeLock[];
|
16427
16566
|
type RetrievableResourceType = ResourceTypeLock;
|
@@ -16432,15 +16571,15 @@ type ListableResourceType = Exclude<ResourceTypeLock, 'applications' | 'organiza
|
|
16432
16571
|
type ListableResource = Resource & {
|
16433
16572
|
type: ListableResourceType;
|
16434
16573
|
};
|
16435
|
-
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';
|
16574
|
+
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' | 'easypost_pickups' | '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';
|
16436
16575
|
type CreatableResource = Resource & {
|
16437
16576
|
type: CreatableResourceType;
|
16438
16577
|
};
|
16439
|
-
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';
|
16578
|
+
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' | 'easypost_pickups' | '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';
|
16440
16579
|
type UpdatableResource = Resource & {
|
16441
16580
|
type: UpdatableResourceType;
|
16442
16581
|
};
|
16443
|
-
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';
|
16582
|
+
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' | 'easypost_pickups' | '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';
|
16444
16583
|
type DeletableResource = Resource & {
|
16445
16584
|
type: DeletableResourceType;
|
16446
16585
|
};
|
@@ -16492,6 +16631,7 @@ type ResourceFields = {
|
|
16492
16631
|
delivery_lead_times: DeliveryLeadTime;
|
16493
16632
|
discount_engine_items: DiscountEngineItem;
|
16494
16633
|
discount_engines: DiscountEngine;
|
16634
|
+
easypost_pickups: EasypostPickup;
|
16495
16635
|
event_callbacks: EventCallback;
|
16496
16636
|
events: Event;
|
16497
16637
|
exports: Export;
|
@@ -16539,6 +16679,7 @@ type ResourceFields = {
|
|
16539
16679
|
paypal_gateways: PaypalGateway;
|
16540
16680
|
paypal_payments: PaypalPayment;
|
16541
16681
|
percentage_discount_promotions: PercentageDiscountPromotion;
|
16682
|
+
pickups: Pickup;
|
16542
16683
|
price_frequency_tiers: PriceFrequencyTier;
|
16543
16684
|
price_list_schedulers: PriceListScheduler;
|
16544
16685
|
price_lists: PriceList;
|
@@ -16623,6 +16764,7 @@ type ResourceSortFields = {
|
|
16623
16764
|
delivery_lead_times: DeliveryLeadTimeSort;
|
16624
16765
|
discount_engine_items: DiscountEngineItemSort;
|
16625
16766
|
discount_engines: DiscountEngineSort;
|
16767
|
+
easypost_pickups: EasypostPickupSort;
|
16626
16768
|
event_callbacks: EventCallbackSort;
|
16627
16769
|
events: EventSort;
|
16628
16770
|
exports: ExportSort;
|
@@ -16670,6 +16812,7 @@ type ResourceSortFields = {
|
|
16670
16812
|
paypal_gateways: PaypalGatewaySort;
|
16671
16813
|
paypal_payments: PaypalPaymentSort;
|
16672
16814
|
percentage_discount_promotions: PercentageDiscountPromotionSort;
|
16815
|
+
pickups: PickupSort;
|
16673
16816
|
price_frequency_tiers: PriceFrequencyTierSort;
|
16674
16817
|
price_list_schedulers: PriceListSchedulerSort;
|
16675
16818
|
price_lists: PriceListSort;
|
@@ -16758,7 +16901,7 @@ type CommerceLayerInitConfig = SdkConfig & ResourcesInitConfig;
|
|
16758
16901
|
type CommerceLayerConfig = Partial<CommerceLayerInitConfig>;
|
16759
16902
|
declare class CommerceLayerClient {
|
16760
16903
|
#private;
|
16761
|
-
readonly openApiSchemaVersion = "7.
|
16904
|
+
readonly openApiSchemaVersion = "7.8.0";
|
16762
16905
|
constructor(config: CommerceLayerInitConfig);
|
16763
16906
|
get addresses(): Addresses;
|
16764
16907
|
get adjustments(): Adjustments;
|
@@ -16793,6 +16936,7 @@ declare class CommerceLayerClient {
|
|
16793
16936
|
get delivery_lead_times(): DeliveryLeadTimes;
|
16794
16937
|
get discount_engine_items(): DiscountEngineItems;
|
16795
16938
|
get discount_engines(): DiscountEngines;
|
16939
|
+
get easypost_pickups(): EasypostPickups;
|
16796
16940
|
get event_callbacks(): EventCallbacks;
|
16797
16941
|
get events(): Events;
|
16798
16942
|
get exports(): Exports;
|
@@ -16840,6 +16984,7 @@ declare class CommerceLayerClient {
|
|
16840
16984
|
get paypal_gateways(): PaypalGateways;
|
16841
16985
|
get paypal_payments(): PaypalPayments;
|
16842
16986
|
get percentage_discount_promotions(): PercentageDiscountPromotions;
|
16987
|
+
get pickups(): Pickups;
|
16843
16988
|
get price_frequency_tiers(): PriceFrequencyTiers;
|
16844
16989
|
get price_list_schedulers(): PriceListSchedulers;
|
16845
16990
|
get price_lists(): PriceLists;
|
@@ -16910,7 +17055,136 @@ declare class CommerceLayerClient {
|
|
16910
17055
|
declare const CommerceLayer: (config: CommerceLayerInitConfig) => CommerceLayerClient;
|
16911
17056
|
|
16912
17057
|
declare const addresses: Addresses;
|
17058
|
+
declare const adjustments: Adjustments;
|
17059
|
+
declare const adyen_gateways: AdyenGateways;
|
17060
|
+
declare const adyen_payments: AdyenPayments;
|
17061
|
+
declare const application: Applications;
|
17062
|
+
declare const attachments: Attachments;
|
17063
|
+
declare const authorizations: Authorizations;
|
17064
|
+
declare const avalara_accounts: AvalaraAccounts;
|
17065
|
+
declare const axerve_gateways: AxerveGateways;
|
17066
|
+
declare const axerve_payments: AxervePayments;
|
17067
|
+
declare const bing_geocoders: BingGeocoders;
|
17068
|
+
declare const braintree_gateways: BraintreeGateways;
|
17069
|
+
declare const braintree_payments: BraintreePayments;
|
17070
|
+
declare const bundles: Bundles;
|
17071
|
+
declare const buy_x_pay_y_promotions: BuyXPayYPromotions;
|
17072
|
+
declare const captures: Captures;
|
17073
|
+
declare const carrier_accounts: CarrierAccounts;
|
17074
|
+
declare const checkout_com_gateways: CheckoutComGateways;
|
17075
|
+
declare const checkout_com_payments: CheckoutComPayments;
|
17076
|
+
declare const cleanups: Cleanups;
|
17077
|
+
declare const coupon_codes_promotion_rules: CouponCodesPromotionRules;
|
17078
|
+
declare const coupon_recipients: CouponRecipients;
|
17079
|
+
declare const coupons: Coupons;
|
17080
|
+
declare const custom_promotion_rules: CustomPromotionRules;
|
17081
|
+
declare const customer_addresses: CustomerAddresses;
|
17082
|
+
declare const customer_groups: CustomerGroups;
|
17083
|
+
declare const customer_password_resets: CustomerPasswordResets;
|
17084
|
+
declare const customer_payment_sources: CustomerPaymentSources;
|
17085
|
+
declare const customer_subscriptions: CustomerSubscriptions;
|
16913
17086
|
declare const customers: Customers;
|
17087
|
+
declare const delivery_lead_times: DeliveryLeadTimes;
|
17088
|
+
declare const discount_engine_items: DiscountEngineItems;
|
17089
|
+
declare const discount_engines: DiscountEngines;
|
17090
|
+
declare const easypost_pickups: EasypostPickups;
|
17091
|
+
declare const event_callbacks: EventCallbacks;
|
17092
|
+
declare const events: Events;
|
17093
|
+
declare const exportz: Exports;
|
17094
|
+
declare const external_gateways: ExternalGateways;
|
17095
|
+
declare const external_payments: ExternalPayments;
|
17096
|
+
declare const external_promotions: ExternalPromotions;
|
17097
|
+
declare const external_tax_calculators: ExternalTaxCalculators;
|
17098
|
+
declare const fixed_amount_promotions: FixedAmountPromotions;
|
17099
|
+
declare const fixed_price_promotions: FixedPricePromotions;
|
17100
|
+
declare const flex_promotions: FlexPromotions;
|
17101
|
+
declare const free_gift_promotions: FreeGiftPromotions;
|
17102
|
+
declare const free_shipping_promotions: FreeShippingPromotions;
|
17103
|
+
declare const geocoders: Geocoders;
|
17104
|
+
declare const gift_card_recipients: GiftCardRecipients;
|
17105
|
+
declare const gift_cards: GiftCards;
|
17106
|
+
declare const google_geocoders: GoogleGeocoders;
|
17107
|
+
declare const imports: Imports;
|
17108
|
+
declare const in_stock_subscriptions: InStockSubscriptions;
|
17109
|
+
declare const inventory_models: InventoryModels;
|
17110
|
+
declare const inventory_return_locations: InventoryReturnLocations;
|
17111
|
+
declare const inventory_stock_locations: InventoryStockLocations;
|
17112
|
+
declare const klarna_gateways: KlarnaGateways;
|
17113
|
+
declare const klarna_payments: KlarnaPayments;
|
17114
|
+
declare const line_item_options: LineItemOptions;
|
17115
|
+
declare const line_items: LineItems;
|
17116
|
+
declare const links: Links;
|
17117
|
+
declare const manual_gateways: ManualGateways;
|
17118
|
+
declare const manual_tax_calculators: ManualTaxCalculators;
|
17119
|
+
declare const markets: Markets;
|
17120
|
+
declare const merchants: Merchants;
|
17121
|
+
declare const notifications: Notifications;
|
17122
|
+
declare const order_amount_promotion_rules: OrderAmountPromotionRules;
|
17123
|
+
declare const order_copies: OrderCopies;
|
17124
|
+
declare const order_factories: OrderFactories;
|
17125
|
+
declare const order_subscription_items: OrderSubscriptionItems;
|
17126
|
+
declare const order_subscriptions: OrderSubscriptions;
|
17127
|
+
declare const orders: Orders;
|
17128
|
+
declare const organization: Organizations;
|
17129
|
+
declare const packages: Packages;
|
17130
|
+
declare const parcel_line_items: ParcelLineItems;
|
17131
|
+
declare const parcels: Parcels;
|
17132
|
+
declare const payment_gateways: PaymentGateways;
|
17133
|
+
declare const payment_methods: PaymentMethods;
|
17134
|
+
declare const payment_options: PaymentOptions;
|
17135
|
+
declare const paypal_gateways: PaypalGateways;
|
17136
|
+
declare const paypal_payments: PaypalPayments;
|
17137
|
+
declare const percentage_discount_promotions: PercentageDiscountPromotions;
|
17138
|
+
declare const pickups: Pickups;
|
17139
|
+
declare const price_frequency_tiers: PriceFrequencyTiers;
|
17140
|
+
declare const price_list_schedulers: PriceListSchedulers;
|
17141
|
+
declare const price_lists: PriceLists;
|
17142
|
+
declare const price_tiers: PriceTiers;
|
17143
|
+
declare const price_volume_tiers: PriceVolumeTiers;
|
17144
|
+
declare const prices: Prices;
|
17145
|
+
declare const promotion_rules: PromotionRules;
|
17146
|
+
declare const promotions: Promotions;
|
17147
|
+
declare const recurring_order_copies: RecurringOrderCopies;
|
17148
|
+
declare const refunds: Refunds;
|
17149
|
+
declare const reserved_stocks: ReservedStocks;
|
17150
|
+
declare const resource_errors: ResourceErrors;
|
17151
|
+
declare const return_line_items: ReturnLineItems;
|
17152
|
+
declare const returns: Returns;
|
17153
|
+
declare const satispay_gateways: SatispayGateways;
|
17154
|
+
declare const satispay_payments: SatispayPayments;
|
17155
|
+
declare const shipments: Shipments;
|
17156
|
+
declare const shipping_categories: ShippingCategories;
|
17157
|
+
declare const shipping_method_tiers: ShippingMethodTiers;
|
17158
|
+
declare const shipping_methods: ShippingMethods;
|
17159
|
+
declare const shipping_weight_tiers: ShippingWeightTiers;
|
17160
|
+
declare const shipping_zones: ShippingZones;
|
17161
|
+
declare const sku_list_items: SkuListItems;
|
17162
|
+
declare const sku_list_promotion_rules: SkuListPromotionRules;
|
17163
|
+
declare const sku_lists: SkuLists;
|
17164
|
+
declare const sku_options: SkuOptions;
|
17165
|
+
declare const skus: Skus;
|
17166
|
+
declare const stock_items: StockItems;
|
17167
|
+
declare const stock_line_items: StockLineItems;
|
17168
|
+
declare const stock_locations: StockLocations;
|
17169
|
+
declare const stock_reservations: StockReservations;
|
17170
|
+
declare const stock_transfers: StockTransfers;
|
17171
|
+
declare const stores: Stores;
|
17172
|
+
declare const stripe_gateways: StripeGateways;
|
17173
|
+
declare const stripe_payments: StripePayments;
|
17174
|
+
declare const stripe_tax_accounts: StripeTaxAccounts;
|
17175
|
+
declare const subscription_models: SubscriptionModels;
|
17176
|
+
declare const tags: Tags;
|
17177
|
+
declare const talon_one_accounts: TalonOneAccounts;
|
17178
|
+
declare const tax_calculators: TaxCalculators;
|
17179
|
+
declare const tax_categories: TaxCategories;
|
17180
|
+
declare const tax_rules: TaxRules;
|
17181
|
+
declare const taxjar_accounts: TaxjarAccounts;
|
17182
|
+
declare const transactions: Transactions;
|
17183
|
+
declare const versions: Versions;
|
17184
|
+
declare const vertex_accounts: VertexAccounts;
|
17185
|
+
declare const voids: Voids;
|
17186
|
+
declare const webhooks: Webhooks;
|
17187
|
+
declare const wire_transfers: WireTransfers;
|
16914
17188
|
declare const initCommerceLayer: (config: CommerceLayerInitConfig) => void;
|
16915
17189
|
|
16916
17190
|
declare const CommerceLayerStatic: {
|
@@ -16924,4 +17198,4 @@ declare const CommerceLayerStatic: {
|
|
16924
17198
|
readonly schemaVersion: string;
|
16925
17199
|
};
|
16926
17200
|
|
16927
|
-
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, ApiResourceAdapter, 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, addresses, customers, CommerceLayer as default, generateQueryStringParams, generateSearchString, initCommerceLayer, isParamsList, resourceList, singletonList };
|
17201
|
+
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, ApiResourceAdapter, 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 EasypostPickup, type EasypostPickupCreate, type EasypostPickupSort, type EasypostPickupUpdate, EasypostPickups, 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 Pickup, type PickupSort, Pickups, 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, addresses, adjustments, adyen_gateways, adyen_payments, application, 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, CommerceLayer as default, delivery_lead_times, discount_engine_items, discount_engines, easypost_pickups, event_callbacks, events, exportz, external_gateways, external_payments, external_promotions, external_tax_calculators, fixed_amount_promotions, fixed_price_promotions, flex_promotions, free_gift_promotions, free_shipping_promotions, generateQueryStringParams, generateSearchString, geocoders, gift_card_recipients, gift_cards, google_geocoders, imports, in_stock_subscriptions, initCommerceLayer, inventory_models, inventory_return_locations, inventory_stock_locations, isParamsList, 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, organization, packages, parcel_line_items, parcels, payment_gateways, payment_methods, payment_options, paypal_gateways, paypal_payments, percentage_discount_promotions, pickups, price_frequency_tiers, price_list_schedulers, price_lists, price_tiers, price_volume_tiers, prices, promotion_rules, promotions, recurring_order_copies, refunds, reserved_stocks, resourceList, resource_errors, return_line_items, returns, satispay_gateways, satispay_payments, shipments, shipping_categories, shipping_method_tiers, shipping_methods, shipping_weight_tiers, shipping_zones, singletonList, 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 };
|