@teemill/pickfaces 0.13.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/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.13.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).
@@ -285,6 +285,96 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
285
285
  options: localVarRequestOptions,
286
286
  };
287
287
  }),
288
+ /**
289
+ * Issue an empty pickface
290
+ * @summary Issue empty pickface
291
+ * @param {string} project What project it is
292
+ * @param {string} pickfaceId Unique identifier of a pickface
293
+ * @param {IssueEmptyPickfaceRequest} issueEmptyPickfaceRequest pickface issue schema
294
+ * @param {*} [options] Override http request option.
295
+ * @throws {RequiredError}
296
+ */
297
+ issueEmptyPickface: (project_1, pickfaceId_1, issueEmptyPickfaceRequest_1, ...args_1) => __awaiter(this, [project_1, pickfaceId_1, issueEmptyPickfaceRequest_1, ...args_1], void 0, function* (project, pickfaceId, issueEmptyPickfaceRequest, options = {}) {
298
+ // verify required parameter 'project' is not null or undefined
299
+ assertParamExists('issueEmptyPickface', 'project', project);
300
+ // verify required parameter 'pickfaceId' is not null or undefined
301
+ assertParamExists('issueEmptyPickface', 'pickfaceId', pickfaceId);
302
+ // verify required parameter 'issueEmptyPickfaceRequest' is not null or undefined
303
+ assertParamExists('issueEmptyPickface', 'issueEmptyPickfaceRequest', issueEmptyPickfaceRequest);
304
+ const localVarPath = `/v1/pickfaces/{pickfaceId}/issue/empty`
305
+ .replace(`{${"pickfaceId"}}`, encodeURIComponent(String(pickfaceId)));
306
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
307
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
308
+ let baseOptions;
309
+ if (configuration) {
310
+ baseOptions = configuration.baseOptions;
311
+ }
312
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
313
+ const localVarHeaderParameter = {};
314
+ const localVarQueryParameter = {};
315
+ // authentication session-oauth required
316
+ // oauth required
317
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
318
+ // authentication api-key required
319
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
320
+ if (project !== undefined) {
321
+ localVarQueryParameter['project'] = project;
322
+ }
323
+ localVarHeaderParameter['Content-Type'] = 'application/json';
324
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
325
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
326
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
327
+ localVarRequestOptions.data = serializeDataIfNeeded(issueEmptyPickfaceRequest, localVarRequestOptions, configuration);
328
+ return {
329
+ url: toPathString(localVarUrlObj),
330
+ options: localVarRequestOptions,
331
+ };
332
+ }),
333
+ /**
334
+ * Issue a pickface with wrong contents
335
+ * @summary Issue wrong contents pickface
336
+ * @param {string} project What project it is
337
+ * @param {string} pickfaceId Unique identifier of a pickface
338
+ * @param {IssueWrongContentsPickfaceRequest} issueWrongContentsPickfaceRequest pickface issue schema
339
+ * @param {*} [options] Override http request option.
340
+ * @throws {RequiredError}
341
+ */
342
+ issueWrongContentsPickface: (project_1, pickfaceId_1, issueWrongContentsPickfaceRequest_1, ...args_1) => __awaiter(this, [project_1, pickfaceId_1, issueWrongContentsPickfaceRequest_1, ...args_1], void 0, function* (project, pickfaceId, issueWrongContentsPickfaceRequest, options = {}) {
343
+ // verify required parameter 'project' is not null or undefined
344
+ assertParamExists('issueWrongContentsPickface', 'project', project);
345
+ // verify required parameter 'pickfaceId' is not null or undefined
346
+ assertParamExists('issueWrongContentsPickface', 'pickfaceId', pickfaceId);
347
+ // verify required parameter 'issueWrongContentsPickfaceRequest' is not null or undefined
348
+ assertParamExists('issueWrongContentsPickface', 'issueWrongContentsPickfaceRequest', issueWrongContentsPickfaceRequest);
349
+ const localVarPath = `/v1/pickfaces/{pickfaceId}/issue/wrong-contents`
350
+ .replace(`{${"pickfaceId"}}`, encodeURIComponent(String(pickfaceId)));
351
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
352
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
353
+ let baseOptions;
354
+ if (configuration) {
355
+ baseOptions = configuration.baseOptions;
356
+ }
357
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
358
+ const localVarHeaderParameter = {};
359
+ const localVarQueryParameter = {};
360
+ // authentication session-oauth required
361
+ // oauth required
362
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
363
+ // authentication api-key required
364
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
365
+ if (project !== undefined) {
366
+ localVarQueryParameter['project'] = project;
367
+ }
368
+ localVarHeaderParameter['Content-Type'] = 'application/json';
369
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
370
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
371
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
372
+ localVarRequestOptions.data = serializeDataIfNeeded(issueWrongContentsPickfaceRequest, localVarRequestOptions, configuration);
373
+ return {
374
+ url: toPathString(localVarUrlObj),
375
+ options: localVarRequestOptions,
376
+ };
377
+ }),
288
378
  /**
289
379
  * Get a list of pickface logs
290
380
  * @summary Get pickface logs
@@ -424,6 +514,94 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
424
514
  options: localVarRequestOptions,
425
515
  };
426
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
+ }),
565
+ /**
566
+ * Resolves an issue on a pickface
567
+ * @summary Resolve pickface issue
568
+ * @param {string} project What project it is
569
+ * @param {string} pickfaceId Unique identifier of a pickface
570
+ * @param {*} [options] Override http request option.
571
+ * @throws {RequiredError}
572
+ */
573
+ resolvePickfaceIssue: (project_1, pickfaceId_1, ...args_1) => __awaiter(this, [project_1, pickfaceId_1, ...args_1], void 0, function* (project, pickfaceId, options = {}) {
574
+ // verify required parameter 'project' is not null or undefined
575
+ assertParamExists('resolvePickfaceIssue', 'project', project);
576
+ // verify required parameter 'pickfaceId' is not null or undefined
577
+ assertParamExists('resolvePickfaceIssue', 'pickfaceId', pickfaceId);
578
+ const localVarPath = `/v1/pickfaces/{pickfaceId}/issue/resolve`
579
+ .replace(`{${"pickfaceId"}}`, encodeURIComponent(String(pickfaceId)));
580
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
581
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
582
+ let baseOptions;
583
+ if (configuration) {
584
+ baseOptions = configuration.baseOptions;
585
+ }
586
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
587
+ const localVarHeaderParameter = {};
588
+ const localVarQueryParameter = {};
589
+ // authentication session-oauth required
590
+ // oauth required
591
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
592
+ // authentication api-key required
593
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
594
+ if (project !== undefined) {
595
+ localVarQueryParameter['project'] = project;
596
+ }
597
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
598
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
599
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
600
+ return {
601
+ url: toPathString(localVarUrlObj),
602
+ options: localVarRequestOptions,
603
+ };
604
+ }),
427
605
  /**
428
606
  * Suggest pickfaces for putting away stock
429
607
  * @summary Suggest pickfaces
@@ -638,6 +816,42 @@ export const PickfacesApiFp = function (configuration) {
638
816
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
639
817
  });
640
818
  },
819
+ /**
820
+ * Issue an empty pickface
821
+ * @summary Issue empty pickface
822
+ * @param {string} project What project it is
823
+ * @param {string} pickfaceId Unique identifier of a pickface
824
+ * @param {IssueEmptyPickfaceRequest} issueEmptyPickfaceRequest pickface issue schema
825
+ * @param {*} [options] Override http request option.
826
+ * @throws {RequiredError}
827
+ */
828
+ issueEmptyPickface(project, pickfaceId, issueEmptyPickfaceRequest, options) {
829
+ return __awaiter(this, void 0, void 0, function* () {
830
+ var _a, _b, _c;
831
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.issueEmptyPickface(project, pickfaceId, issueEmptyPickfaceRequest, options);
832
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
833
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PickfacesApi.issueEmptyPickface']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
834
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
835
+ });
836
+ },
837
+ /**
838
+ * Issue a pickface with wrong contents
839
+ * @summary Issue wrong contents pickface
840
+ * @param {string} project What project it is
841
+ * @param {string} pickfaceId Unique identifier of a pickface
842
+ * @param {IssueWrongContentsPickfaceRequest} issueWrongContentsPickfaceRequest pickface issue schema
843
+ * @param {*} [options] Override http request option.
844
+ * @throws {RequiredError}
845
+ */
846
+ issueWrongContentsPickface(project, pickfaceId, issueWrongContentsPickfaceRequest, options) {
847
+ return __awaiter(this, void 0, void 0, function* () {
848
+ var _a, _b, _c;
849
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.issueWrongContentsPickface(project, pickfaceId, issueWrongContentsPickfaceRequest, options);
850
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
851
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PickfacesApi.issueWrongContentsPickface']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
852
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
853
+ });
854
+ },
641
855
  /**
642
856
  * Get a list of pickface logs
643
857
  * @summary Get pickface logs
@@ -693,6 +907,41 @@ export const PickfacesApiFp = function (configuration) {
693
907
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
694
908
  });
695
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
+ },
928
+ /**
929
+ * Resolves an issue on a pickface
930
+ * @summary Resolve pickface issue
931
+ * @param {string} project What project it is
932
+ * @param {string} pickfaceId Unique identifier of a pickface
933
+ * @param {*} [options] Override http request option.
934
+ * @throws {RequiredError}
935
+ */
936
+ resolvePickfaceIssue(project, pickfaceId, options) {
937
+ return __awaiter(this, void 0, void 0, function* () {
938
+ var _a, _b, _c;
939
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.resolvePickfaceIssue(project, pickfaceId, options);
940
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
941
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PickfacesApi.resolvePickfaceIssue']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
942
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
943
+ });
944
+ },
696
945
  /**
697
946
  * Suggest pickfaces for putting away stock
698
947
  * @summary Suggest pickfaces
@@ -800,6 +1049,26 @@ export const PickfacesApiFactory = function (configuration, basePath, axios) {
800
1049
  getPickfaces(requestParameters, options) {
801
1050
  return localVarFp.getPickfaces(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, requestParameters.filters, requestParameters.sortBy, options).then((request) => request(axios, basePath));
802
1051
  },
1052
+ /**
1053
+ * Issue an empty pickface
1054
+ * @summary Issue empty pickface
1055
+ * @param {PickfacesApiIssueEmptyPickfaceRequest} requestParameters Request parameters.
1056
+ * @param {*} [options] Override http request option.
1057
+ * @throws {RequiredError}
1058
+ */
1059
+ issueEmptyPickface(requestParameters, options) {
1060
+ return localVarFp.issueEmptyPickface(requestParameters.project, requestParameters.pickfaceId, requestParameters.issueEmptyPickfaceRequest, options).then((request) => request(axios, basePath));
1061
+ },
1062
+ /**
1063
+ * Issue a pickface with wrong contents
1064
+ * @summary Issue wrong contents pickface
1065
+ * @param {PickfacesApiIssueWrongContentsPickfaceRequest} requestParameters Request parameters.
1066
+ * @param {*} [options] Override http request option.
1067
+ * @throws {RequiredError}
1068
+ */
1069
+ issueWrongContentsPickface(requestParameters, options) {
1070
+ return localVarFp.issueWrongContentsPickface(requestParameters.project, requestParameters.pickfaceId, requestParameters.issueWrongContentsPickfaceRequest, options).then((request) => request(axios, basePath));
1071
+ },
803
1072
  /**
804
1073
  * Get a list of pickface logs
805
1074
  * @summary Get pickface logs
@@ -830,6 +1099,26 @@ export const PickfacesApiFactory = function (configuration, basePath, axios) {
830
1099
  printPickfaceLabel(requestParameters, options) {
831
1100
  return localVarFp.printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(axios, basePath));
832
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
+ },
1112
+ /**
1113
+ * Resolves an issue on a pickface
1114
+ * @summary Resolve pickface issue
1115
+ * @param {PickfacesApiResolvePickfaceIssueRequest} requestParameters Request parameters.
1116
+ * @param {*} [options] Override http request option.
1117
+ * @throws {RequiredError}
1118
+ */
1119
+ resolvePickfaceIssue(requestParameters, options) {
1120
+ return localVarFp.resolvePickfaceIssue(requestParameters.project, requestParameters.pickfaceId, options).then((request) => request(axios, basePath));
1121
+ },
833
1122
  /**
834
1123
  * Suggest pickfaces for putting away stock
835
1124
  * @summary Suggest pickfaces
@@ -925,6 +1214,28 @@ export class PickfacesApi extends BaseAPI {
925
1214
  getPickfaces(requestParameters, options) {
926
1215
  return PickfacesApiFp(this.configuration).getPickfaces(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, requestParameters.filters, requestParameters.sortBy, options).then((request) => request(this.axios, this.basePath));
927
1216
  }
1217
+ /**
1218
+ * Issue an empty pickface
1219
+ * @summary Issue empty pickface
1220
+ * @param {PickfacesApiIssueEmptyPickfaceRequest} requestParameters Request parameters.
1221
+ * @param {*} [options] Override http request option.
1222
+ * @throws {RequiredError}
1223
+ * @memberof PickfacesApi
1224
+ */
1225
+ issueEmptyPickface(requestParameters, options) {
1226
+ return PickfacesApiFp(this.configuration).issueEmptyPickface(requestParameters.project, requestParameters.pickfaceId, requestParameters.issueEmptyPickfaceRequest, options).then((request) => request(this.axios, this.basePath));
1227
+ }
1228
+ /**
1229
+ * Issue a pickface with wrong contents
1230
+ * @summary Issue wrong contents pickface
1231
+ * @param {PickfacesApiIssueWrongContentsPickfaceRequest} requestParameters Request parameters.
1232
+ * @param {*} [options] Override http request option.
1233
+ * @throws {RequiredError}
1234
+ * @memberof PickfacesApi
1235
+ */
1236
+ issueWrongContentsPickface(requestParameters, options) {
1237
+ return PickfacesApiFp(this.configuration).issueWrongContentsPickface(requestParameters.project, requestParameters.pickfaceId, requestParameters.issueWrongContentsPickfaceRequest, options).then((request) => request(this.axios, this.basePath));
1238
+ }
928
1239
  /**
929
1240
  * Get a list of pickface logs
930
1241
  * @summary Get pickface logs
@@ -958,6 +1269,28 @@ export class PickfacesApi extends BaseAPI {
958
1269
  printPickfaceLabel(requestParameters, options) {
959
1270
  return PickfacesApiFp(this.configuration).printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(this.axios, this.basePath));
960
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
+ }
1283
+ /**
1284
+ * Resolves an issue on a pickface
1285
+ * @summary Resolve pickface issue
1286
+ * @param {PickfacesApiResolvePickfaceIssueRequest} requestParameters Request parameters.
1287
+ * @param {*} [options] Override http request option.
1288
+ * @throws {RequiredError}
1289
+ * @memberof PickfacesApi
1290
+ */
1291
+ resolvePickfaceIssue(requestParameters, options) {
1292
+ return PickfacesApiFp(this.configuration).resolvePickfaceIssue(requestParameters.project, requestParameters.pickfaceId, options).then((request) => request(this.axios, this.basePath));
1293
+ }
961
1294
  /**
962
1295
  * Suggest pickfaces for putting away stock
963
1296
  * @summary Suggest pickfaces
@@ -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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.0",
3
+ "version": "0.15.0",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {