@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.
Files changed (2) hide show
  1. package/openapi.ts +19 -0
  2. 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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1198",
3
+ "version": "1.0.1199",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],