@erp-galoper/types 1.0.483 → 1.0.484
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 +13 -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 a279a00a-e63a-49b5-892a-77be8394d463
|
|
26930
26930
|
*/
|
|
26931
26931
|
id: string;
|
|
26932
26932
|
/**
|
|
@@ -33623,6 +33623,8 @@ export interface components {
|
|
|
33623
33623
|
linkedDocuments?: {
|
|
33624
33624
|
[key: string]: components["schemas"]["LinkedDocumentsSchema"];
|
|
33625
33625
|
}[];
|
|
33626
|
+
/** @description visible when project module is active */
|
|
33627
|
+
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
33626
33628
|
/** Items */
|
|
33627
33629
|
items: components["schemas"]["PurchaseInvoiceItemsGetSchema"][];
|
|
33628
33630
|
/**
|
|
@@ -33712,6 +33714,11 @@ export interface components {
|
|
|
33712
33714
|
* @description tax id, visible when supplier is not resident
|
|
33713
33715
|
*/
|
|
33714
33716
|
tax?: number;
|
|
33717
|
+
/**
|
|
33718
|
+
* Project
|
|
33719
|
+
* @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
|
|
33720
|
+
*/
|
|
33721
|
+
project?: number;
|
|
33715
33722
|
};
|
|
33716
33723
|
/** PurchaseInvoiceItemsCreateSchema */
|
|
33717
33724
|
PurchaseInvoiceItemsCreateSchema: {
|
|
@@ -33881,6 +33888,11 @@ export interface components {
|
|
|
33881
33888
|
* @description tax id, visible when supplier is not resident
|
|
33882
33889
|
*/
|
|
33883
33890
|
tax?: number;
|
|
33891
|
+
/**
|
|
33892
|
+
* Project
|
|
33893
|
+
* @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
|
|
33894
|
+
*/
|
|
33895
|
+
project?: number;
|
|
33884
33896
|
};
|
|
33885
33897
|
/** PurchaseInvoiceDeleteSchema */
|
|
33886
33898
|
PurchaseInvoiceDeleteSchema: {
|