@erp-galoper/types 1.0.1265 → 1.0.1266
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 +11 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -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: {
|