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