@teemill/pickfaces 0.20.1 → 0.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +63 -2
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +2 -2
- package/dist/api.d.ts +63 -2
- package/dist/api.js +1 -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 +2 -2
- package/dist/esm/api.d.ts +63 -2
- package/dist/esm/api.js +1 -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 +2 -2
- 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/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/pickfaces@0.
|
|
1
|
+
## @teemill/pickfaces@0.21.0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @teemill/pickfaces@0.
|
|
39
|
+
npm install @teemill/pickfaces@0.21.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.21.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -110,12 +110,24 @@ export interface CreatePickfaceRequest {
|
|
|
110
110
|
* @memberof CreatePickfaceRequest
|
|
111
111
|
*/
|
|
112
112
|
'location': string;
|
|
113
|
+
/**
|
|
114
|
+
* A user defined name for the pickface, if this is not provided the location will be used as the name.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof CreatePickfaceRequest
|
|
117
|
+
*/
|
|
118
|
+
'name'?: string | null;
|
|
113
119
|
/**
|
|
114
120
|
* Use \'Pickfaces API\' > \'List pickface container types\' to get a list of available options.
|
|
115
121
|
* @type {string}
|
|
116
122
|
* @memberof CreatePickfaceRequest
|
|
117
123
|
*/
|
|
118
124
|
'containerTypeId': string;
|
|
125
|
+
/**
|
|
126
|
+
* Whether the pickface can contain mixed contents.
|
|
127
|
+
* @type {boolean}
|
|
128
|
+
* @memberof CreatePickfaceRequest
|
|
129
|
+
*/
|
|
130
|
+
'mixedContents'?: boolean;
|
|
119
131
|
/**
|
|
120
132
|
* Typically this field is left empty. Use \'Zones API\' > \'List warehouse zones\' to get a list of available options.
|
|
121
133
|
* @type {string}
|
|
@@ -250,7 +262,13 @@ export interface Pickface {
|
|
|
250
262
|
*/
|
|
251
263
|
'ref'?: string;
|
|
252
264
|
/**
|
|
253
|
-
*
|
|
265
|
+
*
|
|
266
|
+
* @type {PickfaceZone}
|
|
267
|
+
* @memberof Pickface
|
|
268
|
+
*/
|
|
269
|
+
'zone'?: PickfaceZone | null;
|
|
270
|
+
/**
|
|
271
|
+
* The human readable location of the pickface, if a name is provided this will be the name.
|
|
254
272
|
* @type {string}
|
|
255
273
|
* @memberof Pickface
|
|
256
274
|
*/
|
|
@@ -261,6 +279,12 @@ export interface Pickface {
|
|
|
261
279
|
* @memberof Pickface
|
|
262
280
|
*/
|
|
263
281
|
'enabled'?: boolean;
|
|
282
|
+
/**
|
|
283
|
+
* Whether the pickface can contain mixed contents.
|
|
284
|
+
* @type {boolean}
|
|
285
|
+
* @memberof Pickface
|
|
286
|
+
*/
|
|
287
|
+
'mixedContents'?: boolean;
|
|
264
288
|
/**
|
|
265
289
|
*
|
|
266
290
|
* @type {PickfaceContainerType}
|
|
@@ -528,6 +552,31 @@ export interface PickfaceLog {
|
|
|
528
552
|
*/
|
|
529
553
|
'createdAt'?: string;
|
|
530
554
|
}
|
|
555
|
+
/**
|
|
556
|
+
*
|
|
557
|
+
* @export
|
|
558
|
+
* @interface PickfaceZone
|
|
559
|
+
*/
|
|
560
|
+
export interface PickfaceZone {
|
|
561
|
+
/**
|
|
562
|
+
* Unique object identifier
|
|
563
|
+
* @type {string}
|
|
564
|
+
* @memberof PickfaceZone
|
|
565
|
+
*/
|
|
566
|
+
'id'?: string;
|
|
567
|
+
/**
|
|
568
|
+
* A reference to the resource location
|
|
569
|
+
* @type {string}
|
|
570
|
+
* @memberof PickfaceZone
|
|
571
|
+
*/
|
|
572
|
+
'ref'?: string;
|
|
573
|
+
/**
|
|
574
|
+
* The name of the zone the pickface is in
|
|
575
|
+
* @type {string}
|
|
576
|
+
* @memberof PickfaceZone
|
|
577
|
+
*/
|
|
578
|
+
'name'?: string;
|
|
579
|
+
}
|
|
531
580
|
/**
|
|
532
581
|
* A list of updates to apply to the pickface.
|
|
533
582
|
* @export
|
|
@@ -552,6 +601,18 @@ export interface UpdatePickfaceRequest {
|
|
|
552
601
|
* @memberof UpdatePickfaceRequest
|
|
553
602
|
*/
|
|
554
603
|
'zoneId'?: string;
|
|
604
|
+
/**
|
|
605
|
+
* Whether the pickface can contain mixed contents.
|
|
606
|
+
* @type {boolean}
|
|
607
|
+
* @memberof UpdatePickfaceRequest
|
|
608
|
+
*/
|
|
609
|
+
'mixedContents'?: boolean;
|
|
610
|
+
/**
|
|
611
|
+
* A user defined name for the pickface, if this is not provided the location will be used as the name.
|
|
612
|
+
* @type {string}
|
|
613
|
+
* @memberof UpdatePickfaceRequest
|
|
614
|
+
*/
|
|
615
|
+
'name'?: string | null;
|
|
555
616
|
/**
|
|
556
617
|
*
|
|
557
618
|
* @type {Array<UpdatePickfaceRequestContentsInner>}
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.21.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.21.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.21.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -92,7 +92,7 @@ export class Configuration {
|
|
|
92
92
|
this.baseOptions = {
|
|
93
93
|
headers: {
|
|
94
94
|
...param.baseOptions?.headers,
|
|
95
|
-
'User-Agent': "OpenAPI-Generator/0.
|
|
95
|
+
'User-Agent': "OpenAPI-Generator/0.21.0/typescript-axios"
|
|
96
96
|
},
|
|
97
97
|
...param.baseOptions
|
|
98
98
|
};
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.21.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -100,12 +100,24 @@ export interface CreatePickfaceRequest {
|
|
|
100
100
|
* @memberof CreatePickfaceRequest
|
|
101
101
|
*/
|
|
102
102
|
'location': string;
|
|
103
|
+
/**
|
|
104
|
+
* A user defined name for the pickface, if this is not provided the location will be used as the name.
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof CreatePickfaceRequest
|
|
107
|
+
*/
|
|
108
|
+
'name'?: string | null;
|
|
103
109
|
/**
|
|
104
110
|
* Use \'Pickfaces API\' > \'List pickface container types\' to get a list of available options.
|
|
105
111
|
* @type {string}
|
|
106
112
|
* @memberof CreatePickfaceRequest
|
|
107
113
|
*/
|
|
108
114
|
'containerTypeId': string;
|
|
115
|
+
/**
|
|
116
|
+
* Whether the pickface can contain mixed contents.
|
|
117
|
+
* @type {boolean}
|
|
118
|
+
* @memberof CreatePickfaceRequest
|
|
119
|
+
*/
|
|
120
|
+
'mixedContents'?: boolean;
|
|
109
121
|
/**
|
|
110
122
|
* Typically this field is left empty. Use \'Zones API\' > \'List warehouse zones\' to get a list of available options.
|
|
111
123
|
* @type {string}
|
|
@@ -240,7 +252,13 @@ export interface Pickface {
|
|
|
240
252
|
*/
|
|
241
253
|
'ref'?: string;
|
|
242
254
|
/**
|
|
243
|
-
*
|
|
255
|
+
*
|
|
256
|
+
* @type {PickfaceZone}
|
|
257
|
+
* @memberof Pickface
|
|
258
|
+
*/
|
|
259
|
+
'zone'?: PickfaceZone | null;
|
|
260
|
+
/**
|
|
261
|
+
* The human readable location of the pickface, if a name is provided this will be the name.
|
|
244
262
|
* @type {string}
|
|
245
263
|
* @memberof Pickface
|
|
246
264
|
*/
|
|
@@ -251,6 +269,12 @@ export interface Pickface {
|
|
|
251
269
|
* @memberof Pickface
|
|
252
270
|
*/
|
|
253
271
|
'enabled'?: boolean;
|
|
272
|
+
/**
|
|
273
|
+
* Whether the pickface can contain mixed contents.
|
|
274
|
+
* @type {boolean}
|
|
275
|
+
* @memberof Pickface
|
|
276
|
+
*/
|
|
277
|
+
'mixedContents'?: boolean;
|
|
254
278
|
/**
|
|
255
279
|
*
|
|
256
280
|
* @type {PickfaceContainerType}
|
|
@@ -518,6 +542,31 @@ export interface PickfaceLog {
|
|
|
518
542
|
*/
|
|
519
543
|
'createdAt'?: string;
|
|
520
544
|
}
|
|
545
|
+
/**
|
|
546
|
+
*
|
|
547
|
+
* @export
|
|
548
|
+
* @interface PickfaceZone
|
|
549
|
+
*/
|
|
550
|
+
export interface PickfaceZone {
|
|
551
|
+
/**
|
|
552
|
+
* Unique object identifier
|
|
553
|
+
* @type {string}
|
|
554
|
+
* @memberof PickfaceZone
|
|
555
|
+
*/
|
|
556
|
+
'id'?: string;
|
|
557
|
+
/**
|
|
558
|
+
* A reference to the resource location
|
|
559
|
+
* @type {string}
|
|
560
|
+
* @memberof PickfaceZone
|
|
561
|
+
*/
|
|
562
|
+
'ref'?: string;
|
|
563
|
+
/**
|
|
564
|
+
* The name of the zone the pickface is in
|
|
565
|
+
* @type {string}
|
|
566
|
+
* @memberof PickfaceZone
|
|
567
|
+
*/
|
|
568
|
+
'name'?: string;
|
|
569
|
+
}
|
|
521
570
|
/**
|
|
522
571
|
* A list of updates to apply to the pickface.
|
|
523
572
|
* @export
|
|
@@ -542,6 +591,18 @@ export interface UpdatePickfaceRequest {
|
|
|
542
591
|
* @memberof UpdatePickfaceRequest
|
|
543
592
|
*/
|
|
544
593
|
'zoneId'?: string;
|
|
594
|
+
/**
|
|
595
|
+
* Whether the pickface can contain mixed contents.
|
|
596
|
+
* @type {boolean}
|
|
597
|
+
* @memberof UpdatePickfaceRequest
|
|
598
|
+
*/
|
|
599
|
+
'mixedContents'?: boolean;
|
|
600
|
+
/**
|
|
601
|
+
* A user defined name for the pickface, if this is not provided the location will be used as the name.
|
|
602
|
+
* @type {string}
|
|
603
|
+
* @memberof UpdatePickfaceRequest
|
|
604
|
+
*/
|
|
605
|
+
'name'?: string | null;
|
|
545
606
|
/**
|
|
546
607
|
*
|
|
547
608
|
* @type {Array<UpdatePickfaceRequestContentsInner>}
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.21.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.21.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.21.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.21.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.21.0
|
|
9
9
|
*
|
|
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
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.21.0
|
|
6
6
|
*
|
|
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
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.21.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -23,7 +23,7 @@ class Configuration {
|
|
|
23
23
|
this.accessToken = param.accessToken;
|
|
24
24
|
this.basePath = param.basePath;
|
|
25
25
|
this.serverIndex = param.serverIndex;
|
|
26
|
-
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/0.
|
|
26
|
+
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/0.21.0/typescript-axios" }) }, param.baseOptions);
|
|
27
27
|
this.formDataCtor = param.formDataCtor;
|
|
28
28
|
}
|
|
29
29
|
/**
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.21.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -100,12 +100,24 @@ export interface CreatePickfaceRequest {
|
|
|
100
100
|
* @memberof CreatePickfaceRequest
|
|
101
101
|
*/
|
|
102
102
|
'location': string;
|
|
103
|
+
/**
|
|
104
|
+
* A user defined name for the pickface, if this is not provided the location will be used as the name.
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof CreatePickfaceRequest
|
|
107
|
+
*/
|
|
108
|
+
'name'?: string | null;
|
|
103
109
|
/**
|
|
104
110
|
* Use \'Pickfaces API\' > \'List pickface container types\' to get a list of available options.
|
|
105
111
|
* @type {string}
|
|
106
112
|
* @memberof CreatePickfaceRequest
|
|
107
113
|
*/
|
|
108
114
|
'containerTypeId': string;
|
|
115
|
+
/**
|
|
116
|
+
* Whether the pickface can contain mixed contents.
|
|
117
|
+
* @type {boolean}
|
|
118
|
+
* @memberof CreatePickfaceRequest
|
|
119
|
+
*/
|
|
120
|
+
'mixedContents'?: boolean;
|
|
109
121
|
/**
|
|
110
122
|
* Typically this field is left empty. Use \'Zones API\' > \'List warehouse zones\' to get a list of available options.
|
|
111
123
|
* @type {string}
|
|
@@ -240,7 +252,13 @@ export interface Pickface {
|
|
|
240
252
|
*/
|
|
241
253
|
'ref'?: string;
|
|
242
254
|
/**
|
|
243
|
-
*
|
|
255
|
+
*
|
|
256
|
+
* @type {PickfaceZone}
|
|
257
|
+
* @memberof Pickface
|
|
258
|
+
*/
|
|
259
|
+
'zone'?: PickfaceZone | null;
|
|
260
|
+
/**
|
|
261
|
+
* The human readable location of the pickface, if a name is provided this will be the name.
|
|
244
262
|
* @type {string}
|
|
245
263
|
* @memberof Pickface
|
|
246
264
|
*/
|
|
@@ -251,6 +269,12 @@ export interface Pickface {
|
|
|
251
269
|
* @memberof Pickface
|
|
252
270
|
*/
|
|
253
271
|
'enabled'?: boolean;
|
|
272
|
+
/**
|
|
273
|
+
* Whether the pickface can contain mixed contents.
|
|
274
|
+
* @type {boolean}
|
|
275
|
+
* @memberof Pickface
|
|
276
|
+
*/
|
|
277
|
+
'mixedContents'?: boolean;
|
|
254
278
|
/**
|
|
255
279
|
*
|
|
256
280
|
* @type {PickfaceContainerType}
|
|
@@ -518,6 +542,31 @@ export interface PickfaceLog {
|
|
|
518
542
|
*/
|
|
519
543
|
'createdAt'?: string;
|
|
520
544
|
}
|
|
545
|
+
/**
|
|
546
|
+
*
|
|
547
|
+
* @export
|
|
548
|
+
* @interface PickfaceZone
|
|
549
|
+
*/
|
|
550
|
+
export interface PickfaceZone {
|
|
551
|
+
/**
|
|
552
|
+
* Unique object identifier
|
|
553
|
+
* @type {string}
|
|
554
|
+
* @memberof PickfaceZone
|
|
555
|
+
*/
|
|
556
|
+
'id'?: string;
|
|
557
|
+
/**
|
|
558
|
+
* A reference to the resource location
|
|
559
|
+
* @type {string}
|
|
560
|
+
* @memberof PickfaceZone
|
|
561
|
+
*/
|
|
562
|
+
'ref'?: string;
|
|
563
|
+
/**
|
|
564
|
+
* The name of the zone the pickface is in
|
|
565
|
+
* @type {string}
|
|
566
|
+
* @memberof PickfaceZone
|
|
567
|
+
*/
|
|
568
|
+
'name'?: string;
|
|
569
|
+
}
|
|
521
570
|
/**
|
|
522
571
|
* A list of updates to apply to the pickface.
|
|
523
572
|
* @export
|
|
@@ -542,6 +591,18 @@ export interface UpdatePickfaceRequest {
|
|
|
542
591
|
* @memberof UpdatePickfaceRequest
|
|
543
592
|
*/
|
|
544
593
|
'zoneId'?: string;
|
|
594
|
+
/**
|
|
595
|
+
* Whether the pickface can contain mixed contents.
|
|
596
|
+
* @type {boolean}
|
|
597
|
+
* @memberof UpdatePickfaceRequest
|
|
598
|
+
*/
|
|
599
|
+
'mixedContents'?: boolean;
|
|
600
|
+
/**
|
|
601
|
+
* A user defined name for the pickface, if this is not provided the location will be used as the name.
|
|
602
|
+
* @type {string}
|
|
603
|
+
* @memberof UpdatePickfaceRequest
|
|
604
|
+
*/
|
|
605
|
+
'name'?: string | null;
|
|
545
606
|
/**
|
|
546
607
|
*
|
|
547
608
|
* @type {Array<UpdatePickfaceRequestContentsInner>}
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.21.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.21.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.21.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.21.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.21.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.21.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.21.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -20,7 +20,7 @@ export class Configuration {
|
|
|
20
20
|
this.accessToken = param.accessToken;
|
|
21
21
|
this.basePath = param.basePath;
|
|
22
22
|
this.serverIndex = param.serverIndex;
|
|
23
|
-
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/0.
|
|
23
|
+
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/0.21.0/typescript-axios" }) }, param.baseOptions);
|
|
24
24
|
this.formDataCtor = param.formDataCtor;
|
|
25
25
|
}
|
|
26
26
|
/**
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.21.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.21.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.21.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.21.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.21.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|