@objectstack/platform-objects 14.8.0 → 15.1.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/dist/apps/index.d.mts +2 -0
- package/dist/apps/index.d.ts +2 -0
- package/dist/apps/index.js +1316 -136
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +1316 -136
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +933 -578
- package/dist/audit/index.d.ts +933 -578
- package/dist/audit/index.js +6 -19
- package/dist/audit/index.js.map +1 -1
- package/dist/audit/index.mjs +6 -19
- package/dist/audit/index.mjs.map +1 -1
- package/dist/identity/index.d.mts +15025 -2760
- package/dist/identity/index.d.ts +15025 -2760
- package/dist/identity/index.js +381 -27
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +379 -28
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1859 -197
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1857 -198
- package/dist/index.mjs.map +1 -1
- package/dist/metadata-translations/index.js +64 -0
- package/dist/metadata-translations/index.js.map +1 -1
- package/dist/metadata-translations/index.mjs +64 -0
- package/dist/metadata-translations/index.mjs.map +1 -1
- package/dist/pages/index.js +77 -0
- package/dist/pages/index.js.map +1 -1
- package/dist/pages/index.mjs +77 -0
- package/dist/pages/index.mjs.map +1 -1
- package/dist/plugin.js +1380 -136
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +1380 -136
- package/dist/plugin.mjs.map +1 -1
- package/dist/system/index.d.mts +240 -24
- package/dist/system/index.d.ts +240 -24
- package/package.json +3 -3
package/dist/apps/index.js
CHANGED
|
@@ -1010,7 +1010,12 @@ var enObjects = {
|
|
|
1010
1010
|
ban_user: {
|
|
1011
1011
|
label: "Ban User",
|
|
1012
1012
|
confirmText: "Ban this user? They will be signed out and unable to sign in until unbanned.",
|
|
1013
|
-
successMessage: "User banned"
|
|
1013
|
+
successMessage: "User banned",
|
|
1014
|
+
params: {
|
|
1015
|
+
banReason: {
|
|
1016
|
+
label: "Ban Reason"
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1014
1019
|
},
|
|
1015
1020
|
unban_user: {
|
|
1016
1021
|
label: "Unban User",
|
|
@@ -1022,15 +1027,46 @@ var enObjects = {
|
|
|
1022
1027
|
},
|
|
1023
1028
|
create_user: {
|
|
1024
1029
|
label: "Create User",
|
|
1025
|
-
successMessage: "User created"
|
|
1030
|
+
successMessage: "User created",
|
|
1031
|
+
params: {
|
|
1032
|
+
phoneNumber: {
|
|
1033
|
+
label: "Phone Number",
|
|
1034
|
+
helpText: "Sign-in phone number (E.164, e.g. +8613800000000). Required when no email is given."
|
|
1035
|
+
},
|
|
1036
|
+
generatePassword: {
|
|
1037
|
+
label: "Generate Temporary Password"
|
|
1038
|
+
},
|
|
1039
|
+
password: {
|
|
1040
|
+
label: "Password (leave empty to generate)"
|
|
1041
|
+
},
|
|
1042
|
+
mustChangePassword: {
|
|
1043
|
+
label: "Require Password Change On First Login"
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1026
1046
|
},
|
|
1027
1047
|
set_user_password: {
|
|
1028
1048
|
label: "Set Password",
|
|
1029
|
-
successMessage: "Password updated"
|
|
1049
|
+
successMessage: "Password updated",
|
|
1050
|
+
params: {
|
|
1051
|
+
generatePassword: {
|
|
1052
|
+
label: "Generate Temporary Password"
|
|
1053
|
+
},
|
|
1054
|
+
newPassword: {
|
|
1055
|
+
label: "New Password (leave empty to generate)"
|
|
1056
|
+
},
|
|
1057
|
+
mustChangePassword: {
|
|
1058
|
+
label: "Require Password Change On Next Login"
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1030
1061
|
},
|
|
1031
1062
|
set_user_role: {
|
|
1032
1063
|
label: "Set Platform Role",
|
|
1033
|
-
successMessage: "Role updated"
|
|
1064
|
+
successMessage: "Role updated",
|
|
1065
|
+
params: {
|
|
1066
|
+
role: {
|
|
1067
|
+
label: "Platform Role"
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1034
1070
|
},
|
|
1035
1071
|
impersonate_user: {
|
|
1036
1072
|
label: "Impersonate User",
|
|
@@ -1043,11 +1079,27 @@ var enObjects = {
|
|
|
1043
1079
|
},
|
|
1044
1080
|
change_my_password: {
|
|
1045
1081
|
label: "Change Password",
|
|
1046
|
-
successMessage: "Password changed"
|
|
1082
|
+
successMessage: "Password changed",
|
|
1083
|
+
params: {
|
|
1084
|
+
currentPassword: {
|
|
1085
|
+
label: "Current Password"
|
|
1086
|
+
},
|
|
1087
|
+
newPassword: {
|
|
1088
|
+
label: "New Password"
|
|
1089
|
+
},
|
|
1090
|
+
revokeOtherSessions: {
|
|
1091
|
+
label: "Sign out other devices"
|
|
1092
|
+
}
|
|
1093
|
+
}
|
|
1047
1094
|
},
|
|
1048
1095
|
change_my_email: {
|
|
1049
1096
|
label: "Change Email",
|
|
1050
|
-
successMessage: "Verification email sent \u2014 check the new address to confirm."
|
|
1097
|
+
successMessage: "Verification email sent \u2014 check the new address to confirm.",
|
|
1098
|
+
params: {
|
|
1099
|
+
newEmail: {
|
|
1100
|
+
label: "New Email"
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1051
1103
|
},
|
|
1052
1104
|
resend_verification_email: {
|
|
1053
1105
|
label: "Resend Verification Email",
|
|
@@ -1056,21 +1108,41 @@ var enObjects = {
|
|
|
1056
1108
|
delete_my_account: {
|
|
1057
1109
|
label: "Delete My Account",
|
|
1058
1110
|
confirmText: "Permanently delete your account? This cannot be undone \u2014 all your sessions will be terminated and all data you own will be removed per the configured retention policy.",
|
|
1059
|
-
successMessage: "Account deleted"
|
|
1111
|
+
successMessage: "Account deleted",
|
|
1112
|
+
params: {
|
|
1113
|
+
password: {
|
|
1114
|
+
label: "Current Password"
|
|
1115
|
+
}
|
|
1116
|
+
}
|
|
1060
1117
|
},
|
|
1061
1118
|
enable_two_factor: {
|
|
1062
1119
|
label: "Enable Two-Factor Auth",
|
|
1063
|
-
successMessage: "Two-factor authentication enabled. Scan the QR code or paste the otpauth URI into your authenticator app, then verify a code to complete setup."
|
|
1120
|
+
successMessage: "Two-factor authentication enabled. Scan the QR code or paste the otpauth URI into your authenticator app, then verify a code to complete setup.",
|
|
1121
|
+
params: {
|
|
1122
|
+
password: {
|
|
1123
|
+
label: "Current Password"
|
|
1124
|
+
}
|
|
1125
|
+
}
|
|
1064
1126
|
},
|
|
1065
1127
|
disable_two_factor: {
|
|
1066
1128
|
label: "Disable Two-Factor Auth",
|
|
1067
1129
|
confirmText: "Turn off two-factor authentication? Your account will be less secure.",
|
|
1068
|
-
successMessage: "Two-factor authentication disabled."
|
|
1130
|
+
successMessage: "Two-factor authentication disabled.",
|
|
1131
|
+
params: {
|
|
1132
|
+
password: {
|
|
1133
|
+
label: "Current Password"
|
|
1134
|
+
}
|
|
1135
|
+
}
|
|
1069
1136
|
},
|
|
1070
1137
|
generate_backup_codes: {
|
|
1071
1138
|
label: "Regenerate Backup Codes",
|
|
1072
1139
|
confirmText: "Generate a new set of backup codes? Any previously generated codes will stop working.",
|
|
1073
|
-
successMessage: "New backup codes generated \u2014 save them somewhere safe."
|
|
1140
|
+
successMessage: "New backup codes generated \u2014 save them somewhere safe.",
|
|
1141
|
+
params: {
|
|
1142
|
+
password: {
|
|
1143
|
+
label: "Current Password"
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1074
1146
|
}
|
|
1075
1147
|
}
|
|
1076
1148
|
},
|
|
@@ -1214,7 +1286,21 @@ var enObjects = {
|
|
|
1214
1286
|
},
|
|
1215
1287
|
_actions: {
|
|
1216
1288
|
link_social: {
|
|
1217
|
-
label: "Link Social Account"
|
|
1289
|
+
label: "Link Social Account",
|
|
1290
|
+
params: {
|
|
1291
|
+
provider: {
|
|
1292
|
+
label: "Provider",
|
|
1293
|
+
options: {
|
|
1294
|
+
google: "Google",
|
|
1295
|
+
github: "GitHub",
|
|
1296
|
+
microsoft: "Microsoft",
|
|
1297
|
+
apple: "Apple",
|
|
1298
|
+
facebook: "Facebook",
|
|
1299
|
+
gitlab: "GitLab",
|
|
1300
|
+
discord: "Discord"
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1218
1304
|
},
|
|
1219
1305
|
unlink_account: {
|
|
1220
1306
|
label: "Unlink Account",
|
|
@@ -1347,7 +1433,11 @@ var enObjects = {
|
|
|
1347
1433
|
},
|
|
1348
1434
|
_views: {
|
|
1349
1435
|
mine: {
|
|
1350
|
-
label: "My Memberships"
|
|
1436
|
+
label: "My Memberships",
|
|
1437
|
+
emptyState: {
|
|
1438
|
+
title: "No organizations yet",
|
|
1439
|
+
message: "You haven't joined any organizations."
|
|
1440
|
+
}
|
|
1351
1441
|
}
|
|
1352
1442
|
},
|
|
1353
1443
|
_actions: {
|
|
@@ -1767,16 +1857,31 @@ var enObjects = {
|
|
|
1767
1857
|
},
|
|
1768
1858
|
_actions: {
|
|
1769
1859
|
enable_two_factor: {
|
|
1770
|
-
label: "Enable 2FA"
|
|
1860
|
+
label: "Enable 2FA",
|
|
1861
|
+
params: {
|
|
1862
|
+
password: {
|
|
1863
|
+
label: "Current Password"
|
|
1864
|
+
}
|
|
1865
|
+
}
|
|
1771
1866
|
},
|
|
1772
1867
|
disable_two_factor: {
|
|
1773
1868
|
label: "Disable 2FA",
|
|
1774
1869
|
confirmText: "Disable two-factor authentication on your account?",
|
|
1775
|
-
successMessage: "2FA disabled"
|
|
1870
|
+
successMessage: "2FA disabled",
|
|
1871
|
+
params: {
|
|
1872
|
+
password: {
|
|
1873
|
+
label: "Current Password"
|
|
1874
|
+
}
|
|
1875
|
+
}
|
|
1776
1876
|
},
|
|
1777
1877
|
regenerate_backup_codes: {
|
|
1778
1878
|
label: "Regenerate Backup Codes",
|
|
1779
|
-
confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately."
|
|
1879
|
+
confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately.",
|
|
1880
|
+
params: {
|
|
1881
|
+
password: {
|
|
1882
|
+
label: "Current Password"
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1780
1885
|
}
|
|
1781
1886
|
}
|
|
1782
1887
|
},
|
|
@@ -1956,6 +2061,18 @@ var enObjects = {
|
|
|
1956
2061
|
label: "Subject Type",
|
|
1957
2062
|
help: "OIDC subject type (e.g. public, pairwise)"
|
|
1958
2063
|
},
|
|
2064
|
+
jwks: {
|
|
2065
|
+
label: "JWKS",
|
|
2066
|
+
help: "Client JSON Web Key Set (for private_key_jwt / signed-request verification)"
|
|
2067
|
+
},
|
|
2068
|
+
jwks_uri: {
|
|
2069
|
+
label: "JWKS URI",
|
|
2070
|
+
help: "URL of the client JSON Web Key Set"
|
|
2071
|
+
},
|
|
2072
|
+
dpop_bound_access_tokens: {
|
|
2073
|
+
label: "DPoP-bound Access Tokens",
|
|
2074
|
+
help: "Require access tokens issued to this client to be DPoP-bound (RFC 9449)"
|
|
2075
|
+
},
|
|
1959
2076
|
disabled: {
|
|
1960
2077
|
label: "Disabled"
|
|
1961
2078
|
},
|
|
@@ -1967,6 +2084,14 @@ var enObjects = {
|
|
|
1967
2084
|
label: "Enable End Session",
|
|
1968
2085
|
help: "Allow the client to call the OIDC end-session endpoint"
|
|
1969
2086
|
},
|
|
2087
|
+
backchannel_logout_uri: {
|
|
2088
|
+
label: "Back-channel Logout URI",
|
|
2089
|
+
help: "OIDC back-channel logout endpoint of the client"
|
|
2090
|
+
},
|
|
2091
|
+
backchannel_logout_session_required: {
|
|
2092
|
+
label: "Back-channel Logout Session Required",
|
|
2093
|
+
help: "Whether the back-channel logout token must include a sid claim"
|
|
2094
|
+
},
|
|
1970
2095
|
software_id: {
|
|
1971
2096
|
label: "Software ID"
|
|
1972
2097
|
},
|
|
@@ -2018,7 +2143,25 @@ var enObjects = {
|
|
|
2018
2143
|
successMessage: "OAuth application enabled"
|
|
2019
2144
|
},
|
|
2020
2145
|
create_oauth_application: {
|
|
2021
|
-
label: "Register OAuth Application"
|
|
2146
|
+
label: "Register OAuth Application",
|
|
2147
|
+
params: {
|
|
2148
|
+
name: {
|
|
2149
|
+
label: "Application Name"
|
|
2150
|
+
},
|
|
2151
|
+
redirectURLs: {
|
|
2152
|
+
label: "Redirect URLs",
|
|
2153
|
+
helpText: "One URL per line. Must use https:// in production."
|
|
2154
|
+
},
|
|
2155
|
+
type: {
|
|
2156
|
+
label: "Application Type",
|
|
2157
|
+
options: {
|
|
2158
|
+
web: "Web",
|
|
2159
|
+
native: "Native",
|
|
2160
|
+
"user-agent-based": "User-agent based",
|
|
2161
|
+
public: "Public"
|
|
2162
|
+
}
|
|
2163
|
+
}
|
|
2164
|
+
}
|
|
2022
2165
|
},
|
|
2023
2166
|
rotate_client_secret: {
|
|
2024
2167
|
label: "Rotate Client Secret",
|
|
@@ -2063,6 +2206,18 @@ var enObjects = {
|
|
|
2063
2206
|
label: "Reference ID",
|
|
2064
2207
|
help: "Caller-supplied correlation identifier"
|
|
2065
2208
|
},
|
|
2209
|
+
authorization_code_id: {
|
|
2210
|
+
label: "Authorization Code ID",
|
|
2211
|
+
help: "ID of the authorization-code grant this token originates from"
|
|
2212
|
+
},
|
|
2213
|
+
resources: {
|
|
2214
|
+
label: "Resources",
|
|
2215
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
2216
|
+
},
|
|
2217
|
+
requested_user_info_claims: {
|
|
2218
|
+
label: "Requested UserInfo Claims",
|
|
2219
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
2220
|
+
},
|
|
2066
2221
|
scopes: {
|
|
2067
2222
|
label: "Scopes",
|
|
2068
2223
|
help: "JSON-serialized list of scopes granted to this token"
|
|
@@ -2072,6 +2227,14 @@ var enObjects = {
|
|
|
2072
2227
|
},
|
|
2073
2228
|
created_at: {
|
|
2074
2229
|
label: "Created At"
|
|
2230
|
+
},
|
|
2231
|
+
revoked: {
|
|
2232
|
+
label: "Revoked At",
|
|
2233
|
+
help: "Timestamp at which this access token was revoked"
|
|
2234
|
+
},
|
|
2235
|
+
confirmation: {
|
|
2236
|
+
label: "Confirmation",
|
|
2237
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
2075
2238
|
}
|
|
2076
2239
|
}
|
|
2077
2240
|
},
|
|
@@ -2103,6 +2266,18 @@ var enObjects = {
|
|
|
2103
2266
|
label: "Reference ID",
|
|
2104
2267
|
help: "Caller-supplied correlation identifier"
|
|
2105
2268
|
},
|
|
2269
|
+
authorization_code_id: {
|
|
2270
|
+
label: "Authorization Code ID",
|
|
2271
|
+
help: "ID of the authorization-code grant this token chain originates from"
|
|
2272
|
+
},
|
|
2273
|
+
resources: {
|
|
2274
|
+
label: "Resources",
|
|
2275
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
2276
|
+
},
|
|
2277
|
+
requested_user_info_claims: {
|
|
2278
|
+
label: "Requested UserInfo Claims",
|
|
2279
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
2280
|
+
},
|
|
2106
2281
|
scopes: {
|
|
2107
2282
|
label: "Scopes",
|
|
2108
2283
|
help: "JSON-serialized list of scopes granted to this token"
|
|
@@ -2117,9 +2292,25 @@ var enObjects = {
|
|
|
2117
2292
|
label: "Revoked At",
|
|
2118
2293
|
help: "Timestamp at which this refresh token was revoked"
|
|
2119
2294
|
},
|
|
2295
|
+
rotated_at: {
|
|
2296
|
+
label: "Rotated At",
|
|
2297
|
+
help: "Timestamp at which this token was rotated (superseded by a new row)"
|
|
2298
|
+
},
|
|
2299
|
+
rotation_replay_response: {
|
|
2300
|
+
label: "Rotation Replay Response",
|
|
2301
|
+
help: "Cached token response replayed when the old token is re-presented within the reuse interval"
|
|
2302
|
+
},
|
|
2303
|
+
rotation_replay_expires_at: {
|
|
2304
|
+
label: "Rotation Replay Expires At",
|
|
2305
|
+
help: "End of the post-rotation reuse interval during which the replay response is served"
|
|
2306
|
+
},
|
|
2120
2307
|
auth_time: {
|
|
2121
2308
|
label: "Auth Time",
|
|
2122
2309
|
help: "When the user originally authenticated for this token chain"
|
|
2310
|
+
},
|
|
2311
|
+
confirmation: {
|
|
2312
|
+
label: "Confirmation",
|
|
2313
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
2123
2314
|
}
|
|
2124
2315
|
}
|
|
2125
2316
|
},
|
|
@@ -2143,6 +2334,14 @@ var enObjects = {
|
|
|
2143
2334
|
label: "Reference ID",
|
|
2144
2335
|
help: "Caller-supplied correlation identifier"
|
|
2145
2336
|
},
|
|
2337
|
+
resources: {
|
|
2338
|
+
label: "Resources",
|
|
2339
|
+
help: "JSON-serialized list of RFC 8707 resource indicators the consent covers"
|
|
2340
|
+
},
|
|
2341
|
+
requested_user_info_claims: {
|
|
2342
|
+
label: "Requested UserInfo Claims",
|
|
2343
|
+
help: "JSON-serialized list of OIDC claims the user consented to expose"
|
|
2344
|
+
},
|
|
2146
2345
|
scopes: {
|
|
2147
2346
|
label: "Scopes",
|
|
2148
2347
|
help: "JSON-serialized list of scopes the user consented to"
|
|
@@ -2155,6 +2354,107 @@ var enObjects = {
|
|
|
2155
2354
|
}
|
|
2156
2355
|
}
|
|
2157
2356
|
},
|
|
2357
|
+
sys_oauth_resource: {
|
|
2358
|
+
label: "OAuth Resource",
|
|
2359
|
+
pluralLabel: "OAuth Resources",
|
|
2360
|
+
description: "Registered OAuth protected resources (RFC 8707 resource indicators)",
|
|
2361
|
+
fields: {
|
|
2362
|
+
id: {
|
|
2363
|
+
label: "ID"
|
|
2364
|
+
},
|
|
2365
|
+
identifier: {
|
|
2366
|
+
label: "Identifier",
|
|
2367
|
+
help: "Resource indicator URI presented in the RFC 8707 resource parameter"
|
|
2368
|
+
},
|
|
2369
|
+
name: {
|
|
2370
|
+
label: "Name"
|
|
2371
|
+
},
|
|
2372
|
+
access_token_ttl: {
|
|
2373
|
+
label: "Access Token TTL",
|
|
2374
|
+
help: "Access-token lifetime in seconds for this resource (overrides the server default)"
|
|
2375
|
+
},
|
|
2376
|
+
refresh_token_ttl: {
|
|
2377
|
+
label: "Refresh Token TTL",
|
|
2378
|
+
help: "Refresh-token lifetime in seconds for this resource (overrides the server default)"
|
|
2379
|
+
},
|
|
2380
|
+
signing_algorithm: {
|
|
2381
|
+
label: "Signing Algorithm",
|
|
2382
|
+
help: "JWS algorithm used to sign access tokens for this resource"
|
|
2383
|
+
},
|
|
2384
|
+
signing_key_id: {
|
|
2385
|
+
label: "Signing Key ID",
|
|
2386
|
+
help: "Key id (kid) used to sign access tokens for this resource"
|
|
2387
|
+
},
|
|
2388
|
+
allowed_scopes: {
|
|
2389
|
+
label: "Allowed Scopes",
|
|
2390
|
+
help: "JSON-serialized list of scopes clients may request for this resource"
|
|
2391
|
+
},
|
|
2392
|
+
custom_claims: {
|
|
2393
|
+
label: "Custom Claims",
|
|
2394
|
+
help: "JSON object of extra claims stamped on access tokens for this resource"
|
|
2395
|
+
},
|
|
2396
|
+
dpop_bound_access_tokens_required: {
|
|
2397
|
+
label: "DPoP Required",
|
|
2398
|
+
help: "Require access tokens for this resource to be DPoP-bound (RFC 9449)"
|
|
2399
|
+
},
|
|
2400
|
+
disabled: {
|
|
2401
|
+
label: "Disabled"
|
|
2402
|
+
},
|
|
2403
|
+
policy_version: {
|
|
2404
|
+
label: "Policy Version",
|
|
2405
|
+
help: "Monotonic version of the resource token policy"
|
|
2406
|
+
},
|
|
2407
|
+
metadata: {
|
|
2408
|
+
label: "Metadata",
|
|
2409
|
+
help: "JSON object of additional resource metadata"
|
|
2410
|
+
},
|
|
2411
|
+
created_at: {
|
|
2412
|
+
label: "Created At"
|
|
2413
|
+
},
|
|
2414
|
+
updated_at: {
|
|
2415
|
+
label: "Updated At"
|
|
2416
|
+
}
|
|
2417
|
+
}
|
|
2418
|
+
},
|
|
2419
|
+
sys_oauth_client_resource: {
|
|
2420
|
+
label: "OAuth Client Resource",
|
|
2421
|
+
pluralLabel: "OAuth Client Resources",
|
|
2422
|
+
description: "Grants allowing an OAuth client to request tokens for a protected resource",
|
|
2423
|
+
fields: {
|
|
2424
|
+
id: {
|
|
2425
|
+
label: "ID"
|
|
2426
|
+
},
|
|
2427
|
+
client_id: {
|
|
2428
|
+
label: "Client ID",
|
|
2429
|
+
help: "Foreign key to sys_oauth_application.client_id"
|
|
2430
|
+
},
|
|
2431
|
+
resource_id: {
|
|
2432
|
+
label: "Resource ID",
|
|
2433
|
+
help: "Foreign key to sys_oauth_resource.identifier"
|
|
2434
|
+
},
|
|
2435
|
+
metadata: {
|
|
2436
|
+
label: "Metadata",
|
|
2437
|
+
help: "JSON object of additional grant metadata"
|
|
2438
|
+
},
|
|
2439
|
+
created_at: {
|
|
2440
|
+
label: "Created At"
|
|
2441
|
+
}
|
|
2442
|
+
}
|
|
2443
|
+
},
|
|
2444
|
+
sys_oauth_client_assertion: {
|
|
2445
|
+
label: "OAuth Client Assertion",
|
|
2446
|
+
pluralLabel: "OAuth Client Assertions",
|
|
2447
|
+
description: "Consumed OAuth client-assertion JTIs (RFC 7523 replay prevention)",
|
|
2448
|
+
fields: {
|
|
2449
|
+
id: {
|
|
2450
|
+
label: "ID"
|
|
2451
|
+
},
|
|
2452
|
+
expires_at: {
|
|
2453
|
+
label: "Expires At",
|
|
2454
|
+
help: "Assertion expiry \u2014 rows past this instant are safe to prune"
|
|
2455
|
+
}
|
|
2456
|
+
}
|
|
2457
|
+
},
|
|
2158
2458
|
sys_jwks: {
|
|
2159
2459
|
label: "JWKS Key",
|
|
2160
2460
|
pluralLabel: "JWKS Keys",
|
|
@@ -2172,6 +2472,14 @@ var enObjects = {
|
|
|
2172
2472
|
label: "Private Key",
|
|
2173
2473
|
help: "JSON-serialized JWK private key (encrypted at rest)"
|
|
2174
2474
|
},
|
|
2475
|
+
alg: {
|
|
2476
|
+
label: "Algorithm",
|
|
2477
|
+
help: "JWK signing algorithm, e.g. `EdDSA` (better-auth 1.7+)"
|
|
2478
|
+
},
|
|
2479
|
+
crv: {
|
|
2480
|
+
label: "Curve",
|
|
2481
|
+
help: "JWK curve for EdDSA/EC keys, e.g. `Ed25519` (better-auth 1.7+)"
|
|
2482
|
+
},
|
|
2175
2483
|
created_at: {
|
|
2176
2484
|
label: "Created At"
|
|
2177
2485
|
},
|
|
@@ -2228,7 +2536,11 @@ var enObjects = {
|
|
|
2228
2536
|
},
|
|
2229
2537
|
_views: {
|
|
2230
2538
|
recent: {
|
|
2231
|
-
label: "Recent"
|
|
2539
|
+
label: "Recent",
|
|
2540
|
+
emptyState: {
|
|
2541
|
+
title: "No events",
|
|
2542
|
+
message: "No notification events have been emitted."
|
|
2543
|
+
}
|
|
2232
2544
|
},
|
|
2233
2545
|
by_topic: {
|
|
2234
2546
|
label: "By Topic"
|
|
@@ -2265,23 +2577,6 @@ var enObjects = {
|
|
|
2265
2577
|
size: {
|
|
2266
2578
|
label: "Size (bytes)"
|
|
2267
2579
|
},
|
|
2268
|
-
share_type: {
|
|
2269
|
-
label: "Share Type",
|
|
2270
|
-
help: "viewer | collaborator | inferred (inherited from parent record)",
|
|
2271
|
-
options: {
|
|
2272
|
-
viewer: "viewer",
|
|
2273
|
-
collaborator: "collaborator",
|
|
2274
|
-
inferred: "inferred"
|
|
2275
|
-
}
|
|
2276
|
-
},
|
|
2277
|
-
visibility: {
|
|
2278
|
-
label: "Visibility",
|
|
2279
|
-
options: {
|
|
2280
|
-
internal: "internal",
|
|
2281
|
-
all_users: "all_users",
|
|
2282
|
-
shared_users: "shared_users"
|
|
2283
|
-
}
|
|
2284
|
-
},
|
|
2285
2580
|
uploaded_by: {
|
|
2286
2581
|
label: "Uploaded By"
|
|
2287
2582
|
},
|
|
@@ -3588,7 +3883,12 @@ var zhCNObjects = {
|
|
|
3588
3883
|
ban_user: {
|
|
3589
3884
|
label: "\u5C01\u7981\u7528\u6237",
|
|
3590
3885
|
confirmText: "\u8981\u5C01\u7981\u8BE5\u7528\u6237\u5417\uFF1F\u5C01\u7981\u540E\u4F1A\u7ACB\u5373\u767B\u51FA\uFF0C\u4E14\u5728\u89E3\u9664\u5C01\u7981\u524D\u65E0\u6CD5\u518D\u6B21\u767B\u5F55\u3002",
|
|
3591
|
-
successMessage: "\u7528\u6237\u5DF2\u5C01\u7981"
|
|
3886
|
+
successMessage: "\u7528\u6237\u5DF2\u5C01\u7981",
|
|
3887
|
+
params: {
|
|
3888
|
+
banReason: {
|
|
3889
|
+
label: "\u5C01\u7981\u539F\u56E0"
|
|
3890
|
+
}
|
|
3891
|
+
}
|
|
3592
3892
|
},
|
|
3593
3893
|
unban_user: {
|
|
3594
3894
|
label: "\u89E3\u9664\u5C01\u7981",
|
|
@@ -3600,15 +3900,46 @@ var zhCNObjects = {
|
|
|
3600
3900
|
},
|
|
3601
3901
|
create_user: {
|
|
3602
3902
|
label: "\u521B\u5EFA\u7528\u6237",
|
|
3603
|
-
successMessage: "\u7528\u6237\u5DF2\u521B\u5EFA"
|
|
3903
|
+
successMessage: "\u7528\u6237\u5DF2\u521B\u5EFA",
|
|
3904
|
+
params: {
|
|
3905
|
+
phoneNumber: {
|
|
3906
|
+
label: "\u624B\u673A\u53F7",
|
|
3907
|
+
helpText: "\u767B\u5F55\u624B\u673A\u53F7\uFF08E.164 \u683C\u5F0F\uFF0C\u5982 +8613800000000\uFF09\u3002\u672A\u586B\u5199\u90AE\u7BB1\u65F6\u5FC5\u586B\u3002"
|
|
3908
|
+
},
|
|
3909
|
+
generatePassword: {
|
|
3910
|
+
label: "\u751F\u6210\u4E34\u65F6\u5BC6\u7801"
|
|
3911
|
+
},
|
|
3912
|
+
password: {
|
|
3913
|
+
label: "\u5BC6\u7801\uFF08\u7559\u7A7A\u5219\u81EA\u52A8\u751F\u6210\uFF09"
|
|
3914
|
+
},
|
|
3915
|
+
mustChangePassword: {
|
|
3916
|
+
label: "\u9996\u6B21\u767B\u5F55\u65F6\u5FC5\u987B\u4FEE\u6539\u5BC6\u7801"
|
|
3917
|
+
}
|
|
3918
|
+
}
|
|
3604
3919
|
},
|
|
3605
3920
|
set_user_password: {
|
|
3606
3921
|
label: "\u8BBE\u7F6E\u5BC6\u7801",
|
|
3607
|
-
successMessage: "\u5BC6\u7801\u5DF2\u66F4\u65B0"
|
|
3922
|
+
successMessage: "\u5BC6\u7801\u5DF2\u66F4\u65B0",
|
|
3923
|
+
params: {
|
|
3924
|
+
generatePassword: {
|
|
3925
|
+
label: "\u751F\u6210\u4E34\u65F6\u5BC6\u7801"
|
|
3926
|
+
},
|
|
3927
|
+
newPassword: {
|
|
3928
|
+
label: "\u65B0\u5BC6\u7801\uFF08\u7559\u7A7A\u5219\u81EA\u52A8\u751F\u6210\uFF09"
|
|
3929
|
+
},
|
|
3930
|
+
mustChangePassword: {
|
|
3931
|
+
label: "\u4E0B\u6B21\u767B\u5F55\u65F6\u5FC5\u987B\u4FEE\u6539\u5BC6\u7801"
|
|
3932
|
+
}
|
|
3933
|
+
}
|
|
3608
3934
|
},
|
|
3609
3935
|
set_user_role: {
|
|
3610
3936
|
label: "\u8BBE\u7F6E\u5E73\u53F0\u89D2\u8272",
|
|
3611
|
-
successMessage: "\u89D2\u8272\u5DF2\u66F4\u65B0"
|
|
3937
|
+
successMessage: "\u89D2\u8272\u5DF2\u66F4\u65B0",
|
|
3938
|
+
params: {
|
|
3939
|
+
role: {
|
|
3940
|
+
label: "\u5E73\u53F0\u89D2\u8272"
|
|
3941
|
+
}
|
|
3942
|
+
}
|
|
3612
3943
|
},
|
|
3613
3944
|
impersonate_user: {
|
|
3614
3945
|
label: "\u6A21\u62DF\u7528\u6237",
|
|
@@ -3621,11 +3952,27 @@ var zhCNObjects = {
|
|
|
3621
3952
|
},
|
|
3622
3953
|
change_my_password: {
|
|
3623
3954
|
label: "\u4FEE\u6539\u5BC6\u7801",
|
|
3624
|
-
successMessage: "\u5DF2\u4FEE\u6539\u5BC6\u7801"
|
|
3955
|
+
successMessage: "\u5DF2\u4FEE\u6539\u5BC6\u7801",
|
|
3956
|
+
params: {
|
|
3957
|
+
currentPassword: {
|
|
3958
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3959
|
+
},
|
|
3960
|
+
newPassword: {
|
|
3961
|
+
label: "\u65B0\u5BC6\u7801"
|
|
3962
|
+
},
|
|
3963
|
+
revokeOtherSessions: {
|
|
3964
|
+
label: "\u767B\u51FA\u5176\u4ED6\u8BBE\u5907"
|
|
3965
|
+
}
|
|
3966
|
+
}
|
|
3625
3967
|
},
|
|
3626
3968
|
change_my_email: {
|
|
3627
3969
|
label: "\u4FEE\u6539\u90AE\u7BB1",
|
|
3628
|
-
successMessage: "\u5DF2\u53D1\u9001\u9A8C\u8BC1\u90AE\u4EF6\uFF0C\u8BF7\u524D\u5F80\u65B0\u90AE\u7BB1\u786E\u8BA4\u3002"
|
|
3970
|
+
successMessage: "\u5DF2\u53D1\u9001\u9A8C\u8BC1\u90AE\u4EF6\uFF0C\u8BF7\u524D\u5F80\u65B0\u90AE\u7BB1\u786E\u8BA4\u3002",
|
|
3971
|
+
params: {
|
|
3972
|
+
newEmail: {
|
|
3973
|
+
label: "\u65B0\u90AE\u7BB1"
|
|
3974
|
+
}
|
|
3975
|
+
}
|
|
3629
3976
|
},
|
|
3630
3977
|
resend_verification_email: {
|
|
3631
3978
|
label: "\u91CD\u53D1\u9A8C\u8BC1\u90AE\u4EF6",
|
|
@@ -3634,21 +3981,41 @@ var zhCNObjects = {
|
|
|
3634
3981
|
delete_my_account: {
|
|
3635
3982
|
label: "\u5220\u9664\u6211\u7684\u8D26\u53F7",
|
|
3636
3983
|
confirmText: "\u786E\u5B9A\u8981\u6C38\u4E45\u5220\u9664\u60A8\u7684\u8D26\u6237\u5417\uFF1F\u6B64\u64CD\u4F5C\u65E0\u6CD5\u64A4\u9500\u2014\u2014\u60A8\u7684\u6240\u6709\u4F1A\u8BDD\u90FD\u5C06\u88AB\u7EC8\u6B62\uFF0C\u5E76\u5C06\u6309\u7167\u914D\u7F6E\u7684\u4FDD\u7559\u7B56\u7565\u79FB\u9664\u60A8\u62E5\u6709\u7684\u6240\u6709\u6570\u636E\u3002",
|
|
3637
|
-
successMessage: "\u5DF2\u5220\u9664\u8D26\u53F7"
|
|
3984
|
+
successMessage: "\u5DF2\u5220\u9664\u8D26\u53F7",
|
|
3985
|
+
params: {
|
|
3986
|
+
password: {
|
|
3987
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3988
|
+
}
|
|
3989
|
+
}
|
|
3638
3990
|
},
|
|
3639
3991
|
enable_two_factor: {
|
|
3640
3992
|
label: "\u542F\u7528\u53CC\u56E0\u7D20\u8BA4\u8BC1",
|
|
3641
|
-
successMessage: "\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5DF2\u542F\u7528\u3002\u7528\u8EAB\u4EFD\u9A8C\u8BC1\u5668 App \u626B\u63CF\u4E8C\u7EF4\u7801\u6216\u7C98\u8D34 otpauth URI\uFF0C\u7136\u540E\u9A8C\u8BC1\u4E00\u6B21\u52A8\u6001\u7801\u4EE5\u5B8C\u6210\u8BBE\u7F6E\u3002"
|
|
3993
|
+
successMessage: "\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5DF2\u542F\u7528\u3002\u7528\u8EAB\u4EFD\u9A8C\u8BC1\u5668 App \u626B\u63CF\u4E8C\u7EF4\u7801\u6216\u7C98\u8D34 otpauth URI\uFF0C\u7136\u540E\u9A8C\u8BC1\u4E00\u6B21\u52A8\u6001\u7801\u4EE5\u5B8C\u6210\u8BBE\u7F6E\u3002",
|
|
3994
|
+
params: {
|
|
3995
|
+
password: {
|
|
3996
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3997
|
+
}
|
|
3998
|
+
}
|
|
3642
3999
|
},
|
|
3643
4000
|
disable_two_factor: {
|
|
3644
4001
|
label: "\u505C\u7528\u53CC\u56E0\u7D20\u8BA4\u8BC1",
|
|
3645
4002
|
confirmText: "\u8981\u5173\u95ED\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5417\uFF1F\u60A8\u7684\u8D26\u6237\u5B89\u5168\u6027\u5C06\u964D\u4F4E\u3002",
|
|
3646
|
-
successMessage: "\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5DF2\u505C\u7528\u3002"
|
|
4003
|
+
successMessage: "\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5DF2\u505C\u7528\u3002",
|
|
4004
|
+
params: {
|
|
4005
|
+
password: {
|
|
4006
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
4007
|
+
}
|
|
4008
|
+
}
|
|
3647
4009
|
},
|
|
3648
4010
|
generate_backup_codes: {
|
|
3649
4011
|
label: "\u91CD\u65B0\u751F\u6210\u5907\u7528\u7801",
|
|
3650
4012
|
confirmText: "\u8981\u751F\u6210\u4E00\u7EC4\u65B0\u7684\u5907\u7528\u7801\u5417\uFF1F\u4E4B\u524D\u751F\u6210\u7684\u5907\u7528\u7801\u5C06\u5168\u90E8\u5931\u6548\u3002",
|
|
3651
|
-
successMessage: "\u65B0\u5907\u7528\u7801\u5DF2\u751F\u6210\u2014\u2014\u8BF7\u59A5\u5584\u4FDD\u5B58\u3002"
|
|
4013
|
+
successMessage: "\u65B0\u5907\u7528\u7801\u5DF2\u751F\u6210\u2014\u2014\u8BF7\u59A5\u5584\u4FDD\u5B58\u3002",
|
|
4014
|
+
params: {
|
|
4015
|
+
password: {
|
|
4016
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
4017
|
+
}
|
|
4018
|
+
}
|
|
3652
4019
|
}
|
|
3653
4020
|
}
|
|
3654
4021
|
},
|
|
@@ -3792,7 +4159,21 @@ var zhCNObjects = {
|
|
|
3792
4159
|
},
|
|
3793
4160
|
_actions: {
|
|
3794
4161
|
link_social: {
|
|
3795
|
-
label: "\u5173\u8054\u793E\u4EA4\u8D26\u53F7"
|
|
4162
|
+
label: "\u5173\u8054\u793E\u4EA4\u8D26\u53F7",
|
|
4163
|
+
params: {
|
|
4164
|
+
provider: {
|
|
4165
|
+
label: "\u670D\u52A1\u63D0\u4F9B\u5546",
|
|
4166
|
+
options: {
|
|
4167
|
+
google: "Google",
|
|
4168
|
+
github: "GitHub",
|
|
4169
|
+
microsoft: "Microsoft",
|
|
4170
|
+
apple: "Apple",
|
|
4171
|
+
facebook: "Facebook",
|
|
4172
|
+
gitlab: "GitLab",
|
|
4173
|
+
discord: "Discord"
|
|
4174
|
+
}
|
|
4175
|
+
}
|
|
4176
|
+
}
|
|
3796
4177
|
},
|
|
3797
4178
|
unlink_account: {
|
|
3798
4179
|
label: "\u89E3\u9664\u5173\u8054",
|
|
@@ -3925,7 +4306,11 @@ var zhCNObjects = {
|
|
|
3925
4306
|
},
|
|
3926
4307
|
_views: {
|
|
3927
4308
|
mine: {
|
|
3928
|
-
label: "My Memberships"
|
|
4309
|
+
label: "My Memberships",
|
|
4310
|
+
emptyState: {
|
|
4311
|
+
title: "No organizations yet",
|
|
4312
|
+
message: "You haven't joined any organizations."
|
|
4313
|
+
}
|
|
3929
4314
|
}
|
|
3930
4315
|
},
|
|
3931
4316
|
_actions: {
|
|
@@ -4345,16 +4730,31 @@ var zhCNObjects = {
|
|
|
4345
4730
|
},
|
|
4346
4731
|
_actions: {
|
|
4347
4732
|
enable_two_factor: {
|
|
4348
|
-
label: "\u542F\u7528 2FA"
|
|
4733
|
+
label: "\u542F\u7528 2FA",
|
|
4734
|
+
params: {
|
|
4735
|
+
password: {
|
|
4736
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
4737
|
+
}
|
|
4738
|
+
}
|
|
4349
4739
|
},
|
|
4350
4740
|
disable_two_factor: {
|
|
4351
4741
|
label: "\u505C\u7528 2FA",
|
|
4352
4742
|
confirmText: "\u8981\u505C\u7528\u4F60\u8D26\u53F7\u4E0A\u7684\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5417\uFF1F",
|
|
4353
|
-
successMessage: "2FA \u5DF2\u505C\u7528"
|
|
4743
|
+
successMessage: "2FA \u5DF2\u505C\u7528",
|
|
4744
|
+
params: {
|
|
4745
|
+
password: {
|
|
4746
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
4747
|
+
}
|
|
4748
|
+
}
|
|
4354
4749
|
},
|
|
4355
4750
|
regenerate_backup_codes: {
|
|
4356
4751
|
label: "\u91CD\u65B0\u751F\u6210\u5907\u7528\u7801",
|
|
4357
|
-
confirmText: "\u786E\u5B9A\u8981\u91CD\u65B0\u751F\u6210\u5907\u4EFD\u7801\u5417\uFF1F\u6B64\u524D\u7684\u6240\u6709\u5907\u4EFD\u7801\u5C06\u7ACB\u5373\u5931\u6548\u3002"
|
|
4752
|
+
confirmText: "\u786E\u5B9A\u8981\u91CD\u65B0\u751F\u6210\u5907\u4EFD\u7801\u5417\uFF1F\u6B64\u524D\u7684\u6240\u6709\u5907\u4EFD\u7801\u5C06\u7ACB\u5373\u5931\u6548\u3002",
|
|
4753
|
+
params: {
|
|
4754
|
+
password: {
|
|
4755
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
4756
|
+
}
|
|
4757
|
+
}
|
|
4358
4758
|
}
|
|
4359
4759
|
}
|
|
4360
4760
|
},
|
|
@@ -4534,6 +4934,18 @@ var zhCNObjects = {
|
|
|
4534
4934
|
label: "\u4E3B\u4F53\u7C7B\u578B",
|
|
4535
4935
|
help: "OIDC \u4E3B\u4F53\u7C7B\u578B\uFF08\u4F8B\u5982 public\u3001pairwise\uFF09"
|
|
4536
4936
|
},
|
|
4937
|
+
jwks: {
|
|
4938
|
+
label: "JWKS",
|
|
4939
|
+
help: "Client JSON Web Key Set (for private_key_jwt / signed-request verification)"
|
|
4940
|
+
},
|
|
4941
|
+
jwks_uri: {
|
|
4942
|
+
label: "JWKS URI",
|
|
4943
|
+
help: "URL of the client JSON Web Key Set"
|
|
4944
|
+
},
|
|
4945
|
+
dpop_bound_access_tokens: {
|
|
4946
|
+
label: "DPoP-bound Access Tokens",
|
|
4947
|
+
help: "Require access tokens issued to this client to be DPoP-bound (RFC 9449)"
|
|
4948
|
+
},
|
|
4537
4949
|
disabled: {
|
|
4538
4950
|
label: "\u5DF2\u7981\u7528"
|
|
4539
4951
|
},
|
|
@@ -4545,6 +4957,14 @@ var zhCNObjects = {
|
|
|
4545
4957
|
label: "\u542F\u7528 End Session",
|
|
4546
4958
|
help: "\u5141\u8BB8\u5BA2\u6237\u7AEF\u8C03\u7528 OIDC end-session \u7AEF\u70B9"
|
|
4547
4959
|
},
|
|
4960
|
+
backchannel_logout_uri: {
|
|
4961
|
+
label: "Back-channel Logout URI",
|
|
4962
|
+
help: "OIDC back-channel logout endpoint of the client"
|
|
4963
|
+
},
|
|
4964
|
+
backchannel_logout_session_required: {
|
|
4965
|
+
label: "Back-channel Logout Session Required",
|
|
4966
|
+
help: "Whether the back-channel logout token must include a sid claim"
|
|
4967
|
+
},
|
|
4548
4968
|
software_id: {
|
|
4549
4969
|
label: "\u8F6F\u4EF6 ID"
|
|
4550
4970
|
},
|
|
@@ -4596,7 +5016,25 @@ var zhCNObjects = {
|
|
|
4596
5016
|
successMessage: "OAuth \u5E94\u7528\u5DF2\u542F\u7528"
|
|
4597
5017
|
},
|
|
4598
5018
|
create_oauth_application: {
|
|
4599
|
-
label: "\u6CE8\u518C OAuth \u5E94\u7528"
|
|
5019
|
+
label: "\u6CE8\u518C OAuth \u5E94\u7528",
|
|
5020
|
+
params: {
|
|
5021
|
+
name: {
|
|
5022
|
+
label: "\u5E94\u7528\u540D\u79F0"
|
|
5023
|
+
},
|
|
5024
|
+
redirectURLs: {
|
|
5025
|
+
label: "\u56DE\u8C03 URL",
|
|
5026
|
+
helpText: "\u6BCF\u884C\u4E00\u4E2A URL\u3002\u751F\u4EA7\u73AF\u5883\u5FC5\u987B\u4F7F\u7528 https://\u3002"
|
|
5027
|
+
},
|
|
5028
|
+
type: {
|
|
5029
|
+
label: "\u5E94\u7528\u7C7B\u578B",
|
|
5030
|
+
options: {
|
|
5031
|
+
web: "Web",
|
|
5032
|
+
native: "\u539F\u751F\u5E94\u7528",
|
|
5033
|
+
"user-agent-based": "\u57FA\u4E8E User-Agent",
|
|
5034
|
+
public: "\u516C\u5171\u5BA2\u6237\u7AEF"
|
|
5035
|
+
}
|
|
5036
|
+
}
|
|
5037
|
+
}
|
|
4600
5038
|
},
|
|
4601
5039
|
rotate_client_secret: {
|
|
4602
5040
|
label: "\u8F6E\u6362 Client Secret",
|
|
@@ -4641,6 +5079,18 @@ var zhCNObjects = {
|
|
|
4641
5079
|
label: "\u5F15\u7528 ID",
|
|
4642
5080
|
help: "\u8C03\u7528\u65B9\u63D0\u4F9B\u7684\u5173\u8054\u6807\u8BC6\u7B26"
|
|
4643
5081
|
},
|
|
5082
|
+
authorization_code_id: {
|
|
5083
|
+
label: "Authorization Code ID",
|
|
5084
|
+
help: "ID of the authorization-code grant this token originates from"
|
|
5085
|
+
},
|
|
5086
|
+
resources: {
|
|
5087
|
+
label: "Resources",
|
|
5088
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
5089
|
+
},
|
|
5090
|
+
requested_user_info_claims: {
|
|
5091
|
+
label: "Requested UserInfo Claims",
|
|
5092
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
5093
|
+
},
|
|
4644
5094
|
scopes: {
|
|
4645
5095
|
label: "\u8303\u56F4",
|
|
4646
5096
|
help: "\u6388\u4E88\u8BE5\u4EE4\u724C\u7684 scopes \u7684 JSON \u5E8F\u5217\u5316\u5217\u8868"
|
|
@@ -4650,6 +5100,14 @@ var zhCNObjects = {
|
|
|
4650
5100
|
},
|
|
4651
5101
|
created_at: {
|
|
4652
5102
|
label: "\u521B\u5EFA\u65F6\u95F4"
|
|
5103
|
+
},
|
|
5104
|
+
revoked: {
|
|
5105
|
+
label: "Revoked At",
|
|
5106
|
+
help: "Timestamp at which this access token was revoked"
|
|
5107
|
+
},
|
|
5108
|
+
confirmation: {
|
|
5109
|
+
label: "Confirmation",
|
|
5110
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
4653
5111
|
}
|
|
4654
5112
|
}
|
|
4655
5113
|
},
|
|
@@ -4681,6 +5139,18 @@ var zhCNObjects = {
|
|
|
4681
5139
|
label: "\u5F15\u7528 ID",
|
|
4682
5140
|
help: "\u8C03\u7528\u65B9\u63D0\u4F9B\u7684\u5173\u8054\u6807\u8BC6\u7B26"
|
|
4683
5141
|
},
|
|
5142
|
+
authorization_code_id: {
|
|
5143
|
+
label: "Authorization Code ID",
|
|
5144
|
+
help: "ID of the authorization-code grant this token chain originates from"
|
|
5145
|
+
},
|
|
5146
|
+
resources: {
|
|
5147
|
+
label: "Resources",
|
|
5148
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
5149
|
+
},
|
|
5150
|
+
requested_user_info_claims: {
|
|
5151
|
+
label: "Requested UserInfo Claims",
|
|
5152
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
5153
|
+
},
|
|
4684
5154
|
scopes: {
|
|
4685
5155
|
label: "\u8303\u56F4",
|
|
4686
5156
|
help: "\u6388\u4E88\u8BE5\u4EE4\u724C\u7684 scopes \u7684 JSON \u5E8F\u5217\u5316\u5217\u8868"
|
|
@@ -4695,9 +5165,25 @@ var zhCNObjects = {
|
|
|
4695
5165
|
label: "\u64A4\u9500\u65F6\u95F4",
|
|
4696
5166
|
help: "\u8BE5\u5237\u65B0\u4EE4\u724C\u88AB\u64A4\u9500\u7684\u65F6\u95F4\u6233"
|
|
4697
5167
|
},
|
|
5168
|
+
rotated_at: {
|
|
5169
|
+
label: "Rotated At",
|
|
5170
|
+
help: "Timestamp at which this token was rotated (superseded by a new row)"
|
|
5171
|
+
},
|
|
5172
|
+
rotation_replay_response: {
|
|
5173
|
+
label: "Rotation Replay Response",
|
|
5174
|
+
help: "Cached token response replayed when the old token is re-presented within the reuse interval"
|
|
5175
|
+
},
|
|
5176
|
+
rotation_replay_expires_at: {
|
|
5177
|
+
label: "Rotation Replay Expires At",
|
|
5178
|
+
help: "End of the post-rotation reuse interval during which the replay response is served"
|
|
5179
|
+
},
|
|
4698
5180
|
auth_time: {
|
|
4699
5181
|
label: "\u8BA4\u8BC1\u65F6\u95F4",
|
|
4700
5182
|
help: "\u8BE5\u4EE4\u724C\u94FE\u4E2D\u7528\u6237\u6700\u521D\u5B8C\u6210\u8BA4\u8BC1\u7684\u65F6\u95F4"
|
|
5183
|
+
},
|
|
5184
|
+
confirmation: {
|
|
5185
|
+
label: "Confirmation",
|
|
5186
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
4701
5187
|
}
|
|
4702
5188
|
}
|
|
4703
5189
|
},
|
|
@@ -4721,6 +5207,14 @@ var zhCNObjects = {
|
|
|
4721
5207
|
label: "\u5F15\u7528 ID",
|
|
4722
5208
|
help: "\u8C03\u7528\u65B9\u63D0\u4F9B\u7684\u5173\u8054\u6807\u8BC6\u7B26"
|
|
4723
5209
|
},
|
|
5210
|
+
resources: {
|
|
5211
|
+
label: "Resources",
|
|
5212
|
+
help: "JSON-serialized list of RFC 8707 resource indicators the consent covers"
|
|
5213
|
+
},
|
|
5214
|
+
requested_user_info_claims: {
|
|
5215
|
+
label: "Requested UserInfo Claims",
|
|
5216
|
+
help: "JSON-serialized list of OIDC claims the user consented to expose"
|
|
5217
|
+
},
|
|
4724
5218
|
scopes: {
|
|
4725
5219
|
label: "\u8303\u56F4",
|
|
4726
5220
|
help: "\u7528\u6237\u540C\u610F\u7684 scopes \u7684 JSON \u5E8F\u5217\u5316\u5217\u8868"
|
|
@@ -4733,6 +5227,107 @@ var zhCNObjects = {
|
|
|
4733
5227
|
}
|
|
4734
5228
|
}
|
|
4735
5229
|
},
|
|
5230
|
+
sys_oauth_resource: {
|
|
5231
|
+
label: "OAuth Resource",
|
|
5232
|
+
pluralLabel: "OAuth Resources",
|
|
5233
|
+
description: "Registered OAuth protected resources (RFC 8707 resource indicators)",
|
|
5234
|
+
fields: {
|
|
5235
|
+
id: {
|
|
5236
|
+
label: "ID"
|
|
5237
|
+
},
|
|
5238
|
+
identifier: {
|
|
5239
|
+
label: "Identifier",
|
|
5240
|
+
help: "Resource indicator URI presented in the RFC 8707 resource parameter"
|
|
5241
|
+
},
|
|
5242
|
+
name: {
|
|
5243
|
+
label: "Name"
|
|
5244
|
+
},
|
|
5245
|
+
access_token_ttl: {
|
|
5246
|
+
label: "Access Token TTL",
|
|
5247
|
+
help: "Access-token lifetime in seconds for this resource (overrides the server default)"
|
|
5248
|
+
},
|
|
5249
|
+
refresh_token_ttl: {
|
|
5250
|
+
label: "Refresh Token TTL",
|
|
5251
|
+
help: "Refresh-token lifetime in seconds for this resource (overrides the server default)"
|
|
5252
|
+
},
|
|
5253
|
+
signing_algorithm: {
|
|
5254
|
+
label: "Signing Algorithm",
|
|
5255
|
+
help: "JWS algorithm used to sign access tokens for this resource"
|
|
5256
|
+
},
|
|
5257
|
+
signing_key_id: {
|
|
5258
|
+
label: "Signing Key ID",
|
|
5259
|
+
help: "Key id (kid) used to sign access tokens for this resource"
|
|
5260
|
+
},
|
|
5261
|
+
allowed_scopes: {
|
|
5262
|
+
label: "Allowed Scopes",
|
|
5263
|
+
help: "JSON-serialized list of scopes clients may request for this resource"
|
|
5264
|
+
},
|
|
5265
|
+
custom_claims: {
|
|
5266
|
+
label: "Custom Claims",
|
|
5267
|
+
help: "JSON object of extra claims stamped on access tokens for this resource"
|
|
5268
|
+
},
|
|
5269
|
+
dpop_bound_access_tokens_required: {
|
|
5270
|
+
label: "DPoP Required",
|
|
5271
|
+
help: "Require access tokens for this resource to be DPoP-bound (RFC 9449)"
|
|
5272
|
+
},
|
|
5273
|
+
disabled: {
|
|
5274
|
+
label: "Disabled"
|
|
5275
|
+
},
|
|
5276
|
+
policy_version: {
|
|
5277
|
+
label: "Policy Version",
|
|
5278
|
+
help: "Monotonic version of the resource token policy"
|
|
5279
|
+
},
|
|
5280
|
+
metadata: {
|
|
5281
|
+
label: "Metadata",
|
|
5282
|
+
help: "JSON object of additional resource metadata"
|
|
5283
|
+
},
|
|
5284
|
+
created_at: {
|
|
5285
|
+
label: "Created At"
|
|
5286
|
+
},
|
|
5287
|
+
updated_at: {
|
|
5288
|
+
label: "Updated At"
|
|
5289
|
+
}
|
|
5290
|
+
}
|
|
5291
|
+
},
|
|
5292
|
+
sys_oauth_client_resource: {
|
|
5293
|
+
label: "OAuth Client Resource",
|
|
5294
|
+
pluralLabel: "OAuth Client Resources",
|
|
5295
|
+
description: "Grants allowing an OAuth client to request tokens for a protected resource",
|
|
5296
|
+
fields: {
|
|
5297
|
+
id: {
|
|
5298
|
+
label: "ID"
|
|
5299
|
+
},
|
|
5300
|
+
client_id: {
|
|
5301
|
+
label: "Client ID",
|
|
5302
|
+
help: "Foreign key to sys_oauth_application.client_id"
|
|
5303
|
+
},
|
|
5304
|
+
resource_id: {
|
|
5305
|
+
label: "Resource ID",
|
|
5306
|
+
help: "Foreign key to sys_oauth_resource.identifier"
|
|
5307
|
+
},
|
|
5308
|
+
metadata: {
|
|
5309
|
+
label: "Metadata",
|
|
5310
|
+
help: "JSON object of additional grant metadata"
|
|
5311
|
+
},
|
|
5312
|
+
created_at: {
|
|
5313
|
+
label: "Created At"
|
|
5314
|
+
}
|
|
5315
|
+
}
|
|
5316
|
+
},
|
|
5317
|
+
sys_oauth_client_assertion: {
|
|
5318
|
+
label: "OAuth Client Assertion",
|
|
5319
|
+
pluralLabel: "OAuth Client Assertions",
|
|
5320
|
+
description: "Consumed OAuth client-assertion JTIs (RFC 7523 replay prevention)",
|
|
5321
|
+
fields: {
|
|
5322
|
+
id: {
|
|
5323
|
+
label: "ID"
|
|
5324
|
+
},
|
|
5325
|
+
expires_at: {
|
|
5326
|
+
label: "Expires At",
|
|
5327
|
+
help: "Assertion expiry \u2014 rows past this instant are safe to prune"
|
|
5328
|
+
}
|
|
5329
|
+
}
|
|
5330
|
+
},
|
|
4736
5331
|
sys_jwks: {
|
|
4737
5332
|
label: "\u7B7E\u540D\u5BC6\u94A5 (JWKS)",
|
|
4738
5333
|
pluralLabel: "\u7B7E\u540D\u5BC6\u94A5 (JWKS)",
|
|
@@ -4750,6 +5345,14 @@ var zhCNObjects = {
|
|
|
4750
5345
|
label: "\u79C1\u94A5",
|
|
4751
5346
|
help: "JWK \u79C1\u94A5\u7684 JSON \u5E8F\u5217\u5316\u5185\u5BB9\uFF08\u9759\u6001\u5B58\u50A8\u65F6\u52A0\u5BC6\uFF09"
|
|
4752
5347
|
},
|
|
5348
|
+
alg: {
|
|
5349
|
+
label: "\u7B97\u6CD5",
|
|
5350
|
+
help: "JWK \u7B7E\u540D\u7B97\u6CD5\uFF0C\u5982 `EdDSA`\uFF08better-auth 1.7+\uFF09"
|
|
5351
|
+
},
|
|
5352
|
+
crv: {
|
|
5353
|
+
label: "\u66F2\u7EBF",
|
|
5354
|
+
help: "EdDSA/EC \u5BC6\u94A5\u4F7F\u7528\u7684 JWK \u66F2\u7EBF\uFF0C\u5982 `Ed25519`\uFF08better-auth 1.7+\uFF09"
|
|
5355
|
+
},
|
|
4753
5356
|
created_at: {
|
|
4754
5357
|
label: "\u521B\u5EFA\u65F6\u95F4"
|
|
4755
5358
|
},
|
|
@@ -4806,7 +5409,11 @@ var zhCNObjects = {
|
|
|
4806
5409
|
},
|
|
4807
5410
|
_views: {
|
|
4808
5411
|
recent: {
|
|
4809
|
-
label: "Recent"
|
|
5412
|
+
label: "Recent",
|
|
5413
|
+
emptyState: {
|
|
5414
|
+
title: "No events",
|
|
5415
|
+
message: "No notification events have been emitted."
|
|
5416
|
+
}
|
|
4810
5417
|
},
|
|
4811
5418
|
by_topic: {
|
|
4812
5419
|
label: "By Topic"
|
|
@@ -4843,23 +5450,6 @@ var zhCNObjects = {
|
|
|
4843
5450
|
size: {
|
|
4844
5451
|
label: "\u5927\u5C0F\uFF08\u5B57\u8282\uFF09"
|
|
4845
5452
|
},
|
|
4846
|
-
share_type: {
|
|
4847
|
-
label: "\u5171\u4EAB\u7C7B\u578B",
|
|
4848
|
-
help: "viewer | collaborator | inferred\uFF08\u7EE7\u627F\u81EA\u7236\u8BB0\u5F55\uFF09",
|
|
4849
|
-
options: {
|
|
4850
|
-
viewer: "\u67E5\u770B\u8005",
|
|
4851
|
-
collaborator: "\u534F\u4F5C\u8005",
|
|
4852
|
-
inferred: "\u63A8\u65AD"
|
|
4853
|
-
}
|
|
4854
|
-
},
|
|
4855
|
-
visibility: {
|
|
4856
|
-
label: "\u53EF\u89C1\u6027",
|
|
4857
|
-
options: {
|
|
4858
|
-
internal: "\u5185\u90E8",
|
|
4859
|
-
all_users: "\u5168\u90E8\u7528\u6237",
|
|
4860
|
-
shared_users: "\u5171\u4EAB\u7528\u6237"
|
|
4861
|
-
}
|
|
4862
|
-
},
|
|
4863
5453
|
uploaded_by: {
|
|
4864
5454
|
label: "\u4E0A\u4F20\u4EBA"
|
|
4865
5455
|
},
|
|
@@ -6130,7 +6720,12 @@ var jaJPObjects = {
|
|
|
6130
6720
|
ban_user: {
|
|
6131
6721
|
label: "\u5229\u7528\u505C\u6B62",
|
|
6132
6722
|
confirmText: "\u3053\u306E\u30E6\u30FC\u30B6\u30FC\u3092\u5229\u7528\u505C\u6B62\u306B\u3057\u307E\u3059\u304B\uFF1F\u5229\u7528\u505C\u6B62\u306B\u306A\u308B\u3068\u30B5\u30A4\u30F3\u30A2\u30A6\u30C8\u3055\u308C\u3001\u89E3\u9664\u3055\u308C\u308B\u307E\u3067\u30B5\u30A4\u30F3\u30A4\u30F3\u3067\u304D\u306A\u304F\u306A\u308A\u307E\u3059\u3002",
|
|
6133
|
-
successMessage: "\u30E6\u30FC\u30B6\u30FC\u3092\u5229\u7528\u505C\u6B62\u306B\u3057\u307E\u3057\u305F"
|
|
6723
|
+
successMessage: "\u30E6\u30FC\u30B6\u30FC\u3092\u5229\u7528\u505C\u6B62\u306B\u3057\u307E\u3057\u305F",
|
|
6724
|
+
params: {
|
|
6725
|
+
banReason: {
|
|
6726
|
+
label: "\u5229\u7528\u505C\u6B62\u306E\u7406\u7531"
|
|
6727
|
+
}
|
|
6728
|
+
}
|
|
6134
6729
|
},
|
|
6135
6730
|
unban_user: {
|
|
6136
6731
|
label: "\u5229\u7528\u505C\u6B62\u3092\u89E3\u9664",
|
|
@@ -6142,15 +6737,46 @@ var jaJPObjects = {
|
|
|
6142
6737
|
},
|
|
6143
6738
|
create_user: {
|
|
6144
6739
|
label: "\u30E6\u30FC\u30B6\u30FC\u3092\u4F5C\u6210",
|
|
6145
|
-
successMessage: "\u30E6\u30FC\u30B6\u30FC\u3092\u4F5C\u6210\u3057\u307E\u3057\u305F"
|
|
6740
|
+
successMessage: "\u30E6\u30FC\u30B6\u30FC\u3092\u4F5C\u6210\u3057\u307E\u3057\u305F",
|
|
6741
|
+
params: {
|
|
6742
|
+
phoneNumber: {
|
|
6743
|
+
label: "\u96FB\u8A71\u756A\u53F7",
|
|
6744
|
+
helpText: "\u30B5\u30A4\u30F3\u30A4\u30F3\u7528\u306E\u96FB\u8A71\u756A\u53F7\uFF08E.164 \u5F62\u5F0F\u3001\u4F8B: +8613800000000\uFF09\u3002\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u3092\u6307\u5B9A\u3057\u306A\u3044\u5834\u5408\u306F\u5FC5\u9808\u3067\u3059\u3002"
|
|
6745
|
+
},
|
|
6746
|
+
generatePassword: {
|
|
6747
|
+
label: "\u4E00\u6642\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u751F\u6210"
|
|
6748
|
+
},
|
|
6749
|
+
password: {
|
|
6750
|
+
label: "\u30D1\u30B9\u30EF\u30FC\u30C9\uFF08\u7A7A\u6B04\u306E\u5834\u5408\u306F\u81EA\u52D5\u751F\u6210\uFF09"
|
|
6751
|
+
},
|
|
6752
|
+
mustChangePassword: {
|
|
6753
|
+
label: "\u521D\u56DE\u30B5\u30A4\u30F3\u30A4\u30F3\u6642\u306B\u30D1\u30B9\u30EF\u30FC\u30C9\u5909\u66F4\u3092\u5FC5\u9808\u306B\u3059\u308B"
|
|
6754
|
+
}
|
|
6755
|
+
}
|
|
6146
6756
|
},
|
|
6147
6757
|
set_user_password: {
|
|
6148
6758
|
label: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u8A2D\u5B9A",
|
|
6149
|
-
successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F"
|
|
6759
|
+
successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F",
|
|
6760
|
+
params: {
|
|
6761
|
+
generatePassword: {
|
|
6762
|
+
label: "\u4E00\u6642\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u751F\u6210"
|
|
6763
|
+
},
|
|
6764
|
+
newPassword: {
|
|
6765
|
+
label: "\u65B0\u3057\u3044\u30D1\u30B9\u30EF\u30FC\u30C9\uFF08\u7A7A\u6B04\u306E\u5834\u5408\u306F\u81EA\u52D5\u751F\u6210\uFF09"
|
|
6766
|
+
},
|
|
6767
|
+
mustChangePassword: {
|
|
6768
|
+
label: "\u6B21\u56DE\u30B5\u30A4\u30F3\u30A4\u30F3\u6642\u306B\u30D1\u30B9\u30EF\u30FC\u30C9\u5909\u66F4\u3092\u5FC5\u9808\u306B\u3059\u308B"
|
|
6769
|
+
}
|
|
6770
|
+
}
|
|
6150
6771
|
},
|
|
6151
6772
|
set_user_role: {
|
|
6152
6773
|
label: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u30ED\u30FC\u30EB\u3092\u8A2D\u5B9A",
|
|
6153
|
-
successMessage: "\u30ED\u30FC\u30EB\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F"
|
|
6774
|
+
successMessage: "\u30ED\u30FC\u30EB\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F",
|
|
6775
|
+
params: {
|
|
6776
|
+
role: {
|
|
6777
|
+
label: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u30ED\u30FC\u30EB"
|
|
6778
|
+
}
|
|
6779
|
+
}
|
|
6154
6780
|
},
|
|
6155
6781
|
impersonate_user: {
|
|
6156
6782
|
label: "\u4EE3\u7406\u30ED\u30B0\u30A4\u30F3",
|
|
@@ -6163,11 +6789,27 @@ var jaJPObjects = {
|
|
|
6163
6789
|
},
|
|
6164
6790
|
change_my_password: {
|
|
6165
6791
|
label: "\u30D1\u30B9\u30EF\u30FC\u30C9\u5909\u66F4",
|
|
6166
|
-
successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u5909\u66F4\u3057\u307E\u3057\u305F"
|
|
6792
|
+
successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u5909\u66F4\u3057\u307E\u3057\u305F",
|
|
6793
|
+
params: {
|
|
6794
|
+
currentPassword: {
|
|
6795
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
6796
|
+
},
|
|
6797
|
+
newPassword: {
|
|
6798
|
+
label: "\u65B0\u3057\u3044\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
6799
|
+
},
|
|
6800
|
+
revokeOtherSessions: {
|
|
6801
|
+
label: "\u4ED6\u306E\u30C7\u30D0\u30A4\u30B9\u304B\u3089\u30B5\u30A4\u30F3\u30A2\u30A6\u30C8"
|
|
6802
|
+
}
|
|
6803
|
+
}
|
|
6167
6804
|
},
|
|
6168
6805
|
change_my_email: {
|
|
6169
6806
|
label: "\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u5909\u66F4",
|
|
6170
|
-
successMessage: "\u78BA\u8A8D\u30E1\u30FC\u30EB\u3092\u9001\u4FE1\u3057\u307E\u3057\u305F\u3002\u65B0\u3057\u3044\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u3067\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002"
|
|
6807
|
+
successMessage: "\u78BA\u8A8D\u30E1\u30FC\u30EB\u3092\u9001\u4FE1\u3057\u307E\u3057\u305F\u3002\u65B0\u3057\u3044\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u3067\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
6808
|
+
params: {
|
|
6809
|
+
newEmail: {
|
|
6810
|
+
label: "\u65B0\u3057\u3044\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9"
|
|
6811
|
+
}
|
|
6812
|
+
}
|
|
6171
6813
|
},
|
|
6172
6814
|
resend_verification_email: {
|
|
6173
6815
|
label: "\u78BA\u8A8D\u30E1\u30FC\u30EB\u3092\u518D\u9001",
|
|
@@ -6176,21 +6818,41 @@ var jaJPObjects = {
|
|
|
6176
6818
|
delete_my_account: {
|
|
6177
6819
|
label: "\u30A2\u30AB\u30A6\u30F3\u30C8\u524A\u9664",
|
|
6178
6820
|
confirmText: "\u30A2\u30AB\u30A6\u30F3\u30C8\u3092\u5B8C\u5168\u306B\u524A\u9664\u3057\u307E\u3059\u304B\uFF1F\u3053\u306E\u64CD\u4F5C\u306F\u5143\u306B\u623B\u305B\u307E\u305B\u3093\u3002\u3059\u3079\u3066\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u304C\u7D42\u4E86\u3055\u308C\u3001\u8A2D\u5B9A\u3055\u308C\u305F\u4FDD\u6301\u30DD\u30EA\u30B7\u30FC\u306B\u5F93\u3063\u3066\u6240\u6709\u3059\u308B\u3059\u3079\u3066\u306E\u30C7\u30FC\u30BF\u304C\u524A\u9664\u3055\u308C\u307E\u3059\u3002",
|
|
6179
|
-
successMessage: "\u30A2\u30AB\u30A6\u30F3\u30C8\u3092\u524A\u9664\u3057\u307E\u3057\u305F"
|
|
6821
|
+
successMessage: "\u30A2\u30AB\u30A6\u30F3\u30C8\u3092\u524A\u9664\u3057\u307E\u3057\u305F",
|
|
6822
|
+
params: {
|
|
6823
|
+
password: {
|
|
6824
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
6825
|
+
}
|
|
6826
|
+
}
|
|
6180
6827
|
},
|
|
6181
6828
|
enable_two_factor: {
|
|
6182
6829
|
label: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u6709\u52B9\u5316",
|
|
6183
|
-
successMessage: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u6709\u52B9\u306B\u3057\u307E\u3057\u305F\u3002\u8A8D\u8A3C\u30A2\u30D7\u30EA\u3067 QR \u30B3\u30FC\u30C9\u3092\u30B9\u30AD\u30E3\u30F3\u3059\u308B\u304B otpauth URI \u3092\u8CBC\u308A\u4ED8\u3051\u3001\u30B3\u30FC\u30C9\u3092\u691C\u8A3C\u3057\u3066\u8A2D\u5B9A\u3092\u5B8C\u4E86\u3057\u3066\u304F\u3060\u3055\u3044\u3002"
|
|
6830
|
+
successMessage: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u6709\u52B9\u306B\u3057\u307E\u3057\u305F\u3002\u8A8D\u8A3C\u30A2\u30D7\u30EA\u3067 QR \u30B3\u30FC\u30C9\u3092\u30B9\u30AD\u30E3\u30F3\u3059\u308B\u304B otpauth URI \u3092\u8CBC\u308A\u4ED8\u3051\u3001\u30B3\u30FC\u30C9\u3092\u691C\u8A3C\u3057\u3066\u8A2D\u5B9A\u3092\u5B8C\u4E86\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
6831
|
+
params: {
|
|
6832
|
+
password: {
|
|
6833
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
6834
|
+
}
|
|
6835
|
+
}
|
|
6184
6836
|
},
|
|
6185
6837
|
disable_two_factor: {
|
|
6186
6838
|
label: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u7121\u52B9\u5316",
|
|
6187
6839
|
confirmText: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u30AA\u30D5\u306B\u3057\u307E\u3059\u304B\uFF1F\u30A2\u30AB\u30A6\u30F3\u30C8\u306E\u5B89\u5168\u6027\u304C\u4F4E\u4E0B\u3057\u307E\u3059\u3002",
|
|
6188
|
-
successMessage: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u7121\u52B9\u306B\u3057\u307E\u3057\u305F\u3002"
|
|
6840
|
+
successMessage: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u7121\u52B9\u306B\u3057\u307E\u3057\u305F\u3002",
|
|
6841
|
+
params: {
|
|
6842
|
+
password: {
|
|
6843
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
6844
|
+
}
|
|
6845
|
+
}
|
|
6189
6846
|
},
|
|
6190
6847
|
generate_backup_codes: {
|
|
6191
6848
|
label: "\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u3092\u518D\u751F\u6210",
|
|
6192
6849
|
confirmText: "\u65B0\u3057\u3044\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u3092\u751F\u6210\u3057\u307E\u3059\u304B\uFF1F\u4EE5\u524D\u306B\u751F\u6210\u3055\u308C\u305F\u30B3\u30FC\u30C9\u306F\u3059\u3079\u3066\u4F7F\u7528\u3067\u304D\u306A\u304F\u306A\u308A\u307E\u3059\u3002",
|
|
6193
|
-
successMessage: "\u65B0\u3057\u3044\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u3092\u751F\u6210\u3057\u307E\u3057\u305F\u3002\u5B89\u5168\u306A\u5834\u6240\u306B\u4FDD\u7BA1\u3057\u3066\u304F\u3060\u3055\u3044\u3002"
|
|
6850
|
+
successMessage: "\u65B0\u3057\u3044\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u3092\u751F\u6210\u3057\u307E\u3057\u305F\u3002\u5B89\u5168\u306A\u5834\u6240\u306B\u4FDD\u7BA1\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
6851
|
+
params: {
|
|
6852
|
+
password: {
|
|
6853
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
6854
|
+
}
|
|
6855
|
+
}
|
|
6194
6856
|
}
|
|
6195
6857
|
}
|
|
6196
6858
|
},
|
|
@@ -6334,7 +6996,21 @@ var jaJPObjects = {
|
|
|
6334
6996
|
},
|
|
6335
6997
|
_actions: {
|
|
6336
6998
|
link_social: {
|
|
6337
|
-
label: "\u30BD\u30FC\u30B7\u30E3\u30EB\u30A2\u30AB\u30A6\u30F3\u30C8\u9023\u643A"
|
|
6999
|
+
label: "\u30BD\u30FC\u30B7\u30E3\u30EB\u30A2\u30AB\u30A6\u30F3\u30C8\u9023\u643A",
|
|
7000
|
+
params: {
|
|
7001
|
+
provider: {
|
|
7002
|
+
label: "\u30D7\u30ED\u30D0\u30A4\u30C0\u30FC",
|
|
7003
|
+
options: {
|
|
7004
|
+
google: "Google",
|
|
7005
|
+
github: "GitHub",
|
|
7006
|
+
microsoft: "Microsoft",
|
|
7007
|
+
apple: "Apple",
|
|
7008
|
+
facebook: "Facebook",
|
|
7009
|
+
gitlab: "GitLab",
|
|
7010
|
+
discord: "Discord"
|
|
7011
|
+
}
|
|
7012
|
+
}
|
|
7013
|
+
}
|
|
6338
7014
|
},
|
|
6339
7015
|
unlink_account: {
|
|
6340
7016
|
label: "\u9023\u643A\u89E3\u9664",
|
|
@@ -6467,7 +7143,11 @@ var jaJPObjects = {
|
|
|
6467
7143
|
},
|
|
6468
7144
|
_views: {
|
|
6469
7145
|
mine: {
|
|
6470
|
-
label: "My Memberships"
|
|
7146
|
+
label: "My Memberships",
|
|
7147
|
+
emptyState: {
|
|
7148
|
+
title: "No organizations yet",
|
|
7149
|
+
message: "You haven't joined any organizations."
|
|
7150
|
+
}
|
|
6471
7151
|
}
|
|
6472
7152
|
},
|
|
6473
7153
|
_actions: {
|
|
@@ -6887,16 +7567,31 @@ var jaJPObjects = {
|
|
|
6887
7567
|
},
|
|
6888
7568
|
_actions: {
|
|
6889
7569
|
enable_two_factor: {
|
|
6890
|
-
label: "2FA \u3092\u6709\u52B9\u5316"
|
|
7570
|
+
label: "2FA \u3092\u6709\u52B9\u5316",
|
|
7571
|
+
params: {
|
|
7572
|
+
password: {
|
|
7573
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
7574
|
+
}
|
|
7575
|
+
}
|
|
6891
7576
|
},
|
|
6892
7577
|
disable_two_factor: {
|
|
6893
7578
|
label: "2FA \u3092\u7121\u52B9\u5316",
|
|
6894
7579
|
confirmText: "\u30A2\u30AB\u30A6\u30F3\u30C8\u306E\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u7121\u52B9\u5316\u3057\u307E\u3059\u304B\uFF1F",
|
|
6895
|
-
successMessage: "2FA \u3092\u7121\u52B9\u5316\u3057\u307E\u3057\u305F"
|
|
7580
|
+
successMessage: "2FA \u3092\u7121\u52B9\u5316\u3057\u307E\u3057\u305F",
|
|
7581
|
+
params: {
|
|
7582
|
+
password: {
|
|
7583
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
7584
|
+
}
|
|
7585
|
+
}
|
|
6896
7586
|
},
|
|
6897
7587
|
regenerate_backup_codes: {
|
|
6898
7588
|
label: "\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u518D\u751F\u6210",
|
|
6899
|
-
confirmText: "\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u3092\u518D\u751F\u6210\u3057\u307E\u3059\u304B\uFF1F\u4EE5\u524D\u306E\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u306F\u3059\u3079\u3066\u76F4\u3061\u306B\u4F7F\u7528\u3067\u304D\u306A\u304F\u306A\u308A\u307E\u3059\u3002"
|
|
7589
|
+
confirmText: "\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u3092\u518D\u751F\u6210\u3057\u307E\u3059\u304B\uFF1F\u4EE5\u524D\u306E\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u306F\u3059\u3079\u3066\u76F4\u3061\u306B\u4F7F\u7528\u3067\u304D\u306A\u304F\u306A\u308A\u307E\u3059\u3002",
|
|
7590
|
+
params: {
|
|
7591
|
+
password: {
|
|
7592
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
7593
|
+
}
|
|
7594
|
+
}
|
|
6900
7595
|
}
|
|
6901
7596
|
}
|
|
6902
7597
|
},
|
|
@@ -7076,6 +7771,18 @@ var jaJPObjects = {
|
|
|
7076
7771
|
label: "\u30B5\u30D6\u30B8\u30A7\u30AF\u30C8\u30BF\u30A4\u30D7",
|
|
7077
7772
|
help: "OIDC \u30B5\u30D6\u30B8\u30A7\u30AF\u30C8\u30BF\u30A4\u30D7\uFF08\u4F8B: public\u3001pairwise\uFF09"
|
|
7078
7773
|
},
|
|
7774
|
+
jwks: {
|
|
7775
|
+
label: "JWKS",
|
|
7776
|
+
help: "Client JSON Web Key Set (for private_key_jwt / signed-request verification)"
|
|
7777
|
+
},
|
|
7778
|
+
jwks_uri: {
|
|
7779
|
+
label: "JWKS URI",
|
|
7780
|
+
help: "URL of the client JSON Web Key Set"
|
|
7781
|
+
},
|
|
7782
|
+
dpop_bound_access_tokens: {
|
|
7783
|
+
label: "DPoP-bound Access Tokens",
|
|
7784
|
+
help: "Require access tokens issued to this client to be DPoP-bound (RFC 9449)"
|
|
7785
|
+
},
|
|
7079
7786
|
disabled: {
|
|
7080
7787
|
label: "\u7121\u52B9"
|
|
7081
7788
|
},
|
|
@@ -7087,6 +7794,14 @@ var jaJPObjects = {
|
|
|
7087
7794
|
label: "\u30A8\u30F3\u30C9\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u6709\u52B9\u5316",
|
|
7088
7795
|
help: "\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u304C OIDC \u30A8\u30F3\u30C9\u30BB\u30C3\u30B7\u30E7\u30F3\u30A8\u30F3\u30C9\u30DD\u30A4\u30F3\u30C8\u3092\u547C\u3073\u51FA\u305B\u308B\u3088\u3046\u306B\u3057\u307E\u3059"
|
|
7089
7796
|
},
|
|
7797
|
+
backchannel_logout_uri: {
|
|
7798
|
+
label: "Back-channel Logout URI",
|
|
7799
|
+
help: "OIDC back-channel logout endpoint of the client"
|
|
7800
|
+
},
|
|
7801
|
+
backchannel_logout_session_required: {
|
|
7802
|
+
label: "Back-channel Logout Session Required",
|
|
7803
|
+
help: "Whether the back-channel logout token must include a sid claim"
|
|
7804
|
+
},
|
|
7090
7805
|
software_id: {
|
|
7091
7806
|
label: "\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2 ID"
|
|
7092
7807
|
},
|
|
@@ -7138,7 +7853,25 @@ var jaJPObjects = {
|
|
|
7138
7853
|
successMessage: "OAuth\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u6709\u52B9\u5316\u3057\u307E\u3057\u305F"
|
|
7139
7854
|
},
|
|
7140
7855
|
create_oauth_application: {
|
|
7141
|
-
label: "OAuth\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u767B\u9332"
|
|
7856
|
+
label: "OAuth\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u767B\u9332",
|
|
7857
|
+
params: {
|
|
7858
|
+
name: {
|
|
7859
|
+
label: "\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u540D"
|
|
7860
|
+
},
|
|
7861
|
+
redirectURLs: {
|
|
7862
|
+
label: "\u30EA\u30C0\u30A4\u30EC\u30AF\u30C8 URL",
|
|
7863
|
+
helpText: "1 \u884C\u306B\u3064\u304D 1 \u3064\u306E URL\u3002\u672C\u756A\u74B0\u5883\u3067\u306F https:// \u304C\u5FC5\u9808\u3067\u3059\u3002"
|
|
7864
|
+
},
|
|
7865
|
+
type: {
|
|
7866
|
+
label: "\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u30BF\u30A4\u30D7",
|
|
7867
|
+
options: {
|
|
7868
|
+
web: "Web",
|
|
7869
|
+
native: "\u30CD\u30A4\u30C6\u30A3\u30D6",
|
|
7870
|
+
"user-agent-based": "\u30E6\u30FC\u30B6\u30FC\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u578B",
|
|
7871
|
+
public: "\u30D1\u30D6\u30EA\u30C3\u30AF"
|
|
7872
|
+
}
|
|
7873
|
+
}
|
|
7874
|
+
}
|
|
7142
7875
|
},
|
|
7143
7876
|
rotate_client_secret: {
|
|
7144
7877
|
label: "\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u30B7\u30FC\u30AF\u30EC\u30C3\u30C8\u66F4\u65B0",
|
|
@@ -7183,6 +7916,18 @@ var jaJPObjects = {
|
|
|
7183
7916
|
label: "\u53C2\u7167 ID",
|
|
7184
7917
|
help: "\u547C\u3073\u51FA\u3057\u5143\u304C\u6307\u5B9A\u3057\u305F\u76F8\u95A2\u8B58\u5225\u5B50"
|
|
7185
7918
|
},
|
|
7919
|
+
authorization_code_id: {
|
|
7920
|
+
label: "Authorization Code ID",
|
|
7921
|
+
help: "ID of the authorization-code grant this token originates from"
|
|
7922
|
+
},
|
|
7923
|
+
resources: {
|
|
7924
|
+
label: "Resources",
|
|
7925
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
7926
|
+
},
|
|
7927
|
+
requested_user_info_claims: {
|
|
7928
|
+
label: "Requested UserInfo Claims",
|
|
7929
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
7930
|
+
},
|
|
7186
7931
|
scopes: {
|
|
7187
7932
|
label: "\u30B9\u30B3\u30FC\u30D7",
|
|
7188
7933
|
help: "\u3053\u306E\u30C8\u30FC\u30AF\u30F3\u306B\u4ED8\u4E0E\u3055\u308C\u305F\u30B9\u30B3\u30FC\u30D7\u306E JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u30EA\u30B9\u30C8"
|
|
@@ -7192,6 +7937,14 @@ var jaJPObjects = {
|
|
|
7192
7937
|
},
|
|
7193
7938
|
created_at: {
|
|
7194
7939
|
label: "\u4F5C\u6210\u65E5\u6642"
|
|
7940
|
+
},
|
|
7941
|
+
revoked: {
|
|
7942
|
+
label: "Revoked At",
|
|
7943
|
+
help: "Timestamp at which this access token was revoked"
|
|
7944
|
+
},
|
|
7945
|
+
confirmation: {
|
|
7946
|
+
label: "Confirmation",
|
|
7947
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
7195
7948
|
}
|
|
7196
7949
|
}
|
|
7197
7950
|
},
|
|
@@ -7223,6 +7976,18 @@ var jaJPObjects = {
|
|
|
7223
7976
|
label: "\u53C2\u7167 ID",
|
|
7224
7977
|
help: "\u547C\u3073\u51FA\u3057\u5143\u304C\u6307\u5B9A\u3057\u305F\u76F8\u95A2\u8B58\u5225\u5B50"
|
|
7225
7978
|
},
|
|
7979
|
+
authorization_code_id: {
|
|
7980
|
+
label: "Authorization Code ID",
|
|
7981
|
+
help: "ID of the authorization-code grant this token chain originates from"
|
|
7982
|
+
},
|
|
7983
|
+
resources: {
|
|
7984
|
+
label: "Resources",
|
|
7985
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
7986
|
+
},
|
|
7987
|
+
requested_user_info_claims: {
|
|
7988
|
+
label: "Requested UserInfo Claims",
|
|
7989
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
7990
|
+
},
|
|
7226
7991
|
scopes: {
|
|
7227
7992
|
label: "\u30B9\u30B3\u30FC\u30D7",
|
|
7228
7993
|
help: "\u3053\u306E\u30C8\u30FC\u30AF\u30F3\u306B\u4ED8\u4E0E\u3055\u308C\u305F\u30B9\u30B3\u30FC\u30D7\u306E JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u30EA\u30B9\u30C8"
|
|
@@ -7237,9 +8002,25 @@ var jaJPObjects = {
|
|
|
7237
8002
|
label: "\u5931\u52B9\u65E5\u6642",
|
|
7238
8003
|
help: "\u3053\u306E\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5\u30C8\u30FC\u30AF\u30F3\u304C\u5931\u52B9\u3057\u305F\u30BF\u30A4\u30E0\u30B9\u30BF\u30F3\u30D7"
|
|
7239
8004
|
},
|
|
8005
|
+
rotated_at: {
|
|
8006
|
+
label: "Rotated At",
|
|
8007
|
+
help: "Timestamp at which this token was rotated (superseded by a new row)"
|
|
8008
|
+
},
|
|
8009
|
+
rotation_replay_response: {
|
|
8010
|
+
label: "Rotation Replay Response",
|
|
8011
|
+
help: "Cached token response replayed when the old token is re-presented within the reuse interval"
|
|
8012
|
+
},
|
|
8013
|
+
rotation_replay_expires_at: {
|
|
8014
|
+
label: "Rotation Replay Expires At",
|
|
8015
|
+
help: "End of the post-rotation reuse interval during which the replay response is served"
|
|
8016
|
+
},
|
|
7240
8017
|
auth_time: {
|
|
7241
8018
|
label: "\u8A8D\u8A3C\u65E5\u6642",
|
|
7242
8019
|
help: "\u3053\u306E\u30C8\u30FC\u30AF\u30F3\u30C1\u30A7\u30FC\u30F3\u306E\u305F\u3081\u306B\u30E6\u30FC\u30B6\u30FC\u304C\u6700\u521D\u306B\u8A8D\u8A3C\u3057\u305F\u65E5\u6642"
|
|
8020
|
+
},
|
|
8021
|
+
confirmation: {
|
|
8022
|
+
label: "Confirmation",
|
|
8023
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
7243
8024
|
}
|
|
7244
8025
|
}
|
|
7245
8026
|
},
|
|
@@ -7263,6 +8044,14 @@ var jaJPObjects = {
|
|
|
7263
8044
|
label: "\u53C2\u7167 ID",
|
|
7264
8045
|
help: "\u547C\u3073\u51FA\u3057\u5143\u304C\u6307\u5B9A\u3057\u305F\u76F8\u95A2\u8B58\u5225\u5B50"
|
|
7265
8046
|
},
|
|
8047
|
+
resources: {
|
|
8048
|
+
label: "Resources",
|
|
8049
|
+
help: "JSON-serialized list of RFC 8707 resource indicators the consent covers"
|
|
8050
|
+
},
|
|
8051
|
+
requested_user_info_claims: {
|
|
8052
|
+
label: "Requested UserInfo Claims",
|
|
8053
|
+
help: "JSON-serialized list of OIDC claims the user consented to expose"
|
|
8054
|
+
},
|
|
7266
8055
|
scopes: {
|
|
7267
8056
|
label: "\u30B9\u30B3\u30FC\u30D7",
|
|
7268
8057
|
help: "\u30E6\u30FC\u30B6\u30FC\u304C\u540C\u610F\u3057\u305F\u30B9\u30B3\u30FC\u30D7\u306E JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u30EA\u30B9\u30C8"
|
|
@@ -7275,6 +8064,107 @@ var jaJPObjects = {
|
|
|
7275
8064
|
}
|
|
7276
8065
|
}
|
|
7277
8066
|
},
|
|
8067
|
+
sys_oauth_resource: {
|
|
8068
|
+
label: "OAuth Resource",
|
|
8069
|
+
pluralLabel: "OAuth Resources",
|
|
8070
|
+
description: "Registered OAuth protected resources (RFC 8707 resource indicators)",
|
|
8071
|
+
fields: {
|
|
8072
|
+
id: {
|
|
8073
|
+
label: "ID"
|
|
8074
|
+
},
|
|
8075
|
+
identifier: {
|
|
8076
|
+
label: "Identifier",
|
|
8077
|
+
help: "Resource indicator URI presented in the RFC 8707 resource parameter"
|
|
8078
|
+
},
|
|
8079
|
+
name: {
|
|
8080
|
+
label: "Name"
|
|
8081
|
+
},
|
|
8082
|
+
access_token_ttl: {
|
|
8083
|
+
label: "Access Token TTL",
|
|
8084
|
+
help: "Access-token lifetime in seconds for this resource (overrides the server default)"
|
|
8085
|
+
},
|
|
8086
|
+
refresh_token_ttl: {
|
|
8087
|
+
label: "Refresh Token TTL",
|
|
8088
|
+
help: "Refresh-token lifetime in seconds for this resource (overrides the server default)"
|
|
8089
|
+
},
|
|
8090
|
+
signing_algorithm: {
|
|
8091
|
+
label: "Signing Algorithm",
|
|
8092
|
+
help: "JWS algorithm used to sign access tokens for this resource"
|
|
8093
|
+
},
|
|
8094
|
+
signing_key_id: {
|
|
8095
|
+
label: "Signing Key ID",
|
|
8096
|
+
help: "Key id (kid) used to sign access tokens for this resource"
|
|
8097
|
+
},
|
|
8098
|
+
allowed_scopes: {
|
|
8099
|
+
label: "Allowed Scopes",
|
|
8100
|
+
help: "JSON-serialized list of scopes clients may request for this resource"
|
|
8101
|
+
},
|
|
8102
|
+
custom_claims: {
|
|
8103
|
+
label: "Custom Claims",
|
|
8104
|
+
help: "JSON object of extra claims stamped on access tokens for this resource"
|
|
8105
|
+
},
|
|
8106
|
+
dpop_bound_access_tokens_required: {
|
|
8107
|
+
label: "DPoP Required",
|
|
8108
|
+
help: "Require access tokens for this resource to be DPoP-bound (RFC 9449)"
|
|
8109
|
+
},
|
|
8110
|
+
disabled: {
|
|
8111
|
+
label: "Disabled"
|
|
8112
|
+
},
|
|
8113
|
+
policy_version: {
|
|
8114
|
+
label: "Policy Version",
|
|
8115
|
+
help: "Monotonic version of the resource token policy"
|
|
8116
|
+
},
|
|
8117
|
+
metadata: {
|
|
8118
|
+
label: "Metadata",
|
|
8119
|
+
help: "JSON object of additional resource metadata"
|
|
8120
|
+
},
|
|
8121
|
+
created_at: {
|
|
8122
|
+
label: "Created At"
|
|
8123
|
+
},
|
|
8124
|
+
updated_at: {
|
|
8125
|
+
label: "Updated At"
|
|
8126
|
+
}
|
|
8127
|
+
}
|
|
8128
|
+
},
|
|
8129
|
+
sys_oauth_client_resource: {
|
|
8130
|
+
label: "OAuth Client Resource",
|
|
8131
|
+
pluralLabel: "OAuth Client Resources",
|
|
8132
|
+
description: "Grants allowing an OAuth client to request tokens for a protected resource",
|
|
8133
|
+
fields: {
|
|
8134
|
+
id: {
|
|
8135
|
+
label: "ID"
|
|
8136
|
+
},
|
|
8137
|
+
client_id: {
|
|
8138
|
+
label: "Client ID",
|
|
8139
|
+
help: "Foreign key to sys_oauth_application.client_id"
|
|
8140
|
+
},
|
|
8141
|
+
resource_id: {
|
|
8142
|
+
label: "Resource ID",
|
|
8143
|
+
help: "Foreign key to sys_oauth_resource.identifier"
|
|
8144
|
+
},
|
|
8145
|
+
metadata: {
|
|
8146
|
+
label: "Metadata",
|
|
8147
|
+
help: "JSON object of additional grant metadata"
|
|
8148
|
+
},
|
|
8149
|
+
created_at: {
|
|
8150
|
+
label: "Created At"
|
|
8151
|
+
}
|
|
8152
|
+
}
|
|
8153
|
+
},
|
|
8154
|
+
sys_oauth_client_assertion: {
|
|
8155
|
+
label: "OAuth Client Assertion",
|
|
8156
|
+
pluralLabel: "OAuth Client Assertions",
|
|
8157
|
+
description: "Consumed OAuth client-assertion JTIs (RFC 7523 replay prevention)",
|
|
8158
|
+
fields: {
|
|
8159
|
+
id: {
|
|
8160
|
+
label: "ID"
|
|
8161
|
+
},
|
|
8162
|
+
expires_at: {
|
|
8163
|
+
label: "Expires At",
|
|
8164
|
+
help: "Assertion expiry \u2014 rows past this instant are safe to prune"
|
|
8165
|
+
}
|
|
8166
|
+
}
|
|
8167
|
+
},
|
|
7278
8168
|
sys_jwks: {
|
|
7279
8169
|
label: "\u7F72\u540D\u30AD\u30FC (JWKS)",
|
|
7280
8170
|
pluralLabel: "\u7F72\u540D\u30AD\u30FC (JWKS)",
|
|
@@ -7292,6 +8182,14 @@ var jaJPObjects = {
|
|
|
7292
8182
|
label: "\u79D8\u5BC6\u9375",
|
|
7293
8183
|
help: "JSON \u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u3055\u308C\u305F JWK \u79D8\u5BC6\u9375\uFF08\u4FDD\u5B58\u6642\u306B\u6697\u53F7\u5316\u6E08\u307F\uFF09"
|
|
7294
8184
|
},
|
|
8185
|
+
alg: {
|
|
8186
|
+
label: "\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0",
|
|
8187
|
+
help: "JWK \u7F72\u540D\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0\uFF08\u4F8B: `EdDSA`\u3001better-auth 1.7+\uFF09"
|
|
8188
|
+
},
|
|
8189
|
+
crv: {
|
|
8190
|
+
label: "\u66F2\u7DDA",
|
|
8191
|
+
help: "EdDSA/EC \u9375\u3067\u4F7F\u3046 JWK \u66F2\u7DDA\uFF08\u4F8B: `Ed25519`\u3001better-auth 1.7+\uFF09"
|
|
8192
|
+
},
|
|
7295
8193
|
created_at: {
|
|
7296
8194
|
label: "\u4F5C\u6210\u65E5\u6642"
|
|
7297
8195
|
},
|
|
@@ -7348,7 +8246,11 @@ var jaJPObjects = {
|
|
|
7348
8246
|
},
|
|
7349
8247
|
_views: {
|
|
7350
8248
|
recent: {
|
|
7351
|
-
label: "Recent"
|
|
8249
|
+
label: "Recent",
|
|
8250
|
+
emptyState: {
|
|
8251
|
+
title: "No events",
|
|
8252
|
+
message: "No notification events have been emitted."
|
|
8253
|
+
}
|
|
7352
8254
|
},
|
|
7353
8255
|
by_topic: {
|
|
7354
8256
|
label: "By Topic"
|
|
@@ -7385,23 +8287,6 @@ var jaJPObjects = {
|
|
|
7385
8287
|
size: {
|
|
7386
8288
|
label: "\u30B5\u30A4\u30BA\uFF08\u30D0\u30A4\u30C8\uFF09"
|
|
7387
8289
|
},
|
|
7388
|
-
share_type: {
|
|
7389
|
-
label: "\u5171\u6709\u30BF\u30A4\u30D7",
|
|
7390
|
-
help: "viewer | collaborator | inferred\uFF08\u89AA\u30EC\u30B3\u30FC\u30C9\u304B\u3089\u7D99\u627F\uFF09",
|
|
7391
|
-
options: {
|
|
7392
|
-
viewer: "\u95B2\u89A7\u8005",
|
|
7393
|
-
collaborator: "\u5171\u540C\u7DE8\u96C6\u8005",
|
|
7394
|
-
inferred: "\u63A8\u5B9A"
|
|
7395
|
-
}
|
|
7396
|
-
},
|
|
7397
|
-
visibility: {
|
|
7398
|
-
label: "\u516C\u958B\u7BC4\u56F2",
|
|
7399
|
-
options: {
|
|
7400
|
-
internal: "\u5185\u90E8",
|
|
7401
|
-
all_users: "\u3059\u3079\u3066\u306E\u30E6\u30FC\u30B6\u30FC",
|
|
7402
|
-
shared_users: "\u5171\u6709\u30E6\u30FC\u30B6\u30FC"
|
|
7403
|
-
}
|
|
7404
|
-
},
|
|
7405
8290
|
uploaded_by: {
|
|
7406
8291
|
label: "\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u8005"
|
|
7407
8292
|
},
|
|
@@ -8668,7 +9553,12 @@ var esESObjects = {
|
|
|
8668
9553
|
ban_user: {
|
|
8669
9554
|
label: "Bloquear usuario",
|
|
8670
9555
|
confirmText: "\xBFBloquear a este usuario? Cerrar\xE1 sesi\xF3n y no podr\xE1 volver a iniciarla hasta que se desbloquee.",
|
|
8671
|
-
successMessage: "Usuario bloqueado"
|
|
9556
|
+
successMessage: "Usuario bloqueado",
|
|
9557
|
+
params: {
|
|
9558
|
+
banReason: {
|
|
9559
|
+
label: "Motivo del bloqueo"
|
|
9560
|
+
}
|
|
9561
|
+
}
|
|
8672
9562
|
},
|
|
8673
9563
|
unban_user: {
|
|
8674
9564
|
label: "Desbloquear usuario",
|
|
@@ -8680,15 +9570,46 @@ var esESObjects = {
|
|
|
8680
9570
|
},
|
|
8681
9571
|
create_user: {
|
|
8682
9572
|
label: "Crear usuario",
|
|
8683
|
-
successMessage: "Usuario creado"
|
|
9573
|
+
successMessage: "Usuario creado",
|
|
9574
|
+
params: {
|
|
9575
|
+
phoneNumber: {
|
|
9576
|
+
label: "N\xFAmero de tel\xE9fono",
|
|
9577
|
+
helpText: "N\xFAmero de tel\xE9fono para iniciar sesi\xF3n (E.164, p. ej. +8613800000000). Obligatorio si no se indica un correo."
|
|
9578
|
+
},
|
|
9579
|
+
generatePassword: {
|
|
9580
|
+
label: "Generar contrase\xF1a temporal"
|
|
9581
|
+
},
|
|
9582
|
+
password: {
|
|
9583
|
+
label: "Contrase\xF1a (dejar en blanco para generarla)"
|
|
9584
|
+
},
|
|
9585
|
+
mustChangePassword: {
|
|
9586
|
+
label: "Exigir cambio de contrase\xF1a en el primer inicio de sesi\xF3n"
|
|
9587
|
+
}
|
|
9588
|
+
}
|
|
8684
9589
|
},
|
|
8685
9590
|
set_user_password: {
|
|
8686
9591
|
label: "Establecer contrase\xF1a",
|
|
8687
|
-
successMessage: "Contrase\xF1a actualizada"
|
|
9592
|
+
successMessage: "Contrase\xF1a actualizada",
|
|
9593
|
+
params: {
|
|
9594
|
+
generatePassword: {
|
|
9595
|
+
label: "Generar contrase\xF1a temporal"
|
|
9596
|
+
},
|
|
9597
|
+
newPassword: {
|
|
9598
|
+
label: "Nueva contrase\xF1a (dejar en blanco para generarla)"
|
|
9599
|
+
},
|
|
9600
|
+
mustChangePassword: {
|
|
9601
|
+
label: "Exigir cambio de contrase\xF1a en el pr\xF3ximo inicio de sesi\xF3n"
|
|
9602
|
+
}
|
|
9603
|
+
}
|
|
8688
9604
|
},
|
|
8689
9605
|
set_user_role: {
|
|
8690
9606
|
label: "Establecer rol de plataforma",
|
|
8691
|
-
successMessage: "Rol actualizado"
|
|
9607
|
+
successMessage: "Rol actualizado",
|
|
9608
|
+
params: {
|
|
9609
|
+
role: {
|
|
9610
|
+
label: "Rol de plataforma"
|
|
9611
|
+
}
|
|
9612
|
+
}
|
|
8692
9613
|
},
|
|
8693
9614
|
impersonate_user: {
|
|
8694
9615
|
label: "Suplantar usuario",
|
|
@@ -8701,11 +9622,27 @@ var esESObjects = {
|
|
|
8701
9622
|
},
|
|
8702
9623
|
change_my_password: {
|
|
8703
9624
|
label: "Cambiar contrase\xF1a",
|
|
8704
|
-
successMessage: "Contrase\xF1a cambiada"
|
|
9625
|
+
successMessage: "Contrase\xF1a cambiada",
|
|
9626
|
+
params: {
|
|
9627
|
+
currentPassword: {
|
|
9628
|
+
label: "Contrase\xF1a actual"
|
|
9629
|
+
},
|
|
9630
|
+
newPassword: {
|
|
9631
|
+
label: "Nueva contrase\xF1a"
|
|
9632
|
+
},
|
|
9633
|
+
revokeOtherSessions: {
|
|
9634
|
+
label: "Cerrar sesi\xF3n en los dem\xE1s dispositivos"
|
|
9635
|
+
}
|
|
9636
|
+
}
|
|
8705
9637
|
},
|
|
8706
9638
|
change_my_email: {
|
|
8707
9639
|
label: "Cambiar correo",
|
|
8708
|
-
successMessage: "Correo de verificaci\xF3n enviado; revisa la nueva direcci\xF3n para confirmar."
|
|
9640
|
+
successMessage: "Correo de verificaci\xF3n enviado; revisa la nueva direcci\xF3n para confirmar.",
|
|
9641
|
+
params: {
|
|
9642
|
+
newEmail: {
|
|
9643
|
+
label: "Nuevo correo"
|
|
9644
|
+
}
|
|
9645
|
+
}
|
|
8709
9646
|
},
|
|
8710
9647
|
resend_verification_email: {
|
|
8711
9648
|
label: "Reenviar correo de verificaci\xF3n",
|
|
@@ -8714,21 +9651,41 @@ var esESObjects = {
|
|
|
8714
9651
|
delete_my_account: {
|
|
8715
9652
|
label: "Eliminar mi cuenta",
|
|
8716
9653
|
confirmText: "\xBFEliminar tu cuenta de forma permanente? Esta acci\xF3n no se puede deshacer: se cerrar\xE1n todas tus sesiones y se eliminar\xE1n todos los datos de tu propiedad seg\xFAn la pol\xEDtica de retenci\xF3n configurada.",
|
|
8717
|
-
successMessage: "Cuenta eliminada"
|
|
9654
|
+
successMessage: "Cuenta eliminada",
|
|
9655
|
+
params: {
|
|
9656
|
+
password: {
|
|
9657
|
+
label: "Contrase\xF1a actual"
|
|
9658
|
+
}
|
|
9659
|
+
}
|
|
8718
9660
|
},
|
|
8719
9661
|
enable_two_factor: {
|
|
8720
9662
|
label: "Habilitar autenticaci\xF3n de dos factores",
|
|
8721
|
-
successMessage: "Autenticaci\xF3n de dos factores habilitada. Escanea el c\xF3digo QR o pega el URI otpauth en tu aplicaci\xF3n de autenticaci\xF3n y verifica un c\xF3digo para completar la configuraci\xF3n."
|
|
9663
|
+
successMessage: "Autenticaci\xF3n de dos factores habilitada. Escanea el c\xF3digo QR o pega el URI otpauth en tu aplicaci\xF3n de autenticaci\xF3n y verifica un c\xF3digo para completar la configuraci\xF3n.",
|
|
9664
|
+
params: {
|
|
9665
|
+
password: {
|
|
9666
|
+
label: "Contrase\xF1a actual"
|
|
9667
|
+
}
|
|
9668
|
+
}
|
|
8722
9669
|
},
|
|
8723
9670
|
disable_two_factor: {
|
|
8724
9671
|
label: "Deshabilitar autenticaci\xF3n de dos factores",
|
|
8725
9672
|
confirmText: "\xBFDesactivar la autenticaci\xF3n de dos factores? Tu cuenta ser\xE1 menos segura.",
|
|
8726
|
-
successMessage: "Autenticaci\xF3n de dos factores deshabilitada."
|
|
9673
|
+
successMessage: "Autenticaci\xF3n de dos factores deshabilitada.",
|
|
9674
|
+
params: {
|
|
9675
|
+
password: {
|
|
9676
|
+
label: "Contrase\xF1a actual"
|
|
9677
|
+
}
|
|
9678
|
+
}
|
|
8727
9679
|
},
|
|
8728
9680
|
generate_backup_codes: {
|
|
8729
9681
|
label: "Regenerar c\xF3digos de respaldo",
|
|
8730
9682
|
confirmText: "\xBFGenerar un nuevo juego de c\xF3digos de respaldo? Los c\xF3digos generados anteriormente dejar\xE1n de funcionar.",
|
|
8731
|
-
successMessage: "Nuevos c\xF3digos de respaldo generados; gu\xE1rdalos en un lugar seguro."
|
|
9683
|
+
successMessage: "Nuevos c\xF3digos de respaldo generados; gu\xE1rdalos en un lugar seguro.",
|
|
9684
|
+
params: {
|
|
9685
|
+
password: {
|
|
9686
|
+
label: "Contrase\xF1a actual"
|
|
9687
|
+
}
|
|
9688
|
+
}
|
|
8732
9689
|
}
|
|
8733
9690
|
}
|
|
8734
9691
|
},
|
|
@@ -8872,7 +9829,21 @@ var esESObjects = {
|
|
|
8872
9829
|
},
|
|
8873
9830
|
_actions: {
|
|
8874
9831
|
link_social: {
|
|
8875
|
-
label: "Vincular cuenta social"
|
|
9832
|
+
label: "Vincular cuenta social",
|
|
9833
|
+
params: {
|
|
9834
|
+
provider: {
|
|
9835
|
+
label: "Proveedor",
|
|
9836
|
+
options: {
|
|
9837
|
+
google: "Google",
|
|
9838
|
+
github: "GitHub",
|
|
9839
|
+
microsoft: "Microsoft",
|
|
9840
|
+
apple: "Apple",
|
|
9841
|
+
facebook: "Facebook",
|
|
9842
|
+
gitlab: "GitLab",
|
|
9843
|
+
discord: "Discord"
|
|
9844
|
+
}
|
|
9845
|
+
}
|
|
9846
|
+
}
|
|
8876
9847
|
},
|
|
8877
9848
|
unlink_account: {
|
|
8878
9849
|
label: "Desvincular cuenta",
|
|
@@ -9005,7 +9976,11 @@ var esESObjects = {
|
|
|
9005
9976
|
},
|
|
9006
9977
|
_views: {
|
|
9007
9978
|
mine: {
|
|
9008
|
-
label: "My Memberships"
|
|
9979
|
+
label: "My Memberships",
|
|
9980
|
+
emptyState: {
|
|
9981
|
+
title: "No organizations yet",
|
|
9982
|
+
message: "You haven't joined any organizations."
|
|
9983
|
+
}
|
|
9009
9984
|
}
|
|
9010
9985
|
},
|
|
9011
9986
|
_actions: {
|
|
@@ -9425,16 +10400,31 @@ var esESObjects = {
|
|
|
9425
10400
|
},
|
|
9426
10401
|
_actions: {
|
|
9427
10402
|
enable_two_factor: {
|
|
9428
|
-
label: "Habilitar 2FA"
|
|
10403
|
+
label: "Habilitar 2FA",
|
|
10404
|
+
params: {
|
|
10405
|
+
password: {
|
|
10406
|
+
label: "Contrase\xF1a actual"
|
|
10407
|
+
}
|
|
10408
|
+
}
|
|
9429
10409
|
},
|
|
9430
10410
|
disable_two_factor: {
|
|
9431
10411
|
label: "Deshabilitar 2FA",
|
|
9432
10412
|
confirmText: "\xBFDeshabilitar la autenticaci\xF3n de doble factor en su cuenta?",
|
|
9433
|
-
successMessage: "2FA deshabilitado"
|
|
10413
|
+
successMessage: "2FA deshabilitado",
|
|
10414
|
+
params: {
|
|
10415
|
+
password: {
|
|
10416
|
+
label: "Contrase\xF1a actual"
|
|
10417
|
+
}
|
|
10418
|
+
}
|
|
9434
10419
|
},
|
|
9435
10420
|
regenerate_backup_codes: {
|
|
9436
10421
|
label: "Regenerar c\xF3digos de respaldo",
|
|
9437
|
-
confirmText: "\xBFRegenerar los c\xF3digos de respaldo? Todos los c\xF3digos de respaldo anteriores dejar\xE1n de funcionar de inmediato."
|
|
10422
|
+
confirmText: "\xBFRegenerar los c\xF3digos de respaldo? Todos los c\xF3digos de respaldo anteriores dejar\xE1n de funcionar de inmediato.",
|
|
10423
|
+
params: {
|
|
10424
|
+
password: {
|
|
10425
|
+
label: "Contrase\xF1a actual"
|
|
10426
|
+
}
|
|
10427
|
+
}
|
|
9438
10428
|
}
|
|
9439
10429
|
}
|
|
9440
10430
|
},
|
|
@@ -9614,6 +10604,18 @@ var esESObjects = {
|
|
|
9614
10604
|
label: "Tipo de sujeto",
|
|
9615
10605
|
help: "Tipo de sujeto OIDC (p. ej. public, pairwise)."
|
|
9616
10606
|
},
|
|
10607
|
+
jwks: {
|
|
10608
|
+
label: "JWKS",
|
|
10609
|
+
help: "Client JSON Web Key Set (for private_key_jwt / signed-request verification)"
|
|
10610
|
+
},
|
|
10611
|
+
jwks_uri: {
|
|
10612
|
+
label: "JWKS URI",
|
|
10613
|
+
help: "URL of the client JSON Web Key Set"
|
|
10614
|
+
},
|
|
10615
|
+
dpop_bound_access_tokens: {
|
|
10616
|
+
label: "DPoP-bound Access Tokens",
|
|
10617
|
+
help: "Require access tokens issued to this client to be DPoP-bound (RFC 9449)"
|
|
10618
|
+
},
|
|
9617
10619
|
disabled: {
|
|
9618
10620
|
label: "Deshabilitado"
|
|
9619
10621
|
},
|
|
@@ -9625,6 +10627,14 @@ var esESObjects = {
|
|
|
9625
10627
|
label: "Habilitar finalizaci\xF3n de sesi\xF3n",
|
|
9626
10628
|
help: "Permitir que el cliente llame al endpoint OIDC de finalizaci\xF3n de sesi\xF3n."
|
|
9627
10629
|
},
|
|
10630
|
+
backchannel_logout_uri: {
|
|
10631
|
+
label: "Back-channel Logout URI",
|
|
10632
|
+
help: "OIDC back-channel logout endpoint of the client"
|
|
10633
|
+
},
|
|
10634
|
+
backchannel_logout_session_required: {
|
|
10635
|
+
label: "Back-channel Logout Session Required",
|
|
10636
|
+
help: "Whether the back-channel logout token must include a sid claim"
|
|
10637
|
+
},
|
|
9628
10638
|
software_id: {
|
|
9629
10639
|
label: "ID de software"
|
|
9630
10640
|
},
|
|
@@ -9676,7 +10686,25 @@ var esESObjects = {
|
|
|
9676
10686
|
successMessage: "Aplicaci\xF3n OAuth habilitada"
|
|
9677
10687
|
},
|
|
9678
10688
|
create_oauth_application: {
|
|
9679
|
-
label: "Registrar aplicaci\xF3n OAuth"
|
|
10689
|
+
label: "Registrar aplicaci\xF3n OAuth",
|
|
10690
|
+
params: {
|
|
10691
|
+
name: {
|
|
10692
|
+
label: "Nombre de la aplicaci\xF3n"
|
|
10693
|
+
},
|
|
10694
|
+
redirectURLs: {
|
|
10695
|
+
label: "URLs de redirecci\xF3n",
|
|
10696
|
+
helpText: "Una URL por l\xEDnea. Debe usar https:// en producci\xF3n."
|
|
10697
|
+
},
|
|
10698
|
+
type: {
|
|
10699
|
+
label: "Tipo de aplicaci\xF3n",
|
|
10700
|
+
options: {
|
|
10701
|
+
web: "Web",
|
|
10702
|
+
native: "Nativa",
|
|
10703
|
+
"user-agent-based": "Basada en user-agent",
|
|
10704
|
+
public: "P\xFAblica"
|
|
10705
|
+
}
|
|
10706
|
+
}
|
|
10707
|
+
}
|
|
9680
10708
|
},
|
|
9681
10709
|
rotate_client_secret: {
|
|
9682
10710
|
label: "Rotar Client Secret",
|
|
@@ -9721,6 +10749,18 @@ var esESObjects = {
|
|
|
9721
10749
|
label: "ID de referencia",
|
|
9722
10750
|
help: "Identificador de correlaci\xF3n proporcionado por quien llama."
|
|
9723
10751
|
},
|
|
10752
|
+
authorization_code_id: {
|
|
10753
|
+
label: "Authorization Code ID",
|
|
10754
|
+
help: "ID of the authorization-code grant this token originates from"
|
|
10755
|
+
},
|
|
10756
|
+
resources: {
|
|
10757
|
+
label: "Resources",
|
|
10758
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
10759
|
+
},
|
|
10760
|
+
requested_user_info_claims: {
|
|
10761
|
+
label: "Requested UserInfo Claims",
|
|
10762
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
10763
|
+
},
|
|
9724
10764
|
scopes: {
|
|
9725
10765
|
label: "\xC1mbitos",
|
|
9726
10766
|
help: "Lista serializada en JSON de \xE1mbitos concedidos a este token."
|
|
@@ -9730,6 +10770,14 @@ var esESObjects = {
|
|
|
9730
10770
|
},
|
|
9731
10771
|
created_at: {
|
|
9732
10772
|
label: "Creado el"
|
|
10773
|
+
},
|
|
10774
|
+
revoked: {
|
|
10775
|
+
label: "Revoked At",
|
|
10776
|
+
help: "Timestamp at which this access token was revoked"
|
|
10777
|
+
},
|
|
10778
|
+
confirmation: {
|
|
10779
|
+
label: "Confirmation",
|
|
10780
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
9733
10781
|
}
|
|
9734
10782
|
}
|
|
9735
10783
|
},
|
|
@@ -9761,6 +10809,18 @@ var esESObjects = {
|
|
|
9761
10809
|
label: "ID de referencia",
|
|
9762
10810
|
help: "Identificador de correlaci\xF3n proporcionado por quien llama."
|
|
9763
10811
|
},
|
|
10812
|
+
authorization_code_id: {
|
|
10813
|
+
label: "Authorization Code ID",
|
|
10814
|
+
help: "ID of the authorization-code grant this token chain originates from"
|
|
10815
|
+
},
|
|
10816
|
+
resources: {
|
|
10817
|
+
label: "Resources",
|
|
10818
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
10819
|
+
},
|
|
10820
|
+
requested_user_info_claims: {
|
|
10821
|
+
label: "Requested UserInfo Claims",
|
|
10822
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
10823
|
+
},
|
|
9764
10824
|
scopes: {
|
|
9765
10825
|
label: "\xC1mbitos",
|
|
9766
10826
|
help: "Lista serializada en JSON de \xE1mbitos concedidos a este token."
|
|
@@ -9775,9 +10835,25 @@ var esESObjects = {
|
|
|
9775
10835
|
label: "Revocado el",
|
|
9776
10836
|
help: "Marca temporal en la que se revoc\xF3 este token de actualizaci\xF3n."
|
|
9777
10837
|
},
|
|
10838
|
+
rotated_at: {
|
|
10839
|
+
label: "Rotated At",
|
|
10840
|
+
help: "Timestamp at which this token was rotated (superseded by a new row)"
|
|
10841
|
+
},
|
|
10842
|
+
rotation_replay_response: {
|
|
10843
|
+
label: "Rotation Replay Response",
|
|
10844
|
+
help: "Cached token response replayed when the old token is re-presented within the reuse interval"
|
|
10845
|
+
},
|
|
10846
|
+
rotation_replay_expires_at: {
|
|
10847
|
+
label: "Rotation Replay Expires At",
|
|
10848
|
+
help: "End of the post-rotation reuse interval during which the replay response is served"
|
|
10849
|
+
},
|
|
9778
10850
|
auth_time: {
|
|
9779
10851
|
label: "Hora de autenticaci\xF3n",
|
|
9780
10852
|
help: "Momento en que el usuario se autentic\xF3 originalmente para esta cadena de tokens."
|
|
10853
|
+
},
|
|
10854
|
+
confirmation: {
|
|
10855
|
+
label: "Confirmation",
|
|
10856
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
9781
10857
|
}
|
|
9782
10858
|
}
|
|
9783
10859
|
},
|
|
@@ -9801,6 +10877,14 @@ var esESObjects = {
|
|
|
9801
10877
|
label: "ID de referencia",
|
|
9802
10878
|
help: "Identificador de correlaci\xF3n proporcionado por quien llama."
|
|
9803
10879
|
},
|
|
10880
|
+
resources: {
|
|
10881
|
+
label: "Resources",
|
|
10882
|
+
help: "JSON-serialized list of RFC 8707 resource indicators the consent covers"
|
|
10883
|
+
},
|
|
10884
|
+
requested_user_info_claims: {
|
|
10885
|
+
label: "Requested UserInfo Claims",
|
|
10886
|
+
help: "JSON-serialized list of OIDC claims the user consented to expose"
|
|
10887
|
+
},
|
|
9804
10888
|
scopes: {
|
|
9805
10889
|
label: "\xC1mbitos",
|
|
9806
10890
|
help: "Lista serializada en JSON de \xE1mbitos a los que el usuario dio consentimiento."
|
|
@@ -9813,6 +10897,107 @@ var esESObjects = {
|
|
|
9813
10897
|
}
|
|
9814
10898
|
}
|
|
9815
10899
|
},
|
|
10900
|
+
sys_oauth_resource: {
|
|
10901
|
+
label: "OAuth Resource",
|
|
10902
|
+
pluralLabel: "OAuth Resources",
|
|
10903
|
+
description: "Registered OAuth protected resources (RFC 8707 resource indicators)",
|
|
10904
|
+
fields: {
|
|
10905
|
+
id: {
|
|
10906
|
+
label: "ID"
|
|
10907
|
+
},
|
|
10908
|
+
identifier: {
|
|
10909
|
+
label: "Identifier",
|
|
10910
|
+
help: "Resource indicator URI presented in the RFC 8707 resource parameter"
|
|
10911
|
+
},
|
|
10912
|
+
name: {
|
|
10913
|
+
label: "Name"
|
|
10914
|
+
},
|
|
10915
|
+
access_token_ttl: {
|
|
10916
|
+
label: "Access Token TTL",
|
|
10917
|
+
help: "Access-token lifetime in seconds for this resource (overrides the server default)"
|
|
10918
|
+
},
|
|
10919
|
+
refresh_token_ttl: {
|
|
10920
|
+
label: "Refresh Token TTL",
|
|
10921
|
+
help: "Refresh-token lifetime in seconds for this resource (overrides the server default)"
|
|
10922
|
+
},
|
|
10923
|
+
signing_algorithm: {
|
|
10924
|
+
label: "Signing Algorithm",
|
|
10925
|
+
help: "JWS algorithm used to sign access tokens for this resource"
|
|
10926
|
+
},
|
|
10927
|
+
signing_key_id: {
|
|
10928
|
+
label: "Signing Key ID",
|
|
10929
|
+
help: "Key id (kid) used to sign access tokens for this resource"
|
|
10930
|
+
},
|
|
10931
|
+
allowed_scopes: {
|
|
10932
|
+
label: "Allowed Scopes",
|
|
10933
|
+
help: "JSON-serialized list of scopes clients may request for this resource"
|
|
10934
|
+
},
|
|
10935
|
+
custom_claims: {
|
|
10936
|
+
label: "Custom Claims",
|
|
10937
|
+
help: "JSON object of extra claims stamped on access tokens for this resource"
|
|
10938
|
+
},
|
|
10939
|
+
dpop_bound_access_tokens_required: {
|
|
10940
|
+
label: "DPoP Required",
|
|
10941
|
+
help: "Require access tokens for this resource to be DPoP-bound (RFC 9449)"
|
|
10942
|
+
},
|
|
10943
|
+
disabled: {
|
|
10944
|
+
label: "Disabled"
|
|
10945
|
+
},
|
|
10946
|
+
policy_version: {
|
|
10947
|
+
label: "Policy Version",
|
|
10948
|
+
help: "Monotonic version of the resource token policy"
|
|
10949
|
+
},
|
|
10950
|
+
metadata: {
|
|
10951
|
+
label: "Metadata",
|
|
10952
|
+
help: "JSON object of additional resource metadata"
|
|
10953
|
+
},
|
|
10954
|
+
created_at: {
|
|
10955
|
+
label: "Created At"
|
|
10956
|
+
},
|
|
10957
|
+
updated_at: {
|
|
10958
|
+
label: "Updated At"
|
|
10959
|
+
}
|
|
10960
|
+
}
|
|
10961
|
+
},
|
|
10962
|
+
sys_oauth_client_resource: {
|
|
10963
|
+
label: "OAuth Client Resource",
|
|
10964
|
+
pluralLabel: "OAuth Client Resources",
|
|
10965
|
+
description: "Grants allowing an OAuth client to request tokens for a protected resource",
|
|
10966
|
+
fields: {
|
|
10967
|
+
id: {
|
|
10968
|
+
label: "ID"
|
|
10969
|
+
},
|
|
10970
|
+
client_id: {
|
|
10971
|
+
label: "Client ID",
|
|
10972
|
+
help: "Foreign key to sys_oauth_application.client_id"
|
|
10973
|
+
},
|
|
10974
|
+
resource_id: {
|
|
10975
|
+
label: "Resource ID",
|
|
10976
|
+
help: "Foreign key to sys_oauth_resource.identifier"
|
|
10977
|
+
},
|
|
10978
|
+
metadata: {
|
|
10979
|
+
label: "Metadata",
|
|
10980
|
+
help: "JSON object of additional grant metadata"
|
|
10981
|
+
},
|
|
10982
|
+
created_at: {
|
|
10983
|
+
label: "Created At"
|
|
10984
|
+
}
|
|
10985
|
+
}
|
|
10986
|
+
},
|
|
10987
|
+
sys_oauth_client_assertion: {
|
|
10988
|
+
label: "OAuth Client Assertion",
|
|
10989
|
+
pluralLabel: "OAuth Client Assertions",
|
|
10990
|
+
description: "Consumed OAuth client-assertion JTIs (RFC 7523 replay prevention)",
|
|
10991
|
+
fields: {
|
|
10992
|
+
id: {
|
|
10993
|
+
label: "ID"
|
|
10994
|
+
},
|
|
10995
|
+
expires_at: {
|
|
10996
|
+
label: "Expires At",
|
|
10997
|
+
help: "Assertion expiry \u2014 rows past this instant are safe to prune"
|
|
10998
|
+
}
|
|
10999
|
+
}
|
|
11000
|
+
},
|
|
9816
11001
|
sys_jwks: {
|
|
9817
11002
|
label: "Clave de firma (JWKS)",
|
|
9818
11003
|
pluralLabel: "Claves de firma (JWKS)",
|
|
@@ -9830,6 +11015,14 @@ var esESObjects = {
|
|
|
9830
11015
|
label: "Clave privada",
|
|
9831
11016
|
help: "Clave privada JWK serializada en JSON (cifrada en reposo)."
|
|
9832
11017
|
},
|
|
11018
|
+
alg: {
|
|
11019
|
+
label: "Algoritmo",
|
|
11020
|
+
help: "Algoritmo de firma JWK, p. ej. `EdDSA` (better-auth 1.7+)"
|
|
11021
|
+
},
|
|
11022
|
+
crv: {
|
|
11023
|
+
label: "Curva",
|
|
11024
|
+
help: "Curva JWK para claves EdDSA/EC, p. ej. `Ed25519` (better-auth 1.7+)"
|
|
11025
|
+
},
|
|
9833
11026
|
created_at: {
|
|
9834
11027
|
label: "Creado el"
|
|
9835
11028
|
},
|
|
@@ -9886,7 +11079,11 @@ var esESObjects = {
|
|
|
9886
11079
|
},
|
|
9887
11080
|
_views: {
|
|
9888
11081
|
recent: {
|
|
9889
|
-
label: "Recent"
|
|
11082
|
+
label: "Recent",
|
|
11083
|
+
emptyState: {
|
|
11084
|
+
title: "No events",
|
|
11085
|
+
message: "No notification events have been emitted."
|
|
11086
|
+
}
|
|
9890
11087
|
},
|
|
9891
11088
|
by_topic: {
|
|
9892
11089
|
label: "By Topic"
|
|
@@ -9923,23 +11120,6 @@ var esESObjects = {
|
|
|
9923
11120
|
size: {
|
|
9924
11121
|
label: "Tama\xF1o (bytes)"
|
|
9925
11122
|
},
|
|
9926
|
-
share_type: {
|
|
9927
|
-
label: "Tipo de compartici\xF3n",
|
|
9928
|
-
help: "visualizador | colaborador | inferido (heredado del registro principal)",
|
|
9929
|
-
options: {
|
|
9930
|
-
viewer: "Visualizador",
|
|
9931
|
-
collaborator: "Colaborador",
|
|
9932
|
-
inferred: "Inferido"
|
|
9933
|
-
}
|
|
9934
|
-
},
|
|
9935
|
-
visibility: {
|
|
9936
|
-
label: "Visibilidad",
|
|
9937
|
-
options: {
|
|
9938
|
-
internal: "Interno",
|
|
9939
|
-
all_users: "Todos los usuarios",
|
|
9940
|
-
shared_users: "Usuarios compartidos"
|
|
9941
|
-
}
|
|
9942
|
-
},
|
|
9943
11123
|
uploaded_by: {
|
|
9944
11124
|
label: "Subido por"
|
|
9945
11125
|
},
|