@sp-api-sdk/orders-api-v0 1.14.0 → 1.15.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/orders-v0-api.js +39 -39
- package/dist/cjs/src/api-model/models/shipment-status.js +1 -1
- package/dist/es/src/api-model/api/orders-v0-api.js +39 -39
- package/dist/es/src/api-model/models/shipment-status.js +1 -1
- package/dist/types/src/api-model/api/orders-v0-api.d.ts +40 -40
- package/dist/types/src/api-model/models/automated-shipping-settings.d.ts +1 -1
- package/dist/types/src/api-model/models/buyer-info.d.ts +1 -1
- package/dist/types/src/api-model/models/model-error.d.ts +1 -1
- package/dist/types/src/api-model/models/order-items-inner.d.ts +2 -2
- package/dist/types/src/api-model/models/order-regulated-info.d.ts +1 -1
- package/dist/types/src/api-model/models/order.d.ts +3 -3
- package/dist/types/src/api-model/models/regulated-information-field.d.ts +3 -3
- package/dist/types/src/api-model/models/regulated-order-verification-status.d.ts +1 -1
- package/dist/types/src/api-model/models/rejection-reason.d.ts +1 -1
- package/dist/types/src/api-model/models/shipment-status.d.ts +1 -1
- package/dist/types/src/api-model/models/update-shipment-status-request.d.ts +3 -3
- package/package.json +4 -4
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
import { OrderItemsInner } from './order-items-inner';
|
|
13
13
|
import { ShipmentStatus } from './shipment-status';
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* The request body for the updateShipmentStatus operation.
|
|
16
16
|
* @export
|
|
17
17
|
* @interface UpdateShipmentStatusRequest
|
|
18
18
|
*/
|
|
19
19
|
export interface UpdateShipmentStatusRequest {
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* The unobfuscated marketplace identifier.
|
|
22
22
|
* @type {string}
|
|
23
23
|
* @memberof UpdateShipmentStatusRequest
|
|
24
24
|
*/
|
|
@@ -30,7 +30,7 @@ export interface UpdateShipmentStatusRequest {
|
|
|
30
30
|
*/
|
|
31
31
|
'shipmentStatus': ShipmentStatus;
|
|
32
32
|
/**
|
|
33
|
-
* the list of order items and quantities
|
|
33
|
+
* For partial shipment status updates, the list of order items and quantities to be updated.
|
|
34
34
|
* @type {Array<OrderItemsInner>}
|
|
35
35
|
* @memberof UpdateShipmentStatusRequest
|
|
36
36
|
*/
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@sp-api-sdk/orders-api-v0",
|
|
3
3
|
"author": "Vincent Mesquita <vincent.mesquita@bizon.solutions>",
|
|
4
4
|
"description": "The Selling Partner API for Orders helps you programmatically retrieve order information. These APIs let you develop fast, flexible, custom applications in areas like order synchronization, order research, and demand-based decision support tools.",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.15.0",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
7
7
|
"module": "dist/es/index.js",
|
|
8
8
|
"types": "dist/types/index.d.ts",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"test": "jest"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@sp-api-sdk/auth": "^1.9.
|
|
31
|
-
"@sp-api-sdk/common": "^1.9.
|
|
30
|
+
"@sp-api-sdk/auth": "^1.9.19",
|
|
31
|
+
"@sp-api-sdk/common": "^1.9.5",
|
|
32
32
|
"axios": "^0.27.2"
|
|
33
33
|
},
|
|
34
34
|
"repository": {
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"sp sdk",
|
|
51
51
|
"orders api"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "72808979582d663f043688f24d519b604f7fd2df"
|
|
54
54
|
}
|