@teemill/orders 1.5.0 → 1.5.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 (69) hide show
  1. package/.openapi-generator/VERSION +1 -1
  2. package/README.md +5 -4
  3. package/dist/apis/OrdersApi.d.ts +10 -25
  4. package/dist/apis/OrdersApi.js +10 -82
  5. package/dist/models/Address.d.ts +2 -2
  6. package/dist/models/Address.js +2 -2
  7. package/dist/models/ApiError.d.ts +2 -2
  8. package/dist/models/ApiError.js +2 -2
  9. package/dist/models/ConfirmOrderFulfillment.d.ts +2 -2
  10. package/dist/models/ConfirmOrderFulfillment.js +2 -2
  11. package/dist/models/ConfirmOrderRequest.d.ts +2 -2
  12. package/dist/models/ConfirmOrderRequest.js +2 -2
  13. package/dist/models/ConfirmOrderValidationError.d.ts +2 -2
  14. package/dist/models/ConfirmOrderValidationError.js +2 -2
  15. package/dist/models/ContactInformation.d.ts +2 -2
  16. package/dist/models/ContactInformation.js +2 -2
  17. package/dist/models/DeliveryEstimates.d.ts +2 -2
  18. package/dist/models/DeliveryEstimates.js +2 -2
  19. package/dist/models/ExportOrders202Response.d.ts +2 -2
  20. package/dist/models/ExportOrders202Response.js +2 -2
  21. package/dist/models/Fulfillment.d.ts +2 -2
  22. package/dist/models/Fulfillment.js +2 -2
  23. package/dist/models/FulfillmentItem.d.ts +2 -2
  24. package/dist/models/FulfillmentItem.js +2 -2
  25. package/dist/models/Order.d.ts +2 -2
  26. package/dist/models/Order.js +2 -2
  27. package/dist/models/OrderItem.d.ts +2 -2
  28. package/dist/models/OrderItem.js +2 -2
  29. package/dist/models/OrderItemTaxPrice.d.ts +2 -2
  30. package/dist/models/OrderItemTaxPrice.js +2 -2
  31. package/dist/models/OrderTracking.d.ts +2 -2
  32. package/dist/models/OrderTracking.js +2 -2
  33. package/dist/models/OrdersResponse.d.ts +2 -2
  34. package/dist/models/OrdersResponse.js +2 -2
  35. package/dist/models/Origin.d.ts +2 -2
  36. package/dist/models/Origin.js +2 -2
  37. package/dist/models/Price.d.ts +2 -2
  38. package/dist/models/Price.js +2 -2
  39. package/dist/models/ShippingMethod.d.ts +2 -2
  40. package/dist/models/ShippingMethod.js +2 -2
  41. package/dist/models/Status.d.ts +2 -2
  42. package/dist/models/Status.js +2 -2
  43. package/dist/models/StatusHistoryItem.d.ts +2 -2
  44. package/dist/models/StatusHistoryItem.js +2 -2
  45. package/dist/runtime.d.ts +2 -2
  46. package/dist/runtime.js +2 -2
  47. package/package.json +1 -1
  48. package/src/apis/OrdersApi.ts +10 -87
  49. package/src/models/Address.ts +2 -2
  50. package/src/models/ApiError.ts +2 -2
  51. package/src/models/ConfirmOrderFulfillment.ts +2 -2
  52. package/src/models/ConfirmOrderRequest.ts +2 -2
  53. package/src/models/ConfirmOrderValidationError.ts +2 -2
  54. package/src/models/ContactInformation.ts +2 -2
  55. package/src/models/DeliveryEstimates.ts +2 -2
  56. package/src/models/ExportOrders202Response.ts +2 -2
  57. package/src/models/Fulfillment.ts +2 -2
  58. package/src/models/FulfillmentItem.ts +2 -2
  59. package/src/models/Order.ts +2 -2
  60. package/src/models/OrderItem.ts +2 -2
  61. package/src/models/OrderItemTaxPrice.ts +2 -2
  62. package/src/models/OrderTracking.ts +2 -2
  63. package/src/models/OrdersResponse.ts +2 -2
  64. package/src/models/Origin.ts +2 -2
  65. package/src/models/Price.ts +2 -2
  66. package/src/models/ShippingMethod.ts +2 -2
  67. package/src/models/Status.ts +2 -2
  68. package/src/models/StatusHistoryItem.ts +2 -2
  69. package/src/runtime.ts +2 -2
@@ -1 +1 @@
1
- 7.3.0-SNAPSHOT
1
+ 7.3.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/orders@1.5.0
1
+ ## @teemill/orders@1.5.2
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
 
@@ -15,7 +15,7 @@ Module system
15
15
  * CommonJS
16
16
  * ES6 module system
17
17
 
18
- It can be used in both TypeScript and JavaScript. In TypeScript, the definition should be automatically resolved via `package.json`. ([Reference](http://www.typescriptlang.org/docs/handbook/typings-for-npm-packages.html))
18
+ It can be used in both TypeScript and JavaScript. In TypeScript, the definition will be automatically resolved via `package.json`. ([Reference](https://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html))
19
19
 
20
20
  ### Building
21
21
 
@@ -27,7 +27,7 @@ npm run build
27
27
 
28
28
  ### Publishing
29
29
 
30
- First build the package then run ```npm publish```
30
+ First build the package then run `npm publish`
31
31
 
32
32
  ### Consuming
33
33
 
@@ -36,10 +36,11 @@ 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.5.0 --save
39
+ npm install @teemill/orders@1.5.2 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
43
43
 
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
+ ```
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,11 +22,6 @@ 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
- }
30
25
  export interface GetOrderRequest {
31
26
  project: string;
32
27
  orderId: string;
@@ -48,52 +43,42 @@ export interface GetOrdersRequest {
48
43
  */
49
44
  export declare class OrdersApi extends runtime.BaseAPI {
50
45
  /**
51
- * Confirms and order, and submits it as ready to take payment and begin processing.
46
+ * Confirms an order, and submits it as ready to take payment and begin processing.
52
47
  * Confirm order
53
48
  */
54
49
  confirmOrderRaw(requestParameters: ConfirmOrderOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Order>>;
55
50
  /**
56
- * Confirms and order, and submits it as ready to take payment and begin processing.
51
+ * Confirms an order, and submits it as ready to take payment and begin processing.
57
52
  * Confirm order
58
53
  */
59
54
  confirmOrder(project: string, orderId: string, confirmOrderRequest: ConfirmOrderRequest, optionalParameters?: runtime.OptionalOnly<ConfirmOrderOperationRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Order>;
60
55
  /**
61
- * Creates a new order for the provided variants.
56
+ * Creates a new order for the provided variants. You can fetch details and references to the given project\'s variants from the Product Catalog API.
62
57
  * Create order
63
58
  */
64
59
  createOrderRaw(requestParameters: CreateOrderRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Order>>;
65
60
  /**
66
- * Creates a new order for the provided variants.
61
+ * Creates a new order for the provided variants. You can fetch details and references to the given project\'s variants from the Product Catalog API.
67
62
  * Create order
68
63
  */
69
64
  createOrder(project: string, order: Order, optionalParameters?: runtime.OptionalOnly<CreateOrderRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Order>;
70
65
  /**
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>;
80
- /**
81
- * Get an order
66
+ * Get an order by a given ID.
82
67
  * Get order
83
68
  */
84
69
  getOrderRaw(requestParameters: GetOrderRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Order>>;
85
70
  /**
86
- * Get an order
71
+ * Get an order by a given ID.
87
72
  * Get order
88
73
  */
89
74
  getOrder(project: string, orderId: string, optionalParameters?: runtime.OptionalOnly<GetOrderRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Order>;
90
75
  /**
91
- * Lists all orders available paginated into chunks
76
+ * Lists all orders placed on this project, paginated into configurable chunks.
92
77
  * List orders
93
78
  */
94
79
  getOrdersRaw(requestParameters: GetOrdersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<OrdersResponse>>;
95
80
  /**
96
- * Lists all orders available paginated into chunks
81
+ * Lists all orders placed on this project, paginated into configurable chunks.
97
82
  * List orders
98
83
  */
99
84
  getOrders(project: string, optionalParameters?: runtime.OptionalOnly<GetOrdersRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<OrdersResponse>;
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -87,7 +87,7 @@ var OrdersApi = /** @class */ (function (_super) {
87
87
  return _super !== null && _super.apply(this, arguments) || this;
88
88
  }
89
89
  /**
90
- * Confirms and order, and submits it as ready to take payment and begin processing.
90
+ * Confirms an order, and submits it as ready to take payment and begin processing.
91
91
  * Confirm order
92
92
  */
93
93
  OrdersApi.prototype.confirmOrderRaw = function (requestParameters, initOverrides) {
@@ -142,7 +142,7 @@ var OrdersApi = /** @class */ (function (_super) {
142
142
  });
143
143
  };
144
144
  /**
145
- * Confirms and order, and submits it as ready to take payment and begin processing.
145
+ * Confirms an order, and submits it as ready to take payment and begin processing.
146
146
  * Confirm order
147
147
  */
148
148
  OrdersApi.prototype.confirmOrder = function (project, orderId, confirmOrderRequest, optionalParameters, initOverrides) {
@@ -161,7 +161,7 @@ var OrdersApi = /** @class */ (function (_super) {
161
161
  });
162
162
  };
163
163
  /**
164
- * Creates a new order for the provided variants.
164
+ * Creates a new order for the provided variants. You can fetch details and references to the given project\'s variants from the Product Catalog API.
165
165
  * Create order
166
166
  */
167
167
  OrdersApi.prototype.createOrderRaw = function (requestParameters, initOverrides) {
@@ -213,7 +213,7 @@ var OrdersApi = /** @class */ (function (_super) {
213
213
  });
214
214
  };
215
215
  /**
216
- * Creates a new order for the provided variants.
216
+ * Creates a new order for the provided variants. You can fetch details and references to the given project\'s variants from the Product Catalog API.
217
217
  * Create order
218
218
  */
219
219
  OrdersApi.prototype.createOrder = function (project, order, optionalParameters, initOverrides) {
@@ -232,79 +232,7 @@ var OrdersApi = /** @class */ (function (_super) {
232
232
  });
233
233
  };
234
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
- };
306
- /**
307
- * Get an order
235
+ * Get an order by a given ID.
308
236
  * Get order
309
237
  */
310
238
  OrdersApi.prototype.getOrderRaw = function (requestParameters, initOverrides) {
@@ -354,7 +282,7 @@ var OrdersApi = /** @class */ (function (_super) {
354
282
  });
355
283
  };
356
284
  /**
357
- * Get an order
285
+ * Get an order by a given ID.
358
286
  * Get order
359
287
  */
360
288
  OrdersApi.prototype.getOrder = function (project, orderId, optionalParameters, initOverrides) {
@@ -373,7 +301,7 @@ var OrdersApi = /** @class */ (function (_super) {
373
301
  });
374
302
  };
375
303
  /**
376
- * Lists all orders available paginated into chunks
304
+ * Lists all orders placed on this project, paginated into configurable chunks.
377
305
  * List orders
378
306
  */
379
307
  OrdersApi.prototype.getOrdersRaw = function (requestParameters, initOverrides) {
@@ -441,7 +369,7 @@ var OrdersApi = /** @class */ (function (_super) {
441
369
  });
442
370
  };
443
371
  /**
444
- * Lists all orders available paginated into chunks
372
+ * Lists all orders placed on this project, paginated into configurable chunks.
445
373
  * List orders
446
374
  */
447
375
  OrdersApi.prototype.getOrders = function (project, optionalParameters, initOverrides) {
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Orders API
6
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
7
7
  *
8
- * The version of the OpenAPI document: 1.5.0
8
+ * The version of the OpenAPI document: 1.5.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Orders API
3
- * Manage Teemill Orders For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API. For full documentation on functionality and account auth settings go to [teemill.com](https://teemill.com/api-docs/orders)
4
4
  *
5
- * The version of the OpenAPI document: 1.5.0
5
+ * The version of the OpenAPI document: 1.5.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).