@teemill/orders 1.3.0 → 1.5.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 (73) hide show
  1. package/.openapi-generator/FILES +1 -0
  2. package/.openapi-generator/VERSION +1 -1
  3. package/README.md +2 -2
  4. package/dist/apis/OrdersApi.d.ts +16 -1
  5. package/dist/apis/OrdersApi.js +73 -1
  6. package/dist/models/Address.d.ts +1 -1
  7. package/dist/models/Address.js +1 -1
  8. package/dist/models/ApiError.d.ts +1 -1
  9. package/dist/models/ApiError.js +1 -1
  10. package/dist/models/ConfirmOrderFulfillment.d.ts +1 -1
  11. package/dist/models/ConfirmOrderFulfillment.js +1 -1
  12. package/dist/models/ConfirmOrderRequest.d.ts +1 -1
  13. package/dist/models/ConfirmOrderRequest.js +1 -1
  14. package/dist/models/ConfirmOrderValidationError.d.ts +1 -1
  15. package/dist/models/ConfirmOrderValidationError.js +1 -1
  16. package/dist/models/ContactInformation.d.ts +1 -1
  17. package/dist/models/ContactInformation.js +1 -1
  18. package/dist/models/DeliveryEstimates.d.ts +1 -1
  19. package/dist/models/DeliveryEstimates.js +1 -1
  20. package/dist/models/ExportOrders202Response.d.ts +31 -0
  21. package/dist/models/ExportOrders202Response.js +50 -0
  22. package/dist/models/Fulfillment.d.ts +1 -1
  23. package/dist/models/Fulfillment.js +1 -1
  24. package/dist/models/FulfillmentItem.d.ts +1 -1
  25. package/dist/models/FulfillmentItem.js +1 -1
  26. package/dist/models/Order.d.ts +1 -1
  27. package/dist/models/Order.js +1 -1
  28. package/dist/models/OrderItem.d.ts +1 -1
  29. package/dist/models/OrderItem.js +1 -1
  30. package/dist/models/OrderItemTaxPrice.d.ts +1 -1
  31. package/dist/models/OrderItemTaxPrice.js +1 -1
  32. package/dist/models/OrderTracking.d.ts +1 -1
  33. package/dist/models/OrderTracking.js +1 -1
  34. package/dist/models/OrdersResponse.d.ts +1 -1
  35. package/dist/models/OrdersResponse.js +1 -1
  36. package/dist/models/Origin.d.ts +1 -1
  37. package/dist/models/Origin.js +1 -1
  38. package/dist/models/Price.d.ts +1 -1
  39. package/dist/models/Price.js +1 -1
  40. package/dist/models/ShippingMethod.d.ts +1 -1
  41. package/dist/models/ShippingMethod.js +1 -1
  42. package/dist/models/Status.d.ts +1 -1
  43. package/dist/models/Status.js +1 -1
  44. package/dist/models/StatusHistoryItem.d.ts +1 -1
  45. package/dist/models/StatusHistoryItem.js +1 -1
  46. package/dist/models/index.d.ts +1 -0
  47. package/dist/models/index.js +1 -0
  48. package/dist/runtime.d.ts +1 -1
  49. package/dist/runtime.js +1 -1
  50. package/package.json +1 -1
  51. package/src/apis/OrdersApi.ts +81 -8
  52. package/src/models/Address.ts +1 -1
  53. package/src/models/ApiError.ts +1 -1
  54. package/src/models/ConfirmOrderFulfillment.ts +1 -1
  55. package/src/models/ConfirmOrderRequest.ts +1 -1
  56. package/src/models/ConfirmOrderValidationError.ts +1 -1
  57. package/src/models/ContactInformation.ts +1 -1
  58. package/src/models/DeliveryEstimates.ts +1 -1
  59. package/src/models/ExportOrders202Response.ts +65 -0
  60. package/src/models/Fulfillment.ts +1 -1
  61. package/src/models/FulfillmentItem.ts +1 -1
  62. package/src/models/Order.ts +1 -1
  63. package/src/models/OrderItem.ts +1 -1
  64. package/src/models/OrderItemTaxPrice.ts +1 -1
  65. package/src/models/OrderTracking.ts +1 -1
  66. package/src/models/OrdersResponse.ts +1 -1
  67. package/src/models/Origin.ts +1 -1
  68. package/src/models/Price.ts +1 -1
  69. package/src/models/ShippingMethod.ts +1 -1
  70. package/src/models/Status.ts +1 -1
  71. package/src/models/StatusHistoryItem.ts +1 -1
  72. package/src/models/index.ts +1 -0
  73. package/src/runtime.ts +1 -1
@@ -12,6 +12,7 @@ src/models/ConfirmOrderRequest.ts
12
12
  src/models/ConfirmOrderValidationError.ts
13
13
  src/models/ContactInformation.ts
14
14
  src/models/DeliveryEstimates.ts
15
+ src/models/ExportOrders202Response.ts
15
16
  src/models/Fulfillment.ts
16
17
  src/models/FulfillmentItem.ts
17
18
  src/models/Order.ts
@@ -1 +1 @@
1
- 7.2.0-SNAPSHOT
1
+ 7.3.0-SNAPSHOT
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/orders@1.3.0
1
+ ## @teemill/orders@1.5.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/orders@1.3.0 --save
39
+ npm install @teemill/orders@1.5.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,6 +22,11 @@ export interface CreateOrderRequest {
22
22
  order: Order;
23
23
  fields?: string;
24
24
  }
25
+ export interface ExportOrdersRequest {
26
+ project: string;
27
+ start: Date;
28
+ end?: Date;
29
+ }
25
30
  export interface GetOrderRequest {
26
31
  project: string;
27
32
  orderId: string;
@@ -62,6 +67,16 @@ export declare class OrdersApi extends runtime.BaseAPI {
62
67
  * Create order
63
68
  */
64
69
  createOrder(project: string, order: Order, optionalParameters?: runtime.OptionalOnly<CreateOrderRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Order>;
70
+ /**
71
+ * Export orders as a CSV file
72
+ * Export orders
73
+ */
74
+ exportOrdersRaw(requestParameters: ExportOrdersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Blob>>;
75
+ /**
76
+ * Export orders as a CSV file
77
+ * Export orders
78
+ */
79
+ exportOrders(project: string, start: Date, optionalParameters?: runtime.OptionalOnly<ExportOrdersRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Blob>;
65
80
  /**
66
81
  * Get an order
67
82
  * Get order
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -231,6 +231,78 @@ var OrdersApi = /** @class */ (function (_super) {
231
231
  });
232
232
  });
233
233
  };
234
+ /**
235
+ * Export orders as a CSV file
236
+ * Export orders
237
+ */
238
+ OrdersApi.prototype.exportOrdersRaw = function (requestParameters, initOverrides) {
239
+ return __awaiter(this, void 0, void 0, function () {
240
+ var queryParameters, headerParameters, _a, _b, response;
241
+ return __generator(this, function (_c) {
242
+ switch (_c.label) {
243
+ case 0:
244
+ if (requestParameters.project === null || requestParameters.project === undefined) {
245
+ throw new runtime.RequiredError('project', 'Required parameter requestParameters.project was null or undefined when calling exportOrders.');
246
+ }
247
+ if (requestParameters.start === null || requestParameters.start === undefined) {
248
+ throw new runtime.RequiredError('start', 'Required parameter requestParameters.start was null or undefined when calling exportOrders.');
249
+ }
250
+ queryParameters = {};
251
+ if (requestParameters.project !== undefined) {
252
+ queryParameters['project'] = requestParameters.project;
253
+ }
254
+ if (requestParameters.start !== undefined) {
255
+ queryParameters['start'] = requestParameters.start.toISOString();
256
+ }
257
+ if (requestParameters.end !== undefined) {
258
+ queryParameters['end'] = requestParameters.end.toISOString();
259
+ }
260
+ headerParameters = {};
261
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
262
+ // oauth required
263
+ _a = headerParameters;
264
+ _b = "Authorization";
265
+ return [4 /*yield*/, this.configuration.accessToken("session-oauth", [])];
266
+ case 1:
267
+ // oauth required
268
+ _a[_b] = _c.sent();
269
+ _c.label = 2;
270
+ case 2:
271
+ if (this.configuration && this.configuration.apiKey) {
272
+ headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
273
+ }
274
+ return [4 /*yield*/, this.request({
275
+ path: "/v1/orders/export",
276
+ method: 'GET',
277
+ headers: headerParameters,
278
+ query: queryParameters,
279
+ }, initOverrides)];
280
+ case 3:
281
+ response = _c.sent();
282
+ return [2 /*return*/, new runtime.BlobApiResponse(response)];
283
+ }
284
+ });
285
+ });
286
+ };
287
+ /**
288
+ * Export orders as a CSV file
289
+ * Export orders
290
+ */
291
+ OrdersApi.prototype.exportOrders = function (project, start, optionalParameters, initOverrides) {
292
+ if (optionalParameters === void 0) { optionalParameters = {}; }
293
+ return __awaiter(this, void 0, void 0, function () {
294
+ var response;
295
+ return __generator(this, function (_a) {
296
+ switch (_a.label) {
297
+ case 0: return [4 /*yield*/, this.exportOrdersRaw(__assign({ project: project, start: start }, optionalParameters), initOverrides)];
298
+ case 1:
299
+ response = _a.sent();
300
+ return [4 /*yield*/, response.value()];
301
+ case 2: return [2 /*return*/, _a.sent()];
302
+ }
303
+ });
304
+ });
305
+ };
234
306
  /**
235
307
  * Get an order
236
308
  * Get order
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Orders API
3
+ * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
+ *
5
+ * The version of the OpenAPI document: 1.5.0
6
+ * Contact: hello@teemill.com
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
+ /**
13
+ *
14
+ * @export
15
+ * @interface ExportOrders202Response
16
+ */
17
+ export interface ExportOrders202Response {
18
+ /**
19
+ * A message describing the export status
20
+ * @type {string}
21
+ * @memberof ExportOrders202Response
22
+ */
23
+ message?: string;
24
+ }
25
+ /**
26
+ * Check if a given object implements the ExportOrders202Response interface.
27
+ */
28
+ export declare function instanceOfExportOrders202Response(value: object): boolean;
29
+ export declare function ExportOrders202ResponseFromJSON(json: any): ExportOrders202Response;
30
+ export declare function ExportOrders202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportOrders202Response;
31
+ export declare function ExportOrders202ResponseToJSON(value?: ExportOrders202Response | null): any;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Orders API
6
+ * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
+ *
8
+ * The version of the OpenAPI document: 1.5.0
9
+ * Contact: hello@teemill.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ExportOrders202ResponseToJSON = exports.ExportOrders202ResponseFromJSONTyped = exports.ExportOrders202ResponseFromJSON = exports.instanceOfExportOrders202Response = void 0;
17
+ var runtime_1 = require("../runtime");
18
+ /**
19
+ * Check if a given object implements the ExportOrders202Response interface.
20
+ */
21
+ function instanceOfExportOrders202Response(value) {
22
+ var isInstance = true;
23
+ return isInstance;
24
+ }
25
+ exports.instanceOfExportOrders202Response = instanceOfExportOrders202Response;
26
+ function ExportOrders202ResponseFromJSON(json) {
27
+ return ExportOrders202ResponseFromJSONTyped(json, false);
28
+ }
29
+ exports.ExportOrders202ResponseFromJSON = ExportOrders202ResponseFromJSON;
30
+ function ExportOrders202ResponseFromJSONTyped(json, ignoreDiscriminator) {
31
+ if ((json === undefined) || (json === null)) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'message': !(0, runtime_1.exists)(json, 'message') ? undefined : json['message'],
36
+ };
37
+ }
38
+ exports.ExportOrders202ResponseFromJSONTyped = ExportOrders202ResponseFromJSONTyped;
39
+ function ExportOrders202ResponseToJSON(value) {
40
+ if (value === undefined) {
41
+ return undefined;
42
+ }
43
+ if (value === null) {
44
+ return null;
45
+ }
46
+ return {
47
+ 'message': value.message,
48
+ };
49
+ }
50
+ exports.ExportOrders202ResponseToJSON = ExportOrders202ResponseToJSON;
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,6 +5,7 @@ export * from './ConfirmOrderRequest';
5
5
  export * from './ConfirmOrderValidationError';
6
6
  export * from './ContactInformation';
7
7
  export * from './DeliveryEstimates';
8
+ export * from './ExportOrders202Response';
8
9
  export * from './Fulfillment';
9
10
  export * from './FulfillmentItem';
10
11
  export * from './Order';
@@ -23,6 +23,7 @@ __exportStar(require("./ConfirmOrderRequest"), exports);
23
23
  __exportStar(require("./ConfirmOrderValidationError"), exports);
24
24
  __exportStar(require("./ContactInformation"), exports);
25
25
  __exportStar(require("./DeliveryEstimates"), exports);
26
+ __exportStar(require("./ExportOrders202Response"), exports);
26
27
  __exportStar(require("./Fulfillment"), exports);
27
28
  __exportStar(require("./FulfillmentItem"), exports);
28
29
  __exportStar(require("./Order"), exports);
package/dist/runtime.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Orders API
3
3
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 1.3.0
5
+ * The version of the OpenAPI document: 1.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/runtime.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Orders API
6
6
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 1.3.0
8
+ * The version of the OpenAPI document: 1.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/orders",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "description": "OpenAPI client for @teemill/orders",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,6 +18,7 @@ import type {
18
18
  ApiError,
19
19
  ConfirmOrderRequest,
20
20
  ConfirmOrderValidationError,
21
+ ExportOrders202Response,
21
22
  Order,
22
23
  OrdersResponse,
23
24
  Status,
@@ -29,6 +30,8 @@ import {
29
30
  ConfirmOrderRequestToJSON,
30
31
  ConfirmOrderValidationErrorFromJSON,
31
32
  ConfirmOrderValidationErrorToJSON,
33
+ ExportOrders202ResponseFromJSON,
34
+ ExportOrders202ResponseToJSON,
32
35
  OrderFromJSON,
33
36
  OrderToJSON,
34
37
  OrdersResponseFromJSON,
@@ -50,6 +53,12 @@ export interface CreateOrderRequest {
50
53
  fields?: string;
51
54
  }
52
55
 
56
+ export interface ExportOrdersRequest {
57
+ project: string;
58
+ start: Date;
59
+ end?: Date;
60
+ }
61
+
53
62
  export interface GetOrderRequest {
54
63
  project: string;
55
64
  orderId: string;
@@ -135,9 +144,7 @@ export class OrdersApi extends runtime.BaseAPI {
135
144
  ): Promise<Order> {
136
145
  const response = await this.confirmOrderRaw(
137
146
  {
138
- project: project,
139
- orderId: orderId,
140
- confirmOrderRequest: confirmOrderRequest,
147
+ project: project,orderId: orderId,confirmOrderRequest: confirmOrderRequest,
141
148
  ...optionalParameters,
142
149
  },
143
150
  initOverrides
@@ -204,8 +211,75 @@ export class OrdersApi extends runtime.BaseAPI {
204
211
  ): Promise<Order> {
205
212
  const response = await this.createOrderRaw(
206
213
  {
207
- project: project,
208
- order: order,
214
+ project: project,order: order,
215
+ ...optionalParameters,
216
+ },
217
+ initOverrides
218
+ );
219
+
220
+ return await response.value();
221
+ }
222
+
223
+ /**
224
+ * Export orders as a CSV file
225
+ * Export orders
226
+ */
227
+ async exportOrdersRaw(requestParameters: ExportOrdersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Blob>> {
228
+ if (requestParameters.project === null || requestParameters.project === undefined) {
229
+ throw new runtime.RequiredError('project','Required parameter requestParameters.project was null or undefined when calling exportOrders.');
230
+ }
231
+
232
+ if (requestParameters.start === null || requestParameters.start === undefined) {
233
+ throw new runtime.RequiredError('start','Required parameter requestParameters.start was null or undefined when calling exportOrders.');
234
+ }
235
+
236
+ const queryParameters: any = {};
237
+
238
+ if (requestParameters.project !== undefined) {
239
+ queryParameters['project'] = requestParameters.project;
240
+ }
241
+
242
+ if (requestParameters.start !== undefined) {
243
+ queryParameters['start'] = (requestParameters.start as any).toISOString();
244
+ }
245
+
246
+ if (requestParameters.end !== undefined) {
247
+ queryParameters['end'] = (requestParameters.end as any).toISOString();
248
+ }
249
+
250
+ const headerParameters: runtime.HTTPHeaders = {};
251
+
252
+ if (this.configuration && this.configuration.accessToken) {
253
+ // oauth required
254
+ headerParameters["Authorization"] = await this.configuration.accessToken("session-oauth", []);
255
+ }
256
+
257
+ if (this.configuration && this.configuration.apiKey) {
258
+ headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
259
+ }
260
+
261
+ const response = await this.request({
262
+ path: `/v1/orders/export`,
263
+ method: 'GET',
264
+ headers: headerParameters,
265
+ query: queryParameters,
266
+ }, initOverrides);
267
+
268
+ return new runtime.BlobApiResponse(response);
269
+ }
270
+
271
+ /**
272
+ * Export orders as a CSV file
273
+ * Export orders
274
+ */
275
+ async exportOrders(
276
+ project: string, start: Date,
277
+ optionalParameters: runtime.OptionalOnly<ExportOrdersRequest> = {},
278
+ initOverrides?: RequestInit | runtime.InitOverrideFunction
279
+ ): Promise<Blob> {
280
+ const response = await this.exportOrdersRaw(
281
+ {
282
+ project: project,start: start,
209
283
  ...optionalParameters,
210
284
  },
211
285
  initOverrides
@@ -269,8 +343,7 @@ export class OrdersApi extends runtime.BaseAPI {
269
343
  ): Promise<Order> {
270
344
  const response = await this.getOrderRaw(
271
345
  {
272
- project: project,
273
- orderId: orderId,
346
+ project: project,orderId: orderId,
274
347
  ...optionalParameters,
275
348
  },
276
349
  initOverrides
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,65 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Orders API
5
+ * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ *
7
+ * The version of the OpenAPI document: 1.5.0
8
+ * Contact: hello@teemill.com
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
+ import { exists, mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface ExportOrders202Response
20
+ */
21
+ export interface ExportOrders202Response {
22
+ /**
23
+ * A message describing the export status
24
+ * @type {string}
25
+ * @memberof ExportOrders202Response
26
+ */
27
+ message?: string;
28
+ }
29
+
30
+ /**
31
+ * Check if a given object implements the ExportOrders202Response interface.
32
+ */
33
+ export function instanceOfExportOrders202Response(value: object): boolean {
34
+ let isInstance = true;
35
+
36
+ return isInstance;
37
+ }
38
+
39
+ export function ExportOrders202ResponseFromJSON(json: any): ExportOrders202Response {
40
+ return ExportOrders202ResponseFromJSONTyped(json, false);
41
+ }
42
+
43
+ export function ExportOrders202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportOrders202Response {
44
+ if ((json === undefined) || (json === null)) {
45
+ return json;
46
+ }
47
+ return {
48
+
49
+ 'message': !exists(json, 'message') ? undefined : json['message'],
50
+ };
51
+ }
52
+
53
+ export function ExportOrders202ResponseToJSON(value?: ExportOrders202Response | null): any {
54
+ if (value === undefined) {
55
+ return undefined;
56
+ }
57
+ if (value === null) {
58
+ return null;
59
+ }
60
+ return {
61
+
62
+ 'message': value.message,
63
+ };
64
+ }
65
+
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -7,6 +7,7 @@ export * from './ConfirmOrderRequest';
7
7
  export * from './ConfirmOrderValidationError';
8
8
  export * from './ContactInformation';
9
9
  export * from './DeliveryEstimates';
10
+ export * from './ExportOrders202Response';
10
11
  export * from './Fulfillment';
11
12
  export * from './FulfillmentItem';
12
13
  export * from './Order';
package/src/runtime.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Orders API
5
5
  * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 1.3.0
7
+ * The version of the OpenAPI document: 1.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).