@teemill/pickfaces 0.25.0 → 0.27.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.
Files changed (53) hide show
  1. package/README.md +75 -2
  2. package/api.ts +58 -86
  3. package/base.ts +1 -1
  4. package/common.ts +1 -1
  5. package/configuration.ts +1 -1
  6. package/dist/api.d.ts +55 -86
  7. package/dist/api.js +7 -3
  8. package/dist/base.d.ts +1 -1
  9. package/dist/base.js +1 -1
  10. package/dist/common.d.ts +1 -1
  11. package/dist/common.js +1 -1
  12. package/dist/configuration.d.ts +1 -1
  13. package/dist/configuration.js +1 -1
  14. package/dist/esm/api.d.ts +55 -86
  15. package/dist/esm/api.js +6 -2
  16. package/dist/esm/base.d.ts +1 -1
  17. package/dist/esm/base.js +1 -1
  18. package/dist/esm/common.d.ts +1 -1
  19. package/dist/esm/common.js +1 -1
  20. package/dist/esm/configuration.d.ts +1 -1
  21. package/dist/esm/configuration.js +1 -1
  22. package/dist/esm/index.d.ts +1 -1
  23. package/dist/esm/index.js +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/docs/ApiError.md +22 -0
  27. package/docs/ContainerType.md +31 -0
  28. package/docs/ContainerTypes.md +20 -0
  29. package/docs/CreatePickfaceRequest.md +30 -0
  30. package/docs/ExportPickfaces202Response.md +20 -0
  31. package/docs/IssueEmptyPickfaceRequest.md +20 -0
  32. package/docs/IssueWrongContentsPickfaceRequest.md +22 -0
  33. package/docs/ListPickfaceLogs200Response.md +22 -0
  34. package/docs/ListPickfaces200Response.md +22 -0
  35. package/docs/MoveStockRequest.md +24 -0
  36. package/docs/Pickface.md +44 -0
  37. package/docs/PickfaceContainerType.md +22 -0
  38. package/docs/PickfaceContentsInner.md +26 -0
  39. package/docs/PickfaceContentsInnerMetadata.md +29 -0
  40. package/docs/PickfaceContentsInnerQuantity.md +24 -0
  41. package/docs/PickfaceIssue.md +23 -0
  42. package/docs/PickfaceLog.md +28 -0
  43. package/docs/PickfaceZone.md +24 -0
  44. package/docs/PickfacesApi.md +957 -0
  45. package/docs/UpdatePickfaceRequest.md +35 -0
  46. package/docs/UpdatePickfaceRequestContentsInner.md +22 -0
  47. package/docs/UpdatePickfaceRequestContentsInnerQuantity.md +22 -0
  48. package/docs/UpdatePickfaceRequestContentsInnerQuantityAvailable.md +23 -0
  49. package/docs/UpdatePickfaceRequestContentsInnerQuantityReserved.md +23 -0
  50. package/docs/VariantAttribute.md +24 -0
  51. package/docs/VariantAttributeThumbnail.md +23 -0
  52. package/index.ts +1 -1
  53. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/pickfaces@0.25.0
1
+ ## @teemill/pickfaces@0.27.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.25.0 --save
39
+ npm install @teemill/pickfaces@0.27.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -44,3 +44,76 @@ _unPublished (not recommended):_
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
46
  ```
47
+
48
+ ### Documentation for API Endpoints
49
+
50
+ All URIs are relative to *https://api.localhost:8080*
51
+
52
+ Class | Method | HTTP request | Description
53
+ ------------ | ------------- | ------------- | -------------
54
+ *PickfacesApi* | [**createPickface**](docs/PickfacesApi.md#createpickface) | **POST** /v1/pickfaces | Create Pickface
55
+ *PickfacesApi* | [**deletePickface**](docs/PickfacesApi.md#deletepickface) | **DELETE** /v1/pickfaces/{pickfaceId} | Delete Pickface
56
+ *PickfacesApi* | [**exportPickfaces**](docs/PickfacesApi.md#exportpickfaces) | **GET** /v1/pickfaces/export | Export pickfaces
57
+ *PickfacesApi* | [**getPickface**](docs/PickfacesApi.md#getpickface) | **GET** /v1/pickfaces/{pickfaceId} | Get pickface
58
+ *PickfacesApi* | [**issueEmptyPickface**](docs/PickfacesApi.md#issueemptypickface) | **POST** /v1/pickfaces/{pickfaceId}/issue/empty | Issue empty pickface
59
+ *PickfacesApi* | [**issueWrongContentsPickface**](docs/PickfacesApi.md#issuewrongcontentspickface) | **POST** /v1/pickfaces/{pickfaceId}/issue/wrong-contents | Issue wrong contents pickface
60
+ *PickfacesApi* | [**listPickfaceContainerTypes**](docs/PickfacesApi.md#listpickfacecontainertypes) | **GET** /v1/pickfaces/container-types | List pickface container types
61
+ *PickfacesApi* | [**listPickfaceLogs**](docs/PickfacesApi.md#listpickfacelogs) | **GET** /v1/pickfaces/{pickfaceId}/logs | Get pickface logs
62
+ *PickfacesApi* | [**listPickfaces**](docs/PickfacesApi.md#listpickfaces) | **GET** /v1/pickfaces | List pickfaces
63
+ *PickfacesApi* | [**moveStock**](docs/PickfacesApi.md#movestock) | **POST** /v1/pickfaces/{pickfaceId}/stock/move | Move stock
64
+ *PickfacesApi* | [**printPickfaceLabel**](docs/PickfacesApi.md#printpickfacelabel) | **GET** /v1/pickfaces/{pickfaceId}/print | Print pickface label
65
+ *PickfacesApi* | [**printPickfaceLabels**](docs/PickfacesApi.md#printpickfacelabels) | **GET** /v1/pickfaces/print | Print pickface Labels
66
+ *PickfacesApi* | [**resolvePickfaceIssue**](docs/PickfacesApi.md#resolvepickfaceissue) | **POST** /v1/pickfaces/{pickfaceId}/issue/resolve | Resolve pickface issue
67
+ *PickfacesApi* | [**suggestPickfaces**](docs/PickfacesApi.md#suggestpickfaces) | **GET** /v1/pickfaces/suggest | Suggest pickfaces
68
+ *PickfacesApi* | [**updatePickface**](docs/PickfacesApi.md#updatepickface) | **PATCH** /v1/pickfaces/{pickfaceId} | Update Pickface
69
+
70
+
71
+ ### Documentation For Models
72
+
73
+ - [ApiError](docs/ApiError.md)
74
+ - [ContainerType](docs/ContainerType.md)
75
+ - [ContainerTypes](docs/ContainerTypes.md)
76
+ - [CreatePickfaceRequest](docs/CreatePickfaceRequest.md)
77
+ - [ExportPickfaces202Response](docs/ExportPickfaces202Response.md)
78
+ - [IssueEmptyPickfaceRequest](docs/IssueEmptyPickfaceRequest.md)
79
+ - [IssueWrongContentsPickfaceRequest](docs/IssueWrongContentsPickfaceRequest.md)
80
+ - [ListPickfaceLogs200Response](docs/ListPickfaceLogs200Response.md)
81
+ - [ListPickfaces200Response](docs/ListPickfaces200Response.md)
82
+ - [MoveStockRequest](docs/MoveStockRequest.md)
83
+ - [Pickface](docs/Pickface.md)
84
+ - [PickfaceContainerType](docs/PickfaceContainerType.md)
85
+ - [PickfaceContentsInner](docs/PickfaceContentsInner.md)
86
+ - [PickfaceContentsInnerMetadata](docs/PickfaceContentsInnerMetadata.md)
87
+ - [PickfaceContentsInnerQuantity](docs/PickfaceContentsInnerQuantity.md)
88
+ - [PickfaceIssue](docs/PickfaceIssue.md)
89
+ - [PickfaceLog](docs/PickfaceLog.md)
90
+ - [PickfaceZone](docs/PickfaceZone.md)
91
+ - [UpdatePickfaceRequest](docs/UpdatePickfaceRequest.md)
92
+ - [UpdatePickfaceRequestContentsInner](docs/UpdatePickfaceRequestContentsInner.md)
93
+ - [UpdatePickfaceRequestContentsInnerQuantity](docs/UpdatePickfaceRequestContentsInnerQuantity.md)
94
+ - [UpdatePickfaceRequestContentsInnerQuantityAvailable](docs/UpdatePickfaceRequestContentsInnerQuantityAvailable.md)
95
+ - [UpdatePickfaceRequestContentsInnerQuantityReserved](docs/UpdatePickfaceRequestContentsInnerQuantityReserved.md)
96
+ - [VariantAttribute](docs/VariantAttribute.md)
97
+ - [VariantAttributeThumbnail](docs/VariantAttributeThumbnail.md)
98
+
99
+
100
+ <a id="documentation-for-authorization"></a>
101
+ ## Documentation For Authorization
102
+
103
+
104
+ Authentication schemes defined for the API:
105
+ <a id="api-key"></a>
106
+ ### api-key
107
+
108
+ - **Type**: API key
109
+ - **API key parameter name**: Authorization
110
+ - **Location**: HTTP header
111
+
112
+ <a id="session-oauth"></a>
113
+ ### session-oauth
114
+
115
+ - **Type**: OAuth
116
+ - **Flow**: password
117
+ - **Authorization URL**:
118
+ - **Scopes**: N/A
119
+
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.25.0
7
+ * The version of the OpenAPI document: 0.27.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -311,16 +311,16 @@ export interface Pickface {
311
311
  'fullness': number;
312
312
  /**
313
313
  *
314
- * @type {PickfaceLastPicked}
314
+ * @type {PickfaceLog}
315
315
  * @memberof Pickface
316
316
  */
317
- 'lastPicked': PickfaceLastPicked;
317
+ 'lastPicked': PickfaceLog | null;
318
318
  /**
319
319
  *
320
- * @type {PickfaceLastRestocked}
320
+ * @type {PickfaceLog}
321
321
  * @memberof Pickface
322
322
  */
323
- 'lastRestocked': PickfaceLastRestocked;
323
+ 'lastRestocked': PickfaceLog | null;
324
324
  /**
325
325
  *
326
326
  * @type {PickfaceIssue}
@@ -465,80 +465,6 @@ export interface PickfaceIssue {
465
465
  */
466
466
  'ref'?: string;
467
467
  }
468
- /**
469
- *
470
- * @export
471
- * @interface PickfaceLastPicked
472
- */
473
- export interface PickfaceLastPicked {
474
- /**
475
- * Unique object identifier
476
- * @type {string}
477
- * @memberof PickfaceLastPicked
478
- */
479
- 'id': string;
480
- /**
481
- * A reference to the resource location
482
- * @type {string}
483
- * @memberof PickfaceLastPicked
484
- */
485
- 'userRef': string;
486
- /**
487
- * The action that was taken
488
- * @type {string}
489
- * @memberof PickfaceLastPicked
490
- */
491
- 'action': string;
492
- /**
493
- * The reason for the action
494
- * @type {string}
495
- * @memberof PickfaceLastPicked
496
- */
497
- 'reason': string | null;
498
- /**
499
- * ISO 8601 Created at timestamp
500
- * @type {string}
501
- * @memberof PickfaceLastPicked
502
- */
503
- 'createdAt': string;
504
- }
505
- /**
506
- *
507
- * @export
508
- * @interface PickfaceLastRestocked
509
- */
510
- export interface PickfaceLastRestocked {
511
- /**
512
- * Unique object identifier
513
- * @type {string}
514
- * @memberof PickfaceLastRestocked
515
- */
516
- 'id': string;
517
- /**
518
- * A reference to the resource location
519
- * @type {string}
520
- * @memberof PickfaceLastRestocked
521
- */
522
- 'userRef': string;
523
- /**
524
- * The action that was taken
525
- * @type {string}
526
- * @memberof PickfaceLastRestocked
527
- */
528
- 'action': string;
529
- /**
530
- * The reason for the action
531
- * @type {string}
532
- * @memberof PickfaceLastRestocked
533
- */
534
- 'reason': string | null;
535
- /**
536
- * ISO 8601 Created at timestamp
537
- * @type {string}
538
- * @memberof PickfaceLastRestocked
539
- */
540
- 'createdAt': string;
541
- }
542
468
  /**
543
469
  *
544
470
  * @export
@@ -682,25 +608,71 @@ export interface UpdatePickfaceRequestContentsInner {
682
608
  */
683
609
  export interface UpdatePickfaceRequestContentsInnerQuantity {
684
610
  /**
685
- * The operation to perform on the pickface
686
- * @type {string}
611
+ *
612
+ * @type {UpdatePickfaceRequestContentsInnerQuantityAvailable}
687
613
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
688
614
  */
689
- 'operation': UpdatePickfaceRequestContentsInnerQuantityOperationEnum;
615
+ 'available'?: UpdatePickfaceRequestContentsInnerQuantityAvailable | null;
690
616
  /**
691
- * The value to use with the operation
692
- * @type {number}
617
+ *
618
+ * @type {UpdatePickfaceRequestContentsInnerQuantityReserved}
693
619
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
694
620
  */
621
+ 'reserved'?: UpdatePickfaceRequestContentsInnerQuantityReserved | null;
622
+ }
623
+ /**
624
+ * The amount to add or subtract from the available stock on the pickface
625
+ * @export
626
+ * @interface UpdatePickfaceRequestContentsInnerQuantityAvailable
627
+ */
628
+ export interface UpdatePickfaceRequestContentsInnerQuantityAvailable {
629
+ /**
630
+ *
631
+ * @type {string}
632
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityAvailable
633
+ */
634
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum;
635
+ /**
636
+ *
637
+ * @type {number}
638
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityAvailable
639
+ */
640
+ 'value': number;
641
+ }
642
+
643
+ export const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = {
644
+ Add: 'add',
645
+ Subtract: 'subtract'
646
+ } as const;
647
+
648
+ export type UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum];
649
+
650
+ /**
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.
652
+ * @export
653
+ * @interface UpdatePickfaceRequestContentsInnerQuantityReserved
654
+ */
655
+ export interface UpdatePickfaceRequestContentsInnerQuantityReserved {
656
+ /**
657
+ *
658
+ * @type {string}
659
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
660
+ */
661
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum;
662
+ /**
663
+ *
664
+ * @type {number}
665
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
666
+ */
695
667
  'value': number;
696
668
  }
697
669
 
698
- export const UpdatePickfaceRequestContentsInnerQuantityOperationEnum = {
670
+ export const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = {
699
671
  Add: 'add',
700
672
  Subtract: 'subtract'
701
673
  } as const;
702
674
 
703
- export type UpdatePickfaceRequestContentsInnerQuantityOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum];
675
+ export type UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum];
704
676
 
705
677
  /**
706
678
  *
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.25.0
7
+ * The version of the OpenAPI document: 0.27.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.25.0
7
+ * The version of the OpenAPI document: 0.27.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.25.0
7
+ * The version of the OpenAPI document: 0.27.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.25.0
5
+ * The version of the OpenAPI document: 0.27.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -301,16 +301,16 @@ export interface Pickface {
301
301
  'fullness': number;
302
302
  /**
303
303
  *
304
- * @type {PickfaceLastPicked}
304
+ * @type {PickfaceLog}
305
305
  * @memberof Pickface
306
306
  */
307
- 'lastPicked': PickfaceLastPicked;
307
+ 'lastPicked': PickfaceLog | null;
308
308
  /**
309
309
  *
310
- * @type {PickfaceLastRestocked}
310
+ * @type {PickfaceLog}
311
311
  * @memberof Pickface
312
312
  */
313
- 'lastRestocked': PickfaceLastRestocked;
313
+ 'lastRestocked': PickfaceLog | null;
314
314
  /**
315
315
  *
316
316
  * @type {PickfaceIssue}
@@ -455,80 +455,6 @@ export interface PickfaceIssue {
455
455
  */
456
456
  'ref'?: string;
457
457
  }
458
- /**
459
- *
460
- * @export
461
- * @interface PickfaceLastPicked
462
- */
463
- export interface PickfaceLastPicked {
464
- /**
465
- * Unique object identifier
466
- * @type {string}
467
- * @memberof PickfaceLastPicked
468
- */
469
- 'id': string;
470
- /**
471
- * A reference to the resource location
472
- * @type {string}
473
- * @memberof PickfaceLastPicked
474
- */
475
- 'userRef': string;
476
- /**
477
- * The action that was taken
478
- * @type {string}
479
- * @memberof PickfaceLastPicked
480
- */
481
- 'action': string;
482
- /**
483
- * The reason for the action
484
- * @type {string}
485
- * @memberof PickfaceLastPicked
486
- */
487
- 'reason': string | null;
488
- /**
489
- * ISO 8601 Created at timestamp
490
- * @type {string}
491
- * @memberof PickfaceLastPicked
492
- */
493
- 'createdAt': string;
494
- }
495
- /**
496
- *
497
- * @export
498
- * @interface PickfaceLastRestocked
499
- */
500
- export interface PickfaceLastRestocked {
501
- /**
502
- * Unique object identifier
503
- * @type {string}
504
- * @memberof PickfaceLastRestocked
505
- */
506
- 'id': string;
507
- /**
508
- * A reference to the resource location
509
- * @type {string}
510
- * @memberof PickfaceLastRestocked
511
- */
512
- 'userRef': string;
513
- /**
514
- * The action that was taken
515
- * @type {string}
516
- * @memberof PickfaceLastRestocked
517
- */
518
- 'action': string;
519
- /**
520
- * The reason for the action
521
- * @type {string}
522
- * @memberof PickfaceLastRestocked
523
- */
524
- 'reason': string | null;
525
- /**
526
- * ISO 8601 Created at timestamp
527
- * @type {string}
528
- * @memberof PickfaceLastRestocked
529
- */
530
- 'createdAt': string;
531
- }
532
458
  /**
533
459
  *
534
460
  * @export
@@ -672,23 +598,66 @@ export interface UpdatePickfaceRequestContentsInner {
672
598
  */
673
599
  export interface UpdatePickfaceRequestContentsInnerQuantity {
674
600
  /**
675
- * The operation to perform on the pickface
676
- * @type {string}
601
+ *
602
+ * @type {UpdatePickfaceRequestContentsInnerQuantityAvailable}
677
603
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
678
604
  */
679
- 'operation': UpdatePickfaceRequestContentsInnerQuantityOperationEnum;
605
+ 'available'?: UpdatePickfaceRequestContentsInnerQuantityAvailable | null;
680
606
  /**
681
- * The value to use with the operation
682
- * @type {number}
607
+ *
608
+ * @type {UpdatePickfaceRequestContentsInnerQuantityReserved}
683
609
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
684
610
  */
611
+ 'reserved'?: UpdatePickfaceRequestContentsInnerQuantityReserved | null;
612
+ }
613
+ /**
614
+ * The amount to add or subtract from the available stock on the pickface
615
+ * @export
616
+ * @interface UpdatePickfaceRequestContentsInnerQuantityAvailable
617
+ */
618
+ export interface UpdatePickfaceRequestContentsInnerQuantityAvailable {
619
+ /**
620
+ *
621
+ * @type {string}
622
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityAvailable
623
+ */
624
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum;
625
+ /**
626
+ *
627
+ * @type {number}
628
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityAvailable
629
+ */
630
+ 'value': number;
631
+ }
632
+ export declare const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum: {
633
+ readonly Add: "add";
634
+ readonly Subtract: "subtract";
635
+ };
636
+ export type UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum];
637
+ /**
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.
639
+ * @export
640
+ * @interface UpdatePickfaceRequestContentsInnerQuantityReserved
641
+ */
642
+ export interface UpdatePickfaceRequestContentsInnerQuantityReserved {
643
+ /**
644
+ *
645
+ * @type {string}
646
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
647
+ */
648
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum;
649
+ /**
650
+ *
651
+ * @type {number}
652
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
653
+ */
685
654
  'value': number;
686
655
  }
687
- export declare const UpdatePickfaceRequestContentsInnerQuantityOperationEnum: {
656
+ export declare const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum: {
688
657
  readonly Add: "add";
689
658
  readonly Subtract: "subtract";
690
659
  };
691
- export type UpdatePickfaceRequestContentsInnerQuantityOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum];
660
+ export type UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum];
692
661
  /**
693
662
  *
694
663
  * @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.25.0
8
+ * The version of the OpenAPI document: 0.27.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,14 +22,18 @@ 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.UpdatePickfaceRequestContentsInnerQuantityOperationEnum = void 0;
25
+ exports.ListPickfacesSortByEnum = exports.PickfacesApi = exports.PickfacesApiFactory = exports.PickfacesApiFp = exports.PickfacesApiAxiosParamCreator = exports.VariantAttributeThumbnailTypeEnum = exports.UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = 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
29
29
  const common_1 = require("./common");
30
30
  // @ts-ignore
31
31
  const base_1 = require("./base");
32
- exports.UpdatePickfaceRequestContentsInnerQuantityOperationEnum = {
32
+ exports.UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = {
33
+ Add: 'add',
34
+ Subtract: 'subtract'
35
+ };
36
+ exports.UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = {
33
37
  Add: 'add',
34
38
  Subtract: 'subtract'
35
39
  };
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.25.0
5
+ * The version of the OpenAPI document: 0.27.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.25.0
8
+ * The version of the OpenAPI document: 0.27.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.25.0
5
+ * The version of the OpenAPI document: 0.27.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.25.0
8
+ * The version of the OpenAPI document: 0.27.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.25.0
5
+ * The version of the OpenAPI document: 0.27.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.25.0
8
+ * The version of the OpenAPI document: 0.27.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).