@erp-galoper/types 1.0.1265 → 1.0.1267
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 +12 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -30654,7 +30654,7 @@ export interface components {
|
|
|
30654
30654
|
CreateOpeningQuantitySchema: {
|
|
30655
30655
|
/**
|
|
30656
30656
|
* Warehouse
|
|
30657
|
-
* @description - get the warehouse from the user assigned warehouses
|
|
30657
|
+
* @description - get the warehouse from the user assigned warehouses and filter by branch equals to user logged in branch
|
|
30658
30658
|
*/
|
|
30659
30659
|
warehouse: number;
|
|
30660
30660
|
/** Description */
|
|
@@ -55218,7 +55218,11 @@ export interface components {
|
|
|
55218
55218
|
/** Candelete */
|
|
55219
55219
|
canDelete: boolean;
|
|
55220
55220
|
/** Remaining */
|
|
55221
|
-
remaining
|
|
55221
|
+
remaining?: string | null;
|
|
55222
|
+
/** Primaryremaining */
|
|
55223
|
+
primaryRemaining?: string | null;
|
|
55224
|
+
/** Secondaryremaining */
|
|
55225
|
+
secondaryRemaining?: string | null;
|
|
55222
55226
|
};
|
|
55223
55227
|
/** ExpenseCategoryResponseSchema */
|
|
55224
55228
|
ExpenseCategoryResponseSchema: {
|
|
@@ -99776,6 +99780,12 @@ export interface operations {
|
|
|
99776
99780
|
query?: {
|
|
99777
99781
|
/** @description used to get category remaining within specified date */
|
|
99778
99782
|
date?: string | null;
|
|
99783
|
+
/** @description currency id of expense voucher */
|
|
99784
|
+
expenseVoucherCurrency?: number;
|
|
99785
|
+
/** @description primary rate of expense voucher, required when voucher currency different than company currency */
|
|
99786
|
+
primaryRate?: string;
|
|
99787
|
+
/** @description secondary rate of expense voucher, required when useSecondaryCurrency is enabled in system settings and voucher currency different than secondary currency */
|
|
99788
|
+
secondaryRate?: string;
|
|
99779
99789
|
};
|
|
99780
99790
|
header?: never;
|
|
99781
99791
|
path: {
|