@sp-api-sdk/orders-api-v0 1.14.0 → 1.16.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 (28) hide show
  1. package/dist/cjs/src/api-model/api/orders-v0-api.js +57 -51
  2. package/dist/cjs/src/api-model/models/easy-ship-shipment-status.js +39 -0
  3. package/dist/cjs/src/api-model/models/electronic-invoice-status.js +28 -0
  4. package/dist/cjs/src/api-model/models/index.js +2 -0
  5. package/dist/cjs/src/api-model/models/shipment-status.js +1 -1
  6. package/dist/es/src/api-model/api/orders-v0-api.js +57 -51
  7. package/dist/es/src/api-model/models/easy-ship-shipment-status.js +36 -0
  8. package/dist/es/src/api-model/models/electronic-invoice-status.js +25 -0
  9. package/dist/es/src/api-model/models/index.js +2 -0
  10. package/dist/es/src/api-model/models/shipment-status.js +1 -1
  11. package/dist/types/src/api-model/api/orders-v0-api.d.ts +60 -51
  12. package/dist/types/src/api-model/common.d.ts +1 -0
  13. package/dist/types/src/api-model/models/automated-shipping-settings.d.ts +1 -1
  14. package/dist/types/src/api-model/models/buyer-info.d.ts +1 -1
  15. package/dist/types/src/api-model/models/easy-ship-shipment-status.d.ts +35 -0
  16. package/dist/types/src/api-model/models/electronic-invoice-status.d.ts +24 -0
  17. package/dist/types/src/api-model/models/index.d.ts +2 -0
  18. package/dist/types/src/api-model/models/model-error.d.ts +1 -1
  19. package/dist/types/src/api-model/models/order-items-inner.d.ts +2 -2
  20. package/dist/types/src/api-model/models/order-regulated-info.d.ts +1 -1
  21. package/dist/types/src/api-model/models/order.d.ts +14 -6
  22. package/dist/types/src/api-model/models/regulated-information-field.d.ts +3 -3
  23. package/dist/types/src/api-model/models/regulated-order-verification-status.d.ts +1 -1
  24. package/dist/types/src/api-model/models/rejection-reason.d.ts +1 -1
  25. package/dist/types/src/api-model/models/shipment-status.d.ts +1 -1
  26. package/dist/types/src/api-model/models/update-shipment-status-request.d.ts +3 -3
  27. package/dist/types/src/api-model/models/update-verification-status-request.d.ts +1 -1
  28. package/package.json +7 -5
@@ -0,0 +1,25 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Selling Partner API for Orders
5
+ * 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.
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ * The status of the electronic invoice.
16
+ * @export
17
+ * @enum {string}
18
+ */
19
+ export const ElectronicInvoiceStatus = {
20
+ NotRequired: 'NotRequired',
21
+ NotFound: 'NotFound',
22
+ Processing: 'Processing',
23
+ Errored: 'Errored',
24
+ Accepted: 'Accepted'
25
+ };
@@ -5,6 +5,8 @@ export * from './buyer-info';
5
5
  export * from './buyer-requested-cancel';
6
6
  export * from './buyer-tax-info';
7
7
  export * from './buyer-tax-information';
8
+ export * from './easy-ship-shipment-status';
9
+ export * from './electronic-invoice-status';
8
10
  export * from './fulfillment-instruction';
9
11
  export * from './get-order-address-response';
10
12
  export * from './get-order-buyer-info-response';
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
  /**
15
- * the status of the shipment of the order to be updated
15
+ * The shipment status to apply.
16
16
  * @export
17
17
  * @enum {string}
18
18
  */