@erp-galoper/types 1.0.497 → 1.0.498

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 +17 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26934,7 +26934,7 @@ export interface components {
26934
26934
  /**
26935
26935
  * Id
26936
26936
  * Format: uuid
26937
- * @example 5c27d2a3-f71e-44c4-bbb0-2d6d1a253cdd
26937
+ * @example 1fb9bd38-d85e-4bb7-973d-46cfbab5d178
26938
26938
  */
26939
26939
  id: string;
26940
26940
  /**
@@ -40288,6 +40288,8 @@ export interface components {
40288
40288
  usdTotal: string | null;
40289
40289
  /** Candelete */
40290
40290
  canDelete: boolean;
40291
+ /** @description visible when project module is active */
40292
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
40291
40293
  /** Items */
40292
40294
  items: components["schemas"]["DownPaymentItemDetailSchema"][];
40293
40295
  };
@@ -40322,6 +40324,11 @@ export interface components {
40322
40324
  */
40323
40325
  attachments: string[];
40324
40326
  status: components["schemas"]["InternalStatusChoices"];
40327
+ /**
40328
+ * Project
40329
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
40330
+ */
40331
+ project?: number;
40325
40332
  /** Items */
40326
40333
  items: components["schemas"]["DownPaymentItemCreateSchema"][];
40327
40334
  };
@@ -40468,6 +40475,8 @@ export interface components {
40468
40475
  usdTotal: string | null;
40469
40476
  /** Candelete */
40470
40477
  canDelete: boolean;
40478
+ /** @description visible when project module is active */
40479
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
40471
40480
  };
40472
40481
  /** DownPaymentListSchema */
40473
40482
  DownPaymentListSchema: {
@@ -40599,6 +40608,11 @@ export interface components {
40599
40608
  */
40600
40609
  attachments: string[];
40601
40610
  status: components["schemas"]["InternalStatusChoices"];
40611
+ /**
40612
+ * Project
40613
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
40614
+ */
40615
+ project?: number;
40602
40616
  /** Items */
40603
40617
  items: components["schemas"]["DownPaymentItemUpdateSchema"][];
40604
40618
  };
@@ -40652,6 +40666,8 @@ export interface components {
40652
40666
  usdTotal: string | null;
40653
40667
  /** Candelete */
40654
40668
  canDelete: boolean;
40669
+ /** @description visible when project module is active */
40670
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
40655
40671
  /** Items */
40656
40672
  items: components["schemas"]["DownPaymentItemDetailSchema"][];
40657
40673
  /** Linkeddocuments */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.497",
3
+ "version": "1.0.498",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],