@erp-galoper/types 1.0.488 → 1.0.489

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 +15 -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 ec27fcdd-f453-49e2-bf4f-06b8f33ae2c4
26929
+ * @example dc7af054-0896-4403-a155-df3ed60ca5b1
26930
26930
  */
26931
26931
  id: string;
26932
26932
  /**
@@ -31809,6 +31809,8 @@ export interface components {
31809
31809
  attachments: string[] | null;
31810
31810
  /** Candelete */
31811
31811
  canDelete: boolean;
31812
+ /** @description visible when project module is active */
31813
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
31812
31814
  /** Linkeddocuments */
31813
31815
  linkedDocuments?: {
31814
31816
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
@@ -31909,6 +31911,11 @@ export interface components {
31909
31911
  */
31910
31912
  department: string;
31911
31913
  status: components["schemas"]["InternalStatusChoices"];
31914
+ /**
31915
+ * Project
31916
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
31917
+ */
31918
+ project?: number;
31912
31919
  /** Payments */
31913
31920
  payments: components["schemas"]["NewAdvancePaymentItemsSchema"][];
31914
31921
  };
@@ -31964,6 +31971,8 @@ export interface components {
31964
31971
  attachments: string[] | null;
31965
31972
  /** Candelete */
31966
31973
  canDelete: boolean;
31974
+ /** @description visible when project module is active */
31975
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
31967
31976
  };
31968
31977
  /** UpdateAdvancePaymentItemsSchema */
31969
31978
  UpdateAdvancePaymentItemsSchema: {
@@ -32059,6 +32068,11 @@ export interface components {
32059
32068
  */
32060
32069
  department: string;
32061
32070
  status: components["schemas"]["InternalStatusChoices"];
32071
+ /**
32072
+ * Project
32073
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
32074
+ */
32075
+ project?: number;
32062
32076
  /** Payments */
32063
32077
  payments: components["schemas"]["UpdateAdvancePaymentItemsSchema"][];
32064
32078
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.488",
3
+ "version": "1.0.489",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],