@sp-api-sdk/orders-api-v0 1.8.5

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 (117) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +58 -0
  3. package/dist/cjs/index.js +6 -0
  4. package/dist/cjs/src/api-model/api/orders-v0-api.js +513 -0
  5. package/dist/cjs/src/api-model/api.js +17 -0
  6. package/dist/cjs/src/api-model/base.js +62 -0
  7. package/dist/cjs/src/api-model/common.js +137 -0
  8. package/dist/cjs/src/api-model/configuration.js +42 -0
  9. package/dist/cjs/src/api-model/index.js +19 -0
  10. package/dist/cjs/src/api-model/models/address.js +25 -0
  11. package/dist/cjs/src/api-model/models/buyer-customized-info-detail.js +15 -0
  12. package/dist/cjs/src/api-model/models/buyer-info.js +15 -0
  13. package/dist/cjs/src/api-model/models/buyer-tax-info.js +15 -0
  14. package/dist/cjs/src/api-model/models/fulfillment-instruction.js +15 -0
  15. package/dist/cjs/src/api-model/models/get-order-address-response.js +15 -0
  16. package/dist/cjs/src/api-model/models/get-order-buyer-info-response.js +15 -0
  17. package/dist/cjs/src/api-model/models/get-order-items-buyer-info-response.js +15 -0
  18. package/dist/cjs/src/api-model/models/get-order-items-response.js +15 -0
  19. package/dist/cjs/src/api-model/models/get-order-response.js +15 -0
  20. package/dist/cjs/src/api-model/models/get-orders-response.js +15 -0
  21. package/dist/cjs/src/api-model/models/index.js +31 -0
  22. package/dist/cjs/src/api-model/models/item-buyer-info.js +15 -0
  23. package/dist/cjs/src/api-model/models/marketplace-tax-info.js +15 -0
  24. package/dist/cjs/src/api-model/models/model-error.js +15 -0
  25. package/dist/cjs/src/api-model/models/money.js +15 -0
  26. package/dist/cjs/src/api-model/models/order-address.js +15 -0
  27. package/dist/cjs/src/api-model/models/order-buyer-info.js +15 -0
  28. package/dist/cjs/src/api-model/models/order-item-buyer-info.js +15 -0
  29. package/dist/cjs/src/api-model/models/order-item.js +25 -0
  30. package/dist/cjs/src/api-model/models/order-items-buyer-info-list.js +15 -0
  31. package/dist/cjs/src/api-model/models/order-items-list.js +15 -0
  32. package/dist/cjs/src/api-model/models/order.js +62 -0
  33. package/dist/cjs/src/api-model/models/orders-list.js +15 -0
  34. package/dist/cjs/src/api-model/models/payment-execution-detail-item.js +15 -0
  35. package/dist/cjs/src/api-model/models/points-granted-detail.js +15 -0
  36. package/dist/cjs/src/api-model/models/product-info-detail.js +15 -0
  37. package/dist/cjs/src/api-model/models/tax-classification.js +15 -0
  38. package/dist/cjs/src/api-model/models/tax-collection.js +32 -0
  39. package/dist/cjs/src/client.js +65 -0
  40. package/dist/cjs/src/error.js +10 -0
  41. package/dist/es/index.js +3 -0
  42. package/dist/es/src/api-model/api/orders-v0-api.js +505 -0
  43. package/dist/es/src/api-model/api.js +14 -0
  44. package/dist/es/src/api-model/base.js +56 -0
  45. package/dist/es/src/api-model/common.js +125 -0
  46. package/dist/es/src/api-model/configuration.js +38 -0
  47. package/dist/es/src/api-model/index.js +16 -0
  48. package/dist/es/src/api-model/models/address.js +22 -0
  49. package/dist/es/src/api-model/models/buyer-customized-info-detail.js +14 -0
  50. package/dist/es/src/api-model/models/buyer-info.js +14 -0
  51. package/dist/es/src/api-model/models/buyer-tax-info.js +14 -0
  52. package/dist/es/src/api-model/models/fulfillment-instruction.js +14 -0
  53. package/dist/es/src/api-model/models/get-order-address-response.js +14 -0
  54. package/dist/es/src/api-model/models/get-order-buyer-info-response.js +14 -0
  55. package/dist/es/src/api-model/models/get-order-items-buyer-info-response.js +14 -0
  56. package/dist/es/src/api-model/models/get-order-items-response.js +14 -0
  57. package/dist/es/src/api-model/models/get-order-response.js +14 -0
  58. package/dist/es/src/api-model/models/get-orders-response.js +14 -0
  59. package/dist/es/src/api-model/models/index.js +28 -0
  60. package/dist/es/src/api-model/models/item-buyer-info.js +14 -0
  61. package/dist/es/src/api-model/models/marketplace-tax-info.js +14 -0
  62. package/dist/es/src/api-model/models/model-error.js +14 -0
  63. package/dist/es/src/api-model/models/money.js +14 -0
  64. package/dist/es/src/api-model/models/order-address.js +14 -0
  65. package/dist/es/src/api-model/models/order-buyer-info.js +14 -0
  66. package/dist/es/src/api-model/models/order-item-buyer-info.js +14 -0
  67. package/dist/es/src/api-model/models/order-item.js +22 -0
  68. package/dist/es/src/api-model/models/order-items-buyer-info-list.js +14 -0
  69. package/dist/es/src/api-model/models/order-items-list.js +14 -0
  70. package/dist/es/src/api-model/models/order.js +59 -0
  71. package/dist/es/src/api-model/models/orders-list.js +14 -0
  72. package/dist/es/src/api-model/models/payment-execution-detail-item.js +14 -0
  73. package/dist/es/src/api-model/models/points-granted-detail.js +14 -0
  74. package/dist/es/src/api-model/models/product-info-detail.js +14 -0
  75. package/dist/es/src/api-model/models/tax-classification.js +14 -0
  76. package/dist/es/src/api-model/models/tax-collection.js +29 -0
  77. package/dist/es/src/client.js +61 -0
  78. package/dist/es/src/error.js +6 -0
  79. package/dist/types/index.d.ts +3 -0
  80. package/dist/types/src/api-model/api/orders-v0-api.d.ts +460 -0
  81. package/dist/types/src/api-model/api.d.ts +12 -0
  82. package/dist/types/src/api-model/base.d.ts +55 -0
  83. package/dist/types/src/api-model/common.d.ts +65 -0
  84. package/dist/types/src/api-model/configuration.d.ts +83 -0
  85. package/dist/types/src/api-model/index.d.ts +14 -0
  86. package/dist/types/src/api-model/models/address.d.ts +104 -0
  87. package/dist/types/src/api-model/models/buyer-customized-info-detail.d.ts +24 -0
  88. package/dist/types/src/api-model/models/buyer-info.d.ts +49 -0
  89. package/dist/types/src/api-model/models/buyer-tax-info.d.ts +37 -0
  90. package/dist/types/src/api-model/models/fulfillment-instruction.d.ts +24 -0
  91. package/dist/types/src/api-model/models/get-order-address-response.d.ts +31 -0
  92. package/dist/types/src/api-model/models/get-order-buyer-info-response.d.ts +31 -0
  93. package/dist/types/src/api-model/models/get-order-items-buyer-info-response.d.ts +31 -0
  94. package/dist/types/src/api-model/models/get-order-items-response.d.ts +31 -0
  95. package/dist/types/src/api-model/models/get-order-response.d.ts +31 -0
  96. package/dist/types/src/api-model/models/get-orders-response.d.ts +31 -0
  97. package/dist/types/src/api-model/models/index.d.ts +28 -0
  98. package/dist/types/src/api-model/models/item-buyer-info.d.ts +50 -0
  99. package/dist/types/src/api-model/models/marketplace-tax-info.d.ts +25 -0
  100. package/dist/types/src/api-model/models/model-error.d.ts +36 -0
  101. package/dist/types/src/api-model/models/money.d.ts +30 -0
  102. package/dist/types/src/api-model/models/order-address.d.ts +31 -0
  103. package/dist/types/src/api-model/models/order-buyer-info.d.ts +55 -0
  104. package/dist/types/src/api-model/models/order-item-buyer-info.d.ts +56 -0
  105. package/dist/types/src/api-model/models/order-item.d.ts +229 -0
  106. package/dist/types/src/api-model/models/order-items-buyer-info-list.d.ts +37 -0
  107. package/dist/types/src/api-model/models/order-items-list.d.ts +37 -0
  108. package/dist/types/src/api-model/models/order.d.ts +306 -0
  109. package/dist/types/src/api-model/models/orders-list.d.ts +43 -0
  110. package/dist/types/src/api-model/models/payment-execution-detail-item.d.ts +31 -0
  111. package/dist/types/src/api-model/models/points-granted-detail.d.ts +31 -0
  112. package/dist/types/src/api-model/models/product-info-detail.d.ts +24 -0
  113. package/dist/types/src/api-model/models/tax-classification.d.ts +30 -0
  114. package/dist/types/src/api-model/models/tax-collection.d.ts +44 -0
  115. package/dist/types/src/client.d.ts +13 -0
  116. package/dist/types/src/error.d.ts +3 -0
  117. package/package.json +53 -0
@@ -0,0 +1,14 @@
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
+ export * from './api/orders-v0-api';
@@ -0,0 +1,56 @@
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
+ // Some imports not used depending on template conditions
15
+ // @ts-ignore
16
+ import globalAxios from 'axios';
17
+ export const BASE_PATH = "https://sellingpartnerapi-na.amazon.com".replace(/\/+$/, "");
18
+ /**
19
+ *
20
+ * @export
21
+ */
22
+ export const COLLECTION_FORMATS = {
23
+ csv: ",",
24
+ ssv: " ",
25
+ tsv: "\t",
26
+ pipes: "|",
27
+ };
28
+ /**
29
+ *
30
+ * @export
31
+ * @class BaseAPI
32
+ */
33
+ export class BaseAPI {
34
+ constructor(configuration, basePath = BASE_PATH, axios = globalAxios) {
35
+ this.basePath = basePath;
36
+ this.axios = axios;
37
+ if (configuration) {
38
+ this.configuration = configuration;
39
+ this.basePath = configuration.basePath || this.basePath;
40
+ }
41
+ }
42
+ }
43
+ ;
44
+ /**
45
+ *
46
+ * @export
47
+ * @class RequiredError
48
+ * @extends {Error}
49
+ */
50
+ export class RequiredError extends Error {
51
+ constructor(field, msg) {
52
+ super(msg);
53
+ this.field = field;
54
+ this.name = "RequiredError";
55
+ }
56
+ }
@@ -0,0 +1,125 @@
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
+ import { RequiredError } from "./base";
15
+ /**
16
+ *
17
+ * @export
18
+ */
19
+ export const DUMMY_BASE_URL = 'https://example.com';
20
+ /**
21
+ *
22
+ * @throws {RequiredError}
23
+ * @export
24
+ */
25
+ export const assertParamExists = function (functionName, paramName, paramValue) {
26
+ if (paramValue === null || paramValue === undefined) {
27
+ throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
28
+ }
29
+ };
30
+ /**
31
+ *
32
+ * @export
33
+ */
34
+ export const setApiKeyToObject = async function (object, keyParamName, configuration) {
35
+ if (configuration && configuration.apiKey) {
36
+ const localVarApiKeyValue = typeof configuration.apiKey === 'function'
37
+ ? await configuration.apiKey(keyParamName)
38
+ : await configuration.apiKey;
39
+ object[keyParamName] = localVarApiKeyValue;
40
+ }
41
+ };
42
+ /**
43
+ *
44
+ * @export
45
+ */
46
+ export const setBasicAuthToObject = function (object, configuration) {
47
+ if (configuration && (configuration.username || configuration.password)) {
48
+ object["auth"] = { username: configuration.username, password: configuration.password };
49
+ }
50
+ };
51
+ /**
52
+ *
53
+ * @export
54
+ */
55
+ export const setBearerAuthToObject = async function (object, configuration) {
56
+ if (configuration && configuration.accessToken) {
57
+ const accessToken = typeof configuration.accessToken === 'function'
58
+ ? await configuration.accessToken()
59
+ : await configuration.accessToken;
60
+ object["Authorization"] = "Bearer " + accessToken;
61
+ }
62
+ };
63
+ /**
64
+ *
65
+ * @export
66
+ */
67
+ export const setOAuthToObject = async function (object, name, scopes, configuration) {
68
+ if (configuration && configuration.accessToken) {
69
+ const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
70
+ ? await configuration.accessToken(name, scopes)
71
+ : await configuration.accessToken;
72
+ object["Authorization"] = "Bearer " + localVarAccessTokenValue;
73
+ }
74
+ };
75
+ /**
76
+ *
77
+ * @export
78
+ */
79
+ export const setSearchParams = function (url, ...objects) {
80
+ const searchParams = new URLSearchParams(url.search);
81
+ for (const object of objects) {
82
+ for (const key in object) {
83
+ if (Array.isArray(object[key])) {
84
+ searchParams.delete(key);
85
+ for (const item of object[key]) {
86
+ searchParams.append(key, item);
87
+ }
88
+ }
89
+ else {
90
+ searchParams.set(key, object[key]);
91
+ }
92
+ }
93
+ }
94
+ url.search = searchParams.toString();
95
+ };
96
+ /**
97
+ *
98
+ * @export
99
+ */
100
+ export const serializeDataIfNeeded = function (value, requestOptions, configuration) {
101
+ const nonString = typeof value !== 'string';
102
+ const needsSerialization = nonString && configuration && configuration.isJsonMime
103
+ ? configuration.isJsonMime(requestOptions.headers['Content-Type'])
104
+ : nonString;
105
+ return needsSerialization
106
+ ? JSON.stringify(value !== undefined ? value : {})
107
+ : (value || "");
108
+ };
109
+ /**
110
+ *
111
+ * @export
112
+ */
113
+ export const toPathString = function (url) {
114
+ return url.pathname + url.search + url.hash;
115
+ };
116
+ /**
117
+ *
118
+ * @export
119
+ */
120
+ export const createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
121
+ return (axios = globalAxios, basePath = BASE_PATH) => {
122
+ const axiosRequestArgs = { ...axiosArgs.options, url: (configuration?.basePath || basePath) + axiosArgs.url };
123
+ return axios.request(axiosRequestArgs);
124
+ };
125
+ };
@@ -0,0 +1,38 @@
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
+ export class Configuration {
15
+ constructor(param = {}) {
16
+ this.apiKey = param.apiKey;
17
+ this.username = param.username;
18
+ this.password = param.password;
19
+ this.accessToken = param.accessToken;
20
+ this.basePath = param.basePath;
21
+ this.baseOptions = param.baseOptions;
22
+ this.formDataCtor = param.formDataCtor;
23
+ }
24
+ /**
25
+ * Check if the given MIME is a JSON MIME.
26
+ * JSON MIME examples:
27
+ * application/json
28
+ * application/json; charset=UTF8
29
+ * APPLICATION/JSON
30
+ * application/vnd.company+json
31
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
32
+ * @return True if the given MIME is JSON, false otherwise.
33
+ */
34
+ isJsonMime(mime) {
35
+ const jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
36
+ return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
37
+ }
38
+ }
@@ -0,0 +1,16 @@
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
+ export * from "./api";
15
+ export * from "./configuration";
16
+ export * from "./models";
@@ -0,0 +1,22 @@
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
+ * @export
16
+ * @enum {string}
17
+ */
18
+ export var AddressAddressTypeEnum;
19
+ (function (AddressAddressTypeEnum) {
20
+ AddressAddressTypeEnum["Residential"] = "Residential";
21
+ AddressAddressTypeEnum["Commercial"] = "Commercial";
22
+ })(AddressAddressTypeEnum || (AddressAddressTypeEnum = {}));
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,28 @@
1
+ export * from './address';
2
+ export * from './buyer-customized-info-detail';
3
+ export * from './buyer-info';
4
+ export * from './buyer-tax-info';
5
+ export * from './fulfillment-instruction';
6
+ export * from './get-order-address-response';
7
+ export * from './get-order-buyer-info-response';
8
+ export * from './get-order-items-buyer-info-response';
9
+ export * from './get-order-items-response';
10
+ export * from './get-order-response';
11
+ export * from './get-orders-response';
12
+ export * from './item-buyer-info';
13
+ export * from './marketplace-tax-info';
14
+ export * from './model-error';
15
+ export * from './money';
16
+ export * from './order';
17
+ export * from './order-address';
18
+ export * from './order-buyer-info';
19
+ export * from './order-item';
20
+ export * from './order-item-buyer-info';
21
+ export * from './order-items-buyer-info-list';
22
+ export * from './order-items-list';
23
+ export * from './orders-list';
24
+ export * from './payment-execution-detail-item';
25
+ export * from './points-granted-detail';
26
+ export * from './product-info-detail';
27
+ export * from './tax-classification';
28
+ export * from './tax-collection';