@teemill/pickfaces 0.16.0 → 0.17.2
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 +2 -2
- package/api.ts +37 -13
- package/base.ts +3 -3
- package/common.ts +3 -3
- package/configuration.ts +3 -3
- package/dist/api.d.ts +29 -8
- package/dist/api.js +15 -12
- package/dist/base.d.ts +3 -3
- package/dist/base.js +3 -3
- package/dist/common.d.ts +3 -3
- package/dist/common.js +3 -3
- package/dist/configuration.d.ts +3 -3
- package/dist/configuration.js +3 -3
- package/dist/esm/api.d.ts +29 -8
- package/dist/esm/api.js +15 -12
- package/dist/esm/base.d.ts +3 -3
- package/dist/esm/base.js +3 -3
- package/dist/esm/common.d.ts +3 -3
- package/dist/esm/common.js +3 -3
- package/dist/esm/configuration.d.ts +3 -3
- package/dist/esm/configuration.js +3 -3
- package/dist/esm/index.d.ts +3 -3
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/index.ts +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/pickfaces@0.
|
|
1
|
+
## @teemill/pickfaces@0.17.2
|
|
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.
|
|
39
|
+
npm install @teemill/pickfaces@0.17.2 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Pickfaces API
|
|
5
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
5
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 0.17.2
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -123,6 +123,19 @@ export interface CreatePickfaceRequest {
|
|
|
123
123
|
*/
|
|
124
124
|
'zoneId'?: string;
|
|
125
125
|
}
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @export
|
|
129
|
+
* @interface ExportPickfaces202Response
|
|
130
|
+
*/
|
|
131
|
+
export interface ExportPickfaces202Response {
|
|
132
|
+
/**
|
|
133
|
+
* A message describing the export status
|
|
134
|
+
* @type {string}
|
|
135
|
+
* @memberof ExportPickfaces202Response
|
|
136
|
+
*/
|
|
137
|
+
'message'?: string;
|
|
138
|
+
}
|
|
126
139
|
/**
|
|
127
140
|
*
|
|
128
141
|
* @export
|
|
@@ -1202,17 +1215,16 @@ export const PickfacesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1202
1215
|
* @summary Print pickface Labels
|
|
1203
1216
|
* @param {string} project What project it is
|
|
1204
1217
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
1205
|
-
* @param {
|
|
1218
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
1219
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
1206
1220
|
* @param {*} [options] Override http request option.
|
|
1207
1221
|
* @throws {RequiredError}
|
|
1208
1222
|
*/
|
|
1209
|
-
printPickfaceLabels: async (project: string, deviceRef: string, ids
|
|
1223
|
+
printPickfaceLabels: async (project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1210
1224
|
// verify required parameter 'project' is not null or undefined
|
|
1211
1225
|
assertParamExists('printPickfaceLabels', 'project', project)
|
|
1212
1226
|
// verify required parameter 'deviceRef' is not null or undefined
|
|
1213
1227
|
assertParamExists('printPickfaceLabels', 'deviceRef', deviceRef)
|
|
1214
|
-
// verify required parameter 'ids' is not null or undefined
|
|
1215
|
-
assertParamExists('printPickfaceLabels', 'ids', ids)
|
|
1216
1228
|
const localVarPath = `/v1/pickfaces/print`;
|
|
1217
1229
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1218
1230
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1236,6 +1248,10 @@ export const PickfacesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1236
1248
|
localVarQueryParameter['project'] = project;
|
|
1237
1249
|
}
|
|
1238
1250
|
|
|
1251
|
+
if (search !== undefined) {
|
|
1252
|
+
localVarQueryParameter['search'] = search;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1239
1255
|
if (deviceRef !== undefined) {
|
|
1240
1256
|
localVarQueryParameter['deviceRef'] = deviceRef;
|
|
1241
1257
|
}
|
|
@@ -1601,12 +1617,13 @@ export const PickfacesApiFp = function(configuration?: Configuration) {
|
|
|
1601
1617
|
* @summary Print pickface Labels
|
|
1602
1618
|
* @param {string} project What project it is
|
|
1603
1619
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
1604
|
-
* @param {
|
|
1620
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
1621
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
1605
1622
|
* @param {*} [options] Override http request option.
|
|
1606
1623
|
* @throws {RequiredError}
|
|
1607
1624
|
*/
|
|
1608
|
-
async printPickfaceLabels(project: string, deviceRef: string, ids
|
|
1609
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, ids, options);
|
|
1625
|
+
async printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
1626
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, search, ids, options);
|
|
1610
1627
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1611
1628
|
const localVarOperationServerBasePath = operationServerMap['PickfacesApi.printPickfaceLabels']?.[localVarOperationServerIndex]?.url;
|
|
1612
1629
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1785,7 +1802,7 @@ export const PickfacesApiFactory = function (configuration?: Configuration, base
|
|
|
1785
1802
|
* @throws {RequiredError}
|
|
1786
1803
|
*/
|
|
1787
1804
|
printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
1788
|
-
return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(axios, basePath));
|
|
1805
|
+
return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.search, requestParameters.ids, options).then((request) => request(axios, basePath));
|
|
1789
1806
|
},
|
|
1790
1807
|
/**
|
|
1791
1808
|
* Resolves an issue on a pickface
|
|
@@ -2120,12 +2137,19 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
|
|
|
2120
2137
|
*/
|
|
2121
2138
|
readonly deviceRef: string
|
|
2122
2139
|
|
|
2140
|
+
/**
|
|
2141
|
+
* Search term to filter based on pickface code
|
|
2142
|
+
* @type {string}
|
|
2143
|
+
* @memberof PickfacesApiPrintPickfaceLabels
|
|
2144
|
+
*/
|
|
2145
|
+
readonly search?: string
|
|
2146
|
+
|
|
2123
2147
|
/**
|
|
2124
2148
|
* List of pickface ids
|
|
2125
2149
|
* @type {Array<string>}
|
|
2126
2150
|
* @memberof PickfacesApiPrintPickfaceLabels
|
|
2127
2151
|
*/
|
|
2128
|
-
readonly ids
|
|
2152
|
+
readonly ids?: Array<string> | null
|
|
2129
2153
|
}
|
|
2130
2154
|
|
|
2131
2155
|
/**
|
|
@@ -2367,7 +2391,7 @@ export class PickfacesApi extends BaseAPI {
|
|
|
2367
2391
|
* @memberof PickfacesApi
|
|
2368
2392
|
*/
|
|
2369
2393
|
public printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig) {
|
|
2370
|
-
return PickfacesApiFp(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
|
|
2394
|
+
return PickfacesApiFp(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.search, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
|
|
2371
2395
|
}
|
|
2372
2396
|
|
|
2373
2397
|
/**
|
package/base.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Pickfaces API
|
|
5
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
5
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 0.17.2
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/common.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Pickfaces API
|
|
5
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
5
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 0.17.2
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/configuration.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Pickfaces API
|
|
5
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
5
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 0.17.2
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/api.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Pickfaces API
|
|
3
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
3
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.17.2
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.16.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -113,6 +113,19 @@ export interface CreatePickfaceRequest {
|
|
|
113
113
|
*/
|
|
114
114
|
'zoneId'?: string;
|
|
115
115
|
}
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @export
|
|
119
|
+
* @interface ExportPickfaces202Response
|
|
120
|
+
*/
|
|
121
|
+
export interface ExportPickfaces202Response {
|
|
122
|
+
/**
|
|
123
|
+
* A message describing the export status
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof ExportPickfaces202Response
|
|
126
|
+
*/
|
|
127
|
+
'message'?: string;
|
|
128
|
+
}
|
|
116
129
|
/**
|
|
117
130
|
*
|
|
118
131
|
* @export
|
|
@@ -720,11 +733,12 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
720
733
|
* @summary Print pickface Labels
|
|
721
734
|
* @param {string} project What project it is
|
|
722
735
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
723
|
-
* @param {
|
|
736
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
737
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
724
738
|
* @param {*} [options] Override http request option.
|
|
725
739
|
* @throws {RequiredError}
|
|
726
740
|
*/
|
|
727
|
-
printPickfaceLabels: (project: string, deviceRef: string, ids
|
|
741
|
+
printPickfaceLabels: (project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
728
742
|
/**
|
|
729
743
|
* Resolves an issue on a pickface
|
|
730
744
|
* @summary Resolve pickface issue
|
|
@@ -873,11 +887,12 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
873
887
|
* @summary Print pickface Labels
|
|
874
888
|
* @param {string} project What project it is
|
|
875
889
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
876
|
-
* @param {
|
|
890
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
891
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
877
892
|
* @param {*} [options] Override http request option.
|
|
878
893
|
* @throws {RequiredError}
|
|
879
894
|
*/
|
|
880
|
-
printPickfaceLabels(project: string, deviceRef: string, ids
|
|
895
|
+
printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
881
896
|
/**
|
|
882
897
|
* Resolves an issue on a pickface
|
|
883
898
|
* @summary Resolve pickface issue
|
|
@@ -1305,12 +1320,18 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
|
|
|
1305
1320
|
* @memberof PickfacesApiPrintPickfaceLabels
|
|
1306
1321
|
*/
|
|
1307
1322
|
readonly deviceRef: string;
|
|
1323
|
+
/**
|
|
1324
|
+
* Search term to filter based on pickface code
|
|
1325
|
+
* @type {string}
|
|
1326
|
+
* @memberof PickfacesApiPrintPickfaceLabels
|
|
1327
|
+
*/
|
|
1328
|
+
readonly search?: string;
|
|
1308
1329
|
/**
|
|
1309
1330
|
* List of pickface ids
|
|
1310
1331
|
* @type {Array<string>}
|
|
1311
1332
|
* @memberof PickfacesApiPrintPickfaceLabels
|
|
1312
1333
|
*/
|
|
1313
|
-
readonly ids
|
|
1334
|
+
readonly ids?: Array<string> | null;
|
|
1314
1335
|
}
|
|
1315
1336
|
/**
|
|
1316
1337
|
* Request parameters for resolvePickfaceIssue operation in PickfacesApi.
|
package/dist/api.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Pickfaces API
|
|
6
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.17.2
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.16.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* 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 {
|
|
521
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
522
|
+
* @param {Array<string> | null} [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 {
|
|
916
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
917
|
+
* @param {Array<string> | null} [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
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Pickfaces API
|
|
3
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
3
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.17.2
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.16.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/base.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Pickfaces API
|
|
6
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.17.2
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.16.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/common.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Pickfaces API
|
|
3
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
3
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.17.2
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.16.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/common.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Pickfaces API
|
|
6
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.17.2
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.16.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/configuration.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Pickfaces API
|
|
3
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
3
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.17.2
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.16.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/configuration.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Pickfaces API
|
|
6
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.17.2
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.16.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Pickfaces API
|
|
3
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
3
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.17.2
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.16.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -113,6 +113,19 @@ export interface CreatePickfaceRequest {
|
|
|
113
113
|
*/
|
|
114
114
|
'zoneId'?: string;
|
|
115
115
|
}
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @export
|
|
119
|
+
* @interface ExportPickfaces202Response
|
|
120
|
+
*/
|
|
121
|
+
export interface ExportPickfaces202Response {
|
|
122
|
+
/**
|
|
123
|
+
* A message describing the export status
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof ExportPickfaces202Response
|
|
126
|
+
*/
|
|
127
|
+
'message'?: string;
|
|
128
|
+
}
|
|
116
129
|
/**
|
|
117
130
|
*
|
|
118
131
|
* @export
|
|
@@ -720,11 +733,12 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
720
733
|
* @summary Print pickface Labels
|
|
721
734
|
* @param {string} project What project it is
|
|
722
735
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
723
|
-
* @param {
|
|
736
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
737
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
724
738
|
* @param {*} [options] Override http request option.
|
|
725
739
|
* @throws {RequiredError}
|
|
726
740
|
*/
|
|
727
|
-
printPickfaceLabels: (project: string, deviceRef: string, ids
|
|
741
|
+
printPickfaceLabels: (project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
728
742
|
/**
|
|
729
743
|
* Resolves an issue on a pickface
|
|
730
744
|
* @summary Resolve pickface issue
|
|
@@ -873,11 +887,12 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
873
887
|
* @summary Print pickface Labels
|
|
874
888
|
* @param {string} project What project it is
|
|
875
889
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
876
|
-
* @param {
|
|
890
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
891
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
877
892
|
* @param {*} [options] Override http request option.
|
|
878
893
|
* @throws {RequiredError}
|
|
879
894
|
*/
|
|
880
|
-
printPickfaceLabels(project: string, deviceRef: string, ids
|
|
895
|
+
printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
881
896
|
/**
|
|
882
897
|
* Resolves an issue on a pickface
|
|
883
898
|
* @summary Resolve pickface issue
|
|
@@ -1305,12 +1320,18 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
|
|
|
1305
1320
|
* @memberof PickfacesApiPrintPickfaceLabels
|
|
1306
1321
|
*/
|
|
1307
1322
|
readonly deviceRef: string;
|
|
1323
|
+
/**
|
|
1324
|
+
* Search term to filter based on pickface code
|
|
1325
|
+
* @type {string}
|
|
1326
|
+
* @memberof PickfacesApiPrintPickfaceLabels
|
|
1327
|
+
*/
|
|
1328
|
+
readonly search?: string;
|
|
1308
1329
|
/**
|
|
1309
1330
|
* List of pickface ids
|
|
1310
1331
|
* @type {Array<string>}
|
|
1311
1332
|
* @memberof PickfacesApiPrintPickfaceLabels
|
|
1312
1333
|
*/
|
|
1313
|
-
readonly ids
|
|
1334
|
+
readonly ids?: Array<string> | null;
|
|
1314
1335
|
}
|
|
1315
1336
|
/**
|
|
1316
1337
|
* Request parameters for resolvePickfaceIssue operation in PickfacesApi.
|
package/dist/esm/api.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Pickfaces API
|
|
5
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
5
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.17.2
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.16.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* 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 {
|
|
518
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
519
|
+
* @param {Array<string> | null} [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 {
|
|
912
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
913
|
+
* @param {Array<string> | null} [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
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Pickfaces API
|
|
3
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
3
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.17.2
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.16.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/base.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Pickfaces API
|
|
5
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
5
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.17.2
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.16.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Pickfaces API
|
|
3
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
3
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.17.2
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.16.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/common.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Pickfaces API
|
|
5
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
5
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.17.2
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.16.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Pickfaces API
|
|
3
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
3
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.17.2
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.16.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Pickfaces API
|
|
5
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
5
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.17.2
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.16.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Pickfaces API
|
|
3
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
3
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.17.2
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.16.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Pickfaces API
|
|
5
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
5
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.17.2
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.16.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Pickfaces API
|
|
3
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
3
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.17.2
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.16.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/index.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Pickfaces API
|
|
6
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.17.2
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.16.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/index.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Pickfaces API
|
|
5
|
-
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
5
|
+
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 0.17.2
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|