@erp-galoper/types 1.0.484 → 1.0.486

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 +29 -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 a279a00a-e63a-49b5-892a-77be8394d463
26929
+ * @example 0c0fff23-0941-4636-98bc-e98e566c6436
26930
26930
  */
26931
26931
  id: string;
26932
26932
  /**
@@ -30990,6 +30990,8 @@ export interface components {
30990
30990
  canConvert: boolean;
30991
30991
  /** Candelete */
30992
30992
  canDelete: boolean;
30993
+ /** @description visible when project module is active */
30994
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
30993
30995
  /** Linkeddocuments */
30994
30996
  linkedDocuments?: {
30995
30997
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
@@ -31055,6 +31057,11 @@ export interface components {
31055
31057
  department: string;
31056
31058
  status: components["schemas"]["InternalStatusChoices"];
31057
31059
  priority: components["schemas"]["PrioritySchema"];
31060
+ /**
31061
+ * Project
31062
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
31063
+ */
31064
+ project?: number;
31058
31065
  /** Requisitionitems */
31059
31066
  requisitionItems: components["schemas"]["RequisitionItemsSchema"][];
31060
31067
  };
@@ -31158,6 +31165,8 @@ export interface components {
31158
31165
  canConvert: boolean;
31159
31166
  /** Candelete */
31160
31167
  canDelete: boolean;
31168
+ /** @description visible when project module is active */
31169
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
31161
31170
  /** Linkeddocuments */
31162
31171
  linkedDocuments?: {
31163
31172
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
@@ -31248,6 +31257,11 @@ export interface components {
31248
31257
  department: string;
31249
31258
  status: components["schemas"]["InternalStatusChoices"];
31250
31259
  priority: components["schemas"]["PrioritySchema"];
31260
+ /**
31261
+ * Project
31262
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
31263
+ */
31264
+ project?: number;
31251
31265
  /** Requisitionitems */
31252
31266
  requisitionItems: components["schemas"]["UpdateRequisitionItemsSchema"][];
31253
31267
  };
@@ -31344,6 +31358,8 @@ export interface components {
31344
31358
  canConvert: boolean;
31345
31359
  /** Candelete */
31346
31360
  canDelete: boolean;
31361
+ /** @description visible when project module is active */
31362
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
31347
31363
  /** Linkeddocuments */
31348
31364
  linkedDocuments?: {
31349
31365
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
@@ -31412,6 +31428,11 @@ export interface components {
31412
31428
  */
31413
31429
  fromRequisition: string | null;
31414
31430
  status: components["schemas"]["InternalStatusChoices"];
31431
+ /**
31432
+ * Project
31433
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
31434
+ */
31435
+ project?: number;
31415
31436
  /** Items */
31416
31437
  items: components["schemas"]["RequestForQuotationItemsSchema"][];
31417
31438
  };
@@ -31501,6 +31522,8 @@ export interface components {
31501
31522
  canConvert: boolean;
31502
31523
  /** Candelete */
31503
31524
  canDelete: boolean;
31525
+ /** @description visible when project module is active */
31526
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
31504
31527
  };
31505
31528
  /** UpdateRequestForQuotationItemsSchema */
31506
31529
  UpdateRequestForQuotationItemsSchema: {
@@ -31586,6 +31609,11 @@ export interface components {
31586
31609
  */
31587
31610
  fromRequisition: string | null;
31588
31611
  status: components["schemas"]["InternalStatusChoices"];
31612
+ /**
31613
+ * Project
31614
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
31615
+ */
31616
+ project?: number;
31589
31617
  /** Items */
31590
31618
  items: components["schemas"]["UpdateRequestForQuotationItemsSchema"][];
31591
31619
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.484",
3
+ "version": "1.0.486",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],