@erp-galoper/types 1.0.1550 → 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.
Files changed (2) hide show
  1. package/openapi.ts +11 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -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"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1550",
3
+ "version": "1.0.1551",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],