@teemill/pickfaces 0.20.0 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/pickfaces@0.20.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.20.0 --save
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.20.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).
@@ -105,19 +105,31 @@ export interface ContainerTypes {
105
105
  */
106
106
  export interface CreatePickfaceRequest {
107
107
  /**
108
- * The location of the pickface
108
+ * A human readable location for the pickface i.e. \"1 Wf 49\"
109
109
  * @type {string}
110
110
  * @memberof CreatePickfaceRequest
111
111
  */
112
112
  'location': string;
113
113
  /**
114
- * Unique object identifier
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;
119
+ /**
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;
119
125
  /**
120
- * Unique object identifier
126
+ * Whether the pickface can contain mixed contents.
127
+ * @type {boolean}
128
+ * @memberof CreatePickfaceRequest
129
+ */
130
+ 'mixedContents'?: boolean;
131
+ /**
132
+ * Typically this field is left empty. Use \'Zones API\' > \'List warehouse zones\' to get a list of available options.
121
133
  * @type {string}
122
134
  * @memberof CreatePickfaceRequest
123
135
  */
@@ -251,6 +263,12 @@ export interface Pickface {
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}
@@ -330,7 +354,7 @@ export interface PickfaceContentsInner {
330
354
  */
331
355
  'variantRef'?: string;
332
356
  /**
333
- *
357
+ * The ID of the project that the contents belongs to. For example, if you had a 3PL item this would be the project that created the product.
334
358
  * @type {string}
335
359
  * @memberof PickfaceContentsInner
336
360
  */
@@ -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.20.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.20.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.20.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.20.0/typescript-axios"
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.20.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).
@@ -95,19 +95,31 @@ export interface ContainerTypes {
95
95
  */
96
96
  export interface CreatePickfaceRequest {
97
97
  /**
98
- * The location of the pickface
98
+ * A human readable location for the pickface i.e. \"1 Wf 49\"
99
99
  * @type {string}
100
100
  * @memberof CreatePickfaceRequest
101
101
  */
102
102
  'location': string;
103
103
  /**
104
- * Unique object identifier
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;
109
+ /**
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;
109
115
  /**
110
- * Unique object identifier
116
+ * Whether the pickface can contain mixed contents.
117
+ * @type {boolean}
118
+ * @memberof CreatePickfaceRequest
119
+ */
120
+ 'mixedContents'?: boolean;
121
+ /**
122
+ * Typically this field is left empty. Use \'Zones API\' > \'List warehouse zones\' to get a list of available options.
111
123
  * @type {string}
112
124
  * @memberof CreatePickfaceRequest
113
125
  */
@@ -241,6 +253,12 @@ export interface Pickface {
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}
@@ -320,7 +344,7 @@ export interface PickfaceContentsInner {
320
344
  */
321
345
  'variantRef'?: string;
322
346
  /**
323
- *
347
+ * The ID of the project that the contents belongs to. For example, if you had a 3PL item this would be the project that created the product.
324
348
  * @type {string}
325
349
  * @memberof PickfaceContentsInner
326
350
  */
@@ -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.20.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.20.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.20.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.20.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.20.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).
@@ -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.20.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).
@@ -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.20.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.20.0/typescript-axios" }) }, param.baseOptions);
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.20.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).
@@ -95,19 +95,31 @@ export interface ContainerTypes {
95
95
  */
96
96
  export interface CreatePickfaceRequest {
97
97
  /**
98
- * The location of the pickface
98
+ * A human readable location for the pickface i.e. \"1 Wf 49\"
99
99
  * @type {string}
100
100
  * @memberof CreatePickfaceRequest
101
101
  */
102
102
  'location': string;
103
103
  /**
104
- * Unique object identifier
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;
109
+ /**
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;
109
115
  /**
110
- * Unique object identifier
116
+ * Whether the pickface can contain mixed contents.
117
+ * @type {boolean}
118
+ * @memberof CreatePickfaceRequest
119
+ */
120
+ 'mixedContents'?: boolean;
121
+ /**
122
+ * Typically this field is left empty. Use \'Zones API\' > \'List warehouse zones\' to get a list of available options.
111
123
  * @type {string}
112
124
  * @memberof CreatePickfaceRequest
113
125
  */
@@ -241,6 +253,12 @@ export interface Pickface {
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}
@@ -320,7 +344,7 @@ export interface PickfaceContentsInner {
320
344
  */
321
345
  'variantRef'?: string;
322
346
  /**
323
- *
347
+ * The ID of the project that the contents belongs to. For example, if you had a 3PL item this would be the project that created the product.
324
348
  * @type {string}
325
349
  * @memberof PickfaceContentsInner
326
350
  */
@@ -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.20.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.20.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.20.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.20.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.20.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.20.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.20.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.20.0/typescript-axios" }) }, param.baseOptions);
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
  /**
@@ -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.20.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.20.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.20.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.20.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.20.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/pickfaces",
3
- "version": "0.20.0",
3
+ "version": "0.21.0",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {