@erp-galoper/types 1.0.496 → 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 +20 -4
  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 8cc9d2e3-f3f7-4206-8a4a-3291d0710a20
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 */
@@ -42536,7 +42552,7 @@ export interface components {
42536
42552
  promotionsAndOffers: components["schemas"]["PromotionsAndOffersSharedSchema"][];
42537
42553
  /** @description Details about the commission level for the sales invoice, if applicable. */
42538
42554
  commission: components["schemas"]["CommissionLevelSharedSchema"] | null;
42539
- /** @description Details about the project associated with the sales invoice, if applicable. */
42555
+ /** @description visible when project module is active */
42540
42556
  project: components["schemas"]["ProjectSummaryInfo"] | null;
42541
42557
  /**
42542
42558
  * Secondaryrate
@@ -42861,7 +42877,7 @@ export interface components {
42861
42877
  promotionsAndOffers: string[];
42862
42878
  /**
42863
42879
  * Project
42864
- * @description The associated project, if any.
42880
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
42865
42881
  */
42866
42882
  project?: number;
42867
42883
  /**
@@ -43025,7 +43041,7 @@ export interface components {
43025
43041
  promotionsAndOffers: components["schemas"]["PromotionsAndOffersSharedSchema"][];
43026
43042
  /** @description Details about the commission level for the sales invoice, if applicable. */
43027
43043
  commission: components["schemas"]["CommissionLevelSharedSchema"] | null;
43028
- /** @description Details about the project associated with the sales invoice, if applicable. */
43044
+ /** @description visible when project module is active */
43029
43045
  project: components["schemas"]["ProjectSummaryInfo"] | null;
43030
43046
  /**
43031
43047
  * Secondaryrate
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.496",
3
+ "version": "1.0.498",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],