@erp-galoper/types 1.0.1264 → 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 +22 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -22957,12 +22957,23 @@ export interface components {
|
|
|
22957
22957
|
* @default []
|
|
22958
22958
|
*/
|
|
22959
22959
|
preferred_supplier_expensevoucher: components["schemas"]["BasePermissionsSchema_Expenses_Preferred_supplier_expensevoucherEnum"][];
|
|
22960
|
+
/**
|
|
22961
|
+
* Expensepaymentvoucher
|
|
22962
|
+
* @description expensepaymentvoucher actions
|
|
22963
|
+
* @default []
|
|
22964
|
+
*/
|
|
22965
|
+
expensepaymentvoucher: components["schemas"]["BasePermissionsSchema_Expenses_ExpensepaymentvoucherEnum"][];
|
|
22960
22966
|
};
|
|
22961
22967
|
/**
|
|
22962
22968
|
* BasePermissionsSchema_Expenses_Expense_limit_expensevoucherEnum
|
|
22963
22969
|
* @constant
|
|
22964
22970
|
*/
|
|
22965
22971
|
BasePermissionsSchema_Expenses_Expense_limit_expensevoucherEnum: "override";
|
|
22972
|
+
/**
|
|
22973
|
+
* BasePermissionsSchema_Expenses_ExpensepaymentvoucherEnum
|
|
22974
|
+
* @enum {string}
|
|
22975
|
+
*/
|
|
22976
|
+
BasePermissionsSchema_Expenses_ExpensepaymentvoucherEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
|
|
22966
22977
|
/**
|
|
22967
22978
|
* BasePermissionsSchema_Expenses_ExpensevoucherEnum
|
|
22968
22979
|
* @enum {string}
|
|
@@ -55207,7 +55218,11 @@ export interface components {
|
|
|
55207
55218
|
/** Candelete */
|
|
55208
55219
|
canDelete: boolean;
|
|
55209
55220
|
/** Remaining */
|
|
55210
|
-
remaining
|
|
55221
|
+
remaining?: string | null;
|
|
55222
|
+
/** Primaryremaining */
|
|
55223
|
+
primaryRemaining?: string | null;
|
|
55224
|
+
/** Secondaryremaining */
|
|
55225
|
+
secondaryRemaining?: string | null;
|
|
55211
55226
|
};
|
|
55212
55227
|
/** ExpenseCategoryResponseSchema */
|
|
55213
55228
|
ExpenseCategoryResponseSchema: {
|
|
@@ -99765,6 +99780,12 @@ export interface operations {
|
|
|
99765
99780
|
query?: {
|
|
99766
99781
|
/** @description used to get category remaining within specified date */
|
|
99767
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;
|
|
99768
99789
|
};
|
|
99769
99790
|
header?: never;
|
|
99770
99791
|
path: {
|