@teemill/pickfaces 0.27.0 → 0.29.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.27.0
1
+ ## @teemill/pickfaces@0.29.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.27.0 --save
39
+ npm install @teemill/pickfaces@0.29.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -92,7 +92,7 @@ Class | Method | HTTP request | Description
92
92
  - [UpdatePickfaceRequestContentsInner](docs/UpdatePickfaceRequestContentsInner.md)
93
93
  - [UpdatePickfaceRequestContentsInnerQuantity](docs/UpdatePickfaceRequestContentsInnerQuantity.md)
94
94
  - [UpdatePickfaceRequestContentsInnerQuantityAvailable](docs/UpdatePickfaceRequestContentsInnerQuantityAvailable.md)
95
- - [UpdatePickfaceRequestContentsInnerQuantityReserved](docs/UpdatePickfaceRequestContentsInnerQuantityReserved.md)
95
+ - [UpdatePickfaceRequestContentsInnerQuantityZWip](docs/UpdatePickfaceRequestContentsInnerQuantityZWip.md)
96
96
  - [VariantAttribute](docs/VariantAttribute.md)
97
97
  - [VariantAttributeThumbnail](docs/VariantAttributeThumbnail.md)
98
98
 
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.27.0
7
+ * The version of the OpenAPI document: 0.29.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -267,6 +267,12 @@ export interface Pickface {
267
267
  * @memberof Pickface
268
268
  */
269
269
  'ref': string;
270
+ /**
271
+ * The barcode of the pickface
272
+ * @type {string}
273
+ * @memberof Pickface
274
+ */
275
+ 'barcode': string;
270
276
  /**
271
277
  *
272
278
  * @type {PickfaceZone}
@@ -445,6 +451,12 @@ export interface PickfaceContentsInnerQuantity {
445
451
  * @memberof PickfaceContentsInnerQuantity
446
452
  */
447
453
  'reserved'?: number;
454
+ /**
455
+ * The amount of stock in the pickface that is awaiting some interaction with a third party system, e.g. a custom ordering system. This value does not interact with PodOS systems.
456
+ * @type {number}
457
+ * @memberof PickfaceContentsInnerQuantity
458
+ */
459
+ 'ZWip'?: number;
448
460
  }
449
461
  /**
450
462
  * The open issue for the pickface
@@ -615,10 +627,10 @@ export interface UpdatePickfaceRequestContentsInnerQuantity {
615
627
  'available'?: UpdatePickfaceRequestContentsInnerQuantityAvailable | null;
616
628
  /**
617
629
  *
618
- * @type {UpdatePickfaceRequestContentsInnerQuantityReserved}
630
+ * @type {UpdatePickfaceRequestContentsInnerQuantityZWip}
619
631
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
620
632
  */
621
- 'reserved'?: UpdatePickfaceRequestContentsInnerQuantityReserved | null;
633
+ 'ZWip'?: UpdatePickfaceRequestContentsInnerQuantityZWip | null;
622
634
  }
623
635
  /**
624
636
  * The amount to add or subtract from the available stock on the pickface
@@ -642,37 +654,39 @@ export interface UpdatePickfaceRequestContentsInnerQuantityAvailable {
642
654
 
643
655
  export const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = {
644
656
  Add: 'add',
645
- Subtract: 'subtract'
657
+ Subtract: 'subtract',
658
+ Set: 'set'
646
659
  } as const;
647
660
 
648
661
  export type UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum];
649
662
 
650
663
  /**
651
- * The amount to add or subtract from the reserved stock on the pickface. Note that you cannot subtract more than the amount of stock that has been reserved for PodOS orders.
664
+ * The amount to add or subtract from the Z WIP stock on the pickface.
652
665
  * @export
653
- * @interface UpdatePickfaceRequestContentsInnerQuantityReserved
666
+ * @interface UpdatePickfaceRequestContentsInnerQuantityZWip
654
667
  */
655
- export interface UpdatePickfaceRequestContentsInnerQuantityReserved {
668
+ export interface UpdatePickfaceRequestContentsInnerQuantityZWip {
656
669
  /**
657
670
  *
658
671
  * @type {string}
659
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
672
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
660
673
  */
661
- 'operation'?: UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum;
674
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum;
662
675
  /**
663
676
  *
664
677
  * @type {number}
665
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
678
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
666
679
  */
667
680
  'value': number;
668
681
  }
669
682
 
670
- export const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = {
683
+ export const UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = {
671
684
  Add: 'add',
672
- Subtract: 'subtract'
685
+ Subtract: 'subtract',
686
+ Set: 'set'
673
687
  } as const;
674
688
 
675
- export type UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum];
689
+ export type UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum];
676
690
 
677
691
  /**
678
692
  *
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.27.0
7
+ * The version of the OpenAPI document: 0.29.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.27.0
7
+ * The version of the OpenAPI document: 0.29.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.27.0
7
+ * The version of the OpenAPI document: 0.29.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
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.27.0
5
+ * The version of the OpenAPI document: 0.29.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -257,6 +257,12 @@ export interface Pickface {
257
257
  * @memberof Pickface
258
258
  */
259
259
  'ref': string;
260
+ /**
261
+ * The barcode of the pickface
262
+ * @type {string}
263
+ * @memberof Pickface
264
+ */
265
+ 'barcode': string;
260
266
  /**
261
267
  *
262
268
  * @type {PickfaceZone}
@@ -435,6 +441,12 @@ export interface PickfaceContentsInnerQuantity {
435
441
  * @memberof PickfaceContentsInnerQuantity
436
442
  */
437
443
  'reserved'?: number;
444
+ /**
445
+ * The amount of stock in the pickface that is awaiting some interaction with a third party system, e.g. a custom ordering system. This value does not interact with PodOS systems.
446
+ * @type {number}
447
+ * @memberof PickfaceContentsInnerQuantity
448
+ */
449
+ 'ZWip'?: number;
438
450
  }
439
451
  /**
440
452
  * The open issue for the pickface
@@ -605,10 +617,10 @@ export interface UpdatePickfaceRequestContentsInnerQuantity {
605
617
  'available'?: UpdatePickfaceRequestContentsInnerQuantityAvailable | null;
606
618
  /**
607
619
  *
608
- * @type {UpdatePickfaceRequestContentsInnerQuantityReserved}
620
+ * @type {UpdatePickfaceRequestContentsInnerQuantityZWip}
609
621
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
610
622
  */
611
- 'reserved'?: UpdatePickfaceRequestContentsInnerQuantityReserved | null;
623
+ 'ZWip'?: UpdatePickfaceRequestContentsInnerQuantityZWip | null;
612
624
  }
613
625
  /**
614
626
  * The amount to add or subtract from the available stock on the pickface
@@ -632,32 +644,34 @@ export interface UpdatePickfaceRequestContentsInnerQuantityAvailable {
632
644
  export declare const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum: {
633
645
  readonly Add: "add";
634
646
  readonly Subtract: "subtract";
647
+ readonly Set: "set";
635
648
  };
636
649
  export type UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum];
637
650
  /**
638
- * The amount to add or subtract from the reserved stock on the pickface. Note that you cannot subtract more than the amount of stock that has been reserved for PodOS orders.
651
+ * The amount to add or subtract from the Z WIP stock on the pickface.
639
652
  * @export
640
- * @interface UpdatePickfaceRequestContentsInnerQuantityReserved
653
+ * @interface UpdatePickfaceRequestContentsInnerQuantityZWip
641
654
  */
642
- export interface UpdatePickfaceRequestContentsInnerQuantityReserved {
655
+ export interface UpdatePickfaceRequestContentsInnerQuantityZWip {
643
656
  /**
644
657
  *
645
658
  * @type {string}
646
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
659
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
647
660
  */
648
- 'operation'?: UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum;
661
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum;
649
662
  /**
650
663
  *
651
664
  * @type {number}
652
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
665
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
653
666
  */
654
667
  'value': number;
655
668
  }
656
- export declare const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum: {
669
+ export declare const UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum: {
657
670
  readonly Add: "add";
658
671
  readonly Subtract: "subtract";
672
+ readonly Set: "set";
659
673
  };
660
- export type UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum];
674
+ export type UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum];
661
675
  /**
662
676
  *
663
677
  * @export
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.27.0
8
+ * The version of the OpenAPI document: 0.29.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.ListPickfacesSortByEnum = exports.PickfacesApi = exports.PickfacesApiFactory = exports.PickfacesApiFp = exports.PickfacesApiAxiosParamCreator = exports.VariantAttributeThumbnailTypeEnum = exports.UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = exports.UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = void 0;
25
+ exports.ListPickfacesSortByEnum = exports.PickfacesApi = exports.PickfacesApiFactory = exports.PickfacesApiFp = exports.PickfacesApiAxiosParamCreator = exports.VariantAttributeThumbnailTypeEnum = exports.UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = exports.UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -31,11 +31,13 @@ const common_1 = require("./common");
31
31
  const base_1 = require("./base");
32
32
  exports.UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = {
33
33
  Add: 'add',
34
- Subtract: 'subtract'
34
+ Subtract: 'subtract',
35
+ Set: 'set'
35
36
  };
36
- exports.UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = {
37
+ exports.UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = {
37
38
  Add: 'add',
38
- Subtract: 'subtract'
39
+ Subtract: 'subtract',
40
+ Set: 'set'
39
41
  };
40
42
  exports.VariantAttributeThumbnailTypeEnum = {
41
43
  Text: 'text',
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.27.0
5
+ * The version of the OpenAPI document: 0.29.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.27.0
8
+ * The version of the OpenAPI document: 0.29.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.27.0
5
+ * The version of the OpenAPI document: 0.29.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.27.0
8
+ * The version of the OpenAPI document: 0.29.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.27.0
5
+ * The version of the OpenAPI document: 0.29.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.27.0
8
+ * The version of the OpenAPI document: 0.29.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
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.27.0
5
+ * The version of the OpenAPI document: 0.29.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -257,6 +257,12 @@ export interface Pickface {
257
257
  * @memberof Pickface
258
258
  */
259
259
  'ref': string;
260
+ /**
261
+ * The barcode of the pickface
262
+ * @type {string}
263
+ * @memberof Pickface
264
+ */
265
+ 'barcode': string;
260
266
  /**
261
267
  *
262
268
  * @type {PickfaceZone}
@@ -435,6 +441,12 @@ export interface PickfaceContentsInnerQuantity {
435
441
  * @memberof PickfaceContentsInnerQuantity
436
442
  */
437
443
  'reserved'?: number;
444
+ /**
445
+ * The amount of stock in the pickface that is awaiting some interaction with a third party system, e.g. a custom ordering system. This value does not interact with PodOS systems.
446
+ * @type {number}
447
+ * @memberof PickfaceContentsInnerQuantity
448
+ */
449
+ 'ZWip'?: number;
438
450
  }
439
451
  /**
440
452
  * The open issue for the pickface
@@ -605,10 +617,10 @@ export interface UpdatePickfaceRequestContentsInnerQuantity {
605
617
  'available'?: UpdatePickfaceRequestContentsInnerQuantityAvailable | null;
606
618
  /**
607
619
  *
608
- * @type {UpdatePickfaceRequestContentsInnerQuantityReserved}
620
+ * @type {UpdatePickfaceRequestContentsInnerQuantityZWip}
609
621
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
610
622
  */
611
- 'reserved'?: UpdatePickfaceRequestContentsInnerQuantityReserved | null;
623
+ 'ZWip'?: UpdatePickfaceRequestContentsInnerQuantityZWip | null;
612
624
  }
613
625
  /**
614
626
  * The amount to add or subtract from the available stock on the pickface
@@ -632,32 +644,34 @@ export interface UpdatePickfaceRequestContentsInnerQuantityAvailable {
632
644
  export declare const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum: {
633
645
  readonly Add: "add";
634
646
  readonly Subtract: "subtract";
647
+ readonly Set: "set";
635
648
  };
636
649
  export type UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum];
637
650
  /**
638
- * The amount to add or subtract from the reserved stock on the pickface. Note that you cannot subtract more than the amount of stock that has been reserved for PodOS orders.
651
+ * The amount to add or subtract from the Z WIP stock on the pickface.
639
652
  * @export
640
- * @interface UpdatePickfaceRequestContentsInnerQuantityReserved
653
+ * @interface UpdatePickfaceRequestContentsInnerQuantityZWip
641
654
  */
642
- export interface UpdatePickfaceRequestContentsInnerQuantityReserved {
655
+ export interface UpdatePickfaceRequestContentsInnerQuantityZWip {
643
656
  /**
644
657
  *
645
658
  * @type {string}
646
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
659
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
647
660
  */
648
- 'operation'?: UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum;
661
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum;
649
662
  /**
650
663
  *
651
664
  * @type {number}
652
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
665
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
653
666
  */
654
667
  'value': number;
655
668
  }
656
- export declare const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum: {
669
+ export declare const UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum: {
657
670
  readonly Add: "add";
658
671
  readonly Subtract: "subtract";
672
+ readonly Set: "set";
659
673
  };
660
- export type UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum];
674
+ export type UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum];
661
675
  /**
662
676
  *
663
677
  * @export
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.27.0
7
+ * The version of the OpenAPI document: 0.29.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,11 +28,13 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setOAuthToObject,
28
28
  import { BASE_PATH, BaseAPI, operationServerMap } from './base';
29
29
  export const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = {
30
30
  Add: 'add',
31
- Subtract: 'subtract'
31
+ Subtract: 'subtract',
32
+ Set: 'set'
32
33
  };
33
- export const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = {
34
+ export const UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = {
34
35
  Add: 'add',
35
- Subtract: 'subtract'
36
+ Subtract: 'subtract',
37
+ Set: 'set'
36
38
  };
37
39
  export const VariantAttributeThumbnailTypeEnum = {
38
40
  Text: 'text',
@@ -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.27.0
5
+ * The version of the OpenAPI document: 0.29.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.27.0
7
+ * The version of the OpenAPI document: 0.29.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.27.0
5
+ * The version of the OpenAPI document: 0.29.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.27.0
7
+ * The version of the OpenAPI document: 0.29.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.27.0
5
+ * The version of the OpenAPI document: 0.29.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.27.0
7
+ * The version of the OpenAPI document: 0.29.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.27.0
5
+ * The version of the OpenAPI document: 0.29.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.27.0
7
+ * The version of the OpenAPI document: 0.29.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.27.0
5
+ * The version of the OpenAPI document: 0.29.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.27.0
8
+ * The version of the OpenAPI document: 0.29.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/docs/Pickface.md CHANGED
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **id** | **string** | Unique object identifier | [default to undefined]
9
9
  **ref** | **string** | A reference to the resource location | [default to undefined]
10
+ **barcode** | **string** | The barcode of the pickface | [default to undefined]
10
11
  **zone** | [**PickfaceZone**](PickfaceZone.md) | | [default to undefined]
11
12
  **code** | **string** | The human readable location of the pickface, if a name is provided this will be the name. | [default to undefined]
12
13
  **enabled** | **boolean** | | [default to undefined]
@@ -27,6 +28,7 @@ import { Pickface } from '@teemill/pickfaces';
27
28
  const instance: Pickface = {
28
29
  id,
29
30
  ref,
31
+ barcode,
30
32
  zone,
31
33
  code,
32
34
  enabled,
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **total** | **number** | How many are in the box | [optional] [default to undefined]
9
9
  **available** | **number** | How many are available to reserve | [optional] [default to undefined]
10
10
  **reserved** | **number** | How many are pending some action e.g. to be picked | [optional] [default to undefined]
11
+ **ZWip** | **number** | The amount of stock in the pickface that is awaiting some interaction with a third party system, e.g. a custom ordering system. This value does not interact with PodOS systems. | [optional] [default to undefined]
11
12
 
12
13
  ## Example
13
14
 
@@ -18,6 +19,7 @@ const instance: PickfaceContentsInnerQuantity = {
18
19
  total,
19
20
  available,
20
21
  reserved,
22
+ ZWip,
21
23
  };
22
24
  ```
23
25
 
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **available** | [**UpdatePickfaceRequestContentsInnerQuantityAvailable**](UpdatePickfaceRequestContentsInnerQuantityAvailable.md) | | [optional] [default to undefined]
9
- **reserved** | [**UpdatePickfaceRequestContentsInnerQuantityReserved**](UpdatePickfaceRequestContentsInnerQuantityReserved.md) | | [optional] [default to undefined]
9
+ **ZWip** | [**UpdatePickfaceRequestContentsInnerQuantityZWip**](UpdatePickfaceRequestContentsInnerQuantityZWip.md) | | [optional] [default to undefined]
10
10
 
11
11
  ## Example
12
12
 
@@ -15,7 +15,7 @@ import { UpdatePickfaceRequestContentsInnerQuantity } from '@teemill/pickfaces';
15
15
 
16
16
  const instance: UpdatePickfaceRequestContentsInnerQuantity = {
17
17
  available,
18
- reserved,
18
+ ZWip,
19
19
  };
20
20
  ```
21
21
 
@@ -0,0 +1,23 @@
1
+ # UpdatePickfaceRequestContentsInnerQuantityZWip
2
+
3
+ The amount to add or subtract from the Z WIP stock on the pickface.
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **operation** | **string** | | [optional] [default to undefined]
10
+ **value** | **number** | | [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { UpdatePickfaceRequestContentsInnerQuantityZWip } from '@teemill/pickfaces';
16
+
17
+ const instance: UpdatePickfaceRequestContentsInnerQuantityZWip = {
18
+ operation,
19
+ value,
20
+ };
21
+ ```
22
+
23
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
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.27.0
7
+ * The version of the OpenAPI document: 0.29.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.27.0",
3
+ "version": "0.29.0",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {