@erp-galoper/types 1.0.485 → 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.
- package/openapi.ts +15 -1
- 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
|
|
26929
|
+
* @example 0c0fff23-0941-4636-98bc-e98e566c6436
|
|
26930
26930
|
*/
|
|
26931
26931
|
id: string;
|
|
26932
26932
|
/**
|
|
@@ -31358,6 +31358,8 @@ export interface components {
|
|
|
31358
31358
|
canConvert: boolean;
|
|
31359
31359
|
/** Candelete */
|
|
31360
31360
|
canDelete: boolean;
|
|
31361
|
+
/** @description visible when project module is active */
|
|
31362
|
+
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
31361
31363
|
/** Linkeddocuments */
|
|
31362
31364
|
linkedDocuments?: {
|
|
31363
31365
|
[key: string]: components["schemas"]["LinkedDocumentsSchema"];
|
|
@@ -31426,6 +31428,11 @@ export interface components {
|
|
|
31426
31428
|
*/
|
|
31427
31429
|
fromRequisition: string | null;
|
|
31428
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;
|
|
31429
31436
|
/** Items */
|
|
31430
31437
|
items: components["schemas"]["RequestForQuotationItemsSchema"][];
|
|
31431
31438
|
};
|
|
@@ -31515,6 +31522,8 @@ export interface components {
|
|
|
31515
31522
|
canConvert: boolean;
|
|
31516
31523
|
/** Candelete */
|
|
31517
31524
|
canDelete: boolean;
|
|
31525
|
+
/** @description visible when project module is active */
|
|
31526
|
+
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
31518
31527
|
};
|
|
31519
31528
|
/** UpdateRequestForQuotationItemsSchema */
|
|
31520
31529
|
UpdateRequestForQuotationItemsSchema: {
|
|
@@ -31600,6 +31609,11 @@ export interface components {
|
|
|
31600
31609
|
*/
|
|
31601
31610
|
fromRequisition: string | null;
|
|
31602
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;
|
|
31603
31617
|
/** Items */
|
|
31604
31618
|
items: components["schemas"]["UpdateRequestForQuotationItemsSchema"][];
|
|
31605
31619
|
};
|