@erp-galoper/types 1.0.482 → 1.0.483
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 +8 -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 0ee66a63-4717-47cf-9aea-0bbe4f09f431
|
|
26930
26930
|
*/
|
|
26931
26931
|
id: string;
|
|
26932
26932
|
/**
|
|
@@ -32751,6 +32751,8 @@ export interface components {
|
|
|
32751
32751
|
}[];
|
|
32752
32752
|
/** @description visible when supplier is not resident */
|
|
32753
32753
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
32754
|
+
/** @description visible when project module is active */
|
|
32755
|
+
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
32754
32756
|
/** Items */
|
|
32755
32757
|
items: components["schemas"]["PurchaseOrderItemsSchema"][];
|
|
32756
32758
|
};
|
|
@@ -32897,6 +32899,11 @@ export interface components {
|
|
|
32897
32899
|
* @description tax id, visible when supplier is not resident
|
|
32898
32900
|
*/
|
|
32899
32901
|
tax?: number;
|
|
32902
|
+
/**
|
|
32903
|
+
* Project
|
|
32904
|
+
* @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
|
|
32905
|
+
*/
|
|
32906
|
+
project?: number;
|
|
32900
32907
|
/** Items */
|
|
32901
32908
|
items: components["schemas"]["CreatePurchaseOrderItemsSchema"][];
|
|
32902
32909
|
};
|