@teemill/pickfaces 0.17.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 +21 -8
- package/base.ts +3 -3
- package/common.ts +3 -3
- package/configuration.ts +3 -3
- package/dist/api.d.ts +21 -8
- package/dist/api.js +5 -5
- 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 +21 -8
- package/dist/esm/api.js +5 -5
- 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.17.
|
|
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.17.
|
|
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.17.
|
|
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
|
|
@@ -1203,11 +1216,11 @@ export const PickfacesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1203
1216
|
* @param {string} project What project it is
|
|
1204
1217
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
1205
1218
|
* @param {string} [search] Search term to filter based on pickface code
|
|
1206
|
-
* @param {Array<string>} [ids] List of pickface ids
|
|
1219
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
1207
1220
|
* @param {*} [options] Override http request option.
|
|
1208
1221
|
* @throws {RequiredError}
|
|
1209
1222
|
*/
|
|
1210
|
-
printPickfaceLabels: async (project: string, deviceRef: string, search?: string, ids?: Array<string
|
|
1223
|
+
printPickfaceLabels: async (project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1211
1224
|
// verify required parameter 'project' is not null or undefined
|
|
1212
1225
|
assertParamExists('printPickfaceLabels', 'project', project)
|
|
1213
1226
|
// verify required parameter 'deviceRef' is not null or undefined
|
|
@@ -1605,11 +1618,11 @@ export const PickfacesApiFp = function(configuration?: Configuration) {
|
|
|
1605
1618
|
* @param {string} project What project it is
|
|
1606
1619
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
1607
1620
|
* @param {string} [search] Search term to filter based on pickface code
|
|
1608
|
-
* @param {Array<string>} [ids] List of pickface ids
|
|
1621
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
1609
1622
|
* @param {*} [options] Override http request option.
|
|
1610
1623
|
* @throws {RequiredError}
|
|
1611
1624
|
*/
|
|
1612
|
-
async printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string
|
|
1625
|
+
async printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
1613
1626
|
const localVarAxiosArgs = await localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, search, ids, options);
|
|
1614
1627
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1615
1628
|
const localVarOperationServerBasePath = operationServerMap['PickfacesApi.printPickfaceLabels']?.[localVarOperationServerIndex]?.url;
|
|
@@ -2136,7 +2149,7 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
|
|
|
2136
2149
|
* @type {Array<string>}
|
|
2137
2150
|
* @memberof PickfacesApiPrintPickfaceLabels
|
|
2138
2151
|
*/
|
|
2139
|
-
readonly ids?: Array<string>
|
|
2152
|
+
readonly ids?: Array<string> | null
|
|
2140
2153
|
}
|
|
2141
2154
|
|
|
2142
2155
|
/**
|
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.17.
|
|
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.17.
|
|
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.17.
|
|
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.17.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
|
|
@@ -721,11 +734,11 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
721
734
|
* @param {string} project What project it is
|
|
722
735
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
723
736
|
* @param {string} [search] Search term to filter based on pickface code
|
|
724
|
-
* @param {Array<string>} [ids] List of pickface ids
|
|
737
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
725
738
|
* @param {*} [options] Override http request option.
|
|
726
739
|
* @throws {RequiredError}
|
|
727
740
|
*/
|
|
728
|
-
printPickfaceLabels: (project: string, deviceRef: string, search?: string, ids?: Array<string
|
|
741
|
+
printPickfaceLabels: (project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
729
742
|
/**
|
|
730
743
|
* Resolves an issue on a pickface
|
|
731
744
|
* @summary Resolve pickface issue
|
|
@@ -875,11 +888,11 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
875
888
|
* @param {string} project What project it is
|
|
876
889
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
877
890
|
* @param {string} [search] Search term to filter based on pickface code
|
|
878
|
-
* @param {Array<string>} [ids] List of pickface ids
|
|
891
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
879
892
|
* @param {*} [options] Override http request option.
|
|
880
893
|
* @throws {RequiredError}
|
|
881
894
|
*/
|
|
882
|
-
printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string
|
|
895
|
+
printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
883
896
|
/**
|
|
884
897
|
* Resolves an issue on a pickface
|
|
885
898
|
* @summary Resolve pickface issue
|
|
@@ -1318,7 +1331,7 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
|
|
|
1318
1331
|
* @type {Array<string>}
|
|
1319
1332
|
* @memberof PickfacesApiPrintPickfaceLabels
|
|
1320
1333
|
*/
|
|
1321
|
-
readonly ids?: Array<string
|
|
1334
|
+
readonly ids?: Array<string> | null;
|
|
1322
1335
|
}
|
|
1323
1336
|
/**
|
|
1324
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.17.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
|
|
@@ -519,7 +519,7 @@ const PickfacesApiAxiosParamCreator = function (configuration) {
|
|
|
519
519
|
* @param {string} project What project it is
|
|
520
520
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
521
521
|
* @param {string} [search] Search term to filter based on pickface code
|
|
522
|
-
* @param {Array<string>} [ids] List of pickface ids
|
|
522
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
523
523
|
* @param {*} [options] Override http request option.
|
|
524
524
|
* @throws {RequiredError}
|
|
525
525
|
*/
|
|
@@ -914,7 +914,7 @@ const PickfacesApiFp = function (configuration) {
|
|
|
914
914
|
* @param {string} project What project it is
|
|
915
915
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
916
916
|
* @param {string} [search] Search term to filter based on pickface code
|
|
917
|
-
* @param {Array<string>} [ids] List of pickface ids
|
|
917
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
918
918
|
* @param {*} [options] Override http request option.
|
|
919
919
|
* @throws {RequiredError}
|
|
920
920
|
*/
|
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.17.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.17.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.17.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.17.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.17.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.17.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.17.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
|
|
@@ -721,11 +734,11 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
721
734
|
* @param {string} project What project it is
|
|
722
735
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
723
736
|
* @param {string} [search] Search term to filter based on pickface code
|
|
724
|
-
* @param {Array<string>} [ids] List of pickface ids
|
|
737
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
725
738
|
* @param {*} [options] Override http request option.
|
|
726
739
|
* @throws {RequiredError}
|
|
727
740
|
*/
|
|
728
|
-
printPickfaceLabels: (project: string, deviceRef: string, search?: string, ids?: Array<string
|
|
741
|
+
printPickfaceLabels: (project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
729
742
|
/**
|
|
730
743
|
* Resolves an issue on a pickface
|
|
731
744
|
* @summary Resolve pickface issue
|
|
@@ -875,11 +888,11 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
875
888
|
* @param {string} project What project it is
|
|
876
889
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
877
890
|
* @param {string} [search] Search term to filter based on pickface code
|
|
878
|
-
* @param {Array<string>} [ids] List of pickface ids
|
|
891
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
879
892
|
* @param {*} [options] Override http request option.
|
|
880
893
|
* @throws {RequiredError}
|
|
881
894
|
*/
|
|
882
|
-
printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string
|
|
895
|
+
printPickfaceLabels(project: string, deviceRef: string, search?: string, ids?: Array<string> | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
883
896
|
/**
|
|
884
897
|
* Resolves an issue on a pickface
|
|
885
898
|
* @summary Resolve pickface issue
|
|
@@ -1318,7 +1331,7 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
|
|
|
1318
1331
|
* @type {Array<string>}
|
|
1319
1332
|
* @memberof PickfacesApiPrintPickfaceLabels
|
|
1320
1333
|
*/
|
|
1321
|
-
readonly ids?: Array<string
|
|
1334
|
+
readonly ids?: Array<string> | null;
|
|
1322
1335
|
}
|
|
1323
1336
|
/**
|
|
1324
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.17.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
|
|
@@ -516,7 +516,7 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
|
|
|
516
516
|
* @param {string} project What project it is
|
|
517
517
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
518
518
|
* @param {string} [search] Search term to filter based on pickface code
|
|
519
|
-
* @param {Array<string>} [ids] List of pickface ids
|
|
519
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
520
520
|
* @param {*} [options] Override http request option.
|
|
521
521
|
* @throws {RequiredError}
|
|
522
522
|
*/
|
|
@@ -910,7 +910,7 @@ export const PickfacesApiFp = function (configuration) {
|
|
|
910
910
|
* @param {string} project What project it is
|
|
911
911
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
912
912
|
* @param {string} [search] Search term to filter based on pickface code
|
|
913
|
-
* @param {Array<string>} [ids] List of pickface ids
|
|
913
|
+
* @param {Array<string> | null} [ids] List of pickface ids
|
|
914
914
|
* @param {*} [options] Override http request option.
|
|
915
915
|
* @throws {RequiredError}
|
|
916
916
|
*/
|
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.17.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.17.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.17.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.17.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.17.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.17.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.17.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.17.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.17.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.17.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.17.
|
|
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
|