@teemill/orders 1.11.0 → 1.13.1
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 +231 -134
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +217 -81
- package/dist/api.js +38 -95
- 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 +217 -81
- package/dist/esm/api.js +37 -94
- 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/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.13.1
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -32,6 +32,9 @@ export const ConfirmOrderValidationErrorCodeEnum = {
|
|
|
32
32
|
Conflict: 'CONFLICT',
|
|
33
33
|
ActionRequired: 'ACTION_REQUIRED'
|
|
34
34
|
};
|
|
35
|
+
export const CustomsInformationPreRegistrationTypeEnum = {
|
|
36
|
+
Ioss: 'IOSS'
|
|
37
|
+
};
|
|
35
38
|
/**
|
|
36
39
|
*
|
|
37
40
|
* @export
|
|
@@ -148,16 +151,16 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
|
|
|
148
151
|
* 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.
|
|
149
152
|
* @summary Create order
|
|
150
153
|
* @param {string} project What project it is
|
|
151
|
-
* @param {
|
|
154
|
+
* @param {CreateOrder} createOrder Create Order schema
|
|
152
155
|
* @param {string} [fields] Specifies which fields to return, separated by commas
|
|
153
156
|
* @param {*} [options] Override http request option.
|
|
154
157
|
* @throws {RequiredError}
|
|
155
158
|
*/
|
|
156
|
-
createOrder: (project_1,
|
|
159
|
+
createOrder: (project_1, createOrder_1, fields_1, ...args_1) => __awaiter(this, [project_1, createOrder_1, fields_1, ...args_1], void 0, function* (project, createOrder, fields, options = {}) {
|
|
157
160
|
// verify required parameter 'project' is not null or undefined
|
|
158
161
|
assertParamExists('createOrder', 'project', project);
|
|
159
|
-
// verify required parameter '
|
|
160
|
-
assertParamExists('createOrder', '
|
|
162
|
+
// verify required parameter 'createOrder' is not null or undefined
|
|
163
|
+
assertParamExists('createOrder', 'createOrder', createOrder);
|
|
161
164
|
const localVarPath = `/v1/orders`;
|
|
162
165
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
163
166
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -183,7 +186,7 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
|
|
|
183
186
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
184
187
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
185
188
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
186
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
189
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createOrder, localVarRequestOptions, configuration);
|
|
187
190
|
return {
|
|
188
191
|
url: toPathString(localVarUrlObj),
|
|
189
192
|
options: localVarRequestOptions,
|
|
@@ -194,7 +197,7 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
|
|
|
194
197
|
* @summary Export orders
|
|
195
198
|
* @param {string} project What project it is
|
|
196
199
|
* @param {string} start Start of date range to filter by when orders were placed
|
|
197
|
-
* @param {string} [end] End of date range
|
|
200
|
+
* @param {string} [end] End of date range
|
|
198
201
|
* @param {string} [search] Search term to filter based on order reference, customer name and email
|
|
199
202
|
* @param {*} [options] Override http request option.
|
|
200
203
|
* @throws {RequiredError}
|
|
@@ -297,12 +300,13 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
|
|
|
297
300
|
* @param {string} [search] Search term to filter based on order reference, customer name and email
|
|
298
301
|
* @param {Array<string>} [ids] Specify fulfillment IDs to list
|
|
299
302
|
* @param {Array<Status>} [statuses] Filter by fulfillment status
|
|
300
|
-
* @param {string} [start] Start of date range
|
|
301
|
-
* @param {string} [end] End of date range
|
|
303
|
+
* @param {string} [start] Start of date range
|
|
304
|
+
* @param {string} [end] End of date range
|
|
305
|
+
* @param {GetOrdersDateFilterTypeEnum} [dateFilterType] Specifies the type of date range filter to apply. Determines which date field the `start` and `end` fields should query.
|
|
302
306
|
* @param {*} [options] Override http request option.
|
|
303
307
|
* @throws {RequiredError}
|
|
304
308
|
*/
|
|
305
|
-
getOrders: (project_1, fields_1, pageToken_1, pageSize_1, search_1, ids_1, statuses_1, start_1, end_1, ...args_1) => __awaiter(this, [project_1, fields_1, pageToken_1, pageSize_1, search_1, ids_1, statuses_1, start_1, end_1, ...args_1], void 0, function* (project, fields, pageToken, pageSize, search, ids, statuses, start, end, options = {}) {
|
|
309
|
+
getOrders: (project_1, fields_1, pageToken_1, pageSize_1, search_1, ids_1, statuses_1, start_1, end_1, dateFilterType_1, ...args_1) => __awaiter(this, [project_1, fields_1, pageToken_1, pageSize_1, search_1, ids_1, statuses_1, start_1, end_1, dateFilterType_1, ...args_1], void 0, function* (project, fields, pageToken, pageSize, search, ids, statuses, start, end, dateFilterType, options = {}) {
|
|
306
310
|
// verify required parameter 'project' is not null or undefined
|
|
307
311
|
assertParamExists('getOrders', 'project', project);
|
|
308
312
|
const localVarPath = `/v1/orders`;
|
|
@@ -351,41 +355,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
|
|
|
351
355
|
end.toISOString() :
|
|
352
356
|
end;
|
|
353
357
|
}
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
357
|
-
return {
|
|
358
|
-
url: toPathString(localVarUrlObj),
|
|
359
|
-
options: localVarRequestOptions,
|
|
360
|
-
};
|
|
361
|
-
}),
|
|
362
|
-
/**
|
|
363
|
-
* Lists orders\' statuses and only include \'quote\' if at least one order has that status
|
|
364
|
-
* @summary List orders\' statuses
|
|
365
|
-
* @param {string} project What project it is
|
|
366
|
-
* @param {*} [options] Override http request option.
|
|
367
|
-
* @throws {RequiredError}
|
|
368
|
-
*/
|
|
369
|
-
getStatuses: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
|
|
370
|
-
// verify required parameter 'project' is not null or undefined
|
|
371
|
-
assertParamExists('getStatuses', 'project', project);
|
|
372
|
-
const localVarPath = `/v1/orders/statuses`;
|
|
373
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
374
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
375
|
-
let baseOptions;
|
|
376
|
-
if (configuration) {
|
|
377
|
-
baseOptions = configuration.baseOptions;
|
|
378
|
-
}
|
|
379
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
380
|
-
const localVarHeaderParameter = {};
|
|
381
|
-
const localVarQueryParameter = {};
|
|
382
|
-
// authentication session-oauth required
|
|
383
|
-
// oauth required
|
|
384
|
-
yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
385
|
-
// authentication api-key required
|
|
386
|
-
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
387
|
-
if (project !== undefined) {
|
|
388
|
-
localVarQueryParameter['project'] = project;
|
|
358
|
+
if (dateFilterType !== undefined) {
|
|
359
|
+
localVarQueryParameter['dateFilterType'] = dateFilterType;
|
|
389
360
|
}
|
|
390
361
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
391
362
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -445,15 +416,15 @@ export const OrdersApiFp = function (configuration) {
|
|
|
445
416
|
* 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.
|
|
446
417
|
* @summary Create order
|
|
447
418
|
* @param {string} project What project it is
|
|
448
|
-
* @param {
|
|
419
|
+
* @param {CreateOrder} createOrder Create Order schema
|
|
449
420
|
* @param {string} [fields] Specifies which fields to return, separated by commas
|
|
450
421
|
* @param {*} [options] Override http request option.
|
|
451
422
|
* @throws {RequiredError}
|
|
452
423
|
*/
|
|
453
|
-
createOrder(project,
|
|
424
|
+
createOrder(project, createOrder, fields, options) {
|
|
454
425
|
return __awaiter(this, void 0, void 0, function* () {
|
|
455
426
|
var _a, _b, _c;
|
|
456
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.createOrder(project,
|
|
427
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.createOrder(project, createOrder, fields, options);
|
|
457
428
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
458
429
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OrdersApi.createOrder']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
459
430
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -464,7 +435,7 @@ export const OrdersApiFp = function (configuration) {
|
|
|
464
435
|
* @summary Export orders
|
|
465
436
|
* @param {string} project What project it is
|
|
466
437
|
* @param {string} start Start of date range to filter by when orders were placed
|
|
467
|
-
* @param {string} [end] End of date range
|
|
438
|
+
* @param {string} [end] End of date range
|
|
468
439
|
* @param {string} [search] Search term to filter based on order reference, customer name and email
|
|
469
440
|
* @param {*} [options] Override http request option.
|
|
470
441
|
* @throws {RequiredError}
|
|
@@ -506,36 +477,21 @@ export const OrdersApiFp = function (configuration) {
|
|
|
506
477
|
* @param {string} [search] Search term to filter based on order reference, customer name and email
|
|
507
478
|
* @param {Array<string>} [ids] Specify fulfillment IDs to list
|
|
508
479
|
* @param {Array<Status>} [statuses] Filter by fulfillment status
|
|
509
|
-
* @param {string} [start] Start of date range
|
|
510
|
-
* @param {string} [end] End of date range
|
|
480
|
+
* @param {string} [start] Start of date range
|
|
481
|
+
* @param {string} [end] End of date range
|
|
482
|
+
* @param {GetOrdersDateFilterTypeEnum} [dateFilterType] Specifies the type of date range filter to apply. Determines which date field the `start` and `end` fields should query.
|
|
511
483
|
* @param {*} [options] Override http request option.
|
|
512
484
|
* @throws {RequiredError}
|
|
513
485
|
*/
|
|
514
|
-
getOrders(project, fields, pageToken, pageSize, search, ids, statuses, start, end, options) {
|
|
486
|
+
getOrders(project, fields, pageToken, pageSize, search, ids, statuses, start, end, dateFilterType, options) {
|
|
515
487
|
return __awaiter(this, void 0, void 0, function* () {
|
|
516
488
|
var _a, _b, _c;
|
|
517
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getOrders(project, fields, pageToken, pageSize, search, ids, statuses, start, end, options);
|
|
489
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getOrders(project, fields, pageToken, pageSize, search, ids, statuses, start, end, dateFilterType, options);
|
|
518
490
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
519
491
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OrdersApi.getOrders']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
520
492
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
521
493
|
});
|
|
522
494
|
},
|
|
523
|
-
/**
|
|
524
|
-
* Lists orders\' statuses and only include \'quote\' if at least one order has that status
|
|
525
|
-
* @summary List orders\' statuses
|
|
526
|
-
* @param {string} project What project it is
|
|
527
|
-
* @param {*} [options] Override http request option.
|
|
528
|
-
* @throws {RequiredError}
|
|
529
|
-
*/
|
|
530
|
-
getStatuses(project, options) {
|
|
531
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
532
|
-
var _a, _b, _c;
|
|
533
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getStatuses(project, options);
|
|
534
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
535
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OrdersApi.getStatuses']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
536
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
537
|
-
});
|
|
538
|
-
},
|
|
539
495
|
};
|
|
540
496
|
};
|
|
541
497
|
/**
|
|
@@ -573,7 +529,7 @@ export const OrdersApiFactory = function (configuration, basePath, axios) {
|
|
|
573
529
|
* @throws {RequiredError}
|
|
574
530
|
*/
|
|
575
531
|
createOrder(requestParameters, options) {
|
|
576
|
-
return localVarFp.createOrder(requestParameters.project, requestParameters.
|
|
532
|
+
return localVarFp.createOrder(requestParameters.project, requestParameters.createOrder, requestParameters.fields, options).then((request) => request(axios, basePath));
|
|
577
533
|
},
|
|
578
534
|
/**
|
|
579
535
|
* Export orders as a CSV file
|
|
@@ -603,17 +559,7 @@ export const OrdersApiFactory = function (configuration, basePath, axios) {
|
|
|
603
559
|
* @throws {RequiredError}
|
|
604
560
|
*/
|
|
605
561
|
getOrders(requestParameters, options) {
|
|
606
|
-
return localVarFp.getOrders(requestParameters.project, requestParameters.fields, requestParameters.pageToken, requestParameters.pageSize, requestParameters.search, requestParameters.ids, requestParameters.statuses, requestParameters.start, requestParameters.end, options).then((request) => request(axios, basePath));
|
|
607
|
-
},
|
|
608
|
-
/**
|
|
609
|
-
* Lists orders\' statuses and only include \'quote\' if at least one order has that status
|
|
610
|
-
* @summary List orders\' statuses
|
|
611
|
-
* @param {OrdersApiGetStatusesRequest} requestParameters Request parameters.
|
|
612
|
-
* @param {*} [options] Override http request option.
|
|
613
|
-
* @throws {RequiredError}
|
|
614
|
-
*/
|
|
615
|
-
getStatuses(requestParameters, options) {
|
|
616
|
-
return localVarFp.getStatuses(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
562
|
+
return localVarFp.getOrders(requestParameters.project, requestParameters.fields, requestParameters.pageToken, requestParameters.pageSize, requestParameters.search, requestParameters.ids, requestParameters.statuses, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, options).then((request) => request(axios, basePath));
|
|
617
563
|
},
|
|
618
564
|
};
|
|
619
565
|
};
|
|
@@ -655,7 +601,7 @@ export class OrdersApi extends BaseAPI {
|
|
|
655
601
|
* @memberof OrdersApi
|
|
656
602
|
*/
|
|
657
603
|
createOrder(requestParameters, options) {
|
|
658
|
-
return OrdersApiFp(this.configuration).createOrder(requestParameters.project, requestParameters.
|
|
604
|
+
return OrdersApiFp(this.configuration).createOrder(requestParameters.project, requestParameters.createOrder, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
|
|
659
605
|
}
|
|
660
606
|
/**
|
|
661
607
|
* Export orders as a CSV file
|
|
@@ -688,17 +634,14 @@ export class OrdersApi extends BaseAPI {
|
|
|
688
634
|
* @memberof OrdersApi
|
|
689
635
|
*/
|
|
690
636
|
getOrders(requestParameters, options) {
|
|
691
|
-
return OrdersApiFp(this.configuration).getOrders(requestParameters.project, requestParameters.fields, requestParameters.pageToken, requestParameters.pageSize, requestParameters.search, requestParameters.ids, requestParameters.statuses, requestParameters.start, requestParameters.end, options).then((request) => request(this.axios, this.basePath));
|
|
692
|
-
}
|
|
693
|
-
/**
|
|
694
|
-
* Lists orders\' statuses and only include \'quote\' if at least one order has that status
|
|
695
|
-
* @summary List orders\' statuses
|
|
696
|
-
* @param {OrdersApiGetStatusesRequest} requestParameters Request parameters.
|
|
697
|
-
* @param {*} [options] Override http request option.
|
|
698
|
-
* @throws {RequiredError}
|
|
699
|
-
* @memberof OrdersApi
|
|
700
|
-
*/
|
|
701
|
-
getStatuses(requestParameters, options) {
|
|
702
|
-
return OrdersApiFp(this.configuration).getStatuses(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
637
|
+
return OrdersApiFp(this.configuration).getOrders(requestParameters.project, requestParameters.fields, requestParameters.pageToken, requestParameters.pageSize, requestParameters.search, requestParameters.ids, requestParameters.statuses, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, options).then((request) => request(this.axios, this.basePath));
|
|
703
638
|
}
|
|
704
639
|
}
|
|
640
|
+
/**
|
|
641
|
+
* @export
|
|
642
|
+
*/
|
|
643
|
+
export const GetOrdersDateFilterTypeEnum = {
|
|
644
|
+
CreatedAt: 'createdAt',
|
|
645
|
+
UpdatedAt: 'updatedAt',
|
|
646
|
+
StatusChangedAt: 'statusChangedAt'
|
|
647
|
+
};
|
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.13.1
|
|
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.13.1
|
|
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.13.1
|
|
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.13.1
|
|
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.13.1
|
|
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.13.1
|
|
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.13.1
|
|
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.13.1
|
|
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.13.1
|
|
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.13.1
|
|
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.13.1
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|