@teemill/pickfaces 0.14.0 → 0.15.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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/pickfaces@0.14.0
1
+ ## @teemill/pickfaces@0.15.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/pickfaces@0.14.0 --save
39
+ npm install @teemill/pickfaces@0.15.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1181,6 +1181,64 @@ export const PickfacesApiAxiosParamCreator = function (configuration?: Configura
1181
1181
 
1182
1182
 
1183
1183
 
1184
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1185
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1186
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1187
+
1188
+ return {
1189
+ url: toPathString(localVarUrlObj),
1190
+ options: localVarRequestOptions,
1191
+ };
1192
+ },
1193
+ /**
1194
+ * Print pickface labels
1195
+ * @summary Print pickface Labels
1196
+ * @param {string} project What project it is
1197
+ * @param {string} deviceRef Unique identifier of a warehouse device
1198
+ * @param {Array<string>} ids List of pickface ids
1199
+ * @param {*} [options] Override http request option.
1200
+ * @throws {RequiredError}
1201
+ */
1202
+ printPickfaceLabels: async (project: string, deviceRef: string, ids: Array<string>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1203
+ // verify required parameter 'project' is not null or undefined
1204
+ assertParamExists('printPickfaceLabels', 'project', project)
1205
+ // verify required parameter 'deviceRef' is not null or undefined
1206
+ assertParamExists('printPickfaceLabels', 'deviceRef', deviceRef)
1207
+ // verify required parameter 'ids' is not null or undefined
1208
+ assertParamExists('printPickfaceLabels', 'ids', ids)
1209
+ const localVarPath = `/v1/pickfaces/print`;
1210
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1211
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1212
+ let baseOptions;
1213
+ if (configuration) {
1214
+ baseOptions = configuration.baseOptions;
1215
+ }
1216
+
1217
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1218
+ const localVarHeaderParameter = {} as any;
1219
+ const localVarQueryParameter = {} as any;
1220
+
1221
+ // authentication session-oauth required
1222
+ // oauth required
1223
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
1224
+
1225
+ // authentication api-key required
1226
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
1227
+
1228
+ if (project !== undefined) {
1229
+ localVarQueryParameter['project'] = project;
1230
+ }
1231
+
1232
+ if (deviceRef !== undefined) {
1233
+ localVarQueryParameter['deviceRef'] = deviceRef;
1234
+ }
1235
+
1236
+ if (ids) {
1237
+ localVarQueryParameter['ids'] = ids;
1238
+ }
1239
+
1240
+
1241
+
1184
1242
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1185
1243
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1186
1244
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -1532,6 +1590,21 @@ export const PickfacesApiFp = function(configuration?: Configuration) {
1532
1590
  const localVarOperationServerBasePath = operationServerMap['PickfacesApi.printPickfaceLabel']?.[localVarOperationServerIndex]?.url;
1533
1591
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1534
1592
  },
1593
+ /**
1594
+ * Print pickface labels
1595
+ * @summary Print pickface Labels
1596
+ * @param {string} project What project it is
1597
+ * @param {string} deviceRef Unique identifier of a warehouse device
1598
+ * @param {Array<string>} ids List of pickface ids
1599
+ * @param {*} [options] Override http request option.
1600
+ * @throws {RequiredError}
1601
+ */
1602
+ async printPickfaceLabels(project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
1603
+ const localVarAxiosArgs = await localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, ids, options);
1604
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1605
+ const localVarOperationServerBasePath = operationServerMap['PickfacesApi.printPickfaceLabels']?.[localVarOperationServerIndex]?.url;
1606
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1607
+ },
1535
1608
  /**
1536
1609
  * Resolves an issue on a pickface
1537
1610
  * @summary Resolve pickface issue
@@ -1698,6 +1771,16 @@ export const PickfacesApiFactory = function (configuration?: Configuration, base
1698
1771
  printPickfaceLabel(requestParameters: PickfacesApiPrintPickfaceLabelRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
1699
1772
  return localVarFp.printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(axios, basePath));
1700
1773
  },
1774
+ /**
1775
+ * Print pickface labels
1776
+ * @summary Print pickface Labels
1777
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1778
+ * @param {*} [options] Override http request option.
1779
+ * @throws {RequiredError}
1780
+ */
1781
+ printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
1782
+ return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(axios, basePath));
1783
+ },
1701
1784
  /**
1702
1785
  * Resolves an issue on a pickface
1703
1786
  * @summary Resolve pickface issue
@@ -2018,6 +2101,34 @@ export interface PickfacesApiPrintPickfaceLabelRequest {
2018
2101
  readonly deviceRef: string
2019
2102
  }
2020
2103
 
2104
+ /**
2105
+ * Request parameters for printPickfaceLabels operation in PickfacesApi.
2106
+ * @export
2107
+ * @interface PickfacesApiPrintPickfaceLabelsRequest
2108
+ */
2109
+ export interface PickfacesApiPrintPickfaceLabelsRequest {
2110
+ /**
2111
+ * What project it is
2112
+ * @type {string}
2113
+ * @memberof PickfacesApiPrintPickfaceLabels
2114
+ */
2115
+ readonly project: string
2116
+
2117
+ /**
2118
+ * Unique identifier of a warehouse device
2119
+ * @type {string}
2120
+ * @memberof PickfacesApiPrintPickfaceLabels
2121
+ */
2122
+ readonly deviceRef: string
2123
+
2124
+ /**
2125
+ * List of pickface ids
2126
+ * @type {Array<string>}
2127
+ * @memberof PickfacesApiPrintPickfaceLabels
2128
+ */
2129
+ readonly ids: Array<string>
2130
+ }
2131
+
2021
2132
  /**
2022
2133
  * Request parameters for resolvePickfaceIssue operation in PickfacesApi.
2023
2134
  * @export
@@ -2248,6 +2359,18 @@ export class PickfacesApi extends BaseAPI {
2248
2359
  return PickfacesApiFp(this.configuration).printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(this.axios, this.basePath));
2249
2360
  }
2250
2361
 
2362
+ /**
2363
+ * Print pickface labels
2364
+ * @summary Print pickface Labels
2365
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
2366
+ * @param {*} [options] Override http request option.
2367
+ * @throws {RequiredError}
2368
+ * @memberof PickfacesApi
2369
+ */
2370
+ public printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig) {
2371
+ return PickfacesApiFp(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
2372
+ }
2373
+
2251
2374
  /**
2252
2375
  * Resolves an issue on a pickface
2253
2376
  * @summary Resolve pickface issue
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -704,6 +704,16 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
704
704
  * @throws {RequiredError}
705
705
  */
706
706
  printPickfaceLabel: (project: string, pickfaceId: string, deviceRef: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
707
+ /**
708
+ * Print pickface labels
709
+ * @summary Print pickface Labels
710
+ * @param {string} project What project it is
711
+ * @param {string} deviceRef Unique identifier of a warehouse device
712
+ * @param {Array<string>} ids List of pickface ids
713
+ * @param {*} [options] Override http request option.
714
+ * @throws {RequiredError}
715
+ */
716
+ printPickfaceLabels: (project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
707
717
  /**
708
718
  * Resolves an issue on a pickface
709
719
  * @summary Resolve pickface issue
@@ -848,6 +858,16 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
848
858
  * @throws {RequiredError}
849
859
  */
850
860
  printPickfaceLabel(project: string, pickfaceId: string, deviceRef: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
861
+ /**
862
+ * Print pickface labels
863
+ * @summary Print pickface Labels
864
+ * @param {string} project What project it is
865
+ * @param {string} deviceRef Unique identifier of a warehouse device
866
+ * @param {Array<string>} ids List of pickface ids
867
+ * @param {*} [options] Override http request option.
868
+ * @throws {RequiredError}
869
+ */
870
+ printPickfaceLabels(project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
851
871
  /**
852
872
  * Resolves an issue on a pickface
853
873
  * @summary Resolve pickface issue
@@ -973,6 +993,14 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
973
993
  * @throws {RequiredError}
974
994
  */
975
995
  printPickfaceLabel(requestParameters: PickfacesApiPrintPickfaceLabelRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
996
+ /**
997
+ * Print pickface labels
998
+ * @summary Print pickface Labels
999
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1000
+ * @param {*} [options] Override http request option.
1001
+ * @throws {RequiredError}
1002
+ */
1003
+ printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
976
1004
  /**
977
1005
  * Resolves an issue on a pickface
978
1006
  * @summary Resolve pickface issue
@@ -1255,6 +1283,31 @@ export interface PickfacesApiPrintPickfaceLabelRequest {
1255
1283
  */
1256
1284
  readonly deviceRef: string;
1257
1285
  }
1286
+ /**
1287
+ * Request parameters for printPickfaceLabels operation in PickfacesApi.
1288
+ * @export
1289
+ * @interface PickfacesApiPrintPickfaceLabelsRequest
1290
+ */
1291
+ export interface PickfacesApiPrintPickfaceLabelsRequest {
1292
+ /**
1293
+ * What project it is
1294
+ * @type {string}
1295
+ * @memberof PickfacesApiPrintPickfaceLabels
1296
+ */
1297
+ readonly project: string;
1298
+ /**
1299
+ * Unique identifier of a warehouse device
1300
+ * @type {string}
1301
+ * @memberof PickfacesApiPrintPickfaceLabels
1302
+ */
1303
+ readonly deviceRef: string;
1304
+ /**
1305
+ * List of pickface ids
1306
+ * @type {Array<string>}
1307
+ * @memberof PickfacesApiPrintPickfaceLabels
1308
+ */
1309
+ readonly ids: Array<string>;
1310
+ }
1258
1311
  /**
1259
1312
  * Request parameters for resolvePickfaceIssue operation in PickfacesApi.
1260
1313
  * @export
@@ -1442,6 +1495,15 @@ export declare class PickfacesApi extends BaseAPI {
1442
1495
  * @memberof PickfacesApi
1443
1496
  */
1444
1497
  printPickfaceLabel(requestParameters: PickfacesApiPrintPickfaceLabelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1498
+ /**
1499
+ * Print pickface labels
1500
+ * @summary Print pickface Labels
1501
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1502
+ * @param {*} [options] Override http request option.
1503
+ * @throws {RequiredError}
1504
+ * @memberof PickfacesApi
1505
+ */
1506
+ printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1445
1507
  /**
1446
1508
  * Resolves an issue on a pickface
1447
1509
  * @summary Resolve pickface issue
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.14.0
8
+ * The version of the OpenAPI document: 0.15.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -517,6 +517,54 @@ const PickfacesApiAxiosParamCreator = function (configuration) {
517
517
  options: localVarRequestOptions,
518
518
  };
519
519
  }),
520
+ /**
521
+ * Print pickface labels
522
+ * @summary Print pickface Labels
523
+ * @param {string} project What project it is
524
+ * @param {string} deviceRef Unique identifier of a warehouse device
525
+ * @param {Array<string>} ids List of pickface ids
526
+ * @param {*} [options] Override http request option.
527
+ * @throws {RequiredError}
528
+ */
529
+ printPickfaceLabels: (project_1, deviceRef_1, ids_1, ...args_1) => __awaiter(this, [project_1, deviceRef_1, ids_1, ...args_1], void 0, function* (project, deviceRef, ids, options = {}) {
530
+ // verify required parameter 'project' is not null or undefined
531
+ (0, common_1.assertParamExists)('printPickfaceLabels', 'project', project);
532
+ // verify required parameter 'deviceRef' is not null or undefined
533
+ (0, common_1.assertParamExists)('printPickfaceLabels', 'deviceRef', deviceRef);
534
+ // verify required parameter 'ids' is not null or undefined
535
+ (0, common_1.assertParamExists)('printPickfaceLabels', 'ids', ids);
536
+ const localVarPath = `/v1/pickfaces/print`;
537
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
538
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
539
+ let baseOptions;
540
+ if (configuration) {
541
+ baseOptions = configuration.baseOptions;
542
+ }
543
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
544
+ const localVarHeaderParameter = {};
545
+ const localVarQueryParameter = {};
546
+ // authentication session-oauth required
547
+ // oauth required
548
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
549
+ // authentication api-key required
550
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
551
+ if (project !== undefined) {
552
+ localVarQueryParameter['project'] = project;
553
+ }
554
+ if (deviceRef !== undefined) {
555
+ localVarQueryParameter['deviceRef'] = deviceRef;
556
+ }
557
+ if (ids) {
558
+ localVarQueryParameter['ids'] = ids;
559
+ }
560
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
561
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
562
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
563
+ return {
564
+ url: (0, common_1.toPathString)(localVarUrlObj),
565
+ options: localVarRequestOptions,
566
+ };
567
+ }),
520
568
  /**
521
569
  * Resolves an issue on a pickface
522
570
  * @summary Resolve pickface issue
@@ -863,6 +911,24 @@ const PickfacesApiFp = function (configuration) {
863
911
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
864
912
  });
865
913
  },
914
+ /**
915
+ * Print pickface labels
916
+ * @summary Print pickface Labels
917
+ * @param {string} project What project it is
918
+ * @param {string} deviceRef Unique identifier of a warehouse device
919
+ * @param {Array<string>} ids List of pickface ids
920
+ * @param {*} [options] Override http request option.
921
+ * @throws {RequiredError}
922
+ */
923
+ printPickfaceLabels(project, deviceRef, ids, options) {
924
+ return __awaiter(this, void 0, void 0, function* () {
925
+ var _a, _b, _c;
926
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, ids, options);
927
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
928
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PickfacesApi.printPickfaceLabels']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
929
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
930
+ });
931
+ },
866
932
  /**
867
933
  * Resolves an issue on a pickface
868
934
  * @summary Resolve pickface issue
@@ -1038,6 +1104,16 @@ const PickfacesApiFactory = function (configuration, basePath, axios) {
1038
1104
  printPickfaceLabel(requestParameters, options) {
1039
1105
  return localVarFp.printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(axios, basePath));
1040
1106
  },
1107
+ /**
1108
+ * Print pickface labels
1109
+ * @summary Print pickface Labels
1110
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1111
+ * @param {*} [options] Override http request option.
1112
+ * @throws {RequiredError}
1113
+ */
1114
+ printPickfaceLabels(requestParameters, options) {
1115
+ return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(axios, basePath));
1116
+ },
1041
1117
  /**
1042
1118
  * Resolves an issue on a pickface
1043
1119
  * @summary Resolve pickface issue
@@ -1199,6 +1275,17 @@ class PickfacesApi extends base_1.BaseAPI {
1199
1275
  printPickfaceLabel(requestParameters, options) {
1200
1276
  return (0, exports.PickfacesApiFp)(this.configuration).printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(this.axios, this.basePath));
1201
1277
  }
1278
+ /**
1279
+ * Print pickface labels
1280
+ * @summary Print pickface Labels
1281
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1282
+ * @param {*} [options] Override http request option.
1283
+ * @throws {RequiredError}
1284
+ * @memberof PickfacesApi
1285
+ */
1286
+ printPickfaceLabels(requestParameters, options) {
1287
+ return (0, exports.PickfacesApiFp)(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
1288
+ }
1202
1289
  /**
1203
1290
  * Resolves an issue on a pickface
1204
1291
  * @summary Resolve pickface issue
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.14.0
8
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.14.0
8
+ * The version of the OpenAPI document: 0.15.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.14.0
8
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -704,6 +704,16 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
704
704
  * @throws {RequiredError}
705
705
  */
706
706
  printPickfaceLabel: (project: string, pickfaceId: string, deviceRef: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
707
+ /**
708
+ * Print pickface labels
709
+ * @summary Print pickface Labels
710
+ * @param {string} project What project it is
711
+ * @param {string} deviceRef Unique identifier of a warehouse device
712
+ * @param {Array<string>} ids List of pickface ids
713
+ * @param {*} [options] Override http request option.
714
+ * @throws {RequiredError}
715
+ */
716
+ printPickfaceLabels: (project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
707
717
  /**
708
718
  * Resolves an issue on a pickface
709
719
  * @summary Resolve pickface issue
@@ -848,6 +858,16 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
848
858
  * @throws {RequiredError}
849
859
  */
850
860
  printPickfaceLabel(project: string, pickfaceId: string, deviceRef: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
861
+ /**
862
+ * Print pickface labels
863
+ * @summary Print pickface Labels
864
+ * @param {string} project What project it is
865
+ * @param {string} deviceRef Unique identifier of a warehouse device
866
+ * @param {Array<string>} ids List of pickface ids
867
+ * @param {*} [options] Override http request option.
868
+ * @throws {RequiredError}
869
+ */
870
+ printPickfaceLabels(project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
851
871
  /**
852
872
  * Resolves an issue on a pickface
853
873
  * @summary Resolve pickface issue
@@ -973,6 +993,14 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
973
993
  * @throws {RequiredError}
974
994
  */
975
995
  printPickfaceLabel(requestParameters: PickfacesApiPrintPickfaceLabelRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
996
+ /**
997
+ * Print pickface labels
998
+ * @summary Print pickface Labels
999
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1000
+ * @param {*} [options] Override http request option.
1001
+ * @throws {RequiredError}
1002
+ */
1003
+ printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
976
1004
  /**
977
1005
  * Resolves an issue on a pickface
978
1006
  * @summary Resolve pickface issue
@@ -1255,6 +1283,31 @@ export interface PickfacesApiPrintPickfaceLabelRequest {
1255
1283
  */
1256
1284
  readonly deviceRef: string;
1257
1285
  }
1286
+ /**
1287
+ * Request parameters for printPickfaceLabels operation in PickfacesApi.
1288
+ * @export
1289
+ * @interface PickfacesApiPrintPickfaceLabelsRequest
1290
+ */
1291
+ export interface PickfacesApiPrintPickfaceLabelsRequest {
1292
+ /**
1293
+ * What project it is
1294
+ * @type {string}
1295
+ * @memberof PickfacesApiPrintPickfaceLabels
1296
+ */
1297
+ readonly project: string;
1298
+ /**
1299
+ * Unique identifier of a warehouse device
1300
+ * @type {string}
1301
+ * @memberof PickfacesApiPrintPickfaceLabels
1302
+ */
1303
+ readonly deviceRef: string;
1304
+ /**
1305
+ * List of pickface ids
1306
+ * @type {Array<string>}
1307
+ * @memberof PickfacesApiPrintPickfaceLabels
1308
+ */
1309
+ readonly ids: Array<string>;
1310
+ }
1258
1311
  /**
1259
1312
  * Request parameters for resolvePickfaceIssue operation in PickfacesApi.
1260
1313
  * @export
@@ -1442,6 +1495,15 @@ export declare class PickfacesApi extends BaseAPI {
1442
1495
  * @memberof PickfacesApi
1443
1496
  */
1444
1497
  printPickfaceLabel(requestParameters: PickfacesApiPrintPickfaceLabelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1498
+ /**
1499
+ * Print pickface labels
1500
+ * @summary Print pickface Labels
1501
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1502
+ * @param {*} [options] Override http request option.
1503
+ * @throws {RequiredError}
1504
+ * @memberof PickfacesApi
1505
+ */
1506
+ printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1445
1507
  /**
1446
1508
  * Resolves an issue on a pickface
1447
1509
  * @summary Resolve pickface issue
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -514,6 +514,54 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
514
514
  options: localVarRequestOptions,
515
515
  };
516
516
  }),
517
+ /**
518
+ * Print pickface labels
519
+ * @summary Print pickface Labels
520
+ * @param {string} project What project it is
521
+ * @param {string} deviceRef Unique identifier of a warehouse device
522
+ * @param {Array<string>} ids List of pickface ids
523
+ * @param {*} [options] Override http request option.
524
+ * @throws {RequiredError}
525
+ */
526
+ printPickfaceLabels: (project_1, deviceRef_1, ids_1, ...args_1) => __awaiter(this, [project_1, deviceRef_1, ids_1, ...args_1], void 0, function* (project, deviceRef, ids, options = {}) {
527
+ // verify required parameter 'project' is not null or undefined
528
+ assertParamExists('printPickfaceLabels', 'project', project);
529
+ // verify required parameter 'deviceRef' is not null or undefined
530
+ assertParamExists('printPickfaceLabels', 'deviceRef', deviceRef);
531
+ // verify required parameter 'ids' is not null or undefined
532
+ assertParamExists('printPickfaceLabels', 'ids', ids);
533
+ const localVarPath = `/v1/pickfaces/print`;
534
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
535
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
536
+ let baseOptions;
537
+ if (configuration) {
538
+ baseOptions = configuration.baseOptions;
539
+ }
540
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
541
+ const localVarHeaderParameter = {};
542
+ const localVarQueryParameter = {};
543
+ // authentication session-oauth required
544
+ // oauth required
545
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
546
+ // authentication api-key required
547
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
548
+ if (project !== undefined) {
549
+ localVarQueryParameter['project'] = project;
550
+ }
551
+ if (deviceRef !== undefined) {
552
+ localVarQueryParameter['deviceRef'] = deviceRef;
553
+ }
554
+ if (ids) {
555
+ localVarQueryParameter['ids'] = ids;
556
+ }
557
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
558
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
559
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
560
+ return {
561
+ url: toPathString(localVarUrlObj),
562
+ options: localVarRequestOptions,
563
+ };
564
+ }),
517
565
  /**
518
566
  * Resolves an issue on a pickface
519
567
  * @summary Resolve pickface issue
@@ -859,6 +907,24 @@ export const PickfacesApiFp = function (configuration) {
859
907
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
860
908
  });
861
909
  },
910
+ /**
911
+ * Print pickface labels
912
+ * @summary Print pickface Labels
913
+ * @param {string} project What project it is
914
+ * @param {string} deviceRef Unique identifier of a warehouse device
915
+ * @param {Array<string>} ids List of pickface ids
916
+ * @param {*} [options] Override http request option.
917
+ * @throws {RequiredError}
918
+ */
919
+ printPickfaceLabels(project, deviceRef, ids, options) {
920
+ return __awaiter(this, void 0, void 0, function* () {
921
+ var _a, _b, _c;
922
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, ids, options);
923
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
924
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PickfacesApi.printPickfaceLabels']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
925
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
926
+ });
927
+ },
862
928
  /**
863
929
  * Resolves an issue on a pickface
864
930
  * @summary Resolve pickface issue
@@ -1033,6 +1099,16 @@ export const PickfacesApiFactory = function (configuration, basePath, axios) {
1033
1099
  printPickfaceLabel(requestParameters, options) {
1034
1100
  return localVarFp.printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(axios, basePath));
1035
1101
  },
1102
+ /**
1103
+ * Print pickface labels
1104
+ * @summary Print pickface Labels
1105
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1106
+ * @param {*} [options] Override http request option.
1107
+ * @throws {RequiredError}
1108
+ */
1109
+ printPickfaceLabels(requestParameters, options) {
1110
+ return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(axios, basePath));
1111
+ },
1036
1112
  /**
1037
1113
  * Resolves an issue on a pickface
1038
1114
  * @summary Resolve pickface issue
@@ -1193,6 +1269,17 @@ export class PickfacesApi extends BaseAPI {
1193
1269
  printPickfaceLabel(requestParameters, options) {
1194
1270
  return PickfacesApiFp(this.configuration).printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(this.axios, this.basePath));
1195
1271
  }
1272
+ /**
1273
+ * Print pickface labels
1274
+ * @summary Print pickface Labels
1275
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1276
+ * @param {*} [options] Override http request option.
1277
+ * @throws {RequiredError}
1278
+ * @memberof PickfacesApi
1279
+ */
1280
+ printPickfaceLabels(requestParameters, options) {
1281
+ return PickfacesApiFp(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
1282
+ }
1196
1283
  /**
1197
1284
  * Resolves an issue on a pickface
1198
1285
  * @summary Resolve pickface issue
@@ -2,7 +2,7 @@
2
2
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.14.0
8
+ * The version of the OpenAPI document: 0.15.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
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/pickfaces",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {