@erp-galoper/types 1.0.482 → 1.0.484

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 +20 -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 24df330b-4778-42ca-8d2d-1d35ce5fc91a
26929
+ * @example a279a00a-e63a-49b5-892a-77be8394d463
26930
26930
  */
26931
26931
  id: string;
26932
26932
  /**
@@ -32751,6 +32751,8 @@ export interface components {
32751
32751
  }[];
32752
32752
  /** @description visible when supplier is not resident */
32753
32753
  tax: components["schemas"]["TaxSharedSchema"] | null;
32754
+ /** @description visible when project module is active */
32755
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
32754
32756
  /** Items */
32755
32757
  items: components["schemas"]["PurchaseOrderItemsSchema"][];
32756
32758
  };
@@ -32897,6 +32899,11 @@ export interface components {
32897
32899
  * @description tax id, visible when supplier is not resident
32898
32900
  */
32899
32901
  tax?: number;
32902
+ /**
32903
+ * Project
32904
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
32905
+ */
32906
+ project?: number;
32900
32907
  /** Items */
32901
32908
  items: components["schemas"]["CreatePurchaseOrderItemsSchema"][];
32902
32909
  };
@@ -33616,6 +33623,8 @@ export interface components {
33616
33623
  linkedDocuments?: {
33617
33624
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
33618
33625
  }[];
33626
+ /** @description visible when project module is active */
33627
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
33619
33628
  /** Items */
33620
33629
  items: components["schemas"]["PurchaseInvoiceItemsGetSchema"][];
33621
33630
  /**
@@ -33705,6 +33714,11 @@ export interface components {
33705
33714
  * @description tax id, visible when supplier is not resident
33706
33715
  */
33707
33716
  tax?: number;
33717
+ /**
33718
+ * Project
33719
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
33720
+ */
33721
+ project?: number;
33708
33722
  };
33709
33723
  /** PurchaseInvoiceItemsCreateSchema */
33710
33724
  PurchaseInvoiceItemsCreateSchema: {
@@ -33874,6 +33888,11 @@ export interface components {
33874
33888
  * @description tax id, visible when supplier is not resident
33875
33889
  */
33876
33890
  tax?: number;
33891
+ /**
33892
+ * Project
33893
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
33894
+ */
33895
+ project?: number;
33877
33896
  };
33878
33897
  /** PurchaseInvoiceDeleteSchema */
33879
33898
  PurchaseInvoiceDeleteSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.482",
3
+ "version": "1.0.484",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],