@erp-galoper/types 1.0.497 → 1.0.499
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 +21 -1
- 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
|
|
26937
|
+
* @example f0d6000f-64c5-49b4-a761-b86bb89c4199
|
|
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 */
|
|
@@ -45162,6 +45178,8 @@ export interface components {
|
|
|
45162
45178
|
approvalStatus: components["schemas"]["ApprovalChoices"];
|
|
45163
45179
|
/** Candelete */
|
|
45164
45180
|
canDelete: boolean;
|
|
45181
|
+
/** @description visible when project module is active */
|
|
45182
|
+
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
45165
45183
|
/** Creditnoteitems */
|
|
45166
45184
|
creditNoteItems: components["schemas"]["SalesCreditNoteItemDetailSchema"][];
|
|
45167
45185
|
/**
|
|
@@ -45298,6 +45316,8 @@ export interface components {
|
|
|
45298
45316
|
approvalStatus: components["schemas"]["ApprovalChoices"];
|
|
45299
45317
|
/** Candelete */
|
|
45300
45318
|
canDelete: boolean;
|
|
45319
|
+
/** @description visible when project module is active */
|
|
45320
|
+
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
45301
45321
|
};
|
|
45302
45322
|
/** SalesCreditNoteListSchema */
|
|
45303
45323
|
SalesCreditNoteListSchema: {
|