@erp-galoper/types 1.0.1247 → 1.0.1249

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.
Files changed (2) hide show
  1. package/openapi.ts +71 -12
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -21901,6 +21901,11 @@ export interface components {
21901
21901
  * @default []
21902
21902
  */
21903
21903
  event: components["schemas"]["BasePermissionsSchema_Event"];
21904
+ /**
21905
+ * @description expenses actions
21906
+ * @default []
21907
+ */
21908
+ expenses: components["schemas"]["BasePermissionsSchema_Expenses"];
21904
21909
  /**
21905
21910
  * @description pos actions
21906
21911
  * @default []
@@ -21921,12 +21926,6 @@ export interface components {
21921
21926
  * @default []
21922
21927
  */
21923
21928
  report: components["schemas"]["BasePermissionsSchema_Report"];
21924
- /**
21925
- * Expenses
21926
- * @description expenses actions
21927
- * @default []
21928
- */
21929
- expenses: Record<string, never>;
21930
21929
  /**
21931
21930
  * Calendar
21932
21931
  * @description calendar actions
@@ -22109,6 +22108,42 @@ export interface components {
22109
22108
  * @enum {string}
22110
22109
  */
22111
22110
  BasePermissionsSchema_Event_EventcategoryEnum: "add" | "change" | "delete" | "view";
22111
+ /** BasePermissionsSchema_Expenses */
22112
+ BasePermissionsSchema_Expenses: {
22113
+ /**
22114
+ * Expensevoucher
22115
+ * @description expensevoucher actions
22116
+ * @default []
22117
+ */
22118
+ expensevoucher: components["schemas"]["BasePermissionsSchema_Expenses_ExpensevoucherEnum"][];
22119
+ /**
22120
+ * Expense Limit Expensevoucher
22121
+ * @description expense_limit_expensevoucher actions
22122
+ * @default []
22123
+ */
22124
+ expense_limit_expensevoucher: components["schemas"]["BasePermissionsSchema_Expenses_Expense_limit_expensevoucherEnum"][];
22125
+ /**
22126
+ * Preferred Supplier Expensevoucher
22127
+ * @description preferred_supplier_expensevoucher actions
22128
+ * @default []
22129
+ */
22130
+ preferred_supplier_expensevoucher: components["schemas"]["BasePermissionsSchema_Expenses_Preferred_supplier_expensevoucherEnum"][];
22131
+ };
22132
+ /**
22133
+ * BasePermissionsSchema_Expenses_Expense_limit_expensevoucherEnum
22134
+ * @constant
22135
+ */
22136
+ BasePermissionsSchema_Expenses_Expense_limit_expensevoucherEnum: "override";
22137
+ /**
22138
+ * BasePermissionsSchema_Expenses_ExpensevoucherEnum
22139
+ * @enum {string}
22140
+ */
22141
+ BasePermissionsSchema_Expenses_ExpensevoucherEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
22142
+ /**
22143
+ * BasePermissionsSchema_Expenses_Preferred_supplier_expensevoucherEnum
22144
+ * @constant
22145
+ */
22146
+ BasePermissionsSchema_Expenses_Preferred_supplier_expensevoucherEnum: "override";
22112
22147
  /** BasePermissionsSchema_Hr */
22113
22148
  BasePermissionsSchema_Hr: {
22114
22149
  /**
@@ -22917,6 +22952,11 @@ export interface components {
22917
22952
  * @default []
22918
22953
  */
22919
22954
  integrations: components["schemas"]["BasePermissionsSchema_Settings_Integrations"];
22955
+ /**
22956
+ * @description expenses actions
22957
+ * @default []
22958
+ */
22959
+ expenses: components["schemas"]["BasePermissionsSchema_Settings_Expenses"];
22920
22960
  /**
22921
22961
  * @description hr actions
22922
22962
  * @default []
@@ -22947,12 +22987,6 @@ export interface components {
22947
22987
  * @default []
22948
22988
  */
22949
22989
  sales: components["schemas"]["BasePermissionsSchema_Settings_Sales"];
22950
- /**
22951
- * Expenses
22952
- * @description expenses actions
22953
- * @default []
22954
- */
22955
- expenses: Record<string, never>;
22956
22990
  /**
22957
22991
  * Calendar
22958
22992
  * @description calendar actions
@@ -23034,6 +23068,12 @@ export interface components {
23034
23068
  * @default []
23035
23069
  */
23036
23070
  defaultsubsidiaryaccount: components["schemas"]["BasePermissionsSchema_Settings_Accounting_DefaultsubsidiaryaccountEnum"][];
23071
+ /**
23072
+ * Dimension
23073
+ * @description dimension actions
23074
+ * @default []
23075
+ */
23076
+ dimension: components["schemas"]["BasePermissionsSchema_Settings_Accounting_DimensionEnum"][];
23037
23077
  /**
23038
23078
  * Financialperiods
23039
23079
  * @description financialperiods actions
@@ -23073,6 +23113,11 @@ export interface components {
23073
23113
  * @enum {string}
23074
23114
  */
23075
23115
  BasePermissionsSchema_Settings_Accounting_DefaultsubsidiaryaccountEnum: "add" | "change" | "delete" | "view";
23116
+ /**
23117
+ * BasePermissionsSchema_Settings_Accounting_DimensionEnum
23118
+ * @enum {string}
23119
+ */
23120
+ BasePermissionsSchema_Settings_Accounting_DimensionEnum: "add" | "change" | "delete" | "view";
23076
23121
  /**
23077
23122
  * BasePermissionsSchema_Settings_Accounting_FinancialperiodsEnum
23078
23123
  * @enum {string}
@@ -23149,6 +23194,20 @@ export interface components {
23149
23194
  * @enum {string}
23150
23195
  */
23151
23196
  BasePermissionsSchema_Settings_Approval_ApprovaltrackingEnum: "add" | "change" | "delete" | "view";
23197
+ /** BasePermissionsSchema_Settings_Expenses */
23198
+ BasePermissionsSchema_Settings_Expenses: {
23199
+ /**
23200
+ * Expensecategory
23201
+ * @description expensecategory actions
23202
+ * @default []
23203
+ */
23204
+ expensecategory: components["schemas"]["BasePermissionsSchema_Settings_Expenses_ExpensecategoryEnum"][];
23205
+ };
23206
+ /**
23207
+ * BasePermissionsSchema_Settings_Expenses_ExpensecategoryEnum
23208
+ * @enum {string}
23209
+ */
23210
+ BasePermissionsSchema_Settings_Expenses_ExpensecategoryEnum: "add" | "change" | "delete" | "view";
23152
23211
  /** BasePermissionsSchema_Settings_General */
23153
23212
  BasePermissionsSchema_Settings_General: {
23154
23213
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1247",
3
+ "version": "1.0.1249",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],