@teemill/pickfaces 0.16.0 → 0.17.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.16.0
1
+ ## @teemill/pickfaces@0.17.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.16.0 --save
39
+ npm install @teemill/pickfaces@0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
7
+ * The version of the OpenAPI document: 0.17.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1202,17 +1202,16 @@ export const PickfacesApiAxiosParamCreator = function (configuration?: Configura
1202
1202
  * @summary Print pickface Labels
1203
1203
  * @param {string} project What project it is
1204
1204
  * @param {string} deviceRef Unique identifier of a warehouse device
1205
- * @param {Array<string>} ids List of pickface ids
1205
+ * @param {string} [search] Search term to filter based on pickface code
1206
+ * @param {Array<string>} [ids] List of pickface ids
1206
1207
  * @param {*} [options] Override http request option.
1207
1208
  * @throws {RequiredError}
1208
1209
  */
1209
- printPickfaceLabels: async (project: string, deviceRef: string, ids: Array<string>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1210
+ printPickfaceLabels: async (project: string, deviceRef: string, search?: string, ids?: Array<string>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1210
1211
  // verify required parameter 'project' is not null or undefined
1211
1212
  assertParamExists('printPickfaceLabels', 'project', project)
1212
1213
  // verify required parameter 'deviceRef' is not null or undefined
1213
1214
  assertParamExists('printPickfaceLabels', 'deviceRef', deviceRef)
1214
- // verify required parameter 'ids' is not null or undefined
1215
- assertParamExists('printPickfaceLabels', 'ids', ids)
1216
1215
  const localVarPath = `/v1/pickfaces/print`;
1217
1216
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1218
1217
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -1236,6 +1235,10 @@ export const PickfacesApiAxiosParamCreator = function (configuration?: Configura
1236
1235
  localVarQueryParameter['project'] = project;
1237
1236
  }
1238
1237
 
1238
+ if (search !== undefined) {
1239
+ localVarQueryParameter['search'] = search;
1240
+ }
1241
+
1239
1242
  if (deviceRef !== undefined) {
1240
1243
  localVarQueryParameter['deviceRef'] = deviceRef;
1241
1244
  }
@@ -1601,12 +1604,13 @@ export const PickfacesApiFp = function(configuration?: Configuration) {
1601
1604
  * @summary Print pickface Labels
1602
1605
  * @param {string} project What project it is
1603
1606
  * @param {string} deviceRef Unique identifier of a warehouse device
1604
- * @param {Array<string>} ids List of pickface ids
1607
+ * @param {string} [search] Search term to filter based on pickface code
1608
+ * @param {Array<string>} [ids] List of pickface ids
1605
1609
  * @param {*} [options] Override http request option.
1606
1610
  * @throws {RequiredError}
1607
1611
  */
1608
- async printPickfaceLabels(project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
1609
- const localVarAxiosArgs = await localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, ids, options);
1612
+ async printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
1613
+ const localVarAxiosArgs = await localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, search, ids, options);
1610
1614
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1611
1615
  const localVarOperationServerBasePath = operationServerMap['PickfacesApi.printPickfaceLabels']?.[localVarOperationServerIndex]?.url;
1612
1616
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1785,7 +1789,7 @@ export const PickfacesApiFactory = function (configuration?: Configuration, base
1785
1789
  * @throws {RequiredError}
1786
1790
  */
1787
1791
  printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
1788
- return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(axios, basePath));
1792
+ return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.search, requestParameters.ids, options).then((request) => request(axios, basePath));
1789
1793
  },
1790
1794
  /**
1791
1795
  * Resolves an issue on a pickface
@@ -2120,12 +2124,19 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
2120
2124
  */
2121
2125
  readonly deviceRef: string
2122
2126
 
2127
+ /**
2128
+ * Search term to filter based on pickface code
2129
+ * @type {string}
2130
+ * @memberof PickfacesApiPrintPickfaceLabels
2131
+ */
2132
+ readonly search?: string
2133
+
2123
2134
  /**
2124
2135
  * List of pickface ids
2125
2136
  * @type {Array<string>}
2126
2137
  * @memberof PickfacesApiPrintPickfaceLabels
2127
2138
  */
2128
- readonly ids: Array<string>
2139
+ readonly ids?: Array<string>
2129
2140
  }
2130
2141
 
2131
2142
  /**
@@ -2367,7 +2378,7 @@ export class PickfacesApi extends BaseAPI {
2367
2378
  * @memberof PickfacesApi
2368
2379
  */
2369
2380
  public printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig) {
2370
- return PickfacesApiFp(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
2381
+ return PickfacesApiFp(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.search, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
2371
2382
  }
2372
2383
 
2373
2384
  /**
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
7
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
7
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
7
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
5
+ * The version of the OpenAPI document: 0.17.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -720,11 +720,12 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
720
720
  * @summary Print pickface Labels
721
721
  * @param {string} project What project it is
722
722
  * @param {string} deviceRef Unique identifier of a warehouse device
723
- * @param {Array<string>} ids List of pickface ids
723
+ * @param {string} [search] Search term to filter based on pickface code
724
+ * @param {Array<string>} [ids] List of pickface ids
724
725
  * @param {*} [options] Override http request option.
725
726
  * @throws {RequiredError}
726
727
  */
727
- printPickfaceLabels: (project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
728
+ printPickfaceLabels: (project: string, deviceRef: string, search?: string, ids?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
728
729
  /**
729
730
  * Resolves an issue on a pickface
730
731
  * @summary Resolve pickface issue
@@ -873,11 +874,12 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
873
874
  * @summary Print pickface Labels
874
875
  * @param {string} project What project it is
875
876
  * @param {string} deviceRef Unique identifier of a warehouse device
876
- * @param {Array<string>} ids List of pickface ids
877
+ * @param {string} [search] Search term to filter based on pickface code
878
+ * @param {Array<string>} [ids] List of pickface ids
877
879
  * @param {*} [options] Override http request option.
878
880
  * @throws {RequiredError}
879
881
  */
880
- printPickfaceLabels(project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
882
+ printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
881
883
  /**
882
884
  * Resolves an issue on a pickface
883
885
  * @summary Resolve pickface issue
@@ -1305,12 +1307,18 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
1305
1307
  * @memberof PickfacesApiPrintPickfaceLabels
1306
1308
  */
1307
1309
  readonly deviceRef: string;
1310
+ /**
1311
+ * Search term to filter based on pickface code
1312
+ * @type {string}
1313
+ * @memberof PickfacesApiPrintPickfaceLabels
1314
+ */
1315
+ readonly search?: string;
1308
1316
  /**
1309
1317
  * List of pickface ids
1310
1318
  * @type {Array<string>}
1311
1319
  * @memberof PickfacesApiPrintPickfaceLabels
1312
1320
  */
1313
- readonly ids: Array<string>;
1321
+ readonly ids?: Array<string>;
1314
1322
  }
1315
1323
  /**
1316
1324
  * Request parameters for resolvePickfaceIssue operation in PickfacesApi.
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Pickfaces API
6
6
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
8
+ * The version of the OpenAPI document: 0.17.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -518,17 +518,16 @@ const PickfacesApiAxiosParamCreator = function (configuration) {
518
518
  * @summary Print pickface Labels
519
519
  * @param {string} project What project it is
520
520
  * @param {string} deviceRef Unique identifier of a warehouse device
521
- * @param {Array<string>} ids List of pickface ids
521
+ * @param {string} [search] Search term to filter based on pickface code
522
+ * @param {Array<string>} [ids] List of pickface ids
522
523
  * @param {*} [options] Override http request option.
523
524
  * @throws {RequiredError}
524
525
  */
525
- 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 = {}) {
526
+ printPickfaceLabels: (project_1, deviceRef_1, search_1, ids_1, ...args_1) => __awaiter(this, [project_1, deviceRef_1, search_1, ids_1, ...args_1], void 0, function* (project, deviceRef, search, ids, options = {}) {
526
527
  // verify required parameter 'project' is not null or undefined
527
528
  (0, common_1.assertParamExists)('printPickfaceLabels', 'project', project);
528
529
  // verify required parameter 'deviceRef' is not null or undefined
529
530
  (0, common_1.assertParamExists)('printPickfaceLabels', 'deviceRef', deviceRef);
530
- // verify required parameter 'ids' is not null or undefined
531
- (0, common_1.assertParamExists)('printPickfaceLabels', 'ids', ids);
532
531
  const localVarPath = `/v1/pickfaces/print`;
533
532
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
534
533
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -547,6 +546,9 @@ const PickfacesApiAxiosParamCreator = function (configuration) {
547
546
  if (project !== undefined) {
548
547
  localVarQueryParameter['project'] = project;
549
548
  }
549
+ if (search !== undefined) {
550
+ localVarQueryParameter['search'] = search;
551
+ }
550
552
  if (deviceRef !== undefined) {
551
553
  localVarQueryParameter['deviceRef'] = deviceRef;
552
554
  }
@@ -911,14 +913,15 @@ const PickfacesApiFp = function (configuration) {
911
913
  * @summary Print pickface Labels
912
914
  * @param {string} project What project it is
913
915
  * @param {string} deviceRef Unique identifier of a warehouse device
914
- * @param {Array<string>} ids List of pickface ids
916
+ * @param {string} [search] Search term to filter based on pickface code
917
+ * @param {Array<string>} [ids] List of pickface ids
915
918
  * @param {*} [options] Override http request option.
916
919
  * @throws {RequiredError}
917
920
  */
918
- printPickfaceLabels(project, deviceRef, ids, options) {
921
+ printPickfaceLabels(project, deviceRef, search, ids, options) {
919
922
  return __awaiter(this, void 0, void 0, function* () {
920
923
  var _a, _b, _c;
921
- const localVarAxiosArgs = yield localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, ids, options);
924
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, search, ids, options);
922
925
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
923
926
  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;
924
927
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1107,7 +1110,7 @@ const PickfacesApiFactory = function (configuration, basePath, axios) {
1107
1110
  * @throws {RequiredError}
1108
1111
  */
1109
1112
  printPickfaceLabels(requestParameters, options) {
1110
- return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(axios, basePath));
1113
+ return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.search, requestParameters.ids, options).then((request) => request(axios, basePath));
1111
1114
  },
1112
1115
  /**
1113
1116
  * Resolves an issue on a pickface
@@ -1279,7 +1282,7 @@ class PickfacesApi extends base_1.BaseAPI {
1279
1282
  * @memberof PickfacesApi
1280
1283
  */
1281
1284
  printPickfaceLabels(requestParameters, options) {
1282
- return (0, exports.PickfacesApiFp)(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
1285
+ return (0, exports.PickfacesApiFp)(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.search, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
1283
1286
  }
1284
1287
  /**
1285
1288
  * Resolves an issue on a pickface
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Pickfaces API
3
3
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
5
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
8
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
5
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
8
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
5
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
8
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
5
+ * The version of the OpenAPI document: 0.17.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -720,11 +720,12 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
720
720
  * @summary Print pickface Labels
721
721
  * @param {string} project What project it is
722
722
  * @param {string} deviceRef Unique identifier of a warehouse device
723
- * @param {Array<string>} ids List of pickface ids
723
+ * @param {string} [search] Search term to filter based on pickface code
724
+ * @param {Array<string>} [ids] List of pickface ids
724
725
  * @param {*} [options] Override http request option.
725
726
  * @throws {RequiredError}
726
727
  */
727
- printPickfaceLabels: (project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
728
+ printPickfaceLabels: (project: string, deviceRef: string, search?: string, ids?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
728
729
  /**
729
730
  * Resolves an issue on a pickface
730
731
  * @summary Resolve pickface issue
@@ -873,11 +874,12 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
873
874
  * @summary Print pickface Labels
874
875
  * @param {string} project What project it is
875
876
  * @param {string} deviceRef Unique identifier of a warehouse device
876
- * @param {Array<string>} ids List of pickface ids
877
+ * @param {string} [search] Search term to filter based on pickface code
878
+ * @param {Array<string>} [ids] List of pickface ids
877
879
  * @param {*} [options] Override http request option.
878
880
  * @throws {RequiredError}
879
881
  */
880
- printPickfaceLabels(project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
882
+ printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
881
883
  /**
882
884
  * Resolves an issue on a pickface
883
885
  * @summary Resolve pickface issue
@@ -1305,12 +1307,18 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
1305
1307
  * @memberof PickfacesApiPrintPickfaceLabels
1306
1308
  */
1307
1309
  readonly deviceRef: string;
1310
+ /**
1311
+ * Search term to filter based on pickface code
1312
+ * @type {string}
1313
+ * @memberof PickfacesApiPrintPickfaceLabels
1314
+ */
1315
+ readonly search?: string;
1308
1316
  /**
1309
1317
  * List of pickface ids
1310
1318
  * @type {Array<string>}
1311
1319
  * @memberof PickfacesApiPrintPickfaceLabels
1312
1320
  */
1313
- readonly ids: Array<string>;
1321
+ readonly ids?: Array<string>;
1314
1322
  }
1315
1323
  /**
1316
1324
  * Request parameters for resolvePickfaceIssue operation in PickfacesApi.
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
7
+ * The version of the OpenAPI document: 0.17.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -515,17 +515,16 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
515
515
  * @summary Print pickface Labels
516
516
  * @param {string} project What project it is
517
517
  * @param {string} deviceRef Unique identifier of a warehouse device
518
- * @param {Array<string>} ids List of pickface ids
518
+ * @param {string} [search] Search term to filter based on pickface code
519
+ * @param {Array<string>} [ids] List of pickface ids
519
520
  * @param {*} [options] Override http request option.
520
521
  * @throws {RequiredError}
521
522
  */
522
- 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 = {}) {
523
+ printPickfaceLabels: (project_1, deviceRef_1, search_1, ids_1, ...args_1) => __awaiter(this, [project_1, deviceRef_1, search_1, ids_1, ...args_1], void 0, function* (project, deviceRef, search, ids, options = {}) {
523
524
  // verify required parameter 'project' is not null or undefined
524
525
  assertParamExists('printPickfaceLabels', 'project', project);
525
526
  // verify required parameter 'deviceRef' is not null or undefined
526
527
  assertParamExists('printPickfaceLabels', 'deviceRef', deviceRef);
527
- // verify required parameter 'ids' is not null or undefined
528
- assertParamExists('printPickfaceLabels', 'ids', ids);
529
528
  const localVarPath = `/v1/pickfaces/print`;
530
529
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
531
530
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -544,6 +543,9 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
544
543
  if (project !== undefined) {
545
544
  localVarQueryParameter['project'] = project;
546
545
  }
546
+ if (search !== undefined) {
547
+ localVarQueryParameter['search'] = search;
548
+ }
547
549
  if (deviceRef !== undefined) {
548
550
  localVarQueryParameter['deviceRef'] = deviceRef;
549
551
  }
@@ -907,14 +909,15 @@ export const PickfacesApiFp = function (configuration) {
907
909
  * @summary Print pickface Labels
908
910
  * @param {string} project What project it is
909
911
  * @param {string} deviceRef Unique identifier of a warehouse device
910
- * @param {Array<string>} ids List of pickface ids
912
+ * @param {string} [search] Search term to filter based on pickface code
913
+ * @param {Array<string>} [ids] List of pickface ids
911
914
  * @param {*} [options] Override http request option.
912
915
  * @throws {RequiredError}
913
916
  */
914
- printPickfaceLabels(project, deviceRef, ids, options) {
917
+ printPickfaceLabels(project, deviceRef, search, ids, options) {
915
918
  return __awaiter(this, void 0, void 0, function* () {
916
919
  var _a, _b, _c;
917
- const localVarAxiosArgs = yield localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, ids, options);
920
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, search, ids, options);
918
921
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
919
922
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PickfacesApi.printPickfaceLabels']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
920
923
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1102,7 +1105,7 @@ export const PickfacesApiFactory = function (configuration, basePath, axios) {
1102
1105
  * @throws {RequiredError}
1103
1106
  */
1104
1107
  printPickfaceLabels(requestParameters, options) {
1105
- return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(axios, basePath));
1108
+ return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.search, requestParameters.ids, options).then((request) => request(axios, basePath));
1106
1109
  },
1107
1110
  /**
1108
1111
  * Resolves an issue on a pickface
@@ -1273,7 +1276,7 @@ export class PickfacesApi extends BaseAPI {
1273
1276
  * @memberof PickfacesApi
1274
1277
  */
1275
1278
  printPickfaceLabels(requestParameters, options) {
1276
- return PickfacesApiFp(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
1279
+ return PickfacesApiFp(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.search, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
1277
1280
  }
1278
1281
  /**
1279
1282
  * Resolves an issue on a pickface
@@ -2,7 +2,7 @@
2
2
  * Pickfaces API
3
3
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
5
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
7
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
5
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
7
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
5
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
7
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
5
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
7
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
5
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
8
+ * The version of the OpenAPI document: 0.17.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
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. 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.16.0
7
+ * The version of the OpenAPI document: 0.17.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.16.0",
3
+ "version": "0.17.0",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {