@sp-api-sdk/vendor-orders-api-v1 2.0.7 → 2.1.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 (33) hide show
  1. package/dist/cjs/src/api-model/api/vendor-orders-api.js +79 -19
  2. package/dist/cjs/src/api-model/base.js +7 -2
  3. package/dist/cjs/src/api-model/common.js +1 -1
  4. package/dist/cjs/src/api-model/configuration.js +8 -0
  5. package/dist/es/src/api-model/api/vendor-orders-api.js +79 -19
  6. package/dist/es/src/api-model/base.js +6 -1
  7. package/dist/es/src/api-model/common.js +1 -1
  8. package/dist/es/src/api-model/configuration.js +8 -0
  9. package/dist/types/src/api-model/api/vendor-orders-api.d.ts +103 -44
  10. package/dist/types/src/api-model/base.d.ts +14 -2
  11. package/dist/types/src/api-model/configuration.d.ts +8 -0
  12. package/dist/types/src/api-model/models/acknowledgement-status-details.d.ts +1 -1
  13. package/dist/types/src/api-model/models/get-purchase-order-response.d.ts +1 -1
  14. package/dist/types/src/api-model/models/get-purchase-orders-response.d.ts +1 -1
  15. package/dist/types/src/api-model/models/get-purchase-orders-status-response.d.ts +1 -1
  16. package/dist/types/src/api-model/models/order-acknowledgement-item.d.ts +3 -3
  17. package/dist/types/src/api-model/models/order-acknowledgement.d.ts +2 -2
  18. package/dist/types/src/api-model/models/order-details.d.ts +3 -3
  19. package/dist/types/src/api-model/models/order-item-acknowledgement.d.ts +1 -1
  20. package/dist/types/src/api-model/models/order-item-status-acknowledgement-status.d.ts +2 -2
  21. package/dist/types/src/api-model/models/order-item-status-ordered-quantity.d.ts +2 -2
  22. package/dist/types/src/api-model/models/order-item-status-receiving-status.d.ts +1 -1
  23. package/dist/types/src/api-model/models/order-item-status.d.ts +4 -4
  24. package/dist/types/src/api-model/models/order-item.d.ts +2 -2
  25. package/dist/types/src/api-model/models/order-list-status.d.ts +2 -2
  26. package/dist/types/src/api-model/models/order-list.d.ts +2 -2
  27. package/dist/types/src/api-model/models/order-status.d.ts +2 -2
  28. package/dist/types/src/api-model/models/order.d.ts +1 -1
  29. package/dist/types/src/api-model/models/ordered-quantity-details.d.ts +1 -1
  30. package/dist/types/src/api-model/models/party-identification.d.ts +2 -2
  31. package/dist/types/src/api-model/models/submit-acknowledgement-request.d.ts +1 -1
  32. package/dist/types/src/api-model/models/submit-acknowledgement-response.d.ts +1 -1
  33. package/package.json +4 -4
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { ItemQuantity } from './item-quantity';
12
+ import type { ItemQuantity } from './item-quantity';
13
13
  /**
14
14
  * Details of item quantity ordered
15
15
  * @export
@@ -9,8 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { Address } from './address';
13
- import { TaxRegistrationDetails } from './tax-registration-details';
12
+ import type { Address } from './address';
13
+ import type { TaxRegistrationDetails } from './tax-registration-details';
14
14
  /**
15
15
  *
16
16
  * @export
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { OrderAcknowledgement } from './order-acknowledgement';
12
+ import type { OrderAcknowledgement } from './order-acknowledgement';
13
13
  /**
14
14
  * The request schema for the submitAcknowledgment operation.
15
15
  * @export
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { TransactionId } from './transaction-id';
12
+ import type { TransactionId } from './transaction-id';
13
13
  /**
14
14
  * The response schema for the submitAcknowledgement operation
15
15
  * @export
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@sp-api-sdk/vendor-orders-api-v1",
3
3
  "author": "Bertrand Marron <bertrand@bizon.solutions>",
4
4
  "description": "The Selling Partner API for Retail Procurement Orders provides programmatic access to vendor orders data.",
5
- "version": "2.0.7",
5
+ "version": "2.1.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.7",
22
- "axios": "^1.6.8"
21
+ "@sp-api-sdk/common": "2.0.8",
22
+ "axios": "^1.7.0"
23
23
  },
24
24
  "repository": {
25
25
  "type": "git",
@@ -40,5 +40,5 @@
40
40
  "sp sdk",
41
41
  "vendor orders api"
42
42
  ],
43
- "gitHead": "556cf5234c43b36ddaffa12f795a925b1c7fc63b"
43
+ "gitHead": "5a245a25a9f1765c825e2178668d4b0f4e44689b"
44
44
  }