@erp-galoper/types 1.0.1318 → 1.0.1320
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/openapi.ts +18 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26531,7 +26531,10 @@ export interface components {
|
|
|
26531
26531
|
* @default false
|
|
26532
26532
|
*/
|
|
26533
26533
|
isInventoryTracked: boolean | null;
|
|
26534
|
-
/**
|
|
26534
|
+
/**
|
|
26535
|
+
* @description Not applicable for service items - always null for type=service
|
|
26536
|
+
* - When set to 'serial' or 'batch', inventoryMovementMethod is **REQUIRED**
|
|
26537
|
+
*/
|
|
26535
26538
|
trackInventoryBy?: components["schemas"]["TrackInventoryBy"] | null;
|
|
26536
26539
|
/**
|
|
26537
26540
|
* Hasexpirydate
|
|
@@ -26559,6 +26562,8 @@ export interface components {
|
|
|
26559
26562
|
/**
|
|
26560
26563
|
* @description - fifo(First In, First Out): Items purchased or produced first are sold or used first
|
|
26561
26564
|
* - lifo(Last In, First Out): Items purchased or produced most recently are sold or used first
|
|
26565
|
+
* - **REQUIRED** when trackInventoryBy is 'serial' or 'batch'
|
|
26566
|
+
* - For variants: inherited from parent if not explicitly set
|
|
26562
26567
|
*/
|
|
26563
26568
|
inventoryMovementMethod?: components["schemas"]["INVENTORY_MOVEMENT_METHOD"] | null;
|
|
26564
26569
|
};
|
|
@@ -26808,7 +26813,10 @@ export interface components {
|
|
|
26808
26813
|
* @default false
|
|
26809
26814
|
*/
|
|
26810
26815
|
isInventoryTracked: boolean | null;
|
|
26811
|
-
/**
|
|
26816
|
+
/**
|
|
26817
|
+
* @description Not applicable for service items - always null for type=service
|
|
26818
|
+
* - When set to 'serial' or 'batch', inventoryMovementMethod is **REQUIRED**
|
|
26819
|
+
*/
|
|
26812
26820
|
trackInventoryBy?: components["schemas"]["TrackInventoryBy"] | null;
|
|
26813
26821
|
/**
|
|
26814
26822
|
* Hasexpirydate
|
|
@@ -26864,6 +26872,8 @@ export interface components {
|
|
|
26864
26872
|
/**
|
|
26865
26873
|
* @description - fifo(First In, First Out): Items purchased or produced first are sold or used first
|
|
26866
26874
|
* - lifo(Last In, First Out): Items purchased or produced most recently are sold or used first
|
|
26875
|
+
* - **REQUIRED** when trackInventoryBy is 'serial' or 'batch'
|
|
26876
|
+
* - For variants: inherited from parent if not explicitly set
|
|
26867
26877
|
*/
|
|
26868
26878
|
inventoryMovementMethod?: components["schemas"]["INVENTORY_MOVEMENT_METHOD"] | null;
|
|
26869
26879
|
};
|
|
@@ -27141,7 +27151,10 @@ export interface components {
|
|
|
27141
27151
|
* @default false
|
|
27142
27152
|
*/
|
|
27143
27153
|
isInventoryTracked: boolean | null;
|
|
27144
|
-
/**
|
|
27154
|
+
/**
|
|
27155
|
+
* @description Not applicable for service items - always null for type=service
|
|
27156
|
+
* - When set to 'serial' or 'batch', inventoryMovementMethod is **REQUIRED**
|
|
27157
|
+
*/
|
|
27145
27158
|
trackInventoryBy?: components["schemas"]["TrackInventoryBy"] | null;
|
|
27146
27159
|
/**
|
|
27147
27160
|
* Hasexpirydate
|
|
@@ -27206,6 +27219,8 @@ export interface components {
|
|
|
27206
27219
|
/**
|
|
27207
27220
|
* @description - fifo(First In, First Out): Items purchased or produced first are sold or used first
|
|
27208
27221
|
* - lifo(Last In, First Out): Items purchased or produced most recently are sold or used first
|
|
27222
|
+
* - **REQUIRED** when trackInventoryBy is 'serial' or 'batch'
|
|
27223
|
+
* - For variants: inherited from parent if not explicitly set
|
|
27209
27224
|
*/
|
|
27210
27225
|
inventoryMovementMethod?: components["schemas"]["INVENTORY_MOVEMENT_METHOD"] | null;
|
|
27211
27226
|
};
|