@sp-api-sdk/fulfillment-outbound-api-2020-07-01 2.0.5 → 2.1.1
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-outbound-api.js +61 -63
- package/dist/cjs/src/api-model/models/fulfillment-policy.js +1 -1
- package/dist/cjs/src/api-model/models/index.js +1 -0
- package/dist/cjs/src/api-model/models/payment-information.js +15 -0
- package/dist/cjs/src/api-model/models/shipping-speed-category.js +1 -1
- package/dist/es/src/api-model/api/fba-outbound-api.js +61 -63
- package/dist/es/src/api-model/models/fulfillment-policy.js +1 -1
- package/dist/es/src/api-model/models/index.js +1 -0
- package/dist/es/src/api-model/models/payment-information.js +14 -0
- package/dist/es/src/api-model/models/shipping-speed-category.js +1 -1
- package/dist/types/src/api-model/api/fba-outbound-api.d.ts +67 -67
- package/dist/types/src/api-model/models/cancel-fulfillment-order-response.d.ts +1 -1
- package/dist/types/src/api-model/models/create-fulfillment-order-item.d.ts +1 -1
- package/dist/types/src/api-model/models/create-fulfillment-order-request.d.ts +10 -3
- package/dist/types/src/api-model/models/create-fulfillment-order-response.d.ts +1 -1
- package/dist/types/src/api-model/models/create-fulfillment-return-request.d.ts +1 -1
- package/dist/types/src/api-model/models/create-fulfillment-return-response.d.ts +1 -1
- package/dist/types/src/api-model/models/feature-settings.d.ts +1 -1
- package/dist/types/src/api-model/models/feature-sku.d.ts +1 -1
- package/dist/types/src/api-model/models/fulfillment-order-item.d.ts +1 -1
- package/dist/types/src/api-model/models/fulfillment-order.d.ts +3 -3
- package/dist/types/src/api-model/models/fulfillment-policy.d.ts +1 -1
- package/dist/types/src/api-model/models/fulfillment-preview-item.d.ts +1 -1
- package/dist/types/src/api-model/models/fulfillment-shipment-item.d.ts +1 -1
- package/dist/types/src/api-model/models/get-feature-inventory-result.d.ts +1 -1
- package/dist/types/src/api-model/models/get-feature-sku-response.d.ts +1 -1
- package/dist/types/src/api-model/models/get-feature-sku-result.d.ts +2 -2
- package/dist/types/src/api-model/models/get-features-response.d.ts +1 -1
- package/dist/types/src/api-model/models/get-features-result.d.ts +1 -1
- package/dist/types/src/api-model/models/get-fulfillment-order-response.d.ts +1 -1
- package/dist/types/src/api-model/models/get-fulfillment-order-result.d.ts +7 -0
- package/dist/types/src/api-model/models/get-fulfillment-preview-request.d.ts +2 -2
- package/dist/types/src/api-model/models/get-fulfillment-preview-response.d.ts +1 -1
- package/dist/types/src/api-model/models/get-package-tracking-details-response.d.ts +1 -1
- package/dist/types/src/api-model/models/index.d.ts +1 -0
- package/dist/types/src/api-model/models/list-all-fulfillment-orders-response.d.ts +1 -1
- package/dist/types/src/api-model/models/list-return-reason-codes-response.d.ts +1 -1
- package/dist/types/src/api-model/models/package-tracking-details.d.ts +1 -1
- package/dist/types/src/api-model/models/payment-information.d.ts +36 -0
- package/dist/types/src/api-model/models/return-item.d.ts +1 -1
- package/dist/types/src/api-model/models/shipping-speed-category.d.ts +1 -1
- package/dist/types/src/api-model/models/submit-fulfillment-order-status-update-request.d.ts +1 -1
- package/dist/types/src/api-model/models/submit-fulfillment-order-status-update-response.d.ts +1 -1
- package/dist/types/src/api-model/models/unfulfillable-preview-item.d.ts +1 -1
- package/dist/types/src/api-model/models/update-fulfillment-order-item.d.ts +1 -1
- package/dist/types/src/api-model/models/update-fulfillment-order-request.d.ts +2 -2
- package/dist/types/src/api-model/models/update-fulfillment-order-response.d.ts +1 -1
- package/package.json +5 -5
|
@@ -23,7 +23,7 @@ export interface CreateFulfillmentOrderItem {
|
|
|
23
23
|
*/
|
|
24
24
|
'sellerSku': string;
|
|
25
25
|
/**
|
|
26
|
-
* A fulfillment order item identifier that the seller creates to track fulfillment order items. Used to disambiguate multiple fulfillment items that have the same SellerSKU
|
|
26
|
+
* A fulfillment order item identifier that the seller creates to track fulfillment order items. Used to disambiguate multiple fulfillment items that have the same `SellerSKU`. For example, the seller might assign different `SellerFulfillmentOrderItemId` values to two items in a fulfillment order that share the same `SellerSKU` but have different `GiftMessage` values.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof CreateFulfillmentOrderItem
|
|
29
29
|
*/
|
|
@@ -16,9 +16,10 @@ import { DeliveryWindow } from './delivery-window';
|
|
|
16
16
|
import { FeatureSettings } from './feature-settings';
|
|
17
17
|
import { FulfillmentAction } from './fulfillment-action';
|
|
18
18
|
import { FulfillmentPolicy } from './fulfillment-policy';
|
|
19
|
+
import { PaymentInformation } from './payment-information';
|
|
19
20
|
import { ShippingSpeedCategory } from './shipping-speed-category';
|
|
20
21
|
/**
|
|
21
|
-
* The request body schema for the createFulfillmentOrder operation.
|
|
22
|
+
* The request body schema for the `createFulfillmentOrder` operation.
|
|
22
23
|
* @export
|
|
23
24
|
* @interface CreateFulfillmentOrderRequest
|
|
24
25
|
*/
|
|
@@ -30,13 +31,13 @@ export interface CreateFulfillmentOrderRequest {
|
|
|
30
31
|
*/
|
|
31
32
|
'marketplaceId'?: string;
|
|
32
33
|
/**
|
|
33
|
-
* A fulfillment order identifier that the seller creates to track their fulfillment order. The SellerFulfillmentOrderId must be unique for each fulfillment order that a seller creates. If the seller\'s system already creates unique order identifiers, then these might be good values for them to use.
|
|
34
|
+
* A fulfillment order identifier that the seller creates to track their fulfillment order. The `SellerFulfillmentOrderId` must be unique for each fulfillment order that a seller creates. If the seller\'s system already creates unique order identifiers, then these might be good values for them to use.
|
|
34
35
|
* @type {string}
|
|
35
36
|
* @memberof CreateFulfillmentOrderRequest
|
|
36
37
|
*/
|
|
37
38
|
'sellerFulfillmentOrderId': string;
|
|
38
39
|
/**
|
|
39
|
-
* A fulfillment order identifier that the seller creates. This value displays as the order identifier in recipient-facing materials such as the outbound shipment packing slip. The value of DisplayableOrderId should match the order identifier that the seller provides to the recipient. The seller can use the SellerFulfillmentOrderId for this value or they can specify an alternate value if they want the recipient to reference an alternate order identifier. The value must be an alpha-numeric or ISO 8859-1 compliant string from one to 40 characters in length. Cannot contain two spaces in a row. Leading and trailing white space is removed.
|
|
40
|
+
* A fulfillment order identifier that the seller creates. This value displays as the order identifier in recipient-facing materials such as the outbound shipment packing slip. The value of `DisplayableOrderId` should match the order identifier that the seller provides to the recipient. The seller can use the `SellerFulfillmentOrderId` for this value or they can specify an alternate value if they want the recipient to reference an alternate order identifier. The value must be an alpha-numeric or ISO 8859-1 compliant string from one to 40 characters in length. Cannot contain two spaces in a row. Leading and trailing white space is removed.
|
|
40
41
|
* @type {string}
|
|
41
42
|
* @memberof CreateFulfillmentOrderRequest
|
|
42
43
|
*/
|
|
@@ -113,4 +114,10 @@ export interface CreateFulfillmentOrderRequest {
|
|
|
113
114
|
* @memberof CreateFulfillmentOrderRequest
|
|
114
115
|
*/
|
|
115
116
|
'items': Array<CreateFulfillmentOrderItem>;
|
|
117
|
+
/**
|
|
118
|
+
* An array of various payment attributes related to this fulfillment order.
|
|
119
|
+
* @type {Array<PaymentInformation>}
|
|
120
|
+
* @memberof CreateFulfillmentOrderRequest
|
|
121
|
+
*/
|
|
122
|
+
'paymentInformation'?: Array<PaymentInformation>;
|
|
116
123
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { CreateReturnItem } from './create-return-item';
|
|
13
13
|
/**
|
|
14
|
-
* The createFulfillmentReturn operation creates a fulfillment return for items that were fulfilled using the createFulfillmentOrder operation. For calls to createFulfillmentReturn
|
|
14
|
+
* The `createFulfillmentReturn` operation creates a fulfillment return for items that were fulfilled using the `createFulfillmentOrder` operation. For calls to `createFulfillmentReturn`, you must include `ReturnReasonCode` values returned by a previous call to the `listReturnReasonCodes` operation.
|
|
15
15
|
* @export
|
|
16
16
|
* @interface CreateFulfillmentReturnRequest
|
|
17
17
|
*/
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { CreateFulfillmentReturnResult } from './create-fulfillment-return-result';
|
|
13
13
|
/**
|
|
14
|
-
* The response schema for the createFulfillmentReturn operation.
|
|
14
|
+
* The response schema for the `createFulfillmentReturn` operation.
|
|
15
15
|
* @export
|
|
16
16
|
* @interface CreateFulfillmentReturnResponse
|
|
17
17
|
*/
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* FeatureSettings allows users to apply fulfillment features to an order. To block an order from being shipped using Amazon Logistics (AMZL) and an AMZL tracking number, use featureName as BLOCK_AMZL and featureFulfillmentPolicy as Required
|
|
13
|
+
* `FeatureSettings` allows users to apply fulfillment features to an order. To block an order from being shipped using Amazon Logistics (AMZL) and an AMZL tracking number, use `featureName` as `BLOCK_AMZL` and `featureFulfillmentPolicy` as `Required`. Blocking AMZL will incur an additional fee surcharge on your MCF orders and increase the risk of some of your orders being unfulfilled or delivered late if there are no alternative carriers available. Using `BLOCK_AMZL` in an order request will take precedence over your Seller Central account setting. To ship in non-Amazon branded packaging (blank boxes), use featureName `BLANK_BOX`.
|
|
14
14
|
* @export
|
|
15
15
|
* @interface FeatureSettings
|
|
16
16
|
*/
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface FeatureSku {
|
|
18
18
|
/**
|
|
19
|
-
* Used to identify an item in the given marketplace. SellerSKU is qualified by the seller\'s SellerId, which is included with every operation that you submit.
|
|
19
|
+
* Used to identify an item in the given marketplace. `SellerSKU` is qualified by the seller\'s SellerId, which is included with every operation that you submit.
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof FeatureSku
|
|
22
22
|
*/
|
|
@@ -23,7 +23,7 @@ export interface FulfillmentOrderItem {
|
|
|
23
23
|
*/
|
|
24
24
|
'sellerSku': string;
|
|
25
25
|
/**
|
|
26
|
-
* A fulfillment order item identifier submitted with a call to the createFulfillmentOrder operation.
|
|
26
|
+
* A fulfillment order item identifier submitted with a call to the `createFulfillmentOrder` operation.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof FulfillmentOrderItem
|
|
29
29
|
*/
|
|
@@ -24,7 +24,7 @@ import { ShippingSpeedCategory } from './shipping-speed-category';
|
|
|
24
24
|
*/
|
|
25
25
|
export interface FulfillmentOrder {
|
|
26
26
|
/**
|
|
27
|
-
* The fulfillment order identifier submitted with the createFulfillmentOrder operation.
|
|
27
|
+
* The fulfillment order identifier submitted with the `createFulfillmentOrder` operation.
|
|
28
28
|
* @type {string}
|
|
29
29
|
* @memberof FulfillmentOrder
|
|
30
30
|
*/
|
|
@@ -36,7 +36,7 @@ export interface FulfillmentOrder {
|
|
|
36
36
|
*/
|
|
37
37
|
'marketplaceId': string;
|
|
38
38
|
/**
|
|
39
|
-
* A fulfillment order identifier submitted with the createFulfillmentOrder operation. Displays as the order identifier in recipient-facing materials such as the packing slip.
|
|
39
|
+
* A fulfillment order identifier submitted with the `createFulfillmentOrder` operation. Displays as the order identifier in recipient-facing materials such as the packing slip.
|
|
40
40
|
* @type {string}
|
|
41
41
|
* @memberof FulfillmentOrder
|
|
42
42
|
*/
|
|
@@ -48,7 +48,7 @@ export interface FulfillmentOrder {
|
|
|
48
48
|
*/
|
|
49
49
|
'displayableOrderDate': string;
|
|
50
50
|
/**
|
|
51
|
-
* A text block submitted with the createFulfillmentOrder operation. Displays in recipient-facing materials such as the packing slip.
|
|
51
|
+
* A text block submitted with the `createFulfillmentOrder` operation. Displays in recipient-facing materials such as the packing slip.
|
|
52
52
|
* @type {string}
|
|
53
53
|
* @memberof FulfillmentOrder
|
|
54
54
|
*/
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* The FulfillmentPolicy value specified when you submitted the createFulfillmentOrder operation.
|
|
13
|
+
* The `FulfillmentPolicy` value specified when you submitted the `createFulfillmentOrder` operation.
|
|
14
14
|
* @export
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
@@ -29,7 +29,7 @@ export interface FulfillmentPreviewItem {
|
|
|
29
29
|
*/
|
|
30
30
|
'quantity': number;
|
|
31
31
|
/**
|
|
32
|
-
* A fulfillment order item identifier that the seller created with a call to the createFulfillmentOrder operation.
|
|
32
|
+
* A fulfillment order item identifier that the seller created with a call to the `createFulfillmentOrder` operation.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof FulfillmentPreviewItem
|
|
35
35
|
*/
|
|
@@ -22,7 +22,7 @@ export interface FulfillmentShipmentItem {
|
|
|
22
22
|
*/
|
|
23
23
|
'sellerSku': string;
|
|
24
24
|
/**
|
|
25
|
-
* The fulfillment order item identifier that the seller created and submitted with a call to the createFulfillmentOrder operation.
|
|
25
|
+
* The fulfillment order item identifier that the seller created and submitted with a call to the `createFulfillmentOrder` operation.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof FulfillmentShipmentItem
|
|
28
28
|
*/
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { FeatureSku } from './feature-sku';
|
|
13
13
|
/**
|
|
14
|
-
* The payload for the getFeatureSKU operation.
|
|
14
|
+
* The payload for the `getFeatureSKU` operation.
|
|
15
15
|
* @export
|
|
16
16
|
* @interface GetFeatureSkuResult
|
|
17
17
|
*/
|
|
@@ -35,7 +35,7 @@ export interface GetFeatureSkuResult {
|
|
|
35
35
|
*/
|
|
36
36
|
'isEligible': boolean;
|
|
37
37
|
/**
|
|
38
|
-
* A list of one or more reasons that the seller SKU is ineligibile for the feature. Possible values: * MERCHANT_NOT_ENROLLED - The merchant isn\'t enrolled for the feature. * SKU_NOT_ELIGIBLE - The SKU doesn\'t reside in a warehouse that supports the feature. * INVALID_SKU - There is an issue with the SKU provided.
|
|
38
|
+
* A list of one or more reasons that the seller SKU is ineligibile for the feature. Possible values: * `MERCHANT_NOT_ENROLLED` - The merchant isn\'t enrolled for the feature. * `SKU_NOT_ELIGIBLE` - The SKU doesn\'t reside in a warehouse that supports the feature. * `INVALID_SKU` - There is an issue with the SKU provided.
|
|
39
39
|
* @type {Array<string>}
|
|
40
40
|
* @memberof GetFeatureSkuResult
|
|
41
41
|
*/
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { GetFulfillmentOrderResult } from './get-fulfillment-order-result';
|
|
13
13
|
/**
|
|
14
|
-
* The response schema for the getFulfillmentOrder operation.
|
|
14
|
+
* The response schema for the `getFulfillmentOrder` operation.
|
|
15
15
|
* @export
|
|
16
16
|
* @interface GetFulfillmentOrderResponse
|
|
17
17
|
*/
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { FulfillmentOrder } from './fulfillment-order';
|
|
13
13
|
import { FulfillmentOrderItem } from './fulfillment-order-item';
|
|
14
14
|
import { FulfillmentShipment } from './fulfillment-shipment';
|
|
15
|
+
import { PaymentInformation } from './payment-information';
|
|
15
16
|
import { ReturnAuthorization } from './return-authorization';
|
|
16
17
|
import { ReturnItem } from './return-item';
|
|
17
18
|
/**
|
|
@@ -50,4 +51,10 @@ export interface GetFulfillmentOrderResult {
|
|
|
50
51
|
* @memberof GetFulfillmentOrderResult
|
|
51
52
|
*/
|
|
52
53
|
'returnAuthorizations': Array<ReturnAuthorization>;
|
|
54
|
+
/**
|
|
55
|
+
* An array of various payment attributes related to this fulfillment order.
|
|
56
|
+
* @type {Array<PaymentInformation>}
|
|
57
|
+
* @memberof GetFulfillmentOrderResult
|
|
58
|
+
*/
|
|
59
|
+
'paymentInformation'?: Array<PaymentInformation>;
|
|
53
60
|
}
|
|
@@ -14,7 +14,7 @@ import { FeatureSettings } from './feature-settings';
|
|
|
14
14
|
import { GetFulfillmentPreviewItem } from './get-fulfillment-preview-item';
|
|
15
15
|
import { ShippingSpeedCategory } from './shipping-speed-category';
|
|
16
16
|
/**
|
|
17
|
-
* The request body schema for the getFulfillmentPreview operation.
|
|
17
|
+
* The request body schema for the `getFulfillmentPreview` operation.
|
|
18
18
|
* @export
|
|
19
19
|
* @interface GetFulfillmentPreviewRequest
|
|
20
20
|
*/
|
|
@@ -50,7 +50,7 @@ export interface GetFulfillmentPreviewRequest {
|
|
|
50
50
|
*/
|
|
51
51
|
'includeCODFulfillmentPreview'?: boolean;
|
|
52
52
|
/**
|
|
53
|
-
* When true, returns the ScheduledDeliveryInfo response object, which contains the available delivery windows for a Scheduled Delivery. The ScheduledDeliveryInfo response object can only be returned for fulfillment order previews with ShippingSpeedCategories = ScheduledDelivery
|
|
53
|
+
* When true, returns the `ScheduledDeliveryInfo` response object, which contains the available delivery windows for a Scheduled Delivery. The `ScheduledDeliveryInfo` response object can only be returned for fulfillment order previews with `ShippingSpeedCategories` = `ScheduledDelivery`.
|
|
54
54
|
* @type {boolean}
|
|
55
55
|
* @memberof GetFulfillmentPreviewRequest
|
|
56
56
|
*/
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { GetFulfillmentPreviewResult } from './get-fulfillment-preview-result';
|
|
13
13
|
/**
|
|
14
|
-
* The response schema for the getFulfillmentPreview operation.
|
|
14
|
+
* The response schema for the `getFulfillmentPreview` operation.
|
|
15
15
|
* @export
|
|
16
16
|
* @interface GetFulfillmentPreviewResponse
|
|
17
17
|
*/
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { PackageTrackingDetails } from './package-tracking-details';
|
|
13
13
|
/**
|
|
14
|
-
* The response schema for the getPackageTrackingDetails operation.
|
|
14
|
+
* The response schema for the `getPackageTrackingDetails` operation.
|
|
15
15
|
* @export
|
|
16
16
|
* @interface GetPackageTrackingDetailsResponse
|
|
17
17
|
*/
|
|
@@ -51,6 +51,7 @@ export * from './list-return-reason-codes-result';
|
|
|
51
51
|
export * from './model-error';
|
|
52
52
|
export * from './money';
|
|
53
53
|
export * from './package-tracking-details';
|
|
54
|
+
export * from './payment-information';
|
|
54
55
|
export * from './reason-code-details';
|
|
55
56
|
export * from './return-authorization';
|
|
56
57
|
export * from './return-item';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { ListAllFulfillmentOrdersResult } from './list-all-fulfillment-orders-result';
|
|
13
13
|
/**
|
|
14
|
-
* The response schema for the listAllFulfillmentOrders operation.
|
|
14
|
+
* The response schema for the `listAllFulfillmentOrders` operation.
|
|
15
15
|
* @export
|
|
16
16
|
* @interface ListAllFulfillmentOrdersResponse
|
|
17
17
|
*/
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { ListReturnReasonCodesResult } from './list-return-reason-codes-result';
|
|
13
13
|
/**
|
|
14
|
-
* The response schema for the listReturnReasonCodes operation.
|
|
14
|
+
* The response schema for the `listReturnReasonCodes` operation.
|
|
15
15
|
* @export
|
|
16
16
|
* @interface ListReturnReasonCodesResponse
|
|
17
17
|
*/
|
|
@@ -80,7 +80,7 @@ export interface PackageTrackingDetails {
|
|
|
80
80
|
*/
|
|
81
81
|
'currentStatus'?: CurrentStatus;
|
|
82
82
|
/**
|
|
83
|
-
* Description corresponding to the CurrentStatus value.
|
|
83
|
+
* Description corresponding to the `CurrentStatus` value.
|
|
84
84
|
* @type {string}
|
|
85
85
|
* @memberof PackageTrackingDetails
|
|
86
86
|
*/
|
|
@@ -0,0 +1,36 @@
|
|
|
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 attributes related to the payment made from customer to seller for this order.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PaymentInformation
|
|
16
|
+
*/
|
|
17
|
+
export interface PaymentInformation {
|
|
18
|
+
/**
|
|
19
|
+
* The transaction identifier of this payment.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PaymentInformation
|
|
22
|
+
*/
|
|
23
|
+
'paymentTransactionId': string;
|
|
24
|
+
/**
|
|
25
|
+
* The transaction mode of this payment.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PaymentInformation
|
|
28
|
+
*/
|
|
29
|
+
'paymentMode': string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PaymentInformation
|
|
34
|
+
*/
|
|
35
|
+
'paymentDate': string;
|
|
36
|
+
}
|
|
@@ -66,7 +66,7 @@ export interface ReturnItem {
|
|
|
66
66
|
*/
|
|
67
67
|
'statusChangedDate': string;
|
|
68
68
|
/**
|
|
69
|
-
* Identifies the return authorization used to return this item.
|
|
69
|
+
* Identifies the return authorization used to return this item. Refer to `ReturnAuthorization`.
|
|
70
70
|
* @type {string}
|
|
71
71
|
* @memberof ReturnItem
|
|
72
72
|
*/
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* The shipping method used for the fulfillment order. When this value is ScheduledDelivery
|
|
13
|
+
* The shipping method used for the fulfillment order. When this value is `ScheduledDelivery`, choose Ship for the `fulfillmentAction`. Hold is not a valid `fulfillmentAction` value when the `shippingSpeedCategory` value is `ScheduledDelivery`.
|
|
14
14
|
* @export
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { FulfillmentOrderStatus } from './fulfillment-order-status';
|
|
13
13
|
/**
|
|
14
|
-
* The request body schema for the submitFulfillmentOrderStatusUpdate operation.
|
|
14
|
+
* The request body schema for the `submitFulfillmentOrderStatusUpdate` operation.
|
|
15
15
|
* @export
|
|
16
16
|
* @interface SubmitFulfillmentOrderStatusUpdateRequest
|
|
17
17
|
*/
|
package/dist/types/src/api-model/models/submit-fulfillment-order-status-update-response.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* The response schema for the SubmitFulfillmentOrderStatusUpdate operation.
|
|
13
|
+
* The response schema for the `SubmitFulfillmentOrderStatusUpdate` operation.
|
|
14
14
|
* @export
|
|
15
15
|
* @interface SubmitFulfillmentOrderStatusUpdateResponse
|
|
16
16
|
*/
|
|
@@ -28,7 +28,7 @@ export interface UnfulfillablePreviewItem {
|
|
|
28
28
|
*/
|
|
29
29
|
'quantity': number;
|
|
30
30
|
/**
|
|
31
|
-
* A fulfillment order item identifier created with a call to the getFulfillmentPreview operation.
|
|
31
|
+
* A fulfillment order item identifier created with a call to the `getFulfillmentPreview` operation.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof UnfulfillablePreviewItem
|
|
34
34
|
*/
|
|
@@ -23,7 +23,7 @@ export interface UpdateFulfillmentOrderItem {
|
|
|
23
23
|
*/
|
|
24
24
|
'sellerSku'?: string;
|
|
25
25
|
/**
|
|
26
|
-
* Identifies the fulfillment order item to update. Created with a previous call to the createFulfillmentOrder operation.
|
|
26
|
+
* Identifies the fulfillment order item to update. Created with a previous call to the `createFulfillmentOrder` operation.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof UpdateFulfillmentOrderItem
|
|
29
29
|
*/
|
|
@@ -16,7 +16,7 @@ import { FulfillmentPolicy } from './fulfillment-policy';
|
|
|
16
16
|
import { ShippingSpeedCategory } from './shipping-speed-category';
|
|
17
17
|
import { UpdateFulfillmentOrderItem } from './update-fulfillment-order-item';
|
|
18
18
|
/**
|
|
19
|
-
* The request body schema for the updateFulfillmentOrder operation.
|
|
19
|
+
* The request body schema for the `updateFulfillmentOrder` operation.
|
|
20
20
|
* @export
|
|
21
21
|
* @interface UpdateFulfillmentOrderRequest
|
|
22
22
|
*/
|
|
@@ -28,7 +28,7 @@ export interface UpdateFulfillmentOrderRequest {
|
|
|
28
28
|
*/
|
|
29
29
|
'marketplaceId'?: string;
|
|
30
30
|
/**
|
|
31
|
-
* A fulfillment order identifier that the seller creates. This value displays as the order identifier in recipient-facing materials such as the outbound shipment packing slip. The value of DisplayableOrderId should match the order identifier that the seller provides to the recipient. The seller can use the SellerFulfillmentOrderId for this value or they can specify an alternate value if they want the recipient to reference an alternate order identifier.
|
|
31
|
+
* A fulfillment order identifier that the seller creates. This value displays as the order identifier in recipient-facing materials such as the outbound shipment packing slip. The value of `DisplayableOrderId` should match the order identifier that the seller provides to the recipient. The seller can use the `SellerFulfillmentOrderId` for this value or they can specify an alternate value if they want the recipient to reference an alternate order identifier.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof UpdateFulfillmentOrderRequest
|
|
34
34
|
*/
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sp-api-sdk/fulfillment-outbound-api-2020-07-01",
|
|
3
|
-
"author": "
|
|
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
|
+
"version": "2.1.1",
|
|
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 outbound api"
|
|
42
42
|
],
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "556cf5234c43b36ddaffa12f795a925b1c7fc63b"
|
|
44
44
|
}
|