@teemill/orders 1.7.2 → 1.9.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.
- package/README.md +2 -2
- package/api.ts +75 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +75 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +75 -1
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/orders@1.
|
|
1
|
+
## @teemill/orders@1.9.0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). 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.
|
|
39
|
+
npm install @teemill/orders@1.9.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Orders API
|
|
5
5
|
* 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)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.9.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -272,6 +272,12 @@ export interface Fulfillment {
|
|
|
272
272
|
* @interface FulfillmentFulfiller
|
|
273
273
|
*/
|
|
274
274
|
export interface FulfillmentFulfiller {
|
|
275
|
+
/**
|
|
276
|
+
* Unique object identifier
|
|
277
|
+
* @type {string}
|
|
278
|
+
* @memberof FulfillmentFulfiller
|
|
279
|
+
*/
|
|
280
|
+
'id'?: string;
|
|
275
281
|
/**
|
|
276
282
|
*
|
|
277
283
|
* @type {FulfillmentFulfillerLocation}
|
|
@@ -323,6 +329,56 @@ export interface FulfillmentItem {
|
|
|
323
329
|
*/
|
|
324
330
|
'quantity'?: number;
|
|
325
331
|
}
|
|
332
|
+
/**
|
|
333
|
+
* Image description
|
|
334
|
+
* @export
|
|
335
|
+
* @interface Image
|
|
336
|
+
*/
|
|
337
|
+
export interface Image {
|
|
338
|
+
/**
|
|
339
|
+
* Unique object identifier
|
|
340
|
+
* @type {string}
|
|
341
|
+
* @memberof Image
|
|
342
|
+
*/
|
|
343
|
+
'id'?: string;
|
|
344
|
+
/**
|
|
345
|
+
*
|
|
346
|
+
* @type {string}
|
|
347
|
+
* @memberof Image
|
|
348
|
+
*/
|
|
349
|
+
'src'?: string;
|
|
350
|
+
/**
|
|
351
|
+
*
|
|
352
|
+
* @type {string}
|
|
353
|
+
* @memberof Image
|
|
354
|
+
*/
|
|
355
|
+
'alt'?: string;
|
|
356
|
+
/**
|
|
357
|
+
*
|
|
358
|
+
* @type {number}
|
|
359
|
+
* @memberof Image
|
|
360
|
+
*/
|
|
361
|
+
'sortOrder'?: number;
|
|
362
|
+
}
|
|
363
|
+
/**
|
|
364
|
+
*
|
|
365
|
+
* @export
|
|
366
|
+
* @interface Option
|
|
367
|
+
*/
|
|
368
|
+
export interface Option {
|
|
369
|
+
/**
|
|
370
|
+
* Option name
|
|
371
|
+
* @type {string}
|
|
372
|
+
* @memberof Option
|
|
373
|
+
*/
|
|
374
|
+
'name': string;
|
|
375
|
+
/**
|
|
376
|
+
* Option value
|
|
377
|
+
* @type {string}
|
|
378
|
+
* @memberof Option
|
|
379
|
+
*/
|
|
380
|
+
'value': string;
|
|
381
|
+
}
|
|
326
382
|
/**
|
|
327
383
|
*
|
|
328
384
|
* @export
|
|
@@ -452,12 +508,30 @@ export interface OrderItem {
|
|
|
452
508
|
* @memberof OrderItem
|
|
453
509
|
*/
|
|
454
510
|
'variantRef': string;
|
|
511
|
+
/**
|
|
512
|
+
* Options associated to an order item\'s variant, such as color and size.
|
|
513
|
+
* @type {Array<Option>}
|
|
514
|
+
* @memberof OrderItem
|
|
515
|
+
*/
|
|
516
|
+
'options'?: Array<Option>;
|
|
455
517
|
/**
|
|
456
518
|
*
|
|
457
519
|
* @type {number}
|
|
458
520
|
* @memberof OrderItem
|
|
459
521
|
*/
|
|
460
522
|
'quantity': number;
|
|
523
|
+
/**
|
|
524
|
+
* The name of the product
|
|
525
|
+
* @type {string}
|
|
526
|
+
* @memberof OrderItem
|
|
527
|
+
*/
|
|
528
|
+
'name'?: string;
|
|
529
|
+
/**
|
|
530
|
+
* Images
|
|
531
|
+
* @type {Array<Image>}
|
|
532
|
+
* @memberof OrderItem
|
|
533
|
+
*/
|
|
534
|
+
'images'?: Array<Image>;
|
|
461
535
|
/**
|
|
462
536
|
*
|
|
463
537
|
* @type {Price}
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Orders API
|
|
5
5
|
* 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)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.9.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Orders API
|
|
5
5
|
* 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)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.9.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Orders API
|
|
5
5
|
* 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)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.9.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Orders API
|
|
3
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
|
+
* The version of the OpenAPI document: 1.9.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -257,6 +257,12 @@ export interface Fulfillment {
|
|
|
257
257
|
* @interface FulfillmentFulfiller
|
|
258
258
|
*/
|
|
259
259
|
export interface FulfillmentFulfiller {
|
|
260
|
+
/**
|
|
261
|
+
* Unique object identifier
|
|
262
|
+
* @type {string}
|
|
263
|
+
* @memberof FulfillmentFulfiller
|
|
264
|
+
*/
|
|
265
|
+
'id'?: string;
|
|
260
266
|
/**
|
|
261
267
|
*
|
|
262
268
|
* @type {FulfillmentFulfillerLocation}
|
|
@@ -308,6 +314,56 @@ export interface FulfillmentItem {
|
|
|
308
314
|
*/
|
|
309
315
|
'quantity'?: number;
|
|
310
316
|
}
|
|
317
|
+
/**
|
|
318
|
+
* Image description
|
|
319
|
+
* @export
|
|
320
|
+
* @interface Image
|
|
321
|
+
*/
|
|
322
|
+
export interface Image {
|
|
323
|
+
/**
|
|
324
|
+
* Unique object identifier
|
|
325
|
+
* @type {string}
|
|
326
|
+
* @memberof Image
|
|
327
|
+
*/
|
|
328
|
+
'id'?: string;
|
|
329
|
+
/**
|
|
330
|
+
*
|
|
331
|
+
* @type {string}
|
|
332
|
+
* @memberof Image
|
|
333
|
+
*/
|
|
334
|
+
'src'?: string;
|
|
335
|
+
/**
|
|
336
|
+
*
|
|
337
|
+
* @type {string}
|
|
338
|
+
* @memberof Image
|
|
339
|
+
*/
|
|
340
|
+
'alt'?: string;
|
|
341
|
+
/**
|
|
342
|
+
*
|
|
343
|
+
* @type {number}
|
|
344
|
+
* @memberof Image
|
|
345
|
+
*/
|
|
346
|
+
'sortOrder'?: number;
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
* @export
|
|
351
|
+
* @interface Option
|
|
352
|
+
*/
|
|
353
|
+
export interface Option {
|
|
354
|
+
/**
|
|
355
|
+
* Option name
|
|
356
|
+
* @type {string}
|
|
357
|
+
* @memberof Option
|
|
358
|
+
*/
|
|
359
|
+
'name': string;
|
|
360
|
+
/**
|
|
361
|
+
* Option value
|
|
362
|
+
* @type {string}
|
|
363
|
+
* @memberof Option
|
|
364
|
+
*/
|
|
365
|
+
'value': string;
|
|
366
|
+
}
|
|
311
367
|
/**
|
|
312
368
|
*
|
|
313
369
|
* @export
|
|
@@ -435,12 +491,30 @@ export interface OrderItem {
|
|
|
435
491
|
* @memberof OrderItem
|
|
436
492
|
*/
|
|
437
493
|
'variantRef': string;
|
|
494
|
+
/**
|
|
495
|
+
* Options associated to an order item\'s variant, such as color and size.
|
|
496
|
+
* @type {Array<Option>}
|
|
497
|
+
* @memberof OrderItem
|
|
498
|
+
*/
|
|
499
|
+
'options'?: Array<Option>;
|
|
438
500
|
/**
|
|
439
501
|
*
|
|
440
502
|
* @type {number}
|
|
441
503
|
* @memberof OrderItem
|
|
442
504
|
*/
|
|
443
505
|
'quantity': number;
|
|
506
|
+
/**
|
|
507
|
+
* The name of the product
|
|
508
|
+
* @type {string}
|
|
509
|
+
* @memberof OrderItem
|
|
510
|
+
*/
|
|
511
|
+
'name'?: string;
|
|
512
|
+
/**
|
|
513
|
+
* Images
|
|
514
|
+
* @type {Array<Image>}
|
|
515
|
+
* @memberof OrderItem
|
|
516
|
+
*/
|
|
517
|
+
'images'?: Array<Image>;
|
|
444
518
|
/**
|
|
445
519
|
*
|
|
446
520
|
* @type {Price}
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Orders API
|
|
6
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.9.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/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Orders API
|
|
3
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
|
+
* The version of the OpenAPI document: 1.9.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/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Orders API
|
|
6
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.9.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/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Orders API
|
|
3
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
|
+
* The version of the OpenAPI document: 1.9.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/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Orders API
|
|
6
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.9.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/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Orders API
|
|
3
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
|
+
* The version of the OpenAPI document: 1.9.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/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Orders API
|
|
6
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.9.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/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Orders API
|
|
3
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
|
+
* The version of the OpenAPI document: 1.9.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -257,6 +257,12 @@ export interface Fulfillment {
|
|
|
257
257
|
* @interface FulfillmentFulfiller
|
|
258
258
|
*/
|
|
259
259
|
export interface FulfillmentFulfiller {
|
|
260
|
+
/**
|
|
261
|
+
* Unique object identifier
|
|
262
|
+
* @type {string}
|
|
263
|
+
* @memberof FulfillmentFulfiller
|
|
264
|
+
*/
|
|
265
|
+
'id'?: string;
|
|
260
266
|
/**
|
|
261
267
|
*
|
|
262
268
|
* @type {FulfillmentFulfillerLocation}
|
|
@@ -308,6 +314,56 @@ export interface FulfillmentItem {
|
|
|
308
314
|
*/
|
|
309
315
|
'quantity'?: number;
|
|
310
316
|
}
|
|
317
|
+
/**
|
|
318
|
+
* Image description
|
|
319
|
+
* @export
|
|
320
|
+
* @interface Image
|
|
321
|
+
*/
|
|
322
|
+
export interface Image {
|
|
323
|
+
/**
|
|
324
|
+
* Unique object identifier
|
|
325
|
+
* @type {string}
|
|
326
|
+
* @memberof Image
|
|
327
|
+
*/
|
|
328
|
+
'id'?: string;
|
|
329
|
+
/**
|
|
330
|
+
*
|
|
331
|
+
* @type {string}
|
|
332
|
+
* @memberof Image
|
|
333
|
+
*/
|
|
334
|
+
'src'?: string;
|
|
335
|
+
/**
|
|
336
|
+
*
|
|
337
|
+
* @type {string}
|
|
338
|
+
* @memberof Image
|
|
339
|
+
*/
|
|
340
|
+
'alt'?: string;
|
|
341
|
+
/**
|
|
342
|
+
*
|
|
343
|
+
* @type {number}
|
|
344
|
+
* @memberof Image
|
|
345
|
+
*/
|
|
346
|
+
'sortOrder'?: number;
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
* @export
|
|
351
|
+
* @interface Option
|
|
352
|
+
*/
|
|
353
|
+
export interface Option {
|
|
354
|
+
/**
|
|
355
|
+
* Option name
|
|
356
|
+
* @type {string}
|
|
357
|
+
* @memberof Option
|
|
358
|
+
*/
|
|
359
|
+
'name': string;
|
|
360
|
+
/**
|
|
361
|
+
* Option value
|
|
362
|
+
* @type {string}
|
|
363
|
+
* @memberof Option
|
|
364
|
+
*/
|
|
365
|
+
'value': string;
|
|
366
|
+
}
|
|
311
367
|
/**
|
|
312
368
|
*
|
|
313
369
|
* @export
|
|
@@ -435,12 +491,30 @@ export interface OrderItem {
|
|
|
435
491
|
* @memberof OrderItem
|
|
436
492
|
*/
|
|
437
493
|
'variantRef': string;
|
|
494
|
+
/**
|
|
495
|
+
* Options associated to an order item\'s variant, such as color and size.
|
|
496
|
+
* @type {Array<Option>}
|
|
497
|
+
* @memberof OrderItem
|
|
498
|
+
*/
|
|
499
|
+
'options'?: Array<Option>;
|
|
438
500
|
/**
|
|
439
501
|
*
|
|
440
502
|
* @type {number}
|
|
441
503
|
* @memberof OrderItem
|
|
442
504
|
*/
|
|
443
505
|
'quantity': number;
|
|
506
|
+
/**
|
|
507
|
+
* The name of the product
|
|
508
|
+
* @type {string}
|
|
509
|
+
* @memberof OrderItem
|
|
510
|
+
*/
|
|
511
|
+
'name'?: string;
|
|
512
|
+
/**
|
|
513
|
+
* Images
|
|
514
|
+
* @type {Array<Image>}
|
|
515
|
+
* @memberof OrderItem
|
|
516
|
+
*/
|
|
517
|
+
'images'?: Array<Image>;
|
|
444
518
|
/**
|
|
445
519
|
*
|
|
446
520
|
* @type {Price}
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Orders API
|
|
5
5
|
* 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)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.9.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Orders API
|
|
3
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
|
+
* The version of the OpenAPI document: 1.9.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/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Orders API
|
|
5
5
|
* 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)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.9.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Orders API
|
|
3
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
|
+
* The version of the OpenAPI document: 1.9.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/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Orders API
|
|
5
5
|
* 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)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.9.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Orders API
|
|
3
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
|
+
* The version of the OpenAPI document: 1.9.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Orders API
|
|
5
5
|
* 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)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.9.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Orders API
|
|
3
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
|
+
* The version of the OpenAPI document: 1.9.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/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Orders API
|
|
5
5
|
* 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)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.9.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Orders API
|
|
3
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
|
+
* The version of the OpenAPI document: 1.9.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/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Orders API
|
|
6
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.9.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/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Orders API
|
|
5
5
|
* 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)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.9.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|