@sp-api-sdk/fulfillment-inbound-api-v0 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/src/api-model/api/fba-inbound-api.js +60 -81
- package/dist/cjs/src/api-model/models/index.js +0 -1
- package/dist/cjs/src/client.js +0 -7
- package/dist/es/src/api-model/api/fba-inbound-api.js +60 -81
- package/dist/es/src/api-model/models/index.js +0 -1
- package/dist/es/src/client.js +0 -7
- package/dist/types/src/api-model/api/fba-inbound-api.d.ts +64 -75
- package/dist/types/src/api-model/models/address.d.ts +1 -1
- package/dist/types/src/api-model/models/amount.d.ts +1 -1
- package/dist/types/src/api-model/models/bill-of-lading-download-url.d.ts +1 -1
- package/dist/types/src/api-model/models/common-transport-result.d.ts +1 -1
- package/dist/types/src/api-model/models/confirm-preorder-result.d.ts +3 -3
- package/dist/types/src/api-model/models/create-inbound-shipment-plan-request.d.ts +1 -1
- package/dist/types/src/api-model/models/create-inbound-shipment-plan-result.d.ts +1 -1
- package/dist/types/src/api-model/models/dimensions.d.ts +3 -3
- package/dist/types/src/api-model/models/get-inbound-guidance-result.d.ts +1 -1
- package/dist/types/src/api-model/models/get-preorder-info-result.d.ts +3 -3
- package/dist/types/src/api-model/models/get-prep-instructions-result.d.ts +1 -1
- package/dist/types/src/api-model/models/get-shipment-items-result.d.ts +1 -1
- package/dist/types/src/api-model/models/get-shipments-result.d.ts +1 -1
- package/dist/types/src/api-model/models/get-transport-details-result.d.ts +1 -1
- package/dist/types/src/api-model/models/inbound-shipment-info.d.ts +1 -1
- package/dist/types/src/api-model/models/inbound-shipment-item.d.ts +1 -1
- package/dist/types/src/api-model/models/inbound-shipment-result.d.ts +1 -1
- package/dist/types/src/api-model/models/index.d.ts +0 -1
- package/dist/types/src/api-model/models/invalid-asin.d.ts +1 -1
- package/dist/types/src/api-model/models/invalid-sku.d.ts +1 -1
- package/dist/types/src/api-model/models/label-download-url.d.ts +1 -1
- package/dist/types/src/api-model/models/partnered-estimate.d.ts +2 -2
- package/dist/types/src/api-model/models/partnered-ltl-data-input.d.ts +2 -2
- package/dist/types/src/api-model/models/partnered-ltl-data-output.d.ts +4 -4
- package/dist/types/src/api-model/models/weight.d.ts +1 -1
- package/package.json +5 -5
- package/dist/cjs/src/api-model/models/get-inbound-guidance-response.js +0 -15
- package/dist/es/src/api-model/models/get-inbound-guidance-response.js +0 -14
- package/dist/types/src/api-model/models/get-inbound-guidance-response.d.ts +0 -31
|
@@ -10,19 +10,19 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Result for confirm preorder operation
|
|
14
14
|
* @export
|
|
15
15
|
* @interface ConfirmPreorderResult
|
|
16
16
|
*/
|
|
17
17
|
export interface ConfirmPreorderResult {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Type containing date in string format
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ConfirmPreorderResult
|
|
22
22
|
*/
|
|
23
23
|
'ConfirmedNeedByDate'?: string;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Type containing date in string format
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ConfirmPreorderResult
|
|
28
28
|
*/
|
|
@@ -43,7 +43,7 @@ export interface CreateInboundShipmentPlanRequest {
|
|
|
43
43
|
*/
|
|
44
44
|
'ShipToCountrySubdivisionCode'?: string;
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
46
|
+
* List of inbound shipment plan requests
|
|
47
47
|
* @type {Array<InboundShipmentPlanRequestItem>}
|
|
48
48
|
* @memberof CreateInboundShipmentPlanRequest
|
|
49
49
|
*/
|
|
@@ -17,19 +17,19 @@ import { UnitOfMeasurement } from './unit-of-measurement';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface Dimensions {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Number format that supports decimal.
|
|
21
21
|
* @type {number}
|
|
22
22
|
* @memberof Dimensions
|
|
23
23
|
*/
|
|
24
24
|
'Length': number;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Number format that supports decimal.
|
|
27
27
|
* @type {number}
|
|
28
28
|
* @memberof Dimensions
|
|
29
29
|
*/
|
|
30
30
|
'Width': number;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Number format that supports decimal.
|
|
33
33
|
* @type {number}
|
|
34
34
|
* @memberof Dimensions
|
|
35
35
|
*/
|
|
@@ -14,7 +14,7 @@ import { InvalidASIN } from './invalid-asin';
|
|
|
14
14
|
import { InvalidSKU } from './invalid-sku';
|
|
15
15
|
import { SKUInboundGuidance } from './skuinbound-guidance';
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Result for the get inbound guidance operation
|
|
18
18
|
* @export
|
|
19
19
|
* @interface GetInboundGuidanceResult
|
|
20
20
|
*/
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Result for the get preorder info operation
|
|
14
14
|
* @export
|
|
15
15
|
* @interface GetPreorderInfoResult
|
|
16
16
|
*/
|
|
@@ -28,13 +28,13 @@ export interface GetPreorderInfoResult {
|
|
|
28
28
|
*/
|
|
29
29
|
'ShipmentConfirmedForPreorder'?: boolean;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Type containing date in string format
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof GetPreorderInfoResult
|
|
34
34
|
*/
|
|
35
35
|
'NeedByDate'?: string;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Type containing date in string format
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof GetPreorderInfoResult
|
|
40
40
|
*/
|
|
@@ -14,7 +14,7 @@ import { InvalidASIN } from './invalid-asin';
|
|
|
14
14
|
import { InvalidSKU } from './invalid-sku';
|
|
15
15
|
import { SKUPrepInstructions } from './skuprep-instructions';
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Result for the get prep instructions operation
|
|
18
18
|
* @export
|
|
19
19
|
* @interface GetPrepInstructionsResult
|
|
20
20
|
*/
|
|
@@ -21,7 +21,6 @@ export * from './dimensions';
|
|
|
21
21
|
export * from './error-reason';
|
|
22
22
|
export * from './estimate-transport-response';
|
|
23
23
|
export * from './get-bill-of-lading-response';
|
|
24
|
-
export * from './get-inbound-guidance-response';
|
|
25
24
|
export * from './get-inbound-guidance-result';
|
|
26
25
|
export * from './get-labels-response';
|
|
27
26
|
export * from './get-preorder-info-response';
|
|
@@ -23,13 +23,13 @@ export interface PartneredEstimate {
|
|
|
23
23
|
*/
|
|
24
24
|
'Amount': Amount;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Timestamp in ISO 8601 format.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof PartneredEstimate
|
|
29
29
|
*/
|
|
30
30
|
'ConfirmDeadline'?: string;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Timestamp in ISO 8601 format.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof PartneredEstimate
|
|
35
35
|
*/
|
|
@@ -27,7 +27,7 @@ export interface PartneredLtlDataInput {
|
|
|
27
27
|
*/
|
|
28
28
|
'Contact'?: Contact;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Contains an unsigned integer
|
|
31
31
|
* @type {number}
|
|
32
32
|
* @memberof PartneredLtlDataInput
|
|
33
33
|
*/
|
|
@@ -39,7 +39,7 @@ export interface PartneredLtlDataInput {
|
|
|
39
39
|
*/
|
|
40
40
|
'SellerFreightClass'?: SellerFreightClass;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Type containing date in string format
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof PartneredLtlDataInput
|
|
45
45
|
*/
|
|
@@ -28,7 +28,7 @@ export interface PartneredLtlDataOutput {
|
|
|
28
28
|
*/
|
|
29
29
|
'Contact': Contact;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Contains an unsigned integer
|
|
32
32
|
* @type {number}
|
|
33
33
|
* @memberof PartneredLtlDataOutput
|
|
34
34
|
*/
|
|
@@ -40,7 +40,7 @@ export interface PartneredLtlDataOutput {
|
|
|
40
40
|
*/
|
|
41
41
|
'SellerFreightClass'?: SellerFreightClass;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Type containing date in string format
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof PartneredLtlDataOutput
|
|
46
46
|
*/
|
|
@@ -70,13 +70,13 @@ export interface PartneredLtlDataOutput {
|
|
|
70
70
|
*/
|
|
71
71
|
'AmazonCalculatedValue'?: Amount;
|
|
72
72
|
/**
|
|
73
|
-
*
|
|
73
|
+
* Type containing date in string format
|
|
74
74
|
* @type {string}
|
|
75
75
|
* @memberof PartneredLtlDataOutput
|
|
76
76
|
*/
|
|
77
77
|
'PreviewPickupDate': string;
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* Type containing date in string format
|
|
80
80
|
* @type {string}
|
|
81
81
|
* @memberof PartneredLtlDataOutput
|
|
82
82
|
*/
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sp-api-sdk/fulfillment-inbound-api-v0",
|
|
3
|
-
"author": "
|
|
3
|
+
"author": "Bertrand Marron <bertrand@bizon.solutions>",
|
|
4
4
|
"description": "The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon's fulfillment network.",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.2.0",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
7
7
|
"module": "dist/es/index.js",
|
|
8
8
|
"types": "dist/types/index.d.ts",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"dist/**/*.d.ts"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@sp-api-sdk/common": "2.0.
|
|
22
|
-
"axios": "^1.6.
|
|
21
|
+
"@sp-api-sdk/common": "2.0.7",
|
|
22
|
+
"axios": "^1.6.8"
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"sp sdk",
|
|
41
41
|
"fulfillment inbound api"
|
|
42
42
|
],
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "556cf5234c43b36ddaffa12f795a925b1c7fc63b"
|
|
44
44
|
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Selling Partner API for Fulfillment Inbound
|
|
6
|
-
* The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon\'s fulfillment network.
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: v0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Selling Partner API for Fulfillment Inbound
|
|
5
|
-
* The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon\'s fulfillment network.
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: v0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
export {};
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Selling Partner API for Fulfillment Inbound
|
|
3
|
-
* The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon\'s fulfillment network.
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: v0
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
import { GetInboundGuidanceResult } from './get-inbound-guidance-result';
|
|
13
|
-
/**
|
|
14
|
-
* The response schema for the getInboundGuidance operation.
|
|
15
|
-
* @export
|
|
16
|
-
* @interface GetInboundGuidanceResponse
|
|
17
|
-
*/
|
|
18
|
-
export interface GetInboundGuidanceResponse {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {GetInboundGuidanceResult}
|
|
22
|
-
* @memberof GetInboundGuidanceResponse
|
|
23
|
-
*/
|
|
24
|
-
'payload'?: GetInboundGuidanceResult;
|
|
25
|
-
/**
|
|
26
|
-
* A list of error responses returned when a request is unsuccessful.
|
|
27
|
-
* @type {Array<Error>}
|
|
28
|
-
* @memberof GetInboundGuidanceResponse
|
|
29
|
-
*/
|
|
30
|
-
'errors'?: Array<Error>;
|
|
31
|
-
}
|