@teemill/pickfaces 0.28.0 → 0.29.1

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.28.0
1
+ ## @teemill/pickfaces@0.29.1
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.28.0 --save
39
+ npm install @teemill/pickfaces@0.29.1 --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.28.0
7
+ * The version of the OpenAPI document: 0.29.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -451,6 +451,12 @@ export interface PickfaceContentsInnerQuantity {
451
451
  * @memberof PickfaceContentsInnerQuantity
452
452
  */
453
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;
454
460
  }
455
461
  /**
456
462
  * The open issue for the pickface
@@ -556,7 +562,7 @@ export interface UpdatePickfaceRequest {
556
562
  * @type {string}
557
563
  * @memberof UpdatePickfaceRequest
558
564
  */
559
- 'zoneId'?: string;
565
+ 'zoneId'?: string | null;
560
566
  /**
561
567
  * Whether the pickface can contain mixed contents.
562
568
  * @type {boolean}
@@ -621,10 +627,10 @@ export interface UpdatePickfaceRequestContentsInnerQuantity {
621
627
  'available'?: UpdatePickfaceRequestContentsInnerQuantityAvailable | null;
622
628
  /**
623
629
  *
624
- * @type {UpdatePickfaceRequestContentsInnerQuantityReserved}
630
+ * @type {UpdatePickfaceRequestContentsInnerQuantityZWip}
625
631
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
626
632
  */
627
- 'reserved'?: UpdatePickfaceRequestContentsInnerQuantityReserved | null;
633
+ 'ZWip'?: UpdatePickfaceRequestContentsInnerQuantityZWip | null;
628
634
  }
629
635
  /**
630
636
  * The amount to add or subtract from the available stock on the pickface
@@ -648,37 +654,39 @@ export interface UpdatePickfaceRequestContentsInnerQuantityAvailable {
648
654
 
649
655
  export const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = {
650
656
  Add: 'add',
651
- Subtract: 'subtract'
657
+ Subtract: 'subtract',
658
+ Set: 'set'
652
659
  } as const;
653
660
 
654
661
  export type UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum];
655
662
 
656
663
  /**
657
- * 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.
658
665
  * @export
659
- * @interface UpdatePickfaceRequestContentsInnerQuantityReserved
666
+ * @interface UpdatePickfaceRequestContentsInnerQuantityZWip
660
667
  */
661
- export interface UpdatePickfaceRequestContentsInnerQuantityReserved {
668
+ export interface UpdatePickfaceRequestContentsInnerQuantityZWip {
662
669
  /**
663
670
  *
664
671
  * @type {string}
665
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
672
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
666
673
  */
667
- 'operation'?: UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum;
674
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum;
668
675
  /**
669
676
  *
670
677
  * @type {number}
671
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
678
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
672
679
  */
673
680
  'value': number;
674
681
  }
675
682
 
676
- export const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = {
683
+ export const UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = {
677
684
  Add: 'add',
678
- Subtract: 'subtract'
685
+ Subtract: 'subtract',
686
+ Set: 'set'
679
687
  } as const;
680
688
 
681
- export type UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum];
689
+ export type UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum];
682
690
 
683
691
  /**
684
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.28.0
7
+ * The version of the OpenAPI document: 0.29.1
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.28.0
7
+ * The version of the OpenAPI document: 0.29.1
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.28.0
7
+ * The version of the OpenAPI document: 0.29.1
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.28.0
5
+ * The version of the OpenAPI document: 0.29.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -441,6 +441,12 @@ export interface PickfaceContentsInnerQuantity {
441
441
  * @memberof PickfaceContentsInnerQuantity
442
442
  */
443
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;
444
450
  }
445
451
  /**
446
452
  * The open issue for the pickface
@@ -546,7 +552,7 @@ export interface UpdatePickfaceRequest {
546
552
  * @type {string}
547
553
  * @memberof UpdatePickfaceRequest
548
554
  */
549
- 'zoneId'?: string;
555
+ 'zoneId'?: string | null;
550
556
  /**
551
557
  * Whether the pickface can contain mixed contents.
552
558
  * @type {boolean}
@@ -611,10 +617,10 @@ export interface UpdatePickfaceRequestContentsInnerQuantity {
611
617
  'available'?: UpdatePickfaceRequestContentsInnerQuantityAvailable | null;
612
618
  /**
613
619
  *
614
- * @type {UpdatePickfaceRequestContentsInnerQuantityReserved}
620
+ * @type {UpdatePickfaceRequestContentsInnerQuantityZWip}
615
621
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
616
622
  */
617
- 'reserved'?: UpdatePickfaceRequestContentsInnerQuantityReserved | null;
623
+ 'ZWip'?: UpdatePickfaceRequestContentsInnerQuantityZWip | null;
618
624
  }
619
625
  /**
620
626
  * The amount to add or subtract from the available stock on the pickface
@@ -638,32 +644,34 @@ export interface UpdatePickfaceRequestContentsInnerQuantityAvailable {
638
644
  export declare const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum: {
639
645
  readonly Add: "add";
640
646
  readonly Subtract: "subtract";
647
+ readonly Set: "set";
641
648
  };
642
649
  export type UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum];
643
650
  /**
644
- * 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.
645
652
  * @export
646
- * @interface UpdatePickfaceRequestContentsInnerQuantityReserved
653
+ * @interface UpdatePickfaceRequestContentsInnerQuantityZWip
647
654
  */
648
- export interface UpdatePickfaceRequestContentsInnerQuantityReserved {
655
+ export interface UpdatePickfaceRequestContentsInnerQuantityZWip {
649
656
  /**
650
657
  *
651
658
  * @type {string}
652
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
659
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
653
660
  */
654
- 'operation'?: UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum;
661
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum;
655
662
  /**
656
663
  *
657
664
  * @type {number}
658
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
665
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
659
666
  */
660
667
  'value': number;
661
668
  }
662
- export declare const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum: {
669
+ export declare const UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum: {
663
670
  readonly Add: "add";
664
671
  readonly Subtract: "subtract";
672
+ readonly Set: "set";
665
673
  };
666
- export type UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum];
674
+ export type UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum];
667
675
  /**
668
676
  *
669
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.28.0
8
+ * The version of the OpenAPI document: 0.29.1
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.28.0
5
+ * The version of the OpenAPI document: 0.29.1
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.28.0
8
+ * The version of the OpenAPI document: 0.29.1
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.28.0
5
+ * The version of the OpenAPI document: 0.29.1
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.28.0
8
+ * The version of the OpenAPI document: 0.29.1
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.28.0
5
+ * The version of the OpenAPI document: 0.29.1
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.28.0
8
+ * The version of the OpenAPI document: 0.29.1
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.28.0
5
+ * The version of the OpenAPI document: 0.29.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -441,6 +441,12 @@ export interface PickfaceContentsInnerQuantity {
441
441
  * @memberof PickfaceContentsInnerQuantity
442
442
  */
443
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;
444
450
  }
445
451
  /**
446
452
  * The open issue for the pickface
@@ -546,7 +552,7 @@ export interface UpdatePickfaceRequest {
546
552
  * @type {string}
547
553
  * @memberof UpdatePickfaceRequest
548
554
  */
549
- 'zoneId'?: string;
555
+ 'zoneId'?: string | null;
550
556
  /**
551
557
  * Whether the pickface can contain mixed contents.
552
558
  * @type {boolean}
@@ -611,10 +617,10 @@ export interface UpdatePickfaceRequestContentsInnerQuantity {
611
617
  'available'?: UpdatePickfaceRequestContentsInnerQuantityAvailable | null;
612
618
  /**
613
619
  *
614
- * @type {UpdatePickfaceRequestContentsInnerQuantityReserved}
620
+ * @type {UpdatePickfaceRequestContentsInnerQuantityZWip}
615
621
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
616
622
  */
617
- 'reserved'?: UpdatePickfaceRequestContentsInnerQuantityReserved | null;
623
+ 'ZWip'?: UpdatePickfaceRequestContentsInnerQuantityZWip | null;
618
624
  }
619
625
  /**
620
626
  * The amount to add or subtract from the available stock on the pickface
@@ -638,32 +644,34 @@ export interface UpdatePickfaceRequestContentsInnerQuantityAvailable {
638
644
  export declare const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum: {
639
645
  readonly Add: "add";
640
646
  readonly Subtract: "subtract";
647
+ readonly Set: "set";
641
648
  };
642
649
  export type UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum];
643
650
  /**
644
- * 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.
645
652
  * @export
646
- * @interface UpdatePickfaceRequestContentsInnerQuantityReserved
653
+ * @interface UpdatePickfaceRequestContentsInnerQuantityZWip
647
654
  */
648
- export interface UpdatePickfaceRequestContentsInnerQuantityReserved {
655
+ export interface UpdatePickfaceRequestContentsInnerQuantityZWip {
649
656
  /**
650
657
  *
651
658
  * @type {string}
652
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
659
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
653
660
  */
654
- 'operation'?: UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum;
661
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum;
655
662
  /**
656
663
  *
657
664
  * @type {number}
658
- * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
665
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityZWip
659
666
  */
660
667
  'value': number;
661
668
  }
662
- export declare const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum: {
669
+ export declare const UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum: {
663
670
  readonly Add: "add";
664
671
  readonly Subtract: "subtract";
672
+ readonly Set: "set";
665
673
  };
666
- export type UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum];
674
+ export type UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityZWipOperationEnum];
667
675
  /**
668
676
  *
669
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.28.0
7
+ * The version of the OpenAPI document: 0.29.1
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.28.0
5
+ * The version of the OpenAPI document: 0.29.1
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.28.0
7
+ * The version of the OpenAPI document: 0.29.1
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.28.0
5
+ * The version of the OpenAPI document: 0.29.1
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.28.0
7
+ * The version of the OpenAPI document: 0.29.1
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.28.0
5
+ * The version of the OpenAPI document: 0.29.1
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.28.0
7
+ * The version of the OpenAPI document: 0.29.1
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.28.0
5
+ * The version of the OpenAPI document: 0.29.1
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.28.0
7
+ * The version of the OpenAPI document: 0.29.1
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.28.0
5
+ * The version of the OpenAPI document: 0.29.1
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.28.0
8
+ * The version of the OpenAPI document: 0.29.1
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.28.0
7
+ * The version of the OpenAPI document: 0.29.1
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.28.0",
3
+ "version": "0.29.1",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {