@erp-galoper/types 1.0.484 → 1.0.485

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 a279a00a-e63a-49b5-892a-77be8394d463
26929
+ * @example f347a48f-23c0-4eb8-baa9-0575ba6e7ca7
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
  };
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.485",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],