@erp-galoper/types 1.0.1549 → 1.0.1551
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 +13 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -23565,7 +23565,7 @@ export interface components {
|
|
|
23565
23565
|
* BasePermissionsSchema_Inventory_OpeningquantityEnum
|
|
23566
23566
|
* @enum {string}
|
|
23567
23567
|
*/
|
|
23568
|
-
BasePermissionsSchema_Inventory_OpeningquantityEnum: "add" | "approve" | "change" | "delete" | "resettodraft" | "view";
|
|
23568
|
+
BasePermissionsSchema_Inventory_OpeningquantityEnum: "add" | "approve" | "change" | "delete" | "export" | "print" | "resettodraft" | "view";
|
|
23569
23569
|
/**
|
|
23570
23570
|
* BasePermissionsSchema_Inventory_PackageEnum
|
|
23571
23571
|
* @enum {string}
|
|
@@ -23590,7 +23590,7 @@ export interface components {
|
|
|
23590
23590
|
* BasePermissionsSchema_Inventory_StockadjustmentEnum
|
|
23591
23591
|
* @enum {string}
|
|
23592
23592
|
*/
|
|
23593
|
-
BasePermissionsSchema_Inventory_StockadjustmentEnum: "add" | "approve" | "change" | "delete" | "resettodraft" | "view";
|
|
23593
|
+
BasePermissionsSchema_Inventory_StockadjustmentEnum: "add" | "approve" | "change" | "delete" | "export" | "print" | "resettodraft" | "view";
|
|
23594
23594
|
/**
|
|
23595
23595
|
* BasePermissionsSchema_Inventory_TransferrequestEnum
|
|
23596
23596
|
* @enum {string}
|
|
@@ -26221,6 +26221,7 @@ export interface components {
|
|
|
26221
26221
|
* @default []
|
|
26222
26222
|
*/
|
|
26223
26223
|
taxes: components["schemas"]["TaxSchema"][];
|
|
26224
|
+
transactionalGroup?: components["schemas"]["TransactionalGroupSchema"] | null;
|
|
26224
26225
|
/**
|
|
26225
26226
|
* Isinventorytracked
|
|
26226
26227
|
* @default false
|
|
@@ -26469,6 +26470,7 @@ export interface components {
|
|
|
26469
26470
|
* @default []
|
|
26470
26471
|
*/
|
|
26471
26472
|
taxes: components["schemas"]["TaxSchema"][];
|
|
26473
|
+
transactionalGroup?: components["schemas"]["TransactionalGroupSchema"] | null;
|
|
26472
26474
|
/**
|
|
26473
26475
|
* Isinventorytracked
|
|
26474
26476
|
* @default false
|
|
@@ -26719,6 +26721,15 @@ export interface components {
|
|
|
26719
26721
|
* @enum {string}
|
|
26720
26722
|
*/
|
|
26721
26723
|
TrackInventoryBy: "serial_number" | "batch" | "quantity";
|
|
26724
|
+
/** TransactionalGroupSchema */
|
|
26725
|
+
TransactionalGroupSchema: {
|
|
26726
|
+
/** Id */
|
|
26727
|
+
id: number;
|
|
26728
|
+
/** Name */
|
|
26729
|
+
name: string;
|
|
26730
|
+
/** Initialgroup */
|
|
26731
|
+
initialGroup: boolean;
|
|
26732
|
+
};
|
|
26722
26733
|
/** UOMWarehouseQuantitySchema */
|
|
26723
26734
|
UOMWarehouseQuantitySchema: {
|
|
26724
26735
|
warehouse: components["schemas"]["WarehouseSummaryInfo"];
|