@erp-galoper/types 1.0.1198 → 1.0.1199
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 +19 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -2326,7 +2326,11 @@ export interface paths {
|
|
|
2326
2326
|
* Possible Responses:
|
|
2327
2327
|
* - 200: LogsResponseSchema
|
|
2328
2328
|
* - 400: paginationError
|
|
2329
|
+
* - 403: permissionDenied
|
|
2329
2330
|
* - 500: internalServerError
|
|
2331
|
+
*
|
|
2332
|
+
* Permission Key:
|
|
2333
|
+
* logs : ["view"]'
|
|
2330
2334
|
*/
|
|
2331
2335
|
get: operations["common_views_get_logs"];
|
|
2332
2336
|
put?: never;
|
|
@@ -21762,6 +21766,12 @@ export interface components {
|
|
|
21762
21766
|
* @default []
|
|
21763
21767
|
*/
|
|
21764
21768
|
systemsettings: components["schemas"]["BasePermissionsSchema_Settings_General_SystemsettingsEnum"][];
|
|
21769
|
+
/**
|
|
21770
|
+
* Logs
|
|
21771
|
+
* @description logs actions
|
|
21772
|
+
* @default []
|
|
21773
|
+
*/
|
|
21774
|
+
logs: string[];
|
|
21765
21775
|
};
|
|
21766
21776
|
/**
|
|
21767
21777
|
* BasePermissionsSchema_Settings_General_CompanysettingEnum
|
|
@@ -56006,6 +56016,15 @@ export interface operations {
|
|
|
56006
56016
|
"application/json": components["schemas"]["ErrorMessages"];
|
|
56007
56017
|
};
|
|
56008
56018
|
};
|
|
56019
|
+
/** @description Forbidden */
|
|
56020
|
+
403: {
|
|
56021
|
+
headers: {
|
|
56022
|
+
[name: string]: unknown;
|
|
56023
|
+
};
|
|
56024
|
+
content: {
|
|
56025
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
56026
|
+
};
|
|
56027
|
+
};
|
|
56009
56028
|
/** @description Internal Server Error */
|
|
56010
56029
|
500: {
|
|
56011
56030
|
headers: {
|