@teemill/pickfaces 0.15.5 → 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.15.5
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.15.5 --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.15.5
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).
@@ -116,6 +116,12 @@ export interface CreatePickfaceRequest {
116
116
  * @memberof CreatePickfaceRequest
117
117
  */
118
118
  'containerModelId'?: string;
119
+ /**
120
+ * Unique object identifier
121
+ * @type {string}
122
+ * @memberof CreatePickfaceRequest
123
+ */
124
+ 'zoneId'?: string;
119
125
  }
120
126
  /**
121
127
  *
@@ -552,6 +558,12 @@ export interface UpdatePickfaceRequest {
552
558
  * @memberof UpdatePickfaceRequest
553
559
  */
554
560
  'containerModelId'?: string;
561
+ /**
562
+ * Unique object identifier
563
+ * @type {string}
564
+ * @memberof UpdatePickfaceRequest
565
+ */
566
+ 'zoneId'?: string;
555
567
  /**
556
568
  *
557
569
  * @type {Array<UpdatePickfaceRequestContentsInner>}
@@ -1190,17 +1202,16 @@ export const PickfacesApiAxiosParamCreator = function (configuration?: Configura
1190
1202
  * @summary Print pickface Labels
1191
1203
  * @param {string} project What project it is
1192
1204
  * @param {string} deviceRef Unique identifier of a warehouse device
1193
- * @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
1194
1207
  * @param {*} [options] Override http request option.
1195
1208
  * @throws {RequiredError}
1196
1209
  */
1197
- 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> => {
1198
1211
  // verify required parameter 'project' is not null or undefined
1199
1212
  assertParamExists('printPickfaceLabels', 'project', project)
1200
1213
  // verify required parameter 'deviceRef' is not null or undefined
1201
1214
  assertParamExists('printPickfaceLabels', 'deviceRef', deviceRef)
1202
- // verify required parameter 'ids' is not null or undefined
1203
- assertParamExists('printPickfaceLabels', 'ids', ids)
1204
1215
  const localVarPath = `/v1/pickfaces/print`;
1205
1216
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1206
1217
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -1224,6 +1235,10 @@ export const PickfacesApiAxiosParamCreator = function (configuration?: Configura
1224
1235
  localVarQueryParameter['project'] = project;
1225
1236
  }
1226
1237
 
1238
+ if (search !== undefined) {
1239
+ localVarQueryParameter['search'] = search;
1240
+ }
1241
+
1227
1242
  if (deviceRef !== undefined) {
1228
1243
  localVarQueryParameter['deviceRef'] = deviceRef;
1229
1244
  }
@@ -1589,12 +1604,13 @@ export const PickfacesApiFp = function(configuration?: Configuration) {
1589
1604
  * @summary Print pickface Labels
1590
1605
  * @param {string} project What project it is
1591
1606
  * @param {string} deviceRef Unique identifier of a warehouse device
1592
- * @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
1593
1609
  * @param {*} [options] Override http request option.
1594
1610
  * @throws {RequiredError}
1595
1611
  */
1596
- async printPickfaceLabels(project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
1597
- 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);
1598
1614
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1599
1615
  const localVarOperationServerBasePath = operationServerMap['PickfacesApi.printPickfaceLabels']?.[localVarOperationServerIndex]?.url;
1600
1616
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1773,7 +1789,7 @@ export const PickfacesApiFactory = function (configuration?: Configuration, base
1773
1789
  * @throws {RequiredError}
1774
1790
  */
1775
1791
  printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
1776
- 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));
1777
1793
  },
1778
1794
  /**
1779
1795
  * Resolves an issue on a pickface
@@ -2108,12 +2124,19 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
2108
2124
  */
2109
2125
  readonly deviceRef: string
2110
2126
 
2127
+ /**
2128
+ * Search term to filter based on pickface code
2129
+ * @type {string}
2130
+ * @memberof PickfacesApiPrintPickfaceLabels
2131
+ */
2132
+ readonly search?: string
2133
+
2111
2134
  /**
2112
2135
  * List of pickface ids
2113
2136
  * @type {Array<string>}
2114
2137
  * @memberof PickfacesApiPrintPickfaceLabels
2115
2138
  */
2116
- readonly ids: Array<string>
2139
+ readonly ids?: Array<string>
2117
2140
  }
2118
2141
 
2119
2142
  /**
@@ -2355,7 +2378,7 @@ export class PickfacesApi extends BaseAPI {
2355
2378
  * @memberof PickfacesApi
2356
2379
  */
2357
2380
  public printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig) {
2358
- 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));
2359
2382
  }
2360
2383
 
2361
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.15.5
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.15.5
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.15.5
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.15.5
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).
@@ -106,6 +106,12 @@ export interface CreatePickfaceRequest {
106
106
  * @memberof CreatePickfaceRequest
107
107
  */
108
108
  'containerModelId'?: string;
109
+ /**
110
+ * Unique object identifier
111
+ * @type {string}
112
+ * @memberof CreatePickfaceRequest
113
+ */
114
+ 'zoneId'?: string;
109
115
  }
110
116
  /**
111
117
  *
@@ -542,6 +548,12 @@ export interface UpdatePickfaceRequest {
542
548
  * @memberof UpdatePickfaceRequest
543
549
  */
544
550
  'containerModelId'?: string;
551
+ /**
552
+ * Unique object identifier
553
+ * @type {string}
554
+ * @memberof UpdatePickfaceRequest
555
+ */
556
+ 'zoneId'?: string;
545
557
  /**
546
558
  *
547
559
  * @type {Array<UpdatePickfaceRequestContentsInner>}
@@ -708,11 +720,12 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
708
720
  * @summary Print pickface Labels
709
721
  * @param {string} project What project it is
710
722
  * @param {string} deviceRef Unique identifier of a warehouse device
711
- * @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
712
725
  * @param {*} [options] Override http request option.
713
726
  * @throws {RequiredError}
714
727
  */
715
- 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>;
716
729
  /**
717
730
  * Resolves an issue on a pickface
718
731
  * @summary Resolve pickface issue
@@ -861,11 +874,12 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
861
874
  * @summary Print pickface Labels
862
875
  * @param {string} project What project it is
863
876
  * @param {string} deviceRef Unique identifier of a warehouse device
864
- * @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
865
879
  * @param {*} [options] Override http request option.
866
880
  * @throws {RequiredError}
867
881
  */
868
- 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>>;
869
883
  /**
870
884
  * Resolves an issue on a pickface
871
885
  * @summary Resolve pickface issue
@@ -1293,12 +1307,18 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
1293
1307
  * @memberof PickfacesApiPrintPickfaceLabels
1294
1308
  */
1295
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;
1296
1316
  /**
1297
1317
  * List of pickface ids
1298
1318
  * @type {Array<string>}
1299
1319
  * @memberof PickfacesApiPrintPickfaceLabels
1300
1320
  */
1301
- readonly ids: Array<string>;
1321
+ readonly ids?: Array<string>;
1302
1322
  }
1303
1323
  /**
1304
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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).
@@ -106,6 +106,12 @@ export interface CreatePickfaceRequest {
106
106
  * @memberof CreatePickfaceRequest
107
107
  */
108
108
  'containerModelId'?: string;
109
+ /**
110
+ * Unique object identifier
111
+ * @type {string}
112
+ * @memberof CreatePickfaceRequest
113
+ */
114
+ 'zoneId'?: string;
109
115
  }
110
116
  /**
111
117
  *
@@ -542,6 +548,12 @@ export interface UpdatePickfaceRequest {
542
548
  * @memberof UpdatePickfaceRequest
543
549
  */
544
550
  'containerModelId'?: string;
551
+ /**
552
+ * Unique object identifier
553
+ * @type {string}
554
+ * @memberof UpdatePickfaceRequest
555
+ */
556
+ 'zoneId'?: string;
545
557
  /**
546
558
  *
547
559
  * @type {Array<UpdatePickfaceRequestContentsInner>}
@@ -708,11 +720,12 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
708
720
  * @summary Print pickface Labels
709
721
  * @param {string} project What project it is
710
722
  * @param {string} deviceRef Unique identifier of a warehouse device
711
- * @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
712
725
  * @param {*} [options] Override http request option.
713
726
  * @throws {RequiredError}
714
727
  */
715
- 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>;
716
729
  /**
717
730
  * Resolves an issue on a pickface
718
731
  * @summary Resolve pickface issue
@@ -861,11 +874,12 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
861
874
  * @summary Print pickface Labels
862
875
  * @param {string} project What project it is
863
876
  * @param {string} deviceRef Unique identifier of a warehouse device
864
- * @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
865
879
  * @param {*} [options] Override http request option.
866
880
  * @throws {RequiredError}
867
881
  */
868
- 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>>;
869
883
  /**
870
884
  * Resolves an issue on a pickface
871
885
  * @summary Resolve pickface issue
@@ -1293,12 +1307,18 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
1293
1307
  * @memberof PickfacesApiPrintPickfaceLabels
1294
1308
  */
1295
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;
1296
1316
  /**
1297
1317
  * List of pickface ids
1298
1318
  * @type {Array<string>}
1299
1319
  * @memberof PickfacesApiPrintPickfaceLabels
1300
1320
  */
1301
- readonly ids: Array<string>;
1321
+ readonly ids?: Array<string>;
1302
1322
  }
1303
1323
  /**
1304
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5
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.15.5",
3
+ "version": "0.17.0",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {