@erp-galoper/main-package 1.0.278 → 1.0.280
Sign up to get free protection for your applications and to get access to all the features.
- package/openapi.ts +11 -32
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -8858,23 +8858,12 @@ 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"][];
|
8867
8861
|
};
|
8868
8862
|
/**
|
8869
8863
|
* BasePermissionsSchema_Bank_BanksEnum
|
8870
8864
|
* @enum {string}
|
8871
8865
|
*/
|
8872
8866
|
BasePermissionsSchema_Bank_BanksEnum: "add" | "change" | "delete" | "print" | "view";
|
8873
|
-
/**
|
8874
|
-
* BasePermissionsSchema_Bank_BankstatementEnum
|
8875
|
-
* @enum {string}
|
8876
|
-
*/
|
8877
|
-
BasePermissionsSchema_Bank_BankstatementEnum: "export" | "view";
|
8878
8867
|
/** BasePermissionsSchema_Customer */
|
8879
8868
|
BasePermissionsSchema_Customer: {
|
8880
8869
|
/**
|
@@ -9120,15 +9109,15 @@ export interface components {
|
|
9120
9109
|
*/
|
9121
9110
|
customer: components["schemas"]["BasePermissionsSchema_Report_Customer"];
|
9122
9111
|
/**
|
9123
|
-
* @description
|
9112
|
+
* @description project actions
|
9124
9113
|
* @default []
|
9125
9114
|
*/
|
9126
|
-
|
9115
|
+
project: components["schemas"]["BasePermissionsSchema_Report_Project"];
|
9127
9116
|
/**
|
9128
|
-
* @description
|
9117
|
+
* @description bank actions
|
9129
9118
|
* @default []
|
9130
9119
|
*/
|
9131
|
-
|
9120
|
+
bank: components["schemas"]["BasePermissionsSchema_Report_Bank"];
|
9132
9121
|
/**
|
9133
9122
|
* @description inventory actions
|
9134
9123
|
* @default []
|
@@ -9202,28 +9191,18 @@ export interface components {
|
|
9202
9191
|
/** BasePermissionsSchema_Report_Bank */
|
9203
9192
|
BasePermissionsSchema_Report_Bank: {
|
9204
9193
|
/**
|
9205
|
-
*
|
9206
|
-
* @description
|
9194
|
+
* Bankstatement
|
9195
|
+
* @description bankstatement actions
|
9207
9196
|
* @default []
|
9208
9197
|
*/
|
9209
|
-
|
9198
|
+
bankstatement: string[];
|
9210
9199
|
/**
|
9211
|
-
*
|
9212
|
-
* @description
|
9200
|
+
* Balancesheet
|
9201
|
+
* @description balancesheet actions
|
9213
9202
|
* @default []
|
9214
9203
|
*/
|
9215
|
-
|
9204
|
+
balancesheet: string[];
|
9216
9205
|
};
|
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";
|
9227
9206
|
/** BasePermissionsSchema_Report_Customer */
|
9228
9207
|
BasePermissionsSchema_Report_Customer: {
|
9229
9208
|
/**
|
@@ -15961,7 +15940,7 @@ export interface components {
|
|
15961
15940
|
/**
|
15962
15941
|
* Id
|
15963
15942
|
* Format: uuid
|
15964
|
-
* @example
|
15943
|
+
* @example 7c99fe97-b8fa-4f43-83c9-b456b12afb71
|
15965
15944
|
*/
|
15966
15945
|
id: string;
|
15967
15946
|
/**
|
package/package.json
CHANGED