@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/.openapi-generator/VERSION +1 -1
- package/README.md +2 -2
- package/api.ts +524 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +298 -1
- package/dist/api.js +334 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +298 -1
- package/dist/esm/api.js +334 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
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).
|
|
@@ -288,6 +288,96 @@ const PickfacesApiAxiosParamCreator = function (configuration) {
|
|
|
288
288
|
options: localVarRequestOptions,
|
|
289
289
|
};
|
|
290
290
|
}),
|
|
291
|
+
/**
|
|
292
|
+
* Issue an empty pickface
|
|
293
|
+
* @summary Issue empty pickface
|
|
294
|
+
* @param {string} project What project it is
|
|
295
|
+
* @param {string} pickfaceId Unique identifier of a pickface
|
|
296
|
+
* @param {IssueEmptyPickfaceRequest} issueEmptyPickfaceRequest pickface issue schema
|
|
297
|
+
* @param {*} [options] Override http request option.
|
|
298
|
+
* @throws {RequiredError}
|
|
299
|
+
*/
|
|
300
|
+
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 = {}) {
|
|
301
|
+
// verify required parameter 'project' is not null or undefined
|
|
302
|
+
(0, common_1.assertParamExists)('issueEmptyPickface', 'project', project);
|
|
303
|
+
// verify required parameter 'pickfaceId' is not null or undefined
|
|
304
|
+
(0, common_1.assertParamExists)('issueEmptyPickface', 'pickfaceId', pickfaceId);
|
|
305
|
+
// verify required parameter 'issueEmptyPickfaceRequest' is not null or undefined
|
|
306
|
+
(0, common_1.assertParamExists)('issueEmptyPickface', 'issueEmptyPickfaceRequest', issueEmptyPickfaceRequest);
|
|
307
|
+
const localVarPath = `/v1/pickfaces/{pickfaceId}/issue/empty`
|
|
308
|
+
.replace(`{${"pickfaceId"}}`, encodeURIComponent(String(pickfaceId)));
|
|
309
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
310
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
311
|
+
let baseOptions;
|
|
312
|
+
if (configuration) {
|
|
313
|
+
baseOptions = configuration.baseOptions;
|
|
314
|
+
}
|
|
315
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
316
|
+
const localVarHeaderParameter = {};
|
|
317
|
+
const localVarQueryParameter = {};
|
|
318
|
+
// authentication session-oauth required
|
|
319
|
+
// oauth required
|
|
320
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
321
|
+
// authentication api-key required
|
|
322
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
323
|
+
if (project !== undefined) {
|
|
324
|
+
localVarQueryParameter['project'] = project;
|
|
325
|
+
}
|
|
326
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
327
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
328
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
329
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
330
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(issueEmptyPickfaceRequest, localVarRequestOptions, configuration);
|
|
331
|
+
return {
|
|
332
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
333
|
+
options: localVarRequestOptions,
|
|
334
|
+
};
|
|
335
|
+
}),
|
|
336
|
+
/**
|
|
337
|
+
* Issue a pickface with wrong contents
|
|
338
|
+
* @summary Issue wrong contents pickface
|
|
339
|
+
* @param {string} project What project it is
|
|
340
|
+
* @param {string} pickfaceId Unique identifier of a pickface
|
|
341
|
+
* @param {IssueWrongContentsPickfaceRequest} issueWrongContentsPickfaceRequest pickface issue schema
|
|
342
|
+
* @param {*} [options] Override http request option.
|
|
343
|
+
* @throws {RequiredError}
|
|
344
|
+
*/
|
|
345
|
+
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 = {}) {
|
|
346
|
+
// verify required parameter 'project' is not null or undefined
|
|
347
|
+
(0, common_1.assertParamExists)('issueWrongContentsPickface', 'project', project);
|
|
348
|
+
// verify required parameter 'pickfaceId' is not null or undefined
|
|
349
|
+
(0, common_1.assertParamExists)('issueWrongContentsPickface', 'pickfaceId', pickfaceId);
|
|
350
|
+
// verify required parameter 'issueWrongContentsPickfaceRequest' is not null or undefined
|
|
351
|
+
(0, common_1.assertParamExists)('issueWrongContentsPickface', 'issueWrongContentsPickfaceRequest', issueWrongContentsPickfaceRequest);
|
|
352
|
+
const localVarPath = `/v1/pickfaces/{pickfaceId}/issue/wrong-contents`
|
|
353
|
+
.replace(`{${"pickfaceId"}}`, encodeURIComponent(String(pickfaceId)));
|
|
354
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
355
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
356
|
+
let baseOptions;
|
|
357
|
+
if (configuration) {
|
|
358
|
+
baseOptions = configuration.baseOptions;
|
|
359
|
+
}
|
|
360
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
361
|
+
const localVarHeaderParameter = {};
|
|
362
|
+
const localVarQueryParameter = {};
|
|
363
|
+
// authentication session-oauth required
|
|
364
|
+
// oauth required
|
|
365
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
366
|
+
// authentication api-key required
|
|
367
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
368
|
+
if (project !== undefined) {
|
|
369
|
+
localVarQueryParameter['project'] = project;
|
|
370
|
+
}
|
|
371
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
372
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
373
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
374
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
375
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(issueWrongContentsPickfaceRequest, localVarRequestOptions, configuration);
|
|
376
|
+
return {
|
|
377
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
378
|
+
options: localVarRequestOptions,
|
|
379
|
+
};
|
|
380
|
+
}),
|
|
291
381
|
/**
|
|
292
382
|
* Get a list of pickface logs
|
|
293
383
|
* @summary Get pickface logs
|
|
@@ -427,6 +517,94 @@ const PickfacesApiAxiosParamCreator = function (configuration) {
|
|
|
427
517
|
options: localVarRequestOptions,
|
|
428
518
|
};
|
|
429
519
|
}),
|
|
520
|
+
/**
|
|
521
|
+
* Print pickface labels
|
|
522
|
+
* @summary Print pickface Labels
|
|
523
|
+
* @param {string} project What project it is
|
|
524
|
+
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
525
|
+
* @param {Array<string>} ids List of pickface ids
|
|
526
|
+
* @param {*} [options] Override http request option.
|
|
527
|
+
* @throws {RequiredError}
|
|
528
|
+
*/
|
|
529
|
+
printPickfaceLabels: (project_1, deviceRef_1, ids_1, ...args_1) => __awaiter(this, [project_1, deviceRef_1, ids_1, ...args_1], void 0, function* (project, deviceRef, ids, options = {}) {
|
|
530
|
+
// verify required parameter 'project' is not null or undefined
|
|
531
|
+
(0, common_1.assertParamExists)('printPickfaceLabels', 'project', project);
|
|
532
|
+
// verify required parameter 'deviceRef' is not null or undefined
|
|
533
|
+
(0, common_1.assertParamExists)('printPickfaceLabels', 'deviceRef', deviceRef);
|
|
534
|
+
// verify required parameter 'ids' is not null or undefined
|
|
535
|
+
(0, common_1.assertParamExists)('printPickfaceLabels', 'ids', ids);
|
|
536
|
+
const localVarPath = `/v1/pickfaces/print`;
|
|
537
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
538
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
539
|
+
let baseOptions;
|
|
540
|
+
if (configuration) {
|
|
541
|
+
baseOptions = configuration.baseOptions;
|
|
542
|
+
}
|
|
543
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
544
|
+
const localVarHeaderParameter = {};
|
|
545
|
+
const localVarQueryParameter = {};
|
|
546
|
+
// authentication session-oauth required
|
|
547
|
+
// oauth required
|
|
548
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
549
|
+
// authentication api-key required
|
|
550
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
551
|
+
if (project !== undefined) {
|
|
552
|
+
localVarQueryParameter['project'] = project;
|
|
553
|
+
}
|
|
554
|
+
if (deviceRef !== undefined) {
|
|
555
|
+
localVarQueryParameter['deviceRef'] = deviceRef;
|
|
556
|
+
}
|
|
557
|
+
if (ids) {
|
|
558
|
+
localVarQueryParameter['ids'] = ids;
|
|
559
|
+
}
|
|
560
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
561
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
562
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
563
|
+
return {
|
|
564
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
565
|
+
options: localVarRequestOptions,
|
|
566
|
+
};
|
|
567
|
+
}),
|
|
568
|
+
/**
|
|
569
|
+
* Resolves an issue on a pickface
|
|
570
|
+
* @summary Resolve pickface issue
|
|
571
|
+
* @param {string} project What project it is
|
|
572
|
+
* @param {string} pickfaceId Unique identifier of a pickface
|
|
573
|
+
* @param {*} [options] Override http request option.
|
|
574
|
+
* @throws {RequiredError}
|
|
575
|
+
*/
|
|
576
|
+
resolvePickfaceIssue: (project_1, pickfaceId_1, ...args_1) => __awaiter(this, [project_1, pickfaceId_1, ...args_1], void 0, function* (project, pickfaceId, options = {}) {
|
|
577
|
+
// verify required parameter 'project' is not null or undefined
|
|
578
|
+
(0, common_1.assertParamExists)('resolvePickfaceIssue', 'project', project);
|
|
579
|
+
// verify required parameter 'pickfaceId' is not null or undefined
|
|
580
|
+
(0, common_1.assertParamExists)('resolvePickfaceIssue', 'pickfaceId', pickfaceId);
|
|
581
|
+
const localVarPath = `/v1/pickfaces/{pickfaceId}/issue/resolve`
|
|
582
|
+
.replace(`{${"pickfaceId"}}`, encodeURIComponent(String(pickfaceId)));
|
|
583
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
584
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
585
|
+
let baseOptions;
|
|
586
|
+
if (configuration) {
|
|
587
|
+
baseOptions = configuration.baseOptions;
|
|
588
|
+
}
|
|
589
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
590
|
+
const localVarHeaderParameter = {};
|
|
591
|
+
const localVarQueryParameter = {};
|
|
592
|
+
// authentication session-oauth required
|
|
593
|
+
// oauth required
|
|
594
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
595
|
+
// authentication api-key required
|
|
596
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
597
|
+
if (project !== undefined) {
|
|
598
|
+
localVarQueryParameter['project'] = project;
|
|
599
|
+
}
|
|
600
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
601
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
602
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
603
|
+
return {
|
|
604
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
605
|
+
options: localVarRequestOptions,
|
|
606
|
+
};
|
|
607
|
+
}),
|
|
430
608
|
/**
|
|
431
609
|
* Suggest pickfaces for putting away stock
|
|
432
610
|
* @summary Suggest pickfaces
|
|
@@ -642,6 +820,42 @@ const PickfacesApiFp = function (configuration) {
|
|
|
642
820
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
643
821
|
});
|
|
644
822
|
},
|
|
823
|
+
/**
|
|
824
|
+
* Issue an empty pickface
|
|
825
|
+
* @summary Issue empty pickface
|
|
826
|
+
* @param {string} project What project it is
|
|
827
|
+
* @param {string} pickfaceId Unique identifier of a pickface
|
|
828
|
+
* @param {IssueEmptyPickfaceRequest} issueEmptyPickfaceRequest pickface issue schema
|
|
829
|
+
* @param {*} [options] Override http request option.
|
|
830
|
+
* @throws {RequiredError}
|
|
831
|
+
*/
|
|
832
|
+
issueEmptyPickface(project, pickfaceId, issueEmptyPickfaceRequest, options) {
|
|
833
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
834
|
+
var _a, _b, _c;
|
|
835
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.issueEmptyPickface(project, pickfaceId, issueEmptyPickfaceRequest, options);
|
|
836
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
837
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PickfacesApi.issueEmptyPickface']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
838
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
839
|
+
});
|
|
840
|
+
},
|
|
841
|
+
/**
|
|
842
|
+
* Issue a pickface with wrong contents
|
|
843
|
+
* @summary Issue wrong contents pickface
|
|
844
|
+
* @param {string} project What project it is
|
|
845
|
+
* @param {string} pickfaceId Unique identifier of a pickface
|
|
846
|
+
* @param {IssueWrongContentsPickfaceRequest} issueWrongContentsPickfaceRequest pickface issue schema
|
|
847
|
+
* @param {*} [options] Override http request option.
|
|
848
|
+
* @throws {RequiredError}
|
|
849
|
+
*/
|
|
850
|
+
issueWrongContentsPickface(project, pickfaceId, issueWrongContentsPickfaceRequest, options) {
|
|
851
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
852
|
+
var _a, _b, _c;
|
|
853
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.issueWrongContentsPickface(project, pickfaceId, issueWrongContentsPickfaceRequest, options);
|
|
854
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
855
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PickfacesApi.issueWrongContentsPickface']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
856
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
857
|
+
});
|
|
858
|
+
},
|
|
645
859
|
/**
|
|
646
860
|
* Get a list of pickface logs
|
|
647
861
|
* @summary Get pickface logs
|
|
@@ -697,6 +911,41 @@ const PickfacesApiFp = function (configuration) {
|
|
|
697
911
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
698
912
|
});
|
|
699
913
|
},
|
|
914
|
+
/**
|
|
915
|
+
* Print pickface labels
|
|
916
|
+
* @summary Print pickface Labels
|
|
917
|
+
* @param {string} project What project it is
|
|
918
|
+
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
919
|
+
* @param {Array<string>} ids List of pickface ids
|
|
920
|
+
* @param {*} [options] Override http request option.
|
|
921
|
+
* @throws {RequiredError}
|
|
922
|
+
*/
|
|
923
|
+
printPickfaceLabels(project, deviceRef, ids, options) {
|
|
924
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
925
|
+
var _a, _b, _c;
|
|
926
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, ids, options);
|
|
927
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
928
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PickfacesApi.printPickfaceLabels']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
929
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
930
|
+
});
|
|
931
|
+
},
|
|
932
|
+
/**
|
|
933
|
+
* Resolves an issue on a pickface
|
|
934
|
+
* @summary Resolve pickface issue
|
|
935
|
+
* @param {string} project What project it is
|
|
936
|
+
* @param {string} pickfaceId Unique identifier of a pickface
|
|
937
|
+
* @param {*} [options] Override http request option.
|
|
938
|
+
* @throws {RequiredError}
|
|
939
|
+
*/
|
|
940
|
+
resolvePickfaceIssue(project, pickfaceId, options) {
|
|
941
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
942
|
+
var _a, _b, _c;
|
|
943
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.resolvePickfaceIssue(project, pickfaceId, options);
|
|
944
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
945
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PickfacesApi.resolvePickfaceIssue']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
946
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
947
|
+
});
|
|
948
|
+
},
|
|
700
949
|
/**
|
|
701
950
|
* Suggest pickfaces for putting away stock
|
|
702
951
|
* @summary Suggest pickfaces
|
|
@@ -805,6 +1054,26 @@ const PickfacesApiFactory = function (configuration, basePath, axios) {
|
|
|
805
1054
|
getPickfaces(requestParameters, options) {
|
|
806
1055
|
return localVarFp.getPickfaces(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, requestParameters.filters, requestParameters.sortBy, options).then((request) => request(axios, basePath));
|
|
807
1056
|
},
|
|
1057
|
+
/**
|
|
1058
|
+
* Issue an empty pickface
|
|
1059
|
+
* @summary Issue empty pickface
|
|
1060
|
+
* @param {PickfacesApiIssueEmptyPickfaceRequest} requestParameters Request parameters.
|
|
1061
|
+
* @param {*} [options] Override http request option.
|
|
1062
|
+
* @throws {RequiredError}
|
|
1063
|
+
*/
|
|
1064
|
+
issueEmptyPickface(requestParameters, options) {
|
|
1065
|
+
return localVarFp.issueEmptyPickface(requestParameters.project, requestParameters.pickfaceId, requestParameters.issueEmptyPickfaceRequest, options).then((request) => request(axios, basePath));
|
|
1066
|
+
},
|
|
1067
|
+
/**
|
|
1068
|
+
* Issue a pickface with wrong contents
|
|
1069
|
+
* @summary Issue wrong contents pickface
|
|
1070
|
+
* @param {PickfacesApiIssueWrongContentsPickfaceRequest} requestParameters Request parameters.
|
|
1071
|
+
* @param {*} [options] Override http request option.
|
|
1072
|
+
* @throws {RequiredError}
|
|
1073
|
+
*/
|
|
1074
|
+
issueWrongContentsPickface(requestParameters, options) {
|
|
1075
|
+
return localVarFp.issueWrongContentsPickface(requestParameters.project, requestParameters.pickfaceId, requestParameters.issueWrongContentsPickfaceRequest, options).then((request) => request(axios, basePath));
|
|
1076
|
+
},
|
|
808
1077
|
/**
|
|
809
1078
|
* Get a list of pickface logs
|
|
810
1079
|
* @summary Get pickface logs
|
|
@@ -835,6 +1104,26 @@ const PickfacesApiFactory = function (configuration, basePath, axios) {
|
|
|
835
1104
|
printPickfaceLabel(requestParameters, options) {
|
|
836
1105
|
return localVarFp.printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(axios, basePath));
|
|
837
1106
|
},
|
|
1107
|
+
/**
|
|
1108
|
+
* Print pickface labels
|
|
1109
|
+
* @summary Print pickface Labels
|
|
1110
|
+
* @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
|
|
1111
|
+
* @param {*} [options] Override http request option.
|
|
1112
|
+
* @throws {RequiredError}
|
|
1113
|
+
*/
|
|
1114
|
+
printPickfaceLabels(requestParameters, options) {
|
|
1115
|
+
return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(axios, basePath));
|
|
1116
|
+
},
|
|
1117
|
+
/**
|
|
1118
|
+
* Resolves an issue on a pickface
|
|
1119
|
+
* @summary Resolve pickface issue
|
|
1120
|
+
* @param {PickfacesApiResolvePickfaceIssueRequest} requestParameters Request parameters.
|
|
1121
|
+
* @param {*} [options] Override http request option.
|
|
1122
|
+
* @throws {RequiredError}
|
|
1123
|
+
*/
|
|
1124
|
+
resolvePickfaceIssue(requestParameters, options) {
|
|
1125
|
+
return localVarFp.resolvePickfaceIssue(requestParameters.project, requestParameters.pickfaceId, options).then((request) => request(axios, basePath));
|
|
1126
|
+
},
|
|
838
1127
|
/**
|
|
839
1128
|
* Suggest pickfaces for putting away stock
|
|
840
1129
|
* @summary Suggest pickfaces
|
|
@@ -931,6 +1220,28 @@ class PickfacesApi extends base_1.BaseAPI {
|
|
|
931
1220
|
getPickfaces(requestParameters, options) {
|
|
932
1221
|
return (0, exports.PickfacesApiFp)(this.configuration).getPickfaces(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, requestParameters.filters, requestParameters.sortBy, options).then((request) => request(this.axios, this.basePath));
|
|
933
1222
|
}
|
|
1223
|
+
/**
|
|
1224
|
+
* Issue an empty pickface
|
|
1225
|
+
* @summary Issue empty pickface
|
|
1226
|
+
* @param {PickfacesApiIssueEmptyPickfaceRequest} requestParameters Request parameters.
|
|
1227
|
+
* @param {*} [options] Override http request option.
|
|
1228
|
+
* @throws {RequiredError}
|
|
1229
|
+
* @memberof PickfacesApi
|
|
1230
|
+
*/
|
|
1231
|
+
issueEmptyPickface(requestParameters, options) {
|
|
1232
|
+
return (0, exports.PickfacesApiFp)(this.configuration).issueEmptyPickface(requestParameters.project, requestParameters.pickfaceId, requestParameters.issueEmptyPickfaceRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1233
|
+
}
|
|
1234
|
+
/**
|
|
1235
|
+
* Issue a pickface with wrong contents
|
|
1236
|
+
* @summary Issue wrong contents pickface
|
|
1237
|
+
* @param {PickfacesApiIssueWrongContentsPickfaceRequest} requestParameters Request parameters.
|
|
1238
|
+
* @param {*} [options] Override http request option.
|
|
1239
|
+
* @throws {RequiredError}
|
|
1240
|
+
* @memberof PickfacesApi
|
|
1241
|
+
*/
|
|
1242
|
+
issueWrongContentsPickface(requestParameters, options) {
|
|
1243
|
+
return (0, exports.PickfacesApiFp)(this.configuration).issueWrongContentsPickface(requestParameters.project, requestParameters.pickfaceId, requestParameters.issueWrongContentsPickfaceRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1244
|
+
}
|
|
934
1245
|
/**
|
|
935
1246
|
* Get a list of pickface logs
|
|
936
1247
|
* @summary Get pickface logs
|
|
@@ -964,6 +1275,28 @@ class PickfacesApi extends base_1.BaseAPI {
|
|
|
964
1275
|
printPickfaceLabel(requestParameters, options) {
|
|
965
1276
|
return (0, exports.PickfacesApiFp)(this.configuration).printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(this.axios, this.basePath));
|
|
966
1277
|
}
|
|
1278
|
+
/**
|
|
1279
|
+
* Print pickface labels
|
|
1280
|
+
* @summary Print pickface Labels
|
|
1281
|
+
* @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
|
|
1282
|
+
* @param {*} [options] Override http request option.
|
|
1283
|
+
* @throws {RequiredError}
|
|
1284
|
+
* @memberof PickfacesApi
|
|
1285
|
+
*/
|
|
1286
|
+
printPickfaceLabels(requestParameters, options) {
|
|
1287
|
+
return (0, exports.PickfacesApiFp)(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
|
|
1288
|
+
}
|
|
1289
|
+
/**
|
|
1290
|
+
* Resolves an issue on a pickface
|
|
1291
|
+
* @summary Resolve pickface issue
|
|
1292
|
+
* @param {PickfacesApiResolvePickfaceIssueRequest} requestParameters Request parameters.
|
|
1293
|
+
* @param {*} [options] Override http request option.
|
|
1294
|
+
* @throws {RequiredError}
|
|
1295
|
+
* @memberof PickfacesApi
|
|
1296
|
+
*/
|
|
1297
|
+
resolvePickfaceIssue(requestParameters, options) {
|
|
1298
|
+
return (0, exports.PickfacesApiFp)(this.configuration).resolvePickfaceIssue(requestParameters.project, requestParameters.pickfaceId, options).then((request) => request(this.axios, this.basePath));
|
|
1299
|
+
}
|
|
967
1300
|
/**
|
|
968
1301
|
* Suggest pickfaces for putting away stock
|
|
969
1302
|
* @summary Suggest pickfaces
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.15.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.15.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.
|
|
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/configuration.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.
|
|
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).
|