@amazon-sp-api-release/amazon-sp-api-sdk-js 1.0.0-rc6 → 1.0.0-rc7
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/helper/DefaultRateLimitFetcher.mjs +59 -0
- package/helper/LwaAuthClient.mjs +56 -22
- package/helper/RateLimitConfiguration.mjs +53 -0
- package/helper/ScopeConstants.mjs +8 -0
- package/helper/SuperagentRateLimiter.mjs +51 -0
- package/helper/rate-limits.yml +874 -0
- package/index.js +51 -49
- package/package.json +6 -6
- package/sample-node-app/app.config.mjs +4 -3
- package/sample-node-app/index.js +155 -24
- package/src/apluscontent_v2020_11_01/ApiClient.js +152 -70
- package/src/apluscontent_v2020_11_01/api/AplusContentApi.js +10 -10
- package/src/appintegrations_v2024_04_01/ApiClient.js +152 -70
- package/src/appintegrations_v2024_04_01/api/AppIntegrationsApi.js +3 -3
- package/src/applications_v2023_11_30/ApiClient.js +152 -70
- package/src/applications_v2023_11_30/api/ApplicationsApi.js +1 -1
- package/src/awd_v2024_05_09/ApiClient.js +152 -70
- package/src/awd_v2024_05_09/api/AwdApi.js +11 -11
- package/src/catalogitems_v2022_04_01/ApiClient.js +152 -70
- package/src/catalogitems_v2022_04_01/api/CatalogApi.js +2 -2
- package/src/datakiosk_v2023_11_15/ApiClient.js +152 -70
- package/src/datakiosk_v2023_11_15/api/QueriesApi.js +5 -5
- package/src/easyship_v2022_03_23/ApiClient.js +152 -70
- package/src/easyship_v2022_03_23/api/EasyShipApi.js +5 -5
- package/src/fbaeligibility_v1/ApiClient.js +152 -70
- package/src/fbaeligibility_v1/api/FbaInboundApi.js +1 -1
- package/src/fbainventory_v1/ApiClient.js +152 -70
- package/src/fbainventory_v1/api/FbaInventoryApi.js +4 -4
- package/src/feeds_v2021_06_30/ApiClient.js +152 -70
- package/src/feeds_v2021_06_30/api/FeedsApi.js +6 -6
- package/src/finances_2024_06_19/ApiClient.js +152 -70
- package/src/finances_2024_06_19/api/DefaultApi.js +1 -1
- package/src/finances_v0/ApiClient.js +152 -70
- package/src/finances_v0/api/DefaultApi.js +4 -4
- package/src/fulfillmentinbound_v0/ApiClient.js +152 -70
- package/src/fulfillmentinbound_v0/api/FbaInboundApi.js +6 -6
- package/src/fulfillmentinbound_v2024_03_20/ApiClient.js +152 -70
- package/src/fulfillmentinbound_v2024_03_20/api/FbaInboundApi.js +45 -45
- package/src/fulfillmentoutbound_v2020_07_01/ApiClient.js +152 -70
- package/src/fulfillmentoutbound_v2020_07_01/api/FbaOutboundApi.js +14 -14
- package/src/invoices_v2024_06_19/ApiClient.js +152 -70
- package/src/invoices_v2024_06_19/api/InvoicesApi.js +7 -7
- package/src/invoicing_v0/ApiClient.js +152 -70
- package/src/invoicing_v0/api/ShipmentInvoiceApi.js +3 -3
- package/src/listingsitems_v2021_08_01/ApiClient.js +152 -70
- package/src/listingsitems_v2021_08_01/api/ListingsApi.js +5 -5
- package/src/listingsrestrictions_v2021_08_01/ApiClient.js +152 -70
- package/src/listingsrestrictions_v2021_08_01/api/ListingsApi.js +1 -1
- package/src/merchantfulfillment_v0/ApiClient.js +152 -70
- package/src/merchantfulfillment_v0/api/MerchantFulfillmentApi.js +5 -5
- package/src/messaging_v1/ApiClient.js +152 -70
- package/src/messaging_v1/api/MessagingApi.js +13 -13
- package/src/notifications_v1/ApiClient.js +152 -70
- package/src/notifications_v1/api/NotificationsApi.js +8 -8
- package/src/orders_v0/ApiClient.js +152 -70
- package/src/orders_v0/api/OrdersV0Api.js +9 -9
- package/src/orders_v0/api/ShipmentApi.js +1 -1
- package/src/pricing_v0/ApiClient.js +152 -70
- package/src/pricing_v0/api/ProductPricingApi.js +6 -6
- package/src/pricing_v2022_05_01/ApiClient.js +152 -70
- package/src/pricing_v2022_05_01/api/ProductPricingApi.js +2 -2
- package/src/productfees_v0/ApiClient.js +152 -70
- package/src/productfees_v0/api/FeesApi.js +3 -3
- package/src/producttypedefinitions_v2020_09_01/ApiClient.js +152 -70
- package/src/producttypedefinitions_v2020_09_01/api/DefinitionsApi.js +2 -2
- package/src/replenishment_v2022_11_07/ApiClient.js +152 -70
- package/src/replenishment_v2022_11_07/api/OffersApi.js +2 -2
- package/src/replenishment_v2022_11_07/api/SellingpartnersApi.js +1 -1
- package/src/reports_v2021_06_30/ApiClient.js +152 -70
- package/src/reports_v2021_06_30/api/ReportsApi.js +9 -9
- package/src/sales_v1/ApiClient.js +152 -70
- package/src/sales_v1/api/SalesApi.js +1 -1
- package/src/sellers_v1/ApiClient.js +152 -70
- package/src/sellers_v1/api/SellersApi.js +2 -2
- package/src/services_v1/ApiClient.js +152 -70
- package/src/services_v1/api/ServiceApi.js +17 -17
- package/src/shipping_v2/ApiClient.js +152 -70
- package/src/shipping_v2/api/ShippingApi.js +20 -20
- package/src/solicitations_v1/ApiClient.js +152 -70
- package/src/solicitations_v1/api/SolicitationsApi.js +2 -2
- package/src/supplysources_v2020_07_01/ApiClient.js +152 -70
- package/src/supplysources_v2020_07_01/api/SupplySourcesApi.js +6 -6
- package/src/tokens_v2021_03_01/ApiClient.js +152 -70
- package/src/tokens_v2021_03_01/api/TokensApi.js +1 -1
- package/src/transfers_v2024_06_01/ApiClient.js +152 -70
- package/src/transfers_v2024_06_01/api/DefaultApi.js +2 -2
- package/src/uploads_v2020_11_01/ApiClient.js +152 -70
- package/src/uploads_v2020_11_01/api/UploadsApi.js +1 -1
- package/src/vehicles_v2024_11_01/ApiClient.js +152 -70
- package/src/vehicles_v2024_11_01/api/AutomotiveApi.js +1 -1
- package/src/vehicles_v2024_11_01/api/VehiclesApi.js +1 -1
- package/src/vendordfinventory_v1/ApiClient.js +152 -70
- package/src/vendordfinventory_v1/api/UpdateInventoryApi.js +1 -1
- package/src/vendordforders_v2021_12_28/ApiClient.js +152 -70
- package/src/vendordforders_v2021_12_28/api/VendorOrdersApi.js +3 -3
- package/src/vendordfpayments_v1/ApiClient.js +152 -70
- package/src/vendordfpayments_v1/api/VendorInvoiceApi.js +1 -1
- package/src/vendordfshipping_v2021_12_28/ApiClient.js +152 -70
- package/src/vendordfshipping_v2021_12_28/api/CreateContainerLabelApi.js +1 -1
- package/src/vendordfshipping_v2021_12_28/api/CustomerInvoicesApi.js +2 -2
- package/src/vendordfshipping_v2021_12_28/api/VendorShippingApi.js +4 -4
- package/src/vendordfshipping_v2021_12_28/api/VendorShippingLabelsApi.js +4 -4
- package/src/vendordftransactions_v2021_12_28/ApiClient.js +152 -70
- package/src/vendordftransactions_v2021_12_28/api/VendorTransactionApi.js +1 -1
- package/src/vendorinvoices_v1/ApiClient.js +152 -70
- package/src/vendorinvoices_v1/api/VendorPaymentsApi.js +1 -1
- package/src/vendororders_v1/ApiClient.js +152 -70
- package/src/vendororders_v1/api/VendorOrdersApi.js +4 -4
- package/src/vendorshipments_v1/ApiClient.js +152 -70
- package/src/vendorshipments_v1/api/VendorShippingApi.js +4 -4
- package/src/vendortransactionstatus_v1/ApiClient.js +152 -70
- package/src/vendortransactionstatus_v1/api/VendorTransactionApi.js +1 -1
- package/README.md +0 -107
|
@@ -121,7 +121,7 @@ export class FbaInboundApi {
|
|
|
121
121
|
let accepts = ['application/json'];
|
|
122
122
|
let returnType = CancelInboundPlanResponse;
|
|
123
123
|
|
|
124
|
-
return this.apiClient.callApi(
|
|
124
|
+
return this.apiClient.callApi( 'FbaInboundApi-cancelInboundPlan',
|
|
125
125
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/cancellation', 'PUT',
|
|
126
126
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
127
127
|
contentTypes, accepts, returnType
|
|
@@ -182,7 +182,7 @@ export class FbaInboundApi {
|
|
|
182
182
|
let accepts = ['application/json'];
|
|
183
183
|
let returnType = CancelSelfShipAppointmentResponse;
|
|
184
184
|
|
|
185
|
-
return this.apiClient.callApi(
|
|
185
|
+
return this.apiClient.callApi( 'FbaInboundApi-cancelSelfShipAppointment',
|
|
186
186
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/selfShipAppointmentCancellation', 'PUT',
|
|
187
187
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
188
188
|
contentTypes, accepts, returnType
|
|
@@ -246,7 +246,7 @@ export class FbaInboundApi {
|
|
|
246
246
|
let accepts = ['application/json'];
|
|
247
247
|
let returnType = ConfirmDeliveryWindowOptionsResponse;
|
|
248
248
|
|
|
249
|
-
return this.apiClient.callApi(
|
|
249
|
+
return this.apiClient.callApi( 'FbaInboundApi-confirmDeliveryWindowOptions',
|
|
250
250
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/deliveryWindowOptions/{deliveryWindowOptionId}/confirmation', 'POST',
|
|
251
251
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
252
252
|
contentTypes, accepts, returnType
|
|
@@ -303,7 +303,7 @@ export class FbaInboundApi {
|
|
|
303
303
|
let accepts = ['application/json'];
|
|
304
304
|
let returnType = ConfirmPackingOptionResponse;
|
|
305
305
|
|
|
306
|
-
return this.apiClient.callApi(
|
|
306
|
+
return this.apiClient.callApi( 'FbaInboundApi-confirmPackingOption',
|
|
307
307
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/packingOptions/{packingOptionId}/confirmation', 'POST',
|
|
308
308
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
309
309
|
contentTypes, accepts, returnType
|
|
@@ -359,7 +359,7 @@ export class FbaInboundApi {
|
|
|
359
359
|
let accepts = ['application/json'];
|
|
360
360
|
let returnType = ConfirmPlacementOptionResponse;
|
|
361
361
|
|
|
362
|
-
return this.apiClient.callApi(
|
|
362
|
+
return this.apiClient.callApi( 'FbaInboundApi-confirmPlacementOption',
|
|
363
363
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/placementOptions/{placementOptionId}/confirmation', 'POST',
|
|
364
364
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
365
365
|
contentTypes, accepts, returnType
|
|
@@ -422,7 +422,7 @@ export class FbaInboundApi {
|
|
|
422
422
|
let accepts = ['application/json'];
|
|
423
423
|
let returnType = ConfirmShipmentContentUpdatePreviewResponse;
|
|
424
424
|
|
|
425
|
-
return this.apiClient.callApi(
|
|
425
|
+
return this.apiClient.callApi( 'FbaInboundApi-confirmShipmentContentUpdatePreview',
|
|
426
426
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/contentUpdatePreviews/{contentUpdatePreviewId}/confirmation', 'POST',
|
|
427
427
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
428
428
|
contentTypes, accepts, returnType
|
|
@@ -478,7 +478,7 @@ export class FbaInboundApi {
|
|
|
478
478
|
let accepts = ['application/json'];
|
|
479
479
|
let returnType = ConfirmTransportationOptionsResponse;
|
|
480
480
|
|
|
481
|
-
return this.apiClient.callApi(
|
|
481
|
+
return this.apiClient.callApi( 'FbaInboundApi-confirmTransportationOptions',
|
|
482
482
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/transportationOptions/confirmation', 'POST',
|
|
483
483
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
484
484
|
contentTypes, accepts, returnType
|
|
@@ -526,7 +526,7 @@ export class FbaInboundApi {
|
|
|
526
526
|
let accepts = ['application/json'];
|
|
527
527
|
let returnType = CreateInboundPlanResponse;
|
|
528
528
|
|
|
529
|
-
return this.apiClient.callApi(
|
|
529
|
+
return this.apiClient.callApi( 'FbaInboundApi-createInboundPlan',
|
|
530
530
|
'/inbound/fba/2024-03-20/inboundPlans', 'POST',
|
|
531
531
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
532
532
|
contentTypes, accepts, returnType
|
|
@@ -573,7 +573,7 @@ export class FbaInboundApi {
|
|
|
573
573
|
let accepts = ['application/json'];
|
|
574
574
|
let returnType = CreateMarketplaceItemLabelsResponse;
|
|
575
575
|
|
|
576
|
-
return this.apiClient.callApi(
|
|
576
|
+
return this.apiClient.callApi( 'FbaInboundApi-createMarketplaceItemLabels',
|
|
577
577
|
'/inbound/fba/2024-03-20/items/labels', 'POST',
|
|
578
578
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
579
579
|
contentTypes, accepts, returnType
|
|
@@ -628,7 +628,7 @@ export class FbaInboundApi {
|
|
|
628
628
|
let accepts = ['application/json'];
|
|
629
629
|
let returnType = GenerateDeliveryWindowOptionsResponse;
|
|
630
630
|
|
|
631
|
-
return this.apiClient.callApi(
|
|
631
|
+
return this.apiClient.callApi( 'FbaInboundApi-generateDeliveryWindowOptions',
|
|
632
632
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/deliveryWindowOptions', 'POST',
|
|
633
633
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
634
634
|
contentTypes, accepts, returnType
|
|
@@ -677,7 +677,7 @@ export class FbaInboundApi {
|
|
|
677
677
|
let accepts = ['application/json'];
|
|
678
678
|
let returnType = GeneratePackingOptionsResponse;
|
|
679
679
|
|
|
680
|
-
return this.apiClient.callApi(
|
|
680
|
+
return this.apiClient.callApi( 'FbaInboundApi-generatePackingOptions',
|
|
681
681
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/packingOptions', 'POST',
|
|
682
682
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
683
683
|
contentTypes, accepts, returnType
|
|
@@ -731,7 +731,7 @@ export class FbaInboundApi {
|
|
|
731
731
|
let accepts = ['application/json'];
|
|
732
732
|
let returnType = GeneratePlacementOptionsResponse;
|
|
733
733
|
|
|
734
|
-
return this.apiClient.callApi(
|
|
734
|
+
return this.apiClient.callApi( 'FbaInboundApi-generatePlacementOptions',
|
|
735
735
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/placementOptions', 'POST',
|
|
736
736
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
737
737
|
contentTypes, accepts, returnType
|
|
@@ -793,7 +793,7 @@ export class FbaInboundApi {
|
|
|
793
793
|
let accepts = ['application/json'];
|
|
794
794
|
let returnType = GenerateSelfShipAppointmentSlotsResponse;
|
|
795
795
|
|
|
796
|
-
return this.apiClient.callApi(
|
|
796
|
+
return this.apiClient.callApi( 'FbaInboundApi-generateSelfShipAppointmentSlots',
|
|
797
797
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/selfShipAppointmentSlots', 'POST',
|
|
798
798
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
799
799
|
contentTypes, accepts, returnType
|
|
@@ -856,7 +856,7 @@ export class FbaInboundApi {
|
|
|
856
856
|
let accepts = ['application/json'];
|
|
857
857
|
let returnType = GenerateShipmentContentUpdatePreviewsResponse;
|
|
858
858
|
|
|
859
|
-
return this.apiClient.callApi(
|
|
859
|
+
return this.apiClient.callApi( 'FbaInboundApi-generateShipmentContentUpdatePreviews',
|
|
860
860
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/contentUpdatePreviews', 'POST',
|
|
861
861
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
862
862
|
contentTypes, accepts, returnType
|
|
@@ -912,7 +912,7 @@ export class FbaInboundApi {
|
|
|
912
912
|
let accepts = ['application/json'];
|
|
913
913
|
let returnType = GenerateTransportationOptionsResponse;
|
|
914
914
|
|
|
915
|
-
return this.apiClient.callApi(
|
|
915
|
+
return this.apiClient.callApi( 'FbaInboundApi-generateTransportationOptions',
|
|
916
916
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/transportationOptions', 'POST',
|
|
917
917
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
918
918
|
contentTypes, accepts, returnType
|
|
@@ -968,7 +968,7 @@ export class FbaInboundApi {
|
|
|
968
968
|
let accepts = ['application/json'];
|
|
969
969
|
let returnType = GetDeliveryChallanDocumentResponse;
|
|
970
970
|
|
|
971
|
-
return this.apiClient.callApi(
|
|
971
|
+
return this.apiClient.callApi( 'FbaInboundApi-getDeliveryChallanDocument',
|
|
972
972
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/deliveryChallanDocument', 'GET',
|
|
973
973
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
974
974
|
contentTypes, accepts, returnType
|
|
@@ -1017,7 +1017,7 @@ export class FbaInboundApi {
|
|
|
1017
1017
|
let accepts = ['application/json'];
|
|
1018
1018
|
let returnType = InboundOperationStatus;
|
|
1019
1019
|
|
|
1020
|
-
return this.apiClient.callApi(
|
|
1020
|
+
return this.apiClient.callApi( 'FbaInboundApi-getInboundOperationStatus',
|
|
1021
1021
|
'/inbound/fba/2024-03-20/operations/{operationId}', 'GET',
|
|
1022
1022
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1023
1023
|
contentTypes, accepts, returnType
|
|
@@ -1065,7 +1065,7 @@ export class FbaInboundApi {
|
|
|
1065
1065
|
let accepts = ['application/json'];
|
|
1066
1066
|
let returnType = InboundPlan;
|
|
1067
1067
|
|
|
1068
|
-
return this.apiClient.callApi(
|
|
1068
|
+
return this.apiClient.callApi( 'FbaInboundApi-getInboundPlan',
|
|
1069
1069
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}', 'GET',
|
|
1070
1070
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1071
1071
|
contentTypes, accepts, returnType
|
|
@@ -1126,7 +1126,7 @@ export class FbaInboundApi {
|
|
|
1126
1126
|
let accepts = ['application/json'];
|
|
1127
1127
|
let returnType = GetSelfShipAppointmentSlotsResponse;
|
|
1128
1128
|
|
|
1129
|
-
return this.apiClient.callApi(
|
|
1129
|
+
return this.apiClient.callApi( 'FbaInboundApi-getSelfShipAppointmentSlots',
|
|
1130
1130
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/selfShipAppointmentSlots', 'GET',
|
|
1131
1131
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1132
1132
|
contentTypes, accepts, returnType
|
|
@@ -1185,7 +1185,7 @@ export class FbaInboundApi {
|
|
|
1185
1185
|
let accepts = ['application/json'];
|
|
1186
1186
|
let returnType = Shipment;
|
|
1187
1187
|
|
|
1188
|
-
return this.apiClient.callApi(
|
|
1188
|
+
return this.apiClient.callApi( 'FbaInboundApi-getShipment',
|
|
1189
1189
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}', 'GET',
|
|
1190
1190
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1191
1191
|
contentTypes, accepts, returnType
|
|
@@ -1248,7 +1248,7 @@ export class FbaInboundApi {
|
|
|
1248
1248
|
let accepts = ['application/json'];
|
|
1249
1249
|
let returnType = ContentUpdatePreview;
|
|
1250
1250
|
|
|
1251
|
-
return this.apiClient.callApi(
|
|
1251
|
+
return this.apiClient.callApi( 'FbaInboundApi-getShipmentContentUpdatePreview',
|
|
1252
1252
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/contentUpdatePreviews/{contentUpdatePreviewId}', 'GET',
|
|
1253
1253
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1254
1254
|
contentTypes, accepts, returnType
|
|
@@ -1311,7 +1311,7 @@ export class FbaInboundApi {
|
|
|
1311
1311
|
let accepts = ['application/json'];
|
|
1312
1312
|
let returnType = ListDeliveryWindowOptionsResponse;
|
|
1313
1313
|
|
|
1314
|
-
return this.apiClient.callApi(
|
|
1314
|
+
return this.apiClient.callApi( 'FbaInboundApi-listDeliveryWindowOptions',
|
|
1315
1315
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/deliveryWindowOptions', 'GET',
|
|
1316
1316
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1317
1317
|
contentTypes, accepts, returnType
|
|
@@ -1369,7 +1369,7 @@ export class FbaInboundApi {
|
|
|
1369
1369
|
let accepts = ['application/json'];
|
|
1370
1370
|
let returnType = ListInboundPlanBoxesResponse;
|
|
1371
1371
|
|
|
1372
|
-
return this.apiClient.callApi(
|
|
1372
|
+
return this.apiClient.callApi( 'FbaInboundApi-listInboundPlanBoxes',
|
|
1373
1373
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/boxes', 'GET',
|
|
1374
1374
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1375
1375
|
contentTypes, accepts, returnType
|
|
@@ -1426,7 +1426,7 @@ export class FbaInboundApi {
|
|
|
1426
1426
|
let accepts = ['application/json'];
|
|
1427
1427
|
let returnType = ListInboundPlanItemsResponse;
|
|
1428
1428
|
|
|
1429
|
-
return this.apiClient.callApi(
|
|
1429
|
+
return this.apiClient.callApi( 'FbaInboundApi-listInboundPlanItems',
|
|
1430
1430
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/items', 'GET',
|
|
1431
1431
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1432
1432
|
contentTypes, accepts, returnType
|
|
@@ -1483,7 +1483,7 @@ export class FbaInboundApi {
|
|
|
1483
1483
|
let accepts = ['application/json'];
|
|
1484
1484
|
let returnType = ListInboundPlanPalletsResponse;
|
|
1485
1485
|
|
|
1486
|
-
return this.apiClient.callApi(
|
|
1486
|
+
return this.apiClient.callApi( 'FbaInboundApi-listInboundPlanPallets',
|
|
1487
1487
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/pallets', 'GET',
|
|
1488
1488
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1489
1489
|
contentTypes, accepts, returnType
|
|
@@ -1539,7 +1539,7 @@ export class FbaInboundApi {
|
|
|
1539
1539
|
let accepts = ['application/json'];
|
|
1540
1540
|
let returnType = ListInboundPlansResponse;
|
|
1541
1541
|
|
|
1542
|
-
return this.apiClient.callApi(
|
|
1542
|
+
return this.apiClient.callApi( 'FbaInboundApi-listInboundPlans',
|
|
1543
1543
|
'/inbound/fba/2024-03-20/inboundPlans', 'GET',
|
|
1544
1544
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1545
1545
|
contentTypes, accepts, returnType
|
|
@@ -1599,7 +1599,7 @@ export class FbaInboundApi {
|
|
|
1599
1599
|
let accepts = ['application/json'];
|
|
1600
1600
|
let returnType = ListItemComplianceDetailsResponse;
|
|
1601
1601
|
|
|
1602
|
-
return this.apiClient.callApi(
|
|
1602
|
+
return this.apiClient.callApi( 'FbaInboundApi-listItemComplianceDetails',
|
|
1603
1603
|
'/inbound/fba/2024-03-20/items/compliance', 'GET',
|
|
1604
1604
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1605
1605
|
contentTypes, accepts, returnType
|
|
@@ -1661,7 +1661,7 @@ export class FbaInboundApi {
|
|
|
1661
1661
|
let accepts = ['application/json'];
|
|
1662
1662
|
let returnType = ListPackingGroupBoxesResponse;
|
|
1663
1663
|
|
|
1664
|
-
return this.apiClient.callApi(
|
|
1664
|
+
return this.apiClient.callApi( 'FbaInboundApi-listPackingGroupBoxes',
|
|
1665
1665
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/packingGroups/{packingGroupId}/boxes', 'GET',
|
|
1666
1666
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1667
1667
|
contentTypes, accepts, returnType
|
|
@@ -1726,7 +1726,7 @@ export class FbaInboundApi {
|
|
|
1726
1726
|
let accepts = ['application/json'];
|
|
1727
1727
|
let returnType = ListPackingGroupItemsResponse;
|
|
1728
1728
|
|
|
1729
|
-
return this.apiClient.callApi(
|
|
1729
|
+
return this.apiClient.callApi( 'FbaInboundApi-listPackingGroupItems',
|
|
1730
1730
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/packingGroups/{packingGroupId}/items', 'GET',
|
|
1731
1731
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1732
1732
|
contentTypes, accepts, returnType
|
|
@@ -1784,7 +1784,7 @@ export class FbaInboundApi {
|
|
|
1784
1784
|
let accepts = ['application/json'];
|
|
1785
1785
|
let returnType = ListPackingOptionsResponse;
|
|
1786
1786
|
|
|
1787
|
-
return this.apiClient.callApi(
|
|
1787
|
+
return this.apiClient.callApi( 'FbaInboundApi-listPackingOptions',
|
|
1788
1788
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/packingOptions', 'GET',
|
|
1789
1789
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1790
1790
|
contentTypes, accepts, returnType
|
|
@@ -1841,7 +1841,7 @@ export class FbaInboundApi {
|
|
|
1841
1841
|
let accepts = ['application/json'];
|
|
1842
1842
|
let returnType = ListPlacementOptionsResponse;
|
|
1843
1843
|
|
|
1844
|
-
return this.apiClient.callApi(
|
|
1844
|
+
return this.apiClient.callApi( 'FbaInboundApi-listPlacementOptions',
|
|
1845
1845
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/placementOptions', 'GET',
|
|
1846
1846
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1847
1847
|
contentTypes, accepts, returnType
|
|
@@ -1899,7 +1899,7 @@ export class FbaInboundApi {
|
|
|
1899
1899
|
let accepts = ['application/json'];
|
|
1900
1900
|
let returnType = ListPrepDetailsResponse;
|
|
1901
1901
|
|
|
1902
|
-
return this.apiClient.callApi(
|
|
1902
|
+
return this.apiClient.callApi( 'FbaInboundApi-listPrepDetails',
|
|
1903
1903
|
'/inbound/fba/2024-03-20/items/prepDetails', 'GET',
|
|
1904
1904
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1905
1905
|
contentTypes, accepts, returnType
|
|
@@ -1961,7 +1961,7 @@ export class FbaInboundApi {
|
|
|
1961
1961
|
let accepts = ['application/json'];
|
|
1962
1962
|
let returnType = ListShipmentBoxesResponse;
|
|
1963
1963
|
|
|
1964
|
-
return this.apiClient.callApi(
|
|
1964
|
+
return this.apiClient.callApi( 'FbaInboundApi-listShipmentBoxes',
|
|
1965
1965
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/boxes', 'GET',
|
|
1966
1966
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1967
1967
|
contentTypes, accepts, returnType
|
|
@@ -2026,7 +2026,7 @@ export class FbaInboundApi {
|
|
|
2026
2026
|
let accepts = ['application/json'];
|
|
2027
2027
|
let returnType = ListShipmentContentUpdatePreviewsResponse;
|
|
2028
2028
|
|
|
2029
|
-
return this.apiClient.callApi(
|
|
2029
|
+
return this.apiClient.callApi( 'FbaInboundApi-listShipmentContentUpdatePreviews',
|
|
2030
2030
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/contentUpdatePreviews', 'GET',
|
|
2031
2031
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2032
2032
|
contentTypes, accepts, returnType
|
|
@@ -2091,7 +2091,7 @@ export class FbaInboundApi {
|
|
|
2091
2091
|
let accepts = ['application/json'];
|
|
2092
2092
|
let returnType = ListShipmentItemsResponse;
|
|
2093
2093
|
|
|
2094
|
-
return this.apiClient.callApi(
|
|
2094
|
+
return this.apiClient.callApi( 'FbaInboundApi-listShipmentItems',
|
|
2095
2095
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/items', 'GET',
|
|
2096
2096
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2097
2097
|
contentTypes, accepts, returnType
|
|
@@ -2156,7 +2156,7 @@ export class FbaInboundApi {
|
|
|
2156
2156
|
let accepts = ['application/json'];
|
|
2157
2157
|
let returnType = ListShipmentPalletsResponse;
|
|
2158
2158
|
|
|
2159
|
-
return this.apiClient.callApi(
|
|
2159
|
+
return this.apiClient.callApi( 'FbaInboundApi-listShipmentPallets',
|
|
2160
2160
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/pallets', 'GET',
|
|
2161
2161
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2162
2162
|
contentTypes, accepts, returnType
|
|
@@ -2218,7 +2218,7 @@ export class FbaInboundApi {
|
|
|
2218
2218
|
let accepts = ['application/json'];
|
|
2219
2219
|
let returnType = ListTransportationOptionsResponse;
|
|
2220
2220
|
|
|
2221
|
-
return this.apiClient.callApi(
|
|
2221
|
+
return this.apiClient.callApi( 'FbaInboundApi-listTransportationOptions',
|
|
2222
2222
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/transportationOptions', 'GET',
|
|
2223
2223
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2224
2224
|
contentTypes, accepts, returnType
|
|
@@ -2291,7 +2291,7 @@ export class FbaInboundApi {
|
|
|
2291
2291
|
let accepts = ['application/json'];
|
|
2292
2292
|
let returnType = ScheduleSelfShipAppointmentResponse;
|
|
2293
2293
|
|
|
2294
|
-
return this.apiClient.callApi(
|
|
2294
|
+
return this.apiClient.callApi( 'FbaInboundApi-scheduleSelfShipAppointment',
|
|
2295
2295
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/selfShipAppointmentSlots/{slotId}/schedule', 'POST',
|
|
2296
2296
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2297
2297
|
contentTypes, accepts, returnType
|
|
@@ -2348,7 +2348,7 @@ export class FbaInboundApi {
|
|
|
2348
2348
|
let accepts = ['application/json'];
|
|
2349
2349
|
let returnType = SetPackingInformationResponse;
|
|
2350
2350
|
|
|
2351
|
-
return this.apiClient.callApi(
|
|
2351
|
+
return this.apiClient.callApi( 'FbaInboundApi-setPackingInformation',
|
|
2352
2352
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/packingInformation', 'POST',
|
|
2353
2353
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2354
2354
|
contentTypes, accepts, returnType
|
|
@@ -2396,7 +2396,7 @@ export class FbaInboundApi {
|
|
|
2396
2396
|
let accepts = ['application/json'];
|
|
2397
2397
|
let returnType = SetPrepDetailsResponse;
|
|
2398
2398
|
|
|
2399
|
-
return this.apiClient.callApi(
|
|
2399
|
+
return this.apiClient.callApi( 'FbaInboundApi-setPrepDetails',
|
|
2400
2400
|
'/inbound/fba/2024-03-20/items/prepDetails', 'POST',
|
|
2401
2401
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2402
2402
|
contentTypes, accepts, returnType
|
|
@@ -2450,7 +2450,7 @@ export class FbaInboundApi {
|
|
|
2450
2450
|
let accepts = ['application/json'];
|
|
2451
2451
|
let returnType = null;
|
|
2452
2452
|
|
|
2453
|
-
return this.apiClient.callApi(
|
|
2453
|
+
return this.apiClient.callApi( 'FbaInboundApi-updateInboundPlanName',
|
|
2454
2454
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/name', 'PUT',
|
|
2455
2455
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2456
2456
|
contentTypes, accepts, returnType
|
|
@@ -2505,7 +2505,7 @@ export class FbaInboundApi {
|
|
|
2505
2505
|
let accepts = ['application/json'];
|
|
2506
2506
|
let returnType = UpdateItemComplianceDetailsResponse;
|
|
2507
2507
|
|
|
2508
|
-
return this.apiClient.callApi(
|
|
2508
|
+
return this.apiClient.callApi( 'FbaInboundApi-updateItemComplianceDetails',
|
|
2509
2509
|
'/inbound/fba/2024-03-20/items/compliance', 'PUT',
|
|
2510
2510
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2511
2511
|
contentTypes, accepts, returnType
|
|
@@ -2567,7 +2567,7 @@ export class FbaInboundApi {
|
|
|
2567
2567
|
let accepts = ['application/json'];
|
|
2568
2568
|
let returnType = null;
|
|
2569
2569
|
|
|
2570
|
-
return this.apiClient.callApi(
|
|
2570
|
+
return this.apiClient.callApi( 'FbaInboundApi-updateShipmentName',
|
|
2571
2571
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/name', 'PUT',
|
|
2572
2572
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2573
2573
|
contentTypes, accepts, returnType
|
|
@@ -2630,7 +2630,7 @@ export class FbaInboundApi {
|
|
|
2630
2630
|
let accepts = ['application/json'];
|
|
2631
2631
|
let returnType = UpdateShipmentSourceAddressResponse;
|
|
2632
2632
|
|
|
2633
|
-
return this.apiClient.callApi(
|
|
2633
|
+
return this.apiClient.callApi( 'FbaInboundApi-updateShipmentSourceAddress',
|
|
2634
2634
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/sourceAddress', 'PUT',
|
|
2635
2635
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2636
2636
|
contentTypes, accepts, returnType
|
|
@@ -2693,7 +2693,7 @@ export class FbaInboundApi {
|
|
|
2693
2693
|
let accepts = ['application/json'];
|
|
2694
2694
|
let returnType = UpdateShipmentTrackingDetailsResponse;
|
|
2695
2695
|
|
|
2696
|
-
return this.apiClient.callApi(
|
|
2696
|
+
return this.apiClient.callApi( 'FbaInboundApi-updateShipmentTrackingDetails',
|
|
2697
2697
|
'/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId}/shipments/{shipmentId}/trackingDetails', 'PUT',
|
|
2698
2698
|
pathParams, queryParams, headerParams, formParams, postBody,
|
|
2699
2699
|
contentTypes, accepts, returnType
|