rl-core-front 0.2.0 → 0.3.0
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/package.json +1 -1
- package/src/_services/api/schema.d.ts +243 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rl-core-front",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Telas e componentes Next.js do core: login com 2FA, usu\u00e1rios, RBAC, auditoria, logs e listagens com filtro din\u00e2mico",
|
|
5
5
|
"author": "Rodrigo Liberti",
|
|
6
6
|
"license": "MIT",
|
|
@@ -929,6 +929,20 @@ export interface components {
|
|
|
929
929
|
isActive: boolean;
|
|
930
930
|
roleIds?: string[];
|
|
931
931
|
};
|
|
932
|
+
ResourceResponse: {
|
|
933
|
+
/** Format: uuid */
|
|
934
|
+
id: string;
|
|
935
|
+
/** Format: date-time */
|
|
936
|
+
createdAt: string;
|
|
937
|
+
/** Format: date-time */
|
|
938
|
+
updatedAt: string;
|
|
939
|
+
/** Format: date-time */
|
|
940
|
+
deletedAt?: string | null;
|
|
941
|
+
/** @example users */
|
|
942
|
+
name: string;
|
|
943
|
+
description?: string | null;
|
|
944
|
+
isActive: boolean;
|
|
945
|
+
};
|
|
932
946
|
CreateResourceCommand: {
|
|
933
947
|
/** @example users */
|
|
934
948
|
name: string;
|
|
@@ -940,6 +954,20 @@ export interface components {
|
|
|
940
954
|
description?: string;
|
|
941
955
|
isActive?: boolean;
|
|
942
956
|
};
|
|
957
|
+
ActionResponse: {
|
|
958
|
+
/** Format: uuid */
|
|
959
|
+
id: string;
|
|
960
|
+
/** Format: date-time */
|
|
961
|
+
createdAt: string;
|
|
962
|
+
/** Format: date-time */
|
|
963
|
+
updatedAt: string;
|
|
964
|
+
/** Format: date-time */
|
|
965
|
+
deletedAt?: string | null;
|
|
966
|
+
/** @example read */
|
|
967
|
+
name: string;
|
|
968
|
+
description?: string | null;
|
|
969
|
+
isActive: boolean;
|
|
970
|
+
};
|
|
943
971
|
CreateActionCommand: {
|
|
944
972
|
/** @example read */
|
|
945
973
|
name: string;
|
|
@@ -951,6 +979,20 @@ export interface components {
|
|
|
951
979
|
description?: string;
|
|
952
980
|
isActive?: boolean;
|
|
953
981
|
};
|
|
982
|
+
ScopeResponse: {
|
|
983
|
+
/** Format: uuid */
|
|
984
|
+
id: string;
|
|
985
|
+
/** Format: date-time */
|
|
986
|
+
createdAt: string;
|
|
987
|
+
/** Format: date-time */
|
|
988
|
+
updatedAt: string;
|
|
989
|
+
/** Format: date-time */
|
|
990
|
+
deletedAt?: string | null;
|
|
991
|
+
/** @example any */
|
|
992
|
+
name: string;
|
|
993
|
+
description?: string | null;
|
|
994
|
+
isActive: boolean;
|
|
995
|
+
};
|
|
954
996
|
CreateScopeCommand: {
|
|
955
997
|
/**
|
|
956
998
|
* @description own | team | department | any
|
|
@@ -968,6 +1010,29 @@ export interface components {
|
|
|
968
1010
|
description?: string;
|
|
969
1011
|
isActive?: boolean;
|
|
970
1012
|
};
|
|
1013
|
+
PermissionResponse: {
|
|
1014
|
+
/** Format: uuid */
|
|
1015
|
+
id: string;
|
|
1016
|
+
/** Format: date-time */
|
|
1017
|
+
createdAt: string;
|
|
1018
|
+
/** Format: date-time */
|
|
1019
|
+
updatedAt: string;
|
|
1020
|
+
/** Format: date-time */
|
|
1021
|
+
deletedAt?: string | null;
|
|
1022
|
+
/** @example users:read:any */
|
|
1023
|
+
code: string;
|
|
1024
|
+
description?: string | null;
|
|
1025
|
+
isActive: boolean;
|
|
1026
|
+
/** Format: uuid */
|
|
1027
|
+
resourceId: string;
|
|
1028
|
+
/** Format: uuid */
|
|
1029
|
+
actionId: string;
|
|
1030
|
+
/** Format: uuid */
|
|
1031
|
+
scopeId: string;
|
|
1032
|
+
resource: components["schemas"]["ResourceResponse"];
|
|
1033
|
+
action: components["schemas"]["ActionResponse"];
|
|
1034
|
+
scope: components["schemas"]["ScopeResponse"];
|
|
1035
|
+
};
|
|
971
1036
|
CreatePermissionCommand: {
|
|
972
1037
|
/**
|
|
973
1038
|
* @description resource:action:scope
|
|
@@ -985,6 +1050,40 @@ export interface components {
|
|
|
985
1050
|
description?: string;
|
|
986
1051
|
isActive?: boolean;
|
|
987
1052
|
};
|
|
1053
|
+
/** @enum {string} */
|
|
1054
|
+
GroupType: "company" | "department" | "team";
|
|
1055
|
+
RoleResponse: {
|
|
1056
|
+
/** Format: uuid */
|
|
1057
|
+
id: string;
|
|
1058
|
+
/** Format: date-time */
|
|
1059
|
+
createdAt: string;
|
|
1060
|
+
/** Format: date-time */
|
|
1061
|
+
updatedAt: string;
|
|
1062
|
+
/** Format: date-time */
|
|
1063
|
+
deletedAt?: string | null;
|
|
1064
|
+
/** @example admin */
|
|
1065
|
+
name: string;
|
|
1066
|
+
description?: string | null;
|
|
1067
|
+
isActive: boolean;
|
|
1068
|
+
permissions?: components["schemas"]["PermissionResponse"][];
|
|
1069
|
+
};
|
|
1070
|
+
GroupResponse: {
|
|
1071
|
+
/** Format: uuid */
|
|
1072
|
+
id: string;
|
|
1073
|
+
/** Format: date-time */
|
|
1074
|
+
createdAt: string;
|
|
1075
|
+
/** Format: date-time */
|
|
1076
|
+
updatedAt: string;
|
|
1077
|
+
/** Format: date-time */
|
|
1078
|
+
deletedAt?: string | null;
|
|
1079
|
+
name: string;
|
|
1080
|
+
description?: string | null;
|
|
1081
|
+
type: components["schemas"]["GroupType"];
|
|
1082
|
+
/** Format: uuid */
|
|
1083
|
+
parentId?: string | null;
|
|
1084
|
+
isActive: boolean;
|
|
1085
|
+
roles?: components["schemas"]["RoleResponse"][];
|
|
1086
|
+
};
|
|
988
1087
|
CreateGroupCommand: {
|
|
989
1088
|
name: string;
|
|
990
1089
|
description?: string;
|
|
@@ -1023,8 +1122,6 @@ export interface components {
|
|
|
1023
1122
|
permissionIds?: string[];
|
|
1024
1123
|
isActive?: boolean;
|
|
1025
1124
|
};
|
|
1026
|
-
/** @enum {string} */
|
|
1027
|
-
AuditDataAction: "CREATE" | "UPDATE" | "DELETE";
|
|
1028
1125
|
AuditUserRefResponse: {
|
|
1029
1126
|
/** Format: uuid */
|
|
1030
1127
|
id: string;
|
|
@@ -1032,6 +1129,71 @@ export interface components {
|
|
|
1032
1129
|
/** @example admin@admin.com */
|
|
1033
1130
|
email: string;
|
|
1034
1131
|
};
|
|
1132
|
+
RequestLogResponse: {
|
|
1133
|
+
/** Format: uuid */
|
|
1134
|
+
id: string;
|
|
1135
|
+
/** @example GET /api/v1/users */
|
|
1136
|
+
action: string;
|
|
1137
|
+
/** @example User */
|
|
1138
|
+
entity?: string | null;
|
|
1139
|
+
entityId?: string | null;
|
|
1140
|
+
/** @example GET */
|
|
1141
|
+
method?: string | null;
|
|
1142
|
+
path?: string | null;
|
|
1143
|
+
/** @example 200 */
|
|
1144
|
+
statusCode?: number | null;
|
|
1145
|
+
/** @example 42 */
|
|
1146
|
+
durationMs?: number | null;
|
|
1147
|
+
/** @example 10.0.0.1 */
|
|
1148
|
+
ipAddress?: string | null;
|
|
1149
|
+
/** Format: uuid */
|
|
1150
|
+
requestId?: string | null;
|
|
1151
|
+
metadata?: Record<string, never> | null;
|
|
1152
|
+
userId?: string | null;
|
|
1153
|
+
user?: components["schemas"]["AuditUserRefResponse"] | null;
|
|
1154
|
+
/** Format: date-time */
|
|
1155
|
+
createdAt: string;
|
|
1156
|
+
/** Format: date-time */
|
|
1157
|
+
updatedAt: string;
|
|
1158
|
+
/** Format: date-time */
|
|
1159
|
+
deletedAt?: string | null;
|
|
1160
|
+
};
|
|
1161
|
+
PaginatedRequestLogsResponse: {
|
|
1162
|
+
items: components["schemas"]["RequestLogResponse"][];
|
|
1163
|
+
meta: components["schemas"]["PaginationMetaResponse"];
|
|
1164
|
+
};
|
|
1165
|
+
/** @enum {string} */
|
|
1166
|
+
ErrorType: "VALIDATION" | "AUTH" | "NOT_FOUND" | "RATE_LIMIT" | "DATABASE" | "INTEGRATION" | "INTERNAL";
|
|
1167
|
+
ErrorLogResponse: {
|
|
1168
|
+
/** Format: uuid */
|
|
1169
|
+
id: string;
|
|
1170
|
+
type: components["schemas"]["ErrorType"];
|
|
1171
|
+
/** @example 500 */
|
|
1172
|
+
statusCode?: number | null;
|
|
1173
|
+
message: string;
|
|
1174
|
+
stack?: string | null;
|
|
1175
|
+
/** @example POST */
|
|
1176
|
+
method?: string | null;
|
|
1177
|
+
path?: string | null;
|
|
1178
|
+
/** @example 10.0.0.1 */
|
|
1179
|
+
ipAddress?: string | null;
|
|
1180
|
+
/** Format: uuid */
|
|
1181
|
+
requestId?: string | null;
|
|
1182
|
+
userId?: string | null;
|
|
1183
|
+
user?: components["schemas"]["AuditUserRefResponse"] | null;
|
|
1184
|
+
/** Format: date-time */
|
|
1185
|
+
createdAt: string;
|
|
1186
|
+
/** Format: date-time */
|
|
1187
|
+
updatedAt: string;
|
|
1188
|
+
/** Format: date-time */
|
|
1189
|
+
deletedAt?: string | null;
|
|
1190
|
+
};
|
|
1191
|
+
PaginatedErrorLogsResponse: {
|
|
1192
|
+
items: components["schemas"]["ErrorLogResponse"][];
|
|
1193
|
+
meta: components["schemas"]["PaginationMetaResponse"];
|
|
1194
|
+
};
|
|
1195
|
+
/** @enum {string} */
|
|
1196
|
+
AuditDataAction: "CREATE" | "UPDATE" | "DELETE";
|
|
1035
1197
|
AuditDataChangeResponse: {
|
|
1036
1198
|
/** Format: uuid */
|
|
1037
1199
|
id: string;
|
|
@@ -1696,7 +1858,9 @@ export interface operations {
|
|
|
1696
1858
|
headers: {
|
|
1697
1859
|
[name: string]: unknown;
|
|
1698
1860
|
};
|
|
1699
|
-
content
|
|
1861
|
+
content: {
|
|
1862
|
+
"application/json": components["schemas"]["ResourceResponse"][];
|
|
1863
|
+
};
|
|
1700
1864
|
};
|
|
1701
1865
|
};
|
|
1702
1866
|
};
|
|
@@ -1713,11 +1877,13 @@ export interface operations {
|
|
|
1713
1877
|
};
|
|
1714
1878
|
};
|
|
1715
1879
|
responses: {
|
|
1716
|
-
|
|
1880
|
+
200: {
|
|
1717
1881
|
headers: {
|
|
1718
1882
|
[name: string]: unknown;
|
|
1719
1883
|
};
|
|
1720
|
-
content
|
|
1884
|
+
content: {
|
|
1885
|
+
"application/json": components["schemas"]["ResourceResponse"];
|
|
1886
|
+
};
|
|
1721
1887
|
};
|
|
1722
1888
|
};
|
|
1723
1889
|
};
|
|
@@ -1759,7 +1925,9 @@ export interface operations {
|
|
|
1759
1925
|
headers: {
|
|
1760
1926
|
[name: string]: unknown;
|
|
1761
1927
|
};
|
|
1762
|
-
content
|
|
1928
|
+
content: {
|
|
1929
|
+
"application/json": components["schemas"]["ResourceResponse"];
|
|
1930
|
+
};
|
|
1763
1931
|
};
|
|
1764
1932
|
};
|
|
1765
1933
|
};
|
|
@@ -1776,7 +1944,9 @@ export interface operations {
|
|
|
1776
1944
|
headers: {
|
|
1777
1945
|
[name: string]: unknown;
|
|
1778
1946
|
};
|
|
1779
|
-
content
|
|
1947
|
+
content: {
|
|
1948
|
+
"application/json": components["schemas"]["ActionResponse"][];
|
|
1949
|
+
};
|
|
1780
1950
|
};
|
|
1781
1951
|
};
|
|
1782
1952
|
};
|
|
@@ -1793,11 +1963,13 @@ export interface operations {
|
|
|
1793
1963
|
};
|
|
1794
1964
|
};
|
|
1795
1965
|
responses: {
|
|
1796
|
-
|
|
1966
|
+
200: {
|
|
1797
1967
|
headers: {
|
|
1798
1968
|
[name: string]: unknown;
|
|
1799
1969
|
};
|
|
1800
|
-
content
|
|
1970
|
+
content: {
|
|
1971
|
+
"application/json": components["schemas"]["ActionResponse"];
|
|
1972
|
+
};
|
|
1801
1973
|
};
|
|
1802
1974
|
};
|
|
1803
1975
|
};
|
|
@@ -1839,7 +2011,9 @@ export interface operations {
|
|
|
1839
2011
|
headers: {
|
|
1840
2012
|
[name: string]: unknown;
|
|
1841
2013
|
};
|
|
1842
|
-
content
|
|
2014
|
+
content: {
|
|
2015
|
+
"application/json": components["schemas"]["ActionResponse"];
|
|
2016
|
+
};
|
|
1843
2017
|
};
|
|
1844
2018
|
};
|
|
1845
2019
|
};
|
|
@@ -1856,7 +2030,9 @@ export interface operations {
|
|
|
1856
2030
|
headers: {
|
|
1857
2031
|
[name: string]: unknown;
|
|
1858
2032
|
};
|
|
1859
|
-
content
|
|
2033
|
+
content: {
|
|
2034
|
+
"application/json": components["schemas"]["ScopeResponse"][];
|
|
2035
|
+
};
|
|
1860
2036
|
};
|
|
1861
2037
|
};
|
|
1862
2038
|
};
|
|
@@ -1873,11 +2049,13 @@ export interface operations {
|
|
|
1873
2049
|
};
|
|
1874
2050
|
};
|
|
1875
2051
|
responses: {
|
|
1876
|
-
|
|
2052
|
+
200: {
|
|
1877
2053
|
headers: {
|
|
1878
2054
|
[name: string]: unknown;
|
|
1879
2055
|
};
|
|
1880
|
-
content
|
|
2056
|
+
content: {
|
|
2057
|
+
"application/json": components["schemas"]["ScopeResponse"];
|
|
2058
|
+
};
|
|
1881
2059
|
};
|
|
1882
2060
|
};
|
|
1883
2061
|
};
|
|
@@ -1919,7 +2097,9 @@ export interface operations {
|
|
|
1919
2097
|
headers: {
|
|
1920
2098
|
[name: string]: unknown;
|
|
1921
2099
|
};
|
|
1922
|
-
content
|
|
2100
|
+
content: {
|
|
2101
|
+
"application/json": components["schemas"]["ScopeResponse"];
|
|
2102
|
+
};
|
|
1923
2103
|
};
|
|
1924
2104
|
};
|
|
1925
2105
|
};
|
|
@@ -1936,7 +2116,9 @@ export interface operations {
|
|
|
1936
2116
|
headers: {
|
|
1937
2117
|
[name: string]: unknown;
|
|
1938
2118
|
};
|
|
1939
|
-
content
|
|
2119
|
+
content: {
|
|
2120
|
+
"application/json": components["schemas"]["PermissionResponse"][];
|
|
2121
|
+
};
|
|
1940
2122
|
};
|
|
1941
2123
|
};
|
|
1942
2124
|
};
|
|
@@ -1953,11 +2135,13 @@ export interface operations {
|
|
|
1953
2135
|
};
|
|
1954
2136
|
};
|
|
1955
2137
|
responses: {
|
|
1956
|
-
|
|
2138
|
+
200: {
|
|
1957
2139
|
headers: {
|
|
1958
2140
|
[name: string]: unknown;
|
|
1959
2141
|
};
|
|
1960
|
-
content
|
|
2142
|
+
content: {
|
|
2143
|
+
"application/json": components["schemas"]["PermissionResponse"];
|
|
2144
|
+
};
|
|
1961
2145
|
};
|
|
1962
2146
|
};
|
|
1963
2147
|
};
|
|
@@ -1999,7 +2183,9 @@ export interface operations {
|
|
|
1999
2183
|
headers: {
|
|
2000
2184
|
[name: string]: unknown;
|
|
2001
2185
|
};
|
|
2002
|
-
content
|
|
2186
|
+
content: {
|
|
2187
|
+
"application/json": components["schemas"]["PermissionResponse"];
|
|
2188
|
+
};
|
|
2003
2189
|
};
|
|
2004
2190
|
};
|
|
2005
2191
|
};
|
|
@@ -2016,7 +2202,9 @@ export interface operations {
|
|
|
2016
2202
|
headers: {
|
|
2017
2203
|
[name: string]: unknown;
|
|
2018
2204
|
};
|
|
2019
|
-
content
|
|
2205
|
+
content: {
|
|
2206
|
+
"application/json": components["schemas"]["GroupResponse"][];
|
|
2207
|
+
};
|
|
2020
2208
|
};
|
|
2021
2209
|
};
|
|
2022
2210
|
};
|
|
@@ -2033,11 +2221,13 @@ export interface operations {
|
|
|
2033
2221
|
};
|
|
2034
2222
|
};
|
|
2035
2223
|
responses: {
|
|
2036
|
-
|
|
2224
|
+
200: {
|
|
2037
2225
|
headers: {
|
|
2038
2226
|
[name: string]: unknown;
|
|
2039
2227
|
};
|
|
2040
|
-
content
|
|
2228
|
+
content: {
|
|
2229
|
+
"application/json": components["schemas"]["GroupResponse"];
|
|
2230
|
+
};
|
|
2041
2231
|
};
|
|
2042
2232
|
};
|
|
2043
2233
|
};
|
|
@@ -2056,7 +2246,9 @@ export interface operations {
|
|
|
2056
2246
|
headers: {
|
|
2057
2247
|
[name: string]: unknown;
|
|
2058
2248
|
};
|
|
2059
|
-
content
|
|
2249
|
+
content: {
|
|
2250
|
+
"application/json": components["schemas"]["GroupResponse"];
|
|
2251
|
+
};
|
|
2060
2252
|
};
|
|
2061
2253
|
};
|
|
2062
2254
|
};
|
|
@@ -2098,7 +2290,9 @@ export interface operations {
|
|
|
2098
2290
|
headers: {
|
|
2099
2291
|
[name: string]: unknown;
|
|
2100
2292
|
};
|
|
2101
|
-
content
|
|
2293
|
+
content: {
|
|
2294
|
+
"application/json": components["schemas"]["GroupResponse"];
|
|
2295
|
+
};
|
|
2102
2296
|
};
|
|
2103
2297
|
};
|
|
2104
2298
|
};
|
|
@@ -2155,7 +2349,9 @@ export interface operations {
|
|
|
2155
2349
|
headers: {
|
|
2156
2350
|
[name: string]: unknown;
|
|
2157
2351
|
};
|
|
2158
|
-
content
|
|
2352
|
+
content: {
|
|
2353
|
+
"application/json": components["schemas"]["RoleResponse"][];
|
|
2354
|
+
};
|
|
2159
2355
|
};
|
|
2160
2356
|
};
|
|
2161
2357
|
};
|
|
@@ -2172,11 +2368,13 @@ export interface operations {
|
|
|
2172
2368
|
};
|
|
2173
2369
|
};
|
|
2174
2370
|
responses: {
|
|
2175
|
-
|
|
2371
|
+
200: {
|
|
2176
2372
|
headers: {
|
|
2177
2373
|
[name: string]: unknown;
|
|
2178
2374
|
};
|
|
2179
|
-
content
|
|
2375
|
+
content: {
|
|
2376
|
+
"application/json": components["schemas"]["RoleResponse"];
|
|
2377
|
+
};
|
|
2180
2378
|
};
|
|
2181
2379
|
};
|
|
2182
2380
|
};
|
|
@@ -2195,7 +2393,9 @@ export interface operations {
|
|
|
2195
2393
|
headers: {
|
|
2196
2394
|
[name: string]: unknown;
|
|
2197
2395
|
};
|
|
2198
|
-
content
|
|
2396
|
+
content: {
|
|
2397
|
+
"application/json": components["schemas"]["RoleResponse"];
|
|
2398
|
+
};
|
|
2199
2399
|
};
|
|
2200
2400
|
};
|
|
2201
2401
|
};
|
|
@@ -2237,7 +2437,9 @@ export interface operations {
|
|
|
2237
2437
|
headers: {
|
|
2238
2438
|
[name: string]: unknown;
|
|
2239
2439
|
};
|
|
2240
|
-
content
|
|
2440
|
+
content: {
|
|
2441
|
+
"application/json": components["schemas"]["RoleResponse"];
|
|
2442
|
+
};
|
|
2241
2443
|
};
|
|
2242
2444
|
};
|
|
2243
2445
|
};
|
|
@@ -2253,11 +2455,13 @@ export interface operations {
|
|
|
2253
2455
|
};
|
|
2254
2456
|
requestBody?: never;
|
|
2255
2457
|
responses: {
|
|
2256
|
-
|
|
2458
|
+
200: {
|
|
2257
2459
|
headers: {
|
|
2258
2460
|
[name: string]: unknown;
|
|
2259
2461
|
};
|
|
2260
|
-
content
|
|
2462
|
+
content: {
|
|
2463
|
+
"application/json": components["schemas"]["RoleResponse"];
|
|
2464
|
+
};
|
|
2261
2465
|
};
|
|
2262
2466
|
};
|
|
2263
2467
|
};
|
|
@@ -2277,7 +2481,9 @@ export interface operations {
|
|
|
2277
2481
|
headers: {
|
|
2278
2482
|
[name: string]: unknown;
|
|
2279
2483
|
};
|
|
2280
|
-
content
|
|
2484
|
+
content: {
|
|
2485
|
+
"application/json": components["schemas"]["RoleResponse"];
|
|
2486
|
+
};
|
|
2281
2487
|
};
|
|
2282
2488
|
};
|
|
2283
2489
|
};
|
|
@@ -2303,7 +2509,9 @@ export interface operations {
|
|
|
2303
2509
|
headers: {
|
|
2304
2510
|
[name: string]: unknown;
|
|
2305
2511
|
};
|
|
2306
|
-
content
|
|
2512
|
+
content: {
|
|
2513
|
+
"application/json": components["schemas"]["PaginatedRequestLogsResponse"];
|
|
2514
|
+
};
|
|
2307
2515
|
};
|
|
2308
2516
|
};
|
|
2309
2517
|
};
|
|
@@ -2348,7 +2556,9 @@ export interface operations {
|
|
|
2348
2556
|
headers: {
|
|
2349
2557
|
[name: string]: unknown;
|
|
2350
2558
|
};
|
|
2351
|
-
content
|
|
2559
|
+
content: {
|
|
2560
|
+
"application/json": components["schemas"]["PaginatedErrorLogsResponse"];
|
|
2561
|
+
};
|
|
2352
2562
|
};
|
|
2353
2563
|
};
|
|
2354
2564
|
};
|