@erp-galoper/types 1.0.483 → 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 +27 -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 0ee66a63-4717-47cf-9aea-0bbe4f09f431
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
  };
@@ -33623,6 +33637,8 @@ export interface components {
33623
33637
  linkedDocuments?: {
33624
33638
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
33625
33639
  }[];
33640
+ /** @description visible when project module is active */
33641
+ project: components["schemas"]["ProjectSummaryInfo"] | null;
33626
33642
  /** Items */
33627
33643
  items: components["schemas"]["PurchaseInvoiceItemsGetSchema"][];
33628
33644
  /**
@@ -33712,6 +33728,11 @@ export interface components {
33712
33728
  * @description tax id, visible when supplier is not resident
33713
33729
  */
33714
33730
  tax?: number;
33731
+ /**
33732
+ * Project
33733
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
33734
+ */
33735
+ project?: number;
33715
33736
  };
33716
33737
  /** PurchaseInvoiceItemsCreateSchema */
33717
33738
  PurchaseInvoiceItemsCreateSchema: {
@@ -33881,6 +33902,11 @@ export interface components {
33881
33902
  * @description tax id, visible when supplier is not resident
33882
33903
  */
33883
33904
  tax?: number;
33905
+ /**
33906
+ * Project
33907
+ * @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
33908
+ */
33909
+ project?: number;
33884
33910
  };
33885
33911
  /** PurchaseInvoiceDeleteSchema */
33886
33912
  PurchaseInvoiceDeleteSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.483",
3
+ "version": "1.0.485",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],