@sp-api-sdk/fulfillment-outbound-api-2020-07-01 2.5.0 → 2.6.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.
@@ -0,0 +1,30 @@
1
+ /**
2
+ * Selling Partner APIs for Fulfillment Outbound
3
+ * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
4
+ *
5
+ * The version of the OpenAPI document: 2020-07-01
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
+ /**
13
+ * A delivery document for a package.
14
+ * @export
15
+ * @interface DeliveryDocument
16
+ */
17
+ export interface DeliveryDocument {
18
+ /**
19
+ * The delivery document type. Values are `SIGNATURE` and `DELIVERY_IMAGE`.
20
+ * @type {string}
21
+ * @memberof DeliveryDocument
22
+ */
23
+ 'documentType': string;
24
+ /**
25
+ * A URL that you can use to download the document. This URL has a `Content-Type` header. Note that the URL expires after one hour. To get a new URL, you must call the API again.
26
+ * @type {string}
27
+ * @memberof DeliveryDocument
28
+ */
29
+ 'url'?: string;
30
+ }
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Selling Partner APIs for Fulfillment Outbound
3
+ * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
4
+ *
5
+ * The version of the OpenAPI document: 2020-07-01
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 type { DeliveryDocument } from './delivery-document';
13
+ import type { DropOffLocation } from './drop-off-location';
14
+ /**
15
+ * The delivery information for the package. This information is available after the package is delivered.
16
+ * @export
17
+ * @interface DeliveryInformation
18
+ */
19
+ export interface DeliveryInformation {
20
+ /**
21
+ * A list of delivery documents for a package.
22
+ * @type {Array<DeliveryDocument>}
23
+ * @memberof DeliveryInformation
24
+ */
25
+ 'deliveryDocumentList'?: Array<DeliveryDocument>;
26
+ /**
27
+ *
28
+ * @type {DropOffLocation}
29
+ * @memberof DeliveryInformation
30
+ */
31
+ 'dropOffLocation'?: DropOffLocation;
32
+ }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { DeliveryInformation } from './delivery-information';
12
13
  import type { LockerDetails } from './locker-details';
13
14
  /**
14
15
  * Package information for a shipment in a fulfillment order.
@@ -46,4 +47,10 @@ export interface FulfillmentShipmentPackage {
46
47
  * @memberof FulfillmentShipmentPackage
47
48
  */
48
49
  'lockerDetails'?: LockerDetails;
50
+ /**
51
+ *
52
+ * @type {DeliveryInformation}
53
+ * @memberof FulfillmentShipmentPackage
54
+ */
55
+ 'deliveryInformation'?: DeliveryInformation;
49
56
  }
@@ -12,11 +12,12 @@ export * from './create-fulfillment-return-result';
12
12
  export * from './create-return-item';
13
13
  export * from './current-status';
14
14
  export * from './date-range';
15
+ export * from './delivery-document';
16
+ export * from './delivery-information';
15
17
  export * from './delivery-message';
16
18
  export * from './delivery-offer';
17
19
  export * from './delivery-policy';
18
20
  export * from './delivery-preferences';
19
- export * from './delivery-quantity';
20
21
  export * from './delivery-window';
21
22
  export * from './destination';
22
23
  export * from './drop-off-location';
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * The locker details, if provided can be used to access locker delivery box.
13
+ * The locker details, which you can use to access the locker delivery box.
14
14
  * @export
15
15
  * @interface LockerDetails
16
16
  */
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@sp-api-sdk/fulfillment-outbound-api-2020-07-01",
3
3
  "author": "Bertrand Marron <bertrand@bizon.solutions>",
4
4
  "description": "The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon's fulfillment network. You can get information on both potential and existing fulfillment orders.",
5
- "version": "2.5.0",
5
+ "version": "2.6.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.12",
22
- "axios": "^1.7.4"
21
+ "@sp-api-sdk/common": "2.0.14",
22
+ "axios": "^1.7.7"
23
23
  },
24
24
  "repository": {
25
25
  "type": "git",
@@ -40,5 +40,5 @@
40
40
  "sp sdk",
41
41
  "fulfillment outbound api"
42
42
  ],
43
- "gitHead": "bfd73ff78b2b8e141419439963c93e61224edae5"
43
+ "gitHead": "a87ac140162ffc87d9feb2a2f9ed42a3d52b9157"
44
44
  }
@@ -1,34 +0,0 @@
1
- /**
2
- * Selling Partner APIs for Fulfillment Outbound
3
- * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
4
- *
5
- * The version of the OpenAPI document: 2020-07-01
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
- /**
13
- * A quantity based on unit of measure.
14
- * @export
15
- * @interface DeliveryQuantity
16
- */
17
- export interface DeliveryQuantity {
18
- /**
19
- * The unit of measure for the amount.
20
- * @type {string}
21
- * @memberof DeliveryQuantity
22
- */
23
- 'unitOfMeasure': DeliveryQuantityUnitOfMeasureEnum;
24
- /**
25
- * A decimal number with no loss of precision. Useful when precision loss is unacceptable, as with currencies. Follows RFC7159 for number representation.
26
- * @type {string}
27
- * @memberof DeliveryQuantity
28
- */
29
- 'amount': string;
30
- }
31
- export declare const DeliveryQuantityUnitOfMeasureEnum: {
32
- readonly Each: "Each";
33
- };
34
- export type DeliveryQuantityUnitOfMeasureEnum = typeof DeliveryQuantityUnitOfMeasureEnum[keyof typeof DeliveryQuantityUnitOfMeasureEnum];