@sp-api-sdk/fulfillment-outbound-api-2020-07-01 2.2.1 → 2.3.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.
Files changed (83) hide show
  1. package/dist/cjs/src/api-model/api/fba-outbound-api.js +82 -15
  2. package/dist/cjs/src/api-model/models/amount.js +19 -0
  3. package/dist/cjs/src/api-model/models/date-range.js +15 -0
  4. package/dist/cjs/src/api-model/models/delivery-message.js +15 -0
  5. package/dist/cjs/src/api-model/models/delivery-offer.js +15 -0
  6. package/dist/cjs/src/api-model/models/delivery-policy.js +15 -0
  7. package/dist/cjs/src/api-model/models/delivery-preferences.js +15 -0
  8. package/dist/cjs/src/api-model/models/delivery-quantity.js +19 -0
  9. package/dist/cjs/src/api-model/models/destination.js +15 -0
  10. package/dist/cjs/src/api-model/models/drop-off-location.js +26 -0
  11. package/dist/cjs/src/api-model/models/get-delivery-offers-product.js +15 -0
  12. package/dist/cjs/src/api-model/models/get-delivery-offers-request.js +15 -0
  13. package/dist/cjs/src/api-model/models/get-delivery-offers-response.js +15 -0
  14. package/dist/cjs/src/api-model/models/get-delivery-offers-result.js +15 -0
  15. package/dist/cjs/src/api-model/models/get-delivery-offers-terms.js +15 -0
  16. package/dist/cjs/src/api-model/models/index.js +18 -0
  17. package/dist/cjs/src/api-model/models/locker-details.js +15 -0
  18. package/dist/cjs/src/api-model/models/origin.js +15 -0
  19. package/dist/cjs/src/api-model/models/product-identifier.js +15 -0
  20. package/dist/cjs/src/api-model/models/variable-precision-address.js +15 -0
  21. package/dist/cjs/src/client.js +7 -0
  22. package/dist/es/src/api-model/api/fba-outbound-api.js +82 -15
  23. package/dist/es/src/api-model/models/amount.js +16 -0
  24. package/dist/es/src/api-model/models/date-range.js +14 -0
  25. package/dist/es/src/api-model/models/delivery-message.js +14 -0
  26. package/dist/es/src/api-model/models/delivery-offer.js +14 -0
  27. package/dist/es/src/api-model/models/delivery-policy.js +14 -0
  28. package/dist/es/src/api-model/models/delivery-preferences.js +14 -0
  29. package/dist/es/src/api-model/models/delivery-quantity.js +16 -0
  30. package/dist/es/src/api-model/models/destination.js +14 -0
  31. package/dist/es/src/api-model/models/drop-off-location.js +23 -0
  32. package/dist/es/src/api-model/models/get-delivery-offers-product.js +14 -0
  33. package/dist/es/src/api-model/models/get-delivery-offers-request.js +14 -0
  34. package/dist/es/src/api-model/models/get-delivery-offers-response.js +14 -0
  35. package/dist/es/src/api-model/models/get-delivery-offers-result.js +14 -0
  36. package/dist/es/src/api-model/models/get-delivery-offers-terms.js +14 -0
  37. package/dist/es/src/api-model/models/index.js +18 -0
  38. package/dist/es/src/api-model/models/locker-details.js +14 -0
  39. package/dist/es/src/api-model/models/origin.js +14 -0
  40. package/dist/es/src/api-model/models/product-identifier.js +14 -0
  41. package/dist/es/src/api-model/models/variable-precision-address.js +14 -0
  42. package/dist/es/src/client.js +7 -0
  43. package/dist/types/src/api-model/api/fba-outbound-api.d.ts +69 -17
  44. package/dist/types/src/api-model/models/amount.d.ts +34 -0
  45. package/dist/types/src/api-model/models/create-fulfillment-order-request.d.ts +8 -1
  46. package/dist/types/src/api-model/models/create-fulfillment-return-result.d.ts +1 -1
  47. package/dist/types/src/api-model/models/date-range.d.ts +30 -0
  48. package/dist/types/src/api-model/models/delivery-message.d.ts +30 -0
  49. package/dist/types/src/api-model/models/delivery-offer.d.ts +38 -0
  50. package/dist/types/src/api-model/models/delivery-policy.d.ts +25 -0
  51. package/dist/types/src/api-model/models/delivery-preferences.d.ts +31 -0
  52. package/dist/types/src/api-model/models/delivery-quantity.d.ts +34 -0
  53. package/dist/types/src/api-model/models/delivery-window.d.ts +2 -2
  54. package/dist/types/src/api-model/models/destination.d.ts +31 -0
  55. package/dist/types/src/api-model/models/drop-off-location.d.ts +43 -0
  56. package/dist/types/src/api-model/models/fulfillment-order-item.d.ts +2 -2
  57. package/dist/types/src/api-model/models/fulfillment-order.d.ts +3 -3
  58. package/dist/types/src/api-model/models/fulfillment-preview-shipment.d.ts +4 -4
  59. package/dist/types/src/api-model/models/fulfillment-preview.d.ts +1 -1
  60. package/dist/types/src/api-model/models/fulfillment-shipment-item.d.ts +6 -0
  61. package/dist/types/src/api-model/models/fulfillment-shipment-package.d.ts +8 -1
  62. package/dist/types/src/api-model/models/fulfillment-shipment.d.ts +2 -2
  63. package/dist/types/src/api-model/models/get-delivery-offers-product.d.ts +32 -0
  64. package/dist/types/src/api-model/models/get-delivery-offers-request.d.ts +32 -0
  65. package/dist/types/src/api-model/models/get-delivery-offers-response.d.ts +31 -0
  66. package/dist/types/src/api-model/models/get-delivery-offers-result.d.ts +25 -0
  67. package/dist/types/src/api-model/models/get-delivery-offers-terms.d.ts +32 -0
  68. package/dist/types/src/api-model/models/get-fulfillment-order-result.d.ts +1 -1
  69. package/dist/types/src/api-model/models/get-fulfillment-preview-request.d.ts +1 -1
  70. package/dist/types/src/api-model/models/index.d.ts +18 -0
  71. package/dist/types/src/api-model/models/list-all-fulfillment-orders-result.d.ts +1 -1
  72. package/dist/types/src/api-model/models/list-return-reason-codes-result.d.ts +1 -1
  73. package/dist/types/src/api-model/models/locker-details.d.ts +30 -0
  74. package/dist/types/src/api-model/models/origin.d.ts +24 -0
  75. package/dist/types/src/api-model/models/package-tracking-details.d.ts +3 -3
  76. package/dist/types/src/api-model/models/payment-information.d.ts +1 -1
  77. package/dist/types/src/api-model/models/product-identifier.d.ts +24 -0
  78. package/dist/types/src/api-model/models/return-item.d.ts +1 -1
  79. package/dist/types/src/api-model/models/tracking-event.d.ts +1 -1
  80. package/dist/types/src/api-model/models/unfulfillable-preview-item.d.ts +1 -1
  81. package/dist/types/src/api-model/models/update-fulfillment-order-request.d.ts +1 -1
  82. package/dist/types/src/api-model/models/variable-precision-address.d.ts +66 -0
  83. package/package.json +2 -2
@@ -42,7 +42,7 @@ export interface FulfillmentOrder {
42
42
  */
43
43
  'displayableOrderId': string;
44
44
  /**
45
- *
45
+ * Date timestamp
46
46
  * @type {string}
47
47
  * @memberof FulfillmentOrder
48
48
  */
@@ -90,7 +90,7 @@ export interface FulfillmentOrder {
90
90
  */
91
91
  'codSettings'?: CODSettings;
92
92
  /**
93
- *
93
+ * Date timestamp
94
94
  * @type {string}
95
95
  * @memberof FulfillmentOrder
96
96
  */
@@ -102,7 +102,7 @@ export interface FulfillmentOrder {
102
102
  */
103
103
  'fulfillmentOrderStatus': FulfillmentOrderStatus;
104
104
  /**
105
- *
105
+ * Date timestamp
106
106
  * @type {string}
107
107
  * @memberof FulfillmentOrder
108
108
  */
@@ -17,25 +17,25 @@ import type { FulfillmentPreviewItem } from './fulfillment-preview-item';
17
17
  */
18
18
  export interface FulfillmentPreviewShipment {
19
19
  /**
20
- *
20
+ * Date timestamp
21
21
  * @type {string}
22
22
  * @memberof FulfillmentPreviewShipment
23
23
  */
24
24
  'earliestShipDate'?: string;
25
25
  /**
26
- *
26
+ * Date timestamp
27
27
  * @type {string}
28
28
  * @memberof FulfillmentPreviewShipment
29
29
  */
30
30
  'latestShipDate'?: string;
31
31
  /**
32
- *
32
+ * Date timestamp
33
33
  * @type {string}
34
34
  * @memberof FulfillmentPreviewShipment
35
35
  */
36
36
  'earliestArrivalDate'?: string;
37
37
  /**
38
- *
38
+ * Date timestamp
39
39
  * @type {string}
40
40
  * @memberof FulfillmentPreviewShipment
41
41
  */
@@ -71,7 +71,7 @@ export interface FulfillmentPreview {
71
71
  */
72
72
  'unfulfillablePreviewItems'?: Array<UnfulfillablePreviewItem>;
73
73
  /**
74
- *
74
+ * String list
75
75
  * @type {Array<string>}
76
76
  * @memberof FulfillmentPreview
77
77
  */
@@ -45,4 +45,10 @@ export interface FulfillmentShipmentItem {
45
45
  * @memberof FulfillmentShipmentItem
46
46
  */
47
47
  'serialNumber'?: string;
48
+ /**
49
+ * String list
50
+ * @type {Array<string>}
51
+ * @memberof FulfillmentShipmentItem
52
+ */
53
+ 'manufacturerLotCodes'?: Array<string>;
48
54
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { LockerDetails } from './locker-details';
12
13
  /**
13
14
  * Package information for a shipment in a fulfillment order.
14
15
  * @export
@@ -34,9 +35,15 @@ export interface FulfillmentShipmentPackage {
34
35
  */
35
36
  'trackingNumber'?: string;
36
37
  /**
37
- *
38
+ * Date timestamp
38
39
  * @type {string}
39
40
  * @memberof FulfillmentShipmentPackage
40
41
  */
41
42
  'estimatedArrivalDate'?: string;
43
+ /**
44
+ *
45
+ * @type {LockerDetails}
46
+ * @memberof FulfillmentShipmentPackage
47
+ */
48
+ 'lockerDetails'?: LockerDetails;
42
49
  }
@@ -36,13 +36,13 @@ export interface FulfillmentShipment {
36
36
  */
37
37
  'fulfillmentShipmentStatus': FulfillmentShipmentFulfillmentShipmentStatusEnum;
38
38
  /**
39
- *
39
+ * Date timestamp
40
40
  * @type {string}
41
41
  * @memberof FulfillmentShipment
42
42
  */
43
43
  'shippingDate'?: string;
44
44
  /**
45
- *
45
+ * Date timestamp
46
46
  * @type {string}
47
47
  * @memberof FulfillmentShipment
48
48
  */
@@ -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 { Amount } from './amount';
13
+ import type { ProductIdentifier } from './product-identifier';
14
+ /**
15
+ * The product details for the delivery offer.
16
+ * @export
17
+ * @interface GetDeliveryOffersProduct
18
+ */
19
+ export interface GetDeliveryOffersProduct {
20
+ /**
21
+ *
22
+ * @type {ProductIdentifier}
23
+ * @memberof GetDeliveryOffersProduct
24
+ */
25
+ 'productIdentifier': ProductIdentifier;
26
+ /**
27
+ *
28
+ * @type {Amount}
29
+ * @memberof GetDeliveryOffersProduct
30
+ */
31
+ 'amount'?: Amount;
32
+ }
@@ -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 { GetDeliveryOffersProduct } from './get-delivery-offers-product';
13
+ import type { GetDeliveryOffersTerms } from './get-delivery-offers-terms';
14
+ /**
15
+ * The request body schema for the getDeliveryOffers operation.
16
+ * @export
17
+ * @interface GetDeliveryOffersRequest
18
+ */
19
+ export interface GetDeliveryOffersRequest {
20
+ /**
21
+ *
22
+ * @type {GetDeliveryOffersProduct}
23
+ * @memberof GetDeliveryOffersRequest
24
+ */
25
+ 'product': GetDeliveryOffersProduct;
26
+ /**
27
+ *
28
+ * @type {GetDeliveryOffersTerms}
29
+ * @memberof GetDeliveryOffersRequest
30
+ */
31
+ 'terms': GetDeliveryOffersTerms;
32
+ }
@@ -0,0 +1,31 @@
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 { GetDeliveryOffersResult } from './get-delivery-offers-result';
13
+ /**
14
+ * The response schema for the getDeliveryOffers operation.
15
+ * @export
16
+ * @interface GetDeliveryOffersResponse
17
+ */
18
+ export interface GetDeliveryOffersResponse {
19
+ /**
20
+ *
21
+ * @type {GetDeliveryOffersResult}
22
+ * @memberof GetDeliveryOffersResponse
23
+ */
24
+ 'payload'?: GetDeliveryOffersResult;
25
+ /**
26
+ * A list of error responses returned when a request is unsuccessful.
27
+ * @type {Array<Error>}
28
+ * @memberof GetDeliveryOffersResponse
29
+ */
30
+ 'errors'?: Array<Error>;
31
+ }
@@ -0,0 +1,25 @@
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 { DeliveryOffer } from './delivery-offer';
13
+ /**
14
+ * A list of delivery offers, including offer expiration, earliest and latest date and time range, and the delivery offer policy.
15
+ * @export
16
+ * @interface GetDeliveryOffersResult
17
+ */
18
+ export interface GetDeliveryOffersResult {
19
+ /**
20
+ * An array of delivery offer information.
21
+ * @type {Array<DeliveryOffer>}
22
+ * @memberof GetDeliveryOffersResult
23
+ */
24
+ 'deliveryOffers'?: Array<DeliveryOffer>;
25
+ }
@@ -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 { Destination } from './destination';
13
+ import type { Origin } from './origin';
14
+ /**
15
+ * The delivery terms for the delivery offer.
16
+ * @export
17
+ * @interface GetDeliveryOffersTerms
18
+ */
19
+ export interface GetDeliveryOffersTerms {
20
+ /**
21
+ *
22
+ * @type {Origin}
23
+ * @memberof GetDeliveryOffersTerms
24
+ */
25
+ 'origin': Origin;
26
+ /**
27
+ *
28
+ * @type {Destination}
29
+ * @memberof GetDeliveryOffersTerms
30
+ */
31
+ 'destination': Destination;
32
+ }
@@ -16,7 +16,7 @@ import type { PaymentInformation } from './payment-information';
16
16
  import type { ReturnAuthorization } from './return-authorization';
17
17
  import type { ReturnItem } from './return-item';
18
18
  /**
19
- *
19
+ * The request for the getFulfillmentOrder operation.
20
20
  * @export
21
21
  * @interface GetFulfillmentOrderResult
22
22
  */
@@ -38,7 +38,7 @@ export interface GetFulfillmentPreviewRequest {
38
38
  */
39
39
  'items': Array<GetFulfillmentPreviewItem>;
40
40
  /**
41
- *
41
+ * ShippingSpeedCategory List
42
42
  * @type {Array<ShippingSpeedCategory>}
43
43
  * @memberof GetFulfillmentPreviewRequest
44
44
  */
@@ -1,5 +1,6 @@
1
1
  export * from './additional-location-info';
2
2
  export * from './address';
3
+ export * from './amount';
3
4
  export * from './codsettings';
4
5
  export * from './cancel-fulfillment-order-response';
5
6
  export * from './create-fulfillment-order-item';
@@ -10,7 +11,15 @@ export * from './create-fulfillment-return-response';
10
11
  export * from './create-fulfillment-return-result';
11
12
  export * from './create-return-item';
12
13
  export * from './current-status';
14
+ export * from './date-range';
15
+ export * from './delivery-message';
16
+ export * from './delivery-offer';
17
+ export * from './delivery-policy';
18
+ export * from './delivery-preferences';
19
+ export * from './delivery-quantity';
13
20
  export * from './delivery-window';
21
+ export * from './destination';
22
+ export * from './drop-off-location';
14
23
  export * from './event-code';
15
24
  export * from './feature';
16
25
  export * from './feature-settings';
@@ -28,6 +37,11 @@ export * from './fulfillment-return-item-status';
28
37
  export * from './fulfillment-shipment';
29
38
  export * from './fulfillment-shipment-item';
30
39
  export * from './fulfillment-shipment-package';
40
+ export * from './get-delivery-offers-product';
41
+ export * from './get-delivery-offers-request';
42
+ export * from './get-delivery-offers-response';
43
+ export * from './get-delivery-offers-result';
44
+ export * from './get-delivery-offers-terms';
31
45
  export * from './get-feature-inventory-response';
32
46
  export * from './get-feature-inventory-result';
33
47
  export * from './get-feature-sku-response';
@@ -48,10 +62,13 @@ export * from './list-all-fulfillment-orders-response';
48
62
  export * from './list-all-fulfillment-orders-result';
49
63
  export * from './list-return-reason-codes-response';
50
64
  export * from './list-return-reason-codes-result';
65
+ export * from './locker-details';
51
66
  export * from './model-error';
52
67
  export * from './money';
68
+ export * from './origin';
53
69
  export * from './package-tracking-details';
54
70
  export * from './payment-information';
71
+ export * from './product-identifier';
55
72
  export * from './reason-code-details';
56
73
  export * from './return-authorization';
57
74
  export * from './return-item';
@@ -66,4 +83,5 @@ export * from './unfulfillable-preview-item';
66
83
  export * from './update-fulfillment-order-item';
67
84
  export * from './update-fulfillment-order-request';
68
85
  export * from './update-fulfillment-order-response';
86
+ export * from './variable-precision-address';
69
87
  export * from './weight';
@@ -11,7 +11,7 @@
11
11
  */
12
12
  import type { FulfillmentOrder } from './fulfillment-order';
13
13
  /**
14
- *
14
+ * The request for the listAllFulfillmentOrders operation.
15
15
  * @export
16
16
  * @interface ListAllFulfillmentOrdersResult
17
17
  */
@@ -11,7 +11,7 @@
11
11
  */
12
12
  import type { ReasonCodeDetails } from './reason-code-details';
13
13
  /**
14
- *
14
+ * The request for the listReturnReasonCodes operation.
15
15
  * @export
16
16
  * @interface ListReturnReasonCodesResult
17
17
  */
@@ -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
+ * The locker details, if provided can be used to access locker delivery box.
14
+ * @export
15
+ * @interface LockerDetails
16
+ */
17
+ export interface LockerDetails {
18
+ /**
19
+ * Indicates the locker number
20
+ * @type {string}
21
+ * @memberof LockerDetails
22
+ */
23
+ 'lockerNumber'?: string;
24
+ /**
25
+ * Indicates the locker access code
26
+ * @type {string}
27
+ * @memberof LockerDetails
28
+ */
29
+ 'lockerAccessCode'?: string;
30
+ }
@@ -0,0 +1,24 @@
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
+ * The origin for the delivery offer.
14
+ * @export
15
+ * @interface Origin
16
+ */
17
+ export interface Origin {
18
+ /**
19
+ * The two digit country code the items should ship from. In ISO 3166-1 alpha-2 format.
20
+ * @type {string}
21
+ * @memberof Origin
22
+ */
23
+ 'countryCode': string;
24
+ }
@@ -14,7 +14,7 @@ import type { CurrentStatus } from './current-status';
14
14
  import type { TrackingAddress } from './tracking-address';
15
15
  import type { TrackingEvent } from './tracking-event';
16
16
  /**
17
- *
17
+ * Tracking details of package
18
18
  * @export
19
19
  * @interface PackageTrackingDetails
20
20
  */
@@ -56,13 +56,13 @@ export interface PackageTrackingDetails {
56
56
  */
57
57
  'carrierURL'?: string;
58
58
  /**
59
- *
59
+ * Date timestamp
60
60
  * @type {string}
61
61
  * @memberof PackageTrackingDetails
62
62
  */
63
63
  'shipDate'?: string;
64
64
  /**
65
- *
65
+ * Date timestamp
66
66
  * @type {string}
67
67
  * @memberof PackageTrackingDetails
68
68
  */
@@ -28,7 +28,7 @@ export interface PaymentInformation {
28
28
  */
29
29
  'paymentMode': string;
30
30
  /**
31
- *
31
+ * Date timestamp
32
32
  * @type {string}
33
33
  * @memberof PaymentInformation
34
34
  */
@@ -0,0 +1,24 @@
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
+ * Product identifier input that locates a product for MCF.
14
+ * @export
15
+ * @interface ProductIdentifier
16
+ */
17
+ export interface ProductIdentifier {
18
+ /**
19
+ * The merchant SKU for the product.
20
+ * @type {string}
21
+ * @memberof ProductIdentifier
22
+ */
23
+ 'merchantSku': string;
24
+ }
@@ -60,7 +60,7 @@ export interface ReturnItem {
60
60
  */
61
61
  'status': FulfillmentReturnItemStatus;
62
62
  /**
63
- *
63
+ * Date timestamp
64
64
  * @type {string}
65
65
  * @memberof ReturnItem
66
66
  */
@@ -18,7 +18,7 @@ import type { TrackingAddress } from './tracking-address';
18
18
  */
19
19
  export interface TrackingEvent {
20
20
  /**
21
- *
21
+ * Date timestamp
22
22
  * @type {string}
23
23
  * @memberof TrackingEvent
24
24
  */
@@ -34,7 +34,7 @@ export interface UnfulfillablePreviewItem {
34
34
  */
35
35
  'sellerFulfillmentOrderItemId': string;
36
36
  /**
37
- *
37
+ * String list
38
38
  * @type {Array<string>}
39
39
  * @memberof UnfulfillablePreviewItem
40
40
  */
@@ -34,7 +34,7 @@ export interface UpdateFulfillmentOrderRequest {
34
34
  */
35
35
  'displayableOrderId'?: string;
36
36
  /**
37
- *
37
+ * Date timestamp
38
38
  * @type {string}
39
39
  * @memberof UpdateFulfillmentOrderRequest
40
40
  */
@@ -0,0 +1,66 @@
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 physical address with varying degrees of precision. A more precise address can provide more accurate results than country code and postal code alone.
14
+ * @export
15
+ * @interface VariablePrecisionAddress
16
+ */
17
+ export interface VariablePrecisionAddress {
18
+ /**
19
+ * The first line of the address.
20
+ * @type {string}
21
+ * @memberof VariablePrecisionAddress
22
+ */
23
+ 'addressLine1'?: string;
24
+ /**
25
+ * Additional address information, if required.
26
+ * @type {string}
27
+ * @memberof VariablePrecisionAddress
28
+ */
29
+ 'addressLine2'?: string;
30
+ /**
31
+ * Additional address information, if required.
32
+ * @type {string}
33
+ * @memberof VariablePrecisionAddress
34
+ */
35
+ 'addressLine3'?: string;
36
+ /**
37
+ * The city where the person, business, or institution is located. This property should not be used in Japan.
38
+ * @type {string}
39
+ * @memberof VariablePrecisionAddress
40
+ */
41
+ 'city'?: string;
42
+ /**
43
+ * The district or county where the person, business, or institution is located.
44
+ * @type {string}
45
+ * @memberof VariablePrecisionAddress
46
+ */
47
+ 'districtOrCounty'?: string;
48
+ /**
49
+ * The state or region where the person, business or institution is located.
50
+ * @type {string}
51
+ * @memberof VariablePrecisionAddress
52
+ */
53
+ 'stateOrRegion'?: string;
54
+ /**
55
+ * The postal code of the address.
56
+ * @type {string}
57
+ * @memberof VariablePrecisionAddress
58
+ */
59
+ 'postalCode': string;
60
+ /**
61
+ * The two digit country code. In ISO 3166-1 alpha-2 format.
62
+ * @type {string}
63
+ * @memberof VariablePrecisionAddress
64
+ */
65
+ 'countryCode': string;
66
+ }
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.2.1",
5
+ "version": "2.3.0",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/es/index.js",
8
8
  "types": "dist/types/index.d.ts",
@@ -40,5 +40,5 @@
40
40
  "sp sdk",
41
41
  "fulfillment outbound api"
42
42
  ],
43
- "gitHead": "cce8c720364baf071322463e8e3ed29c322cc93a"
43
+ "gitHead": "207e9cb4cdd2886752a696cfd7355dfaaf0129cb"
44
44
  }