@sp-api-sdk/orders-api-v0 1.10.0 → 1.11.2

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 (41) hide show
  1. package/dist/cjs/src/api-model/api/orders-v0-api.js +124 -3
  2. package/dist/cjs/src/api-model/models/buyer-requested-cancel.js +15 -0
  3. package/dist/cjs/src/api-model/models/get-order-regulated-info-response.js +15 -0
  4. package/dist/cjs/src/api-model/models/index.js +10 -0
  5. package/dist/cjs/src/api-model/models/order-regulated-info.js +15 -0
  6. package/dist/cjs/src/api-model/models/regulated-information-field.js +25 -0
  7. package/dist/cjs/src/api-model/models/regulated-information.js +15 -0
  8. package/dist/cjs/src/api-model/models/regulated-order-verification-status.js +28 -0
  9. package/dist/cjs/src/api-model/models/rejection-reason.js +15 -0
  10. package/dist/cjs/src/api-model/models/update-verification-status-error-response.js +15 -0
  11. package/dist/cjs/src/api-model/models/update-verification-status-request-body.js +25 -0
  12. package/dist/cjs/src/api-model/models/update-verification-status-request.js +15 -0
  13. package/dist/cjs/src/client.js +12 -0
  14. package/dist/es/src/api-model/api/orders-v0-api.js +124 -3
  15. package/dist/es/src/api-model/models/buyer-requested-cancel.js +14 -0
  16. package/dist/es/src/api-model/models/get-order-regulated-info-response.js +14 -0
  17. package/dist/es/src/api-model/models/index.js +10 -0
  18. package/dist/es/src/api-model/models/order-regulated-info.js +14 -0
  19. package/dist/es/src/api-model/models/regulated-information-field.js +22 -0
  20. package/dist/es/src/api-model/models/regulated-information.js +14 -0
  21. package/dist/es/src/api-model/models/regulated-order-verification-status.js +25 -0
  22. package/dist/es/src/api-model/models/rejection-reason.js +14 -0
  23. package/dist/es/src/api-model/models/update-verification-status-error-response.js +14 -0
  24. package/dist/es/src/api-model/models/update-verification-status-request-body.js +22 -0
  25. package/dist/es/src/api-model/models/update-verification-status-request.js +14 -0
  26. package/dist/es/src/client.js +12 -0
  27. package/dist/types/src/api-model/api/orders-v0-api.d.ts +99 -4
  28. package/dist/types/src/api-model/models/buyer-requested-cancel.d.ts +30 -0
  29. package/dist/types/src/api-model/models/get-order-regulated-info-response.d.ts +31 -0
  30. package/dist/types/src/api-model/models/index.d.ts +10 -0
  31. package/dist/types/src/api-model/models/order-item.d.ts +7 -0
  32. package/dist/types/src/api-model/models/order-regulated-info.d.ts +44 -0
  33. package/dist/types/src/api-model/models/order.d.ts +6 -0
  34. package/dist/types/src/api-model/models/regulated-information-field.d.ts +50 -0
  35. package/dist/types/src/api-model/models/regulated-information.d.ts +25 -0
  36. package/dist/types/src/api-model/models/regulated-order-verification-status.d.ts +66 -0
  37. package/dist/types/src/api-model/models/rejection-reason.d.ts +30 -0
  38. package/dist/types/src/api-model/models/update-verification-status-error-response.d.ts +24 -0
  39. package/dist/types/src/api-model/models/update-verification-status-request-body.d.ts +44 -0
  40. package/dist/types/src/api-model/models/update-verification-status-request.d.ts +25 -0
  41. package/package.json +5 -5
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Selling Partner API for Orders
3
+ * 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.
4
+ *
5
+ * The version of the OpenAPI document: v0
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 { UpdateVerificationStatusRequestBody } from './update-verification-status-request-body';
13
+ /**
14
+ * Request to update the verification status of an order containing regulated products.
15
+ * @export
16
+ * @interface UpdateVerificationStatusRequest
17
+ */
18
+ export interface UpdateVerificationStatusRequest {
19
+ /**
20
+ *
21
+ * @type {UpdateVerificationStatusRequestBody}
22
+ * @memberof UpdateVerificationStatusRequest
23
+ */
24
+ regulatedOrderVerificationStatus: UpdateVerificationStatusRequestBody;
25
+ }
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.10.0",
5
+ "version": "1.11.2",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/es/index.js",
8
8
  "types": "dist/types/index.d.ts",
@@ -26,9 +26,9 @@
26
26
  "test": "NODE_ENV='test' yarn jest"
27
27
  },
28
28
  "dependencies": {
29
- "@sp-api-sdk/auth": "^1.9.9",
30
- "@sp-api-sdk/common": "^1.7.11",
31
- "axios": "^0.26.1"
29
+ "@sp-api-sdk/auth": "^1.9.12",
30
+ "@sp-api-sdk/common": "^1.7.14",
31
+ "axios": "^0.27.2"
32
32
  },
33
33
  "repository": {
34
34
  "type": "git",
@@ -49,5 +49,5 @@
49
49
  "sp sdk",
50
50
  "orders api"
51
51
  ],
52
- "gitHead": "5a6b7114c19340645ce256eb9ef6d7df6a9cc58f"
52
+ "gitHead": "e6a6c9da0de5a001da60b1d3f34a3796a3adab0d"
53
53
  }