@erp-galoper/main-package 1.0.280 → 1.0.281
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 +32 -11
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -8858,12 +8858,23 @@ export interface components {
|
|
8858
8858
|
* @default []
|
8859
8859
|
*/
|
8860
8860
|
banks: components["schemas"]["BasePermissionsSchema_Bank_BanksEnum"][];
|
8861
|
+
/**
|
8862
|
+
* Bankstatement
|
8863
|
+
* @description bankstatement actions
|
8864
|
+
* @default []
|
8865
|
+
*/
|
8866
|
+
bankstatement: components["schemas"]["BasePermissionsSchema_Bank_BankstatementEnum"][];
|
8861
8867
|
};
|
8862
8868
|
/**
|
8863
8869
|
* BasePermissionsSchema_Bank_BanksEnum
|
8864
8870
|
* @enum {string}
|
8865
8871
|
*/
|
8866
8872
|
BasePermissionsSchema_Bank_BanksEnum: "add" | "change" | "delete" | "print" | "view";
|
8873
|
+
/**
|
8874
|
+
* BasePermissionsSchema_Bank_BankstatementEnum
|
8875
|
+
* @enum {string}
|
8876
|
+
*/
|
8877
|
+
BasePermissionsSchema_Bank_BankstatementEnum: "export" | "view";
|
8867
8878
|
/** BasePermissionsSchema_Customer */
|
8868
8879
|
BasePermissionsSchema_Customer: {
|
8869
8880
|
/**
|
@@ -9109,15 +9120,15 @@ export interface components {
|
|
9109
9120
|
*/
|
9110
9121
|
customer: components["schemas"]["BasePermissionsSchema_Report_Customer"];
|
9111
9122
|
/**
|
9112
|
-
* @description
|
9123
|
+
* @description bank actions
|
9113
9124
|
* @default []
|
9114
9125
|
*/
|
9115
|
-
|
9126
|
+
bank: components["schemas"]["BasePermissionsSchema_Report_Bank"];
|
9116
9127
|
/**
|
9117
|
-
* @description
|
9128
|
+
* @description project actions
|
9118
9129
|
* @default []
|
9119
9130
|
*/
|
9120
|
-
|
9131
|
+
project: components["schemas"]["BasePermissionsSchema_Report_Project"];
|
9121
9132
|
/**
|
9122
9133
|
* @description inventory actions
|
9123
9134
|
* @default []
|
@@ -9191,18 +9202,28 @@ export interface components {
|
|
9191
9202
|
/** BasePermissionsSchema_Report_Bank */
|
9192
9203
|
BasePermissionsSchema_Report_Bank: {
|
9193
9204
|
/**
|
9194
|
-
*
|
9195
|
-
* @description
|
9205
|
+
* Balancesheet
|
9206
|
+
* @description balancesheet actions
|
9196
9207
|
* @default []
|
9197
9208
|
*/
|
9198
|
-
|
9209
|
+
balancesheet: components["schemas"]["BasePermissionsSchema_Report_Bank_BalancesheetEnum"][];
|
9199
9210
|
/**
|
9200
|
-
*
|
9201
|
-
* @description
|
9211
|
+
* Bankstatement
|
9212
|
+
* @description bankstatement actions
|
9202
9213
|
* @default []
|
9203
9214
|
*/
|
9204
|
-
|
9215
|
+
bankstatement: components["schemas"]["BasePermissionsSchema_Report_Bank_BankstatementEnum"][];
|
9205
9216
|
};
|
9217
|
+
/**
|
9218
|
+
* BasePermissionsSchema_Report_Bank_BalancesheetEnum
|
9219
|
+
* @enum {string}
|
9220
|
+
*/
|
9221
|
+
BasePermissionsSchema_Report_Bank_BalancesheetEnum: "export" | "view";
|
9222
|
+
/**
|
9223
|
+
* BasePermissionsSchema_Report_Bank_BankstatementEnum
|
9224
|
+
* @enum {string}
|
9225
|
+
*/
|
9226
|
+
BasePermissionsSchema_Report_Bank_BankstatementEnum: "export" | "view";
|
9206
9227
|
/** BasePermissionsSchema_Report_Customer */
|
9207
9228
|
BasePermissionsSchema_Report_Customer: {
|
9208
9229
|
/**
|
@@ -15940,7 +15961,7 @@ export interface components {
|
|
15940
15961
|
/**
|
15941
15962
|
* Id
|
15942
15963
|
* Format: uuid
|
15943
|
-
* @example
|
15964
|
+
* @example 5082cc7e-32b4-42b5-a9cf-a0dab63f775d
|
15944
15965
|
*/
|
15945
15966
|
id: string;
|
15946
15967
|
/**
|
package/package.json
CHANGED