@erp-galoper/types 1.0.1059 → 1.0.1061
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 +6 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -21752,8 +21752,9 @@ export interface components {
|
|
|
21752
21752
|
/**
|
|
21753
21753
|
* Quantities
|
|
21754
21754
|
* @description Quantity information for the packed items in this package
|
|
21755
|
+
* @default []
|
|
21755
21756
|
*/
|
|
21756
|
-
quantities
|
|
21757
|
+
quantities: components["schemas"]["QuantityGroupSchema"][] | null;
|
|
21757
21758
|
};
|
|
21758
21759
|
/** ItemSchema */
|
|
21759
21760
|
ItemSchema: {
|
|
@@ -21945,8 +21946,9 @@ export interface components {
|
|
|
21945
21946
|
/**
|
|
21946
21947
|
* Quantities
|
|
21947
21948
|
* @description Quantity information for the unpacked items
|
|
21949
|
+
* @default []
|
|
21948
21950
|
*/
|
|
21949
|
-
quantities
|
|
21951
|
+
quantities: components["schemas"]["QuantityGroupSchema"][] | null;
|
|
21950
21952
|
costStrategy: components["schemas"]["GetCostStrategy"] | null;
|
|
21951
21953
|
commissionCalculation: components["schemas"]["ItemCommissionCalculation"] | null;
|
|
21952
21954
|
inventoryMovementMethod?: components["schemas"]["INVENTORY_MOVEMENT_METHOD"] | null;
|
|
@@ -22153,8 +22155,9 @@ export interface components {
|
|
|
22153
22155
|
/**
|
|
22154
22156
|
* Quantities
|
|
22155
22157
|
* @description Quantity information for the unpacked items
|
|
22158
|
+
* @default []
|
|
22156
22159
|
*/
|
|
22157
|
-
quantities
|
|
22160
|
+
quantities: components["schemas"]["QuantityGroupSchema"][] | null;
|
|
22158
22161
|
costStrategy: components["schemas"]["GetCostStrategy"] | null;
|
|
22159
22162
|
commissionCalculation: components["schemas"]["ItemCommissionCalculation"] | null;
|
|
22160
22163
|
inventoryMovementMethod?: components["schemas"]["INVENTORY_MOVEMENT_METHOD"] | null;
|