@erp-galoper/types 1.0.481 → 1.0.482

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 +10 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26926,7 +26926,7 @@ export interface components {
26926
26926
  /**
26927
26927
  * Id
26928
26928
  * Format: uuid
26929
- * @example ec8fdca5-599a-486c-95f2-61c2752dbc79
26929
+ * @example 24df330b-4778-42ca-8d2d-1d35ce5fc91a
26930
26930
  */
26931
26931
  id: string;
26932
26932
  /**
@@ -32218,6 +32218,8 @@ export interface components {
32218
32218
  }[];
32219
32219
  /** @description visible when supplier is not resident */
32220
32220
  tax: components["schemas"]["TaxSharedSchema"] | null;
32221
+ /** @description visible when project module is active */
32222
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
32221
32223
  /**
32222
32224
  * Items
32223
32225
  * @default []
@@ -32355,6 +32357,11 @@ export interface components {
32355
32357
  * @description tax id, visible when supplier is not resident
32356
32358
  */
32357
32359
  tax?: number;
32360
+ /**
32361
+ * Project
32362
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
32363
+ */
32364
+ project?: number;
32358
32365
  /** Items */
32359
32366
  items: components["schemas"]["CreatePurchaseQuotationItemsSchema"][];
32360
32367
  };
@@ -32436,6 +32443,8 @@ export interface components {
32436
32443
  description: string | null;
32437
32444
  /** Notes */
32438
32445
  notes: string | null;
32446
+ /** @description visible when project module is active */
32447
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
32439
32448
  /**
32440
32449
  * Canconvert
32441
32450
  * @default false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.481",
3
+ "version": "1.0.482",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],