@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/plugin.js
CHANGED
|
@@ -129,7 +129,12 @@ var enObjects = {
|
|
|
129
129
|
ban_user: {
|
|
130
130
|
label: "Ban User",
|
|
131
131
|
confirmText: "Ban this user? They will be signed out and unable to sign in until unbanned.",
|
|
132
|
-
successMessage: "User banned"
|
|
132
|
+
successMessage: "User banned",
|
|
133
|
+
params: {
|
|
134
|
+
banReason: {
|
|
135
|
+
label: "Ban Reason"
|
|
136
|
+
}
|
|
137
|
+
}
|
|
133
138
|
},
|
|
134
139
|
unban_user: {
|
|
135
140
|
label: "Unban User",
|
|
@@ -141,15 +146,46 @@ var enObjects = {
|
|
|
141
146
|
},
|
|
142
147
|
create_user: {
|
|
143
148
|
label: "Create User",
|
|
144
|
-
successMessage: "User created"
|
|
149
|
+
successMessage: "User created",
|
|
150
|
+
params: {
|
|
151
|
+
phoneNumber: {
|
|
152
|
+
label: "Phone Number",
|
|
153
|
+
helpText: "Sign-in phone number (E.164, e.g. +8613800000000). Required when no email is given."
|
|
154
|
+
},
|
|
155
|
+
generatePassword: {
|
|
156
|
+
label: "Generate Temporary Password"
|
|
157
|
+
},
|
|
158
|
+
password: {
|
|
159
|
+
label: "Password (leave empty to generate)"
|
|
160
|
+
},
|
|
161
|
+
mustChangePassword: {
|
|
162
|
+
label: "Require Password Change On First Login"
|
|
163
|
+
}
|
|
164
|
+
}
|
|
145
165
|
},
|
|
146
166
|
set_user_password: {
|
|
147
167
|
label: "Set Password",
|
|
148
|
-
successMessage: "Password updated"
|
|
168
|
+
successMessage: "Password updated",
|
|
169
|
+
params: {
|
|
170
|
+
generatePassword: {
|
|
171
|
+
label: "Generate Temporary Password"
|
|
172
|
+
},
|
|
173
|
+
newPassword: {
|
|
174
|
+
label: "New Password (leave empty to generate)"
|
|
175
|
+
},
|
|
176
|
+
mustChangePassword: {
|
|
177
|
+
label: "Require Password Change On Next Login"
|
|
178
|
+
}
|
|
179
|
+
}
|
|
149
180
|
},
|
|
150
181
|
set_user_role: {
|
|
151
182
|
label: "Set Platform Role",
|
|
152
|
-
successMessage: "Role updated"
|
|
183
|
+
successMessage: "Role updated",
|
|
184
|
+
params: {
|
|
185
|
+
role: {
|
|
186
|
+
label: "Platform Role"
|
|
187
|
+
}
|
|
188
|
+
}
|
|
153
189
|
},
|
|
154
190
|
impersonate_user: {
|
|
155
191
|
label: "Impersonate User",
|
|
@@ -162,11 +198,27 @@ var enObjects = {
|
|
|
162
198
|
},
|
|
163
199
|
change_my_password: {
|
|
164
200
|
label: "Change Password",
|
|
165
|
-
successMessage: "Password changed"
|
|
201
|
+
successMessage: "Password changed",
|
|
202
|
+
params: {
|
|
203
|
+
currentPassword: {
|
|
204
|
+
label: "Current Password"
|
|
205
|
+
},
|
|
206
|
+
newPassword: {
|
|
207
|
+
label: "New Password"
|
|
208
|
+
},
|
|
209
|
+
revokeOtherSessions: {
|
|
210
|
+
label: "Sign out other devices"
|
|
211
|
+
}
|
|
212
|
+
}
|
|
166
213
|
},
|
|
167
214
|
change_my_email: {
|
|
168
215
|
label: "Change Email",
|
|
169
|
-
successMessage: "Verification email sent \u2014 check the new address to confirm."
|
|
216
|
+
successMessage: "Verification email sent \u2014 check the new address to confirm.",
|
|
217
|
+
params: {
|
|
218
|
+
newEmail: {
|
|
219
|
+
label: "New Email"
|
|
220
|
+
}
|
|
221
|
+
}
|
|
170
222
|
},
|
|
171
223
|
resend_verification_email: {
|
|
172
224
|
label: "Resend Verification Email",
|
|
@@ -175,21 +227,41 @@ var enObjects = {
|
|
|
175
227
|
delete_my_account: {
|
|
176
228
|
label: "Delete My Account",
|
|
177
229
|
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.",
|
|
178
|
-
successMessage: "Account deleted"
|
|
230
|
+
successMessage: "Account deleted",
|
|
231
|
+
params: {
|
|
232
|
+
password: {
|
|
233
|
+
label: "Current Password"
|
|
234
|
+
}
|
|
235
|
+
}
|
|
179
236
|
},
|
|
180
237
|
enable_two_factor: {
|
|
181
238
|
label: "Enable Two-Factor Auth",
|
|
182
|
-
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."
|
|
239
|
+
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.",
|
|
240
|
+
params: {
|
|
241
|
+
password: {
|
|
242
|
+
label: "Current Password"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
183
245
|
},
|
|
184
246
|
disable_two_factor: {
|
|
185
247
|
label: "Disable Two-Factor Auth",
|
|
186
248
|
confirmText: "Turn off two-factor authentication? Your account will be less secure.",
|
|
187
|
-
successMessage: "Two-factor authentication disabled."
|
|
249
|
+
successMessage: "Two-factor authentication disabled.",
|
|
250
|
+
params: {
|
|
251
|
+
password: {
|
|
252
|
+
label: "Current Password"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
188
255
|
},
|
|
189
256
|
generate_backup_codes: {
|
|
190
257
|
label: "Regenerate Backup Codes",
|
|
191
258
|
confirmText: "Generate a new set of backup codes? Any previously generated codes will stop working.",
|
|
192
|
-
successMessage: "New backup codes generated \u2014 save them somewhere safe."
|
|
259
|
+
successMessage: "New backup codes generated \u2014 save them somewhere safe.",
|
|
260
|
+
params: {
|
|
261
|
+
password: {
|
|
262
|
+
label: "Current Password"
|
|
263
|
+
}
|
|
264
|
+
}
|
|
193
265
|
}
|
|
194
266
|
}
|
|
195
267
|
},
|
|
@@ -333,7 +405,21 @@ var enObjects = {
|
|
|
333
405
|
},
|
|
334
406
|
_actions: {
|
|
335
407
|
link_social: {
|
|
336
|
-
label: "Link Social Account"
|
|
408
|
+
label: "Link Social Account",
|
|
409
|
+
params: {
|
|
410
|
+
provider: {
|
|
411
|
+
label: "Provider",
|
|
412
|
+
options: {
|
|
413
|
+
google: "Google",
|
|
414
|
+
github: "GitHub",
|
|
415
|
+
microsoft: "Microsoft",
|
|
416
|
+
apple: "Apple",
|
|
417
|
+
facebook: "Facebook",
|
|
418
|
+
gitlab: "GitLab",
|
|
419
|
+
discord: "Discord"
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
}
|
|
337
423
|
},
|
|
338
424
|
unlink_account: {
|
|
339
425
|
label: "Unlink Account",
|
|
@@ -466,7 +552,11 @@ var enObjects = {
|
|
|
466
552
|
},
|
|
467
553
|
_views: {
|
|
468
554
|
mine: {
|
|
469
|
-
label: "My Memberships"
|
|
555
|
+
label: "My Memberships",
|
|
556
|
+
emptyState: {
|
|
557
|
+
title: "No organizations yet",
|
|
558
|
+
message: "You haven't joined any organizations."
|
|
559
|
+
}
|
|
470
560
|
}
|
|
471
561
|
},
|
|
472
562
|
_actions: {
|
|
@@ -886,16 +976,31 @@ var enObjects = {
|
|
|
886
976
|
},
|
|
887
977
|
_actions: {
|
|
888
978
|
enable_two_factor: {
|
|
889
|
-
label: "Enable 2FA"
|
|
979
|
+
label: "Enable 2FA",
|
|
980
|
+
params: {
|
|
981
|
+
password: {
|
|
982
|
+
label: "Current Password"
|
|
983
|
+
}
|
|
984
|
+
}
|
|
890
985
|
},
|
|
891
986
|
disable_two_factor: {
|
|
892
987
|
label: "Disable 2FA",
|
|
893
988
|
confirmText: "Disable two-factor authentication on your account?",
|
|
894
|
-
successMessage: "2FA disabled"
|
|
989
|
+
successMessage: "2FA disabled",
|
|
990
|
+
params: {
|
|
991
|
+
password: {
|
|
992
|
+
label: "Current Password"
|
|
993
|
+
}
|
|
994
|
+
}
|
|
895
995
|
},
|
|
896
996
|
regenerate_backup_codes: {
|
|
897
997
|
label: "Regenerate Backup Codes",
|
|
898
|
-
confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately."
|
|
998
|
+
confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately.",
|
|
999
|
+
params: {
|
|
1000
|
+
password: {
|
|
1001
|
+
label: "Current Password"
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
899
1004
|
}
|
|
900
1005
|
}
|
|
901
1006
|
},
|
|
@@ -1075,6 +1180,18 @@ var enObjects = {
|
|
|
1075
1180
|
label: "Subject Type",
|
|
1076
1181
|
help: "OIDC subject type (e.g. public, pairwise)"
|
|
1077
1182
|
},
|
|
1183
|
+
jwks: {
|
|
1184
|
+
label: "JWKS",
|
|
1185
|
+
help: "Client JSON Web Key Set (for private_key_jwt / signed-request verification)"
|
|
1186
|
+
},
|
|
1187
|
+
jwks_uri: {
|
|
1188
|
+
label: "JWKS URI",
|
|
1189
|
+
help: "URL of the client JSON Web Key Set"
|
|
1190
|
+
},
|
|
1191
|
+
dpop_bound_access_tokens: {
|
|
1192
|
+
label: "DPoP-bound Access Tokens",
|
|
1193
|
+
help: "Require access tokens issued to this client to be DPoP-bound (RFC 9449)"
|
|
1194
|
+
},
|
|
1078
1195
|
disabled: {
|
|
1079
1196
|
label: "Disabled"
|
|
1080
1197
|
},
|
|
@@ -1086,6 +1203,14 @@ var enObjects = {
|
|
|
1086
1203
|
label: "Enable End Session",
|
|
1087
1204
|
help: "Allow the client to call the OIDC end-session endpoint"
|
|
1088
1205
|
},
|
|
1206
|
+
backchannel_logout_uri: {
|
|
1207
|
+
label: "Back-channel Logout URI",
|
|
1208
|
+
help: "OIDC back-channel logout endpoint of the client"
|
|
1209
|
+
},
|
|
1210
|
+
backchannel_logout_session_required: {
|
|
1211
|
+
label: "Back-channel Logout Session Required",
|
|
1212
|
+
help: "Whether the back-channel logout token must include a sid claim"
|
|
1213
|
+
},
|
|
1089
1214
|
software_id: {
|
|
1090
1215
|
label: "Software ID"
|
|
1091
1216
|
},
|
|
@@ -1137,7 +1262,25 @@ var enObjects = {
|
|
|
1137
1262
|
successMessage: "OAuth application enabled"
|
|
1138
1263
|
},
|
|
1139
1264
|
create_oauth_application: {
|
|
1140
|
-
label: "Register OAuth Application"
|
|
1265
|
+
label: "Register OAuth Application",
|
|
1266
|
+
params: {
|
|
1267
|
+
name: {
|
|
1268
|
+
label: "Application Name"
|
|
1269
|
+
},
|
|
1270
|
+
redirectURLs: {
|
|
1271
|
+
label: "Redirect URLs",
|
|
1272
|
+
helpText: "One URL per line. Must use https:// in production."
|
|
1273
|
+
},
|
|
1274
|
+
type: {
|
|
1275
|
+
label: "Application Type",
|
|
1276
|
+
options: {
|
|
1277
|
+
web: "Web",
|
|
1278
|
+
native: "Native",
|
|
1279
|
+
"user-agent-based": "User-agent based",
|
|
1280
|
+
public: "Public"
|
|
1281
|
+
}
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1141
1284
|
},
|
|
1142
1285
|
rotate_client_secret: {
|
|
1143
1286
|
label: "Rotate Client Secret",
|
|
@@ -1182,6 +1325,18 @@ var enObjects = {
|
|
|
1182
1325
|
label: "Reference ID",
|
|
1183
1326
|
help: "Caller-supplied correlation identifier"
|
|
1184
1327
|
},
|
|
1328
|
+
authorization_code_id: {
|
|
1329
|
+
label: "Authorization Code ID",
|
|
1330
|
+
help: "ID of the authorization-code grant this token originates from"
|
|
1331
|
+
},
|
|
1332
|
+
resources: {
|
|
1333
|
+
label: "Resources",
|
|
1334
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
1335
|
+
},
|
|
1336
|
+
requested_user_info_claims: {
|
|
1337
|
+
label: "Requested UserInfo Claims",
|
|
1338
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
1339
|
+
},
|
|
1185
1340
|
scopes: {
|
|
1186
1341
|
label: "Scopes",
|
|
1187
1342
|
help: "JSON-serialized list of scopes granted to this token"
|
|
@@ -1191,6 +1346,14 @@ var enObjects = {
|
|
|
1191
1346
|
},
|
|
1192
1347
|
created_at: {
|
|
1193
1348
|
label: "Created At"
|
|
1349
|
+
},
|
|
1350
|
+
revoked: {
|
|
1351
|
+
label: "Revoked At",
|
|
1352
|
+
help: "Timestamp at which this access token was revoked"
|
|
1353
|
+
},
|
|
1354
|
+
confirmation: {
|
|
1355
|
+
label: "Confirmation",
|
|
1356
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
1194
1357
|
}
|
|
1195
1358
|
}
|
|
1196
1359
|
},
|
|
@@ -1222,6 +1385,18 @@ var enObjects = {
|
|
|
1222
1385
|
label: "Reference ID",
|
|
1223
1386
|
help: "Caller-supplied correlation identifier"
|
|
1224
1387
|
},
|
|
1388
|
+
authorization_code_id: {
|
|
1389
|
+
label: "Authorization Code ID",
|
|
1390
|
+
help: "ID of the authorization-code grant this token chain originates from"
|
|
1391
|
+
},
|
|
1392
|
+
resources: {
|
|
1393
|
+
label: "Resources",
|
|
1394
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
1395
|
+
},
|
|
1396
|
+
requested_user_info_claims: {
|
|
1397
|
+
label: "Requested UserInfo Claims",
|
|
1398
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
1399
|
+
},
|
|
1225
1400
|
scopes: {
|
|
1226
1401
|
label: "Scopes",
|
|
1227
1402
|
help: "JSON-serialized list of scopes granted to this token"
|
|
@@ -1236,9 +1411,25 @@ var enObjects = {
|
|
|
1236
1411
|
label: "Revoked At",
|
|
1237
1412
|
help: "Timestamp at which this refresh token was revoked"
|
|
1238
1413
|
},
|
|
1414
|
+
rotated_at: {
|
|
1415
|
+
label: "Rotated At",
|
|
1416
|
+
help: "Timestamp at which this token was rotated (superseded by a new row)"
|
|
1417
|
+
},
|
|
1418
|
+
rotation_replay_response: {
|
|
1419
|
+
label: "Rotation Replay Response",
|
|
1420
|
+
help: "Cached token response replayed when the old token is re-presented within the reuse interval"
|
|
1421
|
+
},
|
|
1422
|
+
rotation_replay_expires_at: {
|
|
1423
|
+
label: "Rotation Replay Expires At",
|
|
1424
|
+
help: "End of the post-rotation reuse interval during which the replay response is served"
|
|
1425
|
+
},
|
|
1239
1426
|
auth_time: {
|
|
1240
1427
|
label: "Auth Time",
|
|
1241
1428
|
help: "When the user originally authenticated for this token chain"
|
|
1429
|
+
},
|
|
1430
|
+
confirmation: {
|
|
1431
|
+
label: "Confirmation",
|
|
1432
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
1242
1433
|
}
|
|
1243
1434
|
}
|
|
1244
1435
|
},
|
|
@@ -1262,6 +1453,14 @@ var enObjects = {
|
|
|
1262
1453
|
label: "Reference ID",
|
|
1263
1454
|
help: "Caller-supplied correlation identifier"
|
|
1264
1455
|
},
|
|
1456
|
+
resources: {
|
|
1457
|
+
label: "Resources",
|
|
1458
|
+
help: "JSON-serialized list of RFC 8707 resource indicators the consent covers"
|
|
1459
|
+
},
|
|
1460
|
+
requested_user_info_claims: {
|
|
1461
|
+
label: "Requested UserInfo Claims",
|
|
1462
|
+
help: "JSON-serialized list of OIDC claims the user consented to expose"
|
|
1463
|
+
},
|
|
1265
1464
|
scopes: {
|
|
1266
1465
|
label: "Scopes",
|
|
1267
1466
|
help: "JSON-serialized list of scopes the user consented to"
|
|
@@ -1274,6 +1473,107 @@ var enObjects = {
|
|
|
1274
1473
|
}
|
|
1275
1474
|
}
|
|
1276
1475
|
},
|
|
1476
|
+
sys_oauth_resource: {
|
|
1477
|
+
label: "OAuth Resource",
|
|
1478
|
+
pluralLabel: "OAuth Resources",
|
|
1479
|
+
description: "Registered OAuth protected resources (RFC 8707 resource indicators)",
|
|
1480
|
+
fields: {
|
|
1481
|
+
id: {
|
|
1482
|
+
label: "ID"
|
|
1483
|
+
},
|
|
1484
|
+
identifier: {
|
|
1485
|
+
label: "Identifier",
|
|
1486
|
+
help: "Resource indicator URI presented in the RFC 8707 resource parameter"
|
|
1487
|
+
},
|
|
1488
|
+
name: {
|
|
1489
|
+
label: "Name"
|
|
1490
|
+
},
|
|
1491
|
+
access_token_ttl: {
|
|
1492
|
+
label: "Access Token TTL",
|
|
1493
|
+
help: "Access-token lifetime in seconds for this resource (overrides the server default)"
|
|
1494
|
+
},
|
|
1495
|
+
refresh_token_ttl: {
|
|
1496
|
+
label: "Refresh Token TTL",
|
|
1497
|
+
help: "Refresh-token lifetime in seconds for this resource (overrides the server default)"
|
|
1498
|
+
},
|
|
1499
|
+
signing_algorithm: {
|
|
1500
|
+
label: "Signing Algorithm",
|
|
1501
|
+
help: "JWS algorithm used to sign access tokens for this resource"
|
|
1502
|
+
},
|
|
1503
|
+
signing_key_id: {
|
|
1504
|
+
label: "Signing Key ID",
|
|
1505
|
+
help: "Key id (kid) used to sign access tokens for this resource"
|
|
1506
|
+
},
|
|
1507
|
+
allowed_scopes: {
|
|
1508
|
+
label: "Allowed Scopes",
|
|
1509
|
+
help: "JSON-serialized list of scopes clients may request for this resource"
|
|
1510
|
+
},
|
|
1511
|
+
custom_claims: {
|
|
1512
|
+
label: "Custom Claims",
|
|
1513
|
+
help: "JSON object of extra claims stamped on access tokens for this resource"
|
|
1514
|
+
},
|
|
1515
|
+
dpop_bound_access_tokens_required: {
|
|
1516
|
+
label: "DPoP Required",
|
|
1517
|
+
help: "Require access tokens for this resource to be DPoP-bound (RFC 9449)"
|
|
1518
|
+
},
|
|
1519
|
+
disabled: {
|
|
1520
|
+
label: "Disabled"
|
|
1521
|
+
},
|
|
1522
|
+
policy_version: {
|
|
1523
|
+
label: "Policy Version",
|
|
1524
|
+
help: "Monotonic version of the resource token policy"
|
|
1525
|
+
},
|
|
1526
|
+
metadata: {
|
|
1527
|
+
label: "Metadata",
|
|
1528
|
+
help: "JSON object of additional resource metadata"
|
|
1529
|
+
},
|
|
1530
|
+
created_at: {
|
|
1531
|
+
label: "Created At"
|
|
1532
|
+
},
|
|
1533
|
+
updated_at: {
|
|
1534
|
+
label: "Updated At"
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
},
|
|
1538
|
+
sys_oauth_client_resource: {
|
|
1539
|
+
label: "OAuth Client Resource",
|
|
1540
|
+
pluralLabel: "OAuth Client Resources",
|
|
1541
|
+
description: "Grants allowing an OAuth client to request tokens for a protected resource",
|
|
1542
|
+
fields: {
|
|
1543
|
+
id: {
|
|
1544
|
+
label: "ID"
|
|
1545
|
+
},
|
|
1546
|
+
client_id: {
|
|
1547
|
+
label: "Client ID",
|
|
1548
|
+
help: "Foreign key to sys_oauth_application.client_id"
|
|
1549
|
+
},
|
|
1550
|
+
resource_id: {
|
|
1551
|
+
label: "Resource ID",
|
|
1552
|
+
help: "Foreign key to sys_oauth_resource.identifier"
|
|
1553
|
+
},
|
|
1554
|
+
metadata: {
|
|
1555
|
+
label: "Metadata",
|
|
1556
|
+
help: "JSON object of additional grant metadata"
|
|
1557
|
+
},
|
|
1558
|
+
created_at: {
|
|
1559
|
+
label: "Created At"
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
sys_oauth_client_assertion: {
|
|
1564
|
+
label: "OAuth Client Assertion",
|
|
1565
|
+
pluralLabel: "OAuth Client Assertions",
|
|
1566
|
+
description: "Consumed OAuth client-assertion JTIs (RFC 7523 replay prevention)",
|
|
1567
|
+
fields: {
|
|
1568
|
+
id: {
|
|
1569
|
+
label: "ID"
|
|
1570
|
+
},
|
|
1571
|
+
expires_at: {
|
|
1572
|
+
label: "Expires At",
|
|
1573
|
+
help: "Assertion expiry \u2014 rows past this instant are safe to prune"
|
|
1574
|
+
}
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1277
1577
|
sys_jwks: {
|
|
1278
1578
|
label: "JWKS Key",
|
|
1279
1579
|
pluralLabel: "JWKS Keys",
|
|
@@ -1291,6 +1591,14 @@ var enObjects = {
|
|
|
1291
1591
|
label: "Private Key",
|
|
1292
1592
|
help: "JSON-serialized JWK private key (encrypted at rest)"
|
|
1293
1593
|
},
|
|
1594
|
+
alg: {
|
|
1595
|
+
label: "Algorithm",
|
|
1596
|
+
help: "JWK signing algorithm, e.g. `EdDSA` (better-auth 1.7+)"
|
|
1597
|
+
},
|
|
1598
|
+
crv: {
|
|
1599
|
+
label: "Curve",
|
|
1600
|
+
help: "JWK curve for EdDSA/EC keys, e.g. `Ed25519` (better-auth 1.7+)"
|
|
1601
|
+
},
|
|
1294
1602
|
created_at: {
|
|
1295
1603
|
label: "Created At"
|
|
1296
1604
|
},
|
|
@@ -1347,7 +1655,11 @@ var enObjects = {
|
|
|
1347
1655
|
},
|
|
1348
1656
|
_views: {
|
|
1349
1657
|
recent: {
|
|
1350
|
-
label: "Recent"
|
|
1658
|
+
label: "Recent",
|
|
1659
|
+
emptyState: {
|
|
1660
|
+
title: "No events",
|
|
1661
|
+
message: "No notification events have been emitted."
|
|
1662
|
+
}
|
|
1351
1663
|
},
|
|
1352
1664
|
by_topic: {
|
|
1353
1665
|
label: "By Topic"
|
|
@@ -1384,23 +1696,6 @@ var enObjects = {
|
|
|
1384
1696
|
size: {
|
|
1385
1697
|
label: "Size (bytes)"
|
|
1386
1698
|
},
|
|
1387
|
-
share_type: {
|
|
1388
|
-
label: "Share Type",
|
|
1389
|
-
help: "viewer | collaborator | inferred (inherited from parent record)",
|
|
1390
|
-
options: {
|
|
1391
|
-
viewer: "viewer",
|
|
1392
|
-
collaborator: "collaborator",
|
|
1393
|
-
inferred: "inferred"
|
|
1394
|
-
}
|
|
1395
|
-
},
|
|
1396
|
-
visibility: {
|
|
1397
|
-
label: "Visibility",
|
|
1398
|
-
options: {
|
|
1399
|
-
internal: "internal",
|
|
1400
|
-
all_users: "all_users",
|
|
1401
|
-
shared_users: "shared_users"
|
|
1402
|
-
}
|
|
1403
|
-
},
|
|
1404
1699
|
uploaded_by: {
|
|
1405
1700
|
label: "Uploaded By"
|
|
1406
1701
|
},
|
|
@@ -2707,7 +3002,12 @@ var zhCNObjects = {
|
|
|
2707
3002
|
ban_user: {
|
|
2708
3003
|
label: "\u5C01\u7981\u7528\u6237",
|
|
2709
3004
|
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",
|
|
2710
|
-
successMessage: "\u7528\u6237\u5DF2\u5C01\u7981"
|
|
3005
|
+
successMessage: "\u7528\u6237\u5DF2\u5C01\u7981",
|
|
3006
|
+
params: {
|
|
3007
|
+
banReason: {
|
|
3008
|
+
label: "\u5C01\u7981\u539F\u56E0"
|
|
3009
|
+
}
|
|
3010
|
+
}
|
|
2711
3011
|
},
|
|
2712
3012
|
unban_user: {
|
|
2713
3013
|
label: "\u89E3\u9664\u5C01\u7981",
|
|
@@ -2719,15 +3019,46 @@ var zhCNObjects = {
|
|
|
2719
3019
|
},
|
|
2720
3020
|
create_user: {
|
|
2721
3021
|
label: "\u521B\u5EFA\u7528\u6237",
|
|
2722
|
-
successMessage: "\u7528\u6237\u5DF2\u521B\u5EFA"
|
|
3022
|
+
successMessage: "\u7528\u6237\u5DF2\u521B\u5EFA",
|
|
3023
|
+
params: {
|
|
3024
|
+
phoneNumber: {
|
|
3025
|
+
label: "\u624B\u673A\u53F7",
|
|
3026
|
+
helpText: "\u767B\u5F55\u624B\u673A\u53F7\uFF08E.164 \u683C\u5F0F\uFF0C\u5982 +8613800000000\uFF09\u3002\u672A\u586B\u5199\u90AE\u7BB1\u65F6\u5FC5\u586B\u3002"
|
|
3027
|
+
},
|
|
3028
|
+
generatePassword: {
|
|
3029
|
+
label: "\u751F\u6210\u4E34\u65F6\u5BC6\u7801"
|
|
3030
|
+
},
|
|
3031
|
+
password: {
|
|
3032
|
+
label: "\u5BC6\u7801\uFF08\u7559\u7A7A\u5219\u81EA\u52A8\u751F\u6210\uFF09"
|
|
3033
|
+
},
|
|
3034
|
+
mustChangePassword: {
|
|
3035
|
+
label: "\u9996\u6B21\u767B\u5F55\u65F6\u5FC5\u987B\u4FEE\u6539\u5BC6\u7801"
|
|
3036
|
+
}
|
|
3037
|
+
}
|
|
2723
3038
|
},
|
|
2724
3039
|
set_user_password: {
|
|
2725
3040
|
label: "\u8BBE\u7F6E\u5BC6\u7801",
|
|
2726
|
-
successMessage: "\u5BC6\u7801\u5DF2\u66F4\u65B0"
|
|
3041
|
+
successMessage: "\u5BC6\u7801\u5DF2\u66F4\u65B0",
|
|
3042
|
+
params: {
|
|
3043
|
+
generatePassword: {
|
|
3044
|
+
label: "\u751F\u6210\u4E34\u65F6\u5BC6\u7801"
|
|
3045
|
+
},
|
|
3046
|
+
newPassword: {
|
|
3047
|
+
label: "\u65B0\u5BC6\u7801\uFF08\u7559\u7A7A\u5219\u81EA\u52A8\u751F\u6210\uFF09"
|
|
3048
|
+
},
|
|
3049
|
+
mustChangePassword: {
|
|
3050
|
+
label: "\u4E0B\u6B21\u767B\u5F55\u65F6\u5FC5\u987B\u4FEE\u6539\u5BC6\u7801"
|
|
3051
|
+
}
|
|
3052
|
+
}
|
|
2727
3053
|
},
|
|
2728
3054
|
set_user_role: {
|
|
2729
3055
|
label: "\u8BBE\u7F6E\u5E73\u53F0\u89D2\u8272",
|
|
2730
|
-
successMessage: "\u89D2\u8272\u5DF2\u66F4\u65B0"
|
|
3056
|
+
successMessage: "\u89D2\u8272\u5DF2\u66F4\u65B0",
|
|
3057
|
+
params: {
|
|
3058
|
+
role: {
|
|
3059
|
+
label: "\u5E73\u53F0\u89D2\u8272"
|
|
3060
|
+
}
|
|
3061
|
+
}
|
|
2731
3062
|
},
|
|
2732
3063
|
impersonate_user: {
|
|
2733
3064
|
label: "\u6A21\u62DF\u7528\u6237",
|
|
@@ -2740,11 +3071,27 @@ var zhCNObjects = {
|
|
|
2740
3071
|
},
|
|
2741
3072
|
change_my_password: {
|
|
2742
3073
|
label: "\u4FEE\u6539\u5BC6\u7801",
|
|
2743
|
-
successMessage: "\u5DF2\u4FEE\u6539\u5BC6\u7801"
|
|
3074
|
+
successMessage: "\u5DF2\u4FEE\u6539\u5BC6\u7801",
|
|
3075
|
+
params: {
|
|
3076
|
+
currentPassword: {
|
|
3077
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3078
|
+
},
|
|
3079
|
+
newPassword: {
|
|
3080
|
+
label: "\u65B0\u5BC6\u7801"
|
|
3081
|
+
},
|
|
3082
|
+
revokeOtherSessions: {
|
|
3083
|
+
label: "\u767B\u51FA\u5176\u4ED6\u8BBE\u5907"
|
|
3084
|
+
}
|
|
3085
|
+
}
|
|
2744
3086
|
},
|
|
2745
3087
|
change_my_email: {
|
|
2746
3088
|
label: "\u4FEE\u6539\u90AE\u7BB1",
|
|
2747
|
-
successMessage: "\u5DF2\u53D1\u9001\u9A8C\u8BC1\u90AE\u4EF6\uFF0C\u8BF7\u524D\u5F80\u65B0\u90AE\u7BB1\u786E\u8BA4\u3002"
|
|
3089
|
+
successMessage: "\u5DF2\u53D1\u9001\u9A8C\u8BC1\u90AE\u4EF6\uFF0C\u8BF7\u524D\u5F80\u65B0\u90AE\u7BB1\u786E\u8BA4\u3002",
|
|
3090
|
+
params: {
|
|
3091
|
+
newEmail: {
|
|
3092
|
+
label: "\u65B0\u90AE\u7BB1"
|
|
3093
|
+
}
|
|
3094
|
+
}
|
|
2748
3095
|
},
|
|
2749
3096
|
resend_verification_email: {
|
|
2750
3097
|
label: "\u91CD\u53D1\u9A8C\u8BC1\u90AE\u4EF6",
|
|
@@ -2753,21 +3100,41 @@ var zhCNObjects = {
|
|
|
2753
3100
|
delete_my_account: {
|
|
2754
3101
|
label: "\u5220\u9664\u6211\u7684\u8D26\u53F7",
|
|
2755
3102
|
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",
|
|
2756
|
-
successMessage: "\u5DF2\u5220\u9664\u8D26\u53F7"
|
|
3103
|
+
successMessage: "\u5DF2\u5220\u9664\u8D26\u53F7",
|
|
3104
|
+
params: {
|
|
3105
|
+
password: {
|
|
3106
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3107
|
+
}
|
|
3108
|
+
}
|
|
2757
3109
|
},
|
|
2758
3110
|
enable_two_factor: {
|
|
2759
3111
|
label: "\u542F\u7528\u53CC\u56E0\u7D20\u8BA4\u8BC1",
|
|
2760
|
-
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"
|
|
3112
|
+
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",
|
|
3113
|
+
params: {
|
|
3114
|
+
password: {
|
|
3115
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3116
|
+
}
|
|
3117
|
+
}
|
|
2761
3118
|
},
|
|
2762
3119
|
disable_two_factor: {
|
|
2763
3120
|
label: "\u505C\u7528\u53CC\u56E0\u7D20\u8BA4\u8BC1",
|
|
2764
3121
|
confirmText: "\u8981\u5173\u95ED\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5417\uFF1F\u60A8\u7684\u8D26\u6237\u5B89\u5168\u6027\u5C06\u964D\u4F4E\u3002",
|
|
2765
|
-
successMessage: "\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5DF2\u505C\u7528\u3002"
|
|
3122
|
+
successMessage: "\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5DF2\u505C\u7528\u3002",
|
|
3123
|
+
params: {
|
|
3124
|
+
password: {
|
|
3125
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3126
|
+
}
|
|
3127
|
+
}
|
|
2766
3128
|
},
|
|
2767
3129
|
generate_backup_codes: {
|
|
2768
3130
|
label: "\u91CD\u65B0\u751F\u6210\u5907\u7528\u7801",
|
|
2769
3131
|
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",
|
|
2770
|
-
successMessage: "\u65B0\u5907\u7528\u7801\u5DF2\u751F\u6210\u2014\u2014\u8BF7\u59A5\u5584\u4FDD\u5B58\u3002"
|
|
3132
|
+
successMessage: "\u65B0\u5907\u7528\u7801\u5DF2\u751F\u6210\u2014\u2014\u8BF7\u59A5\u5584\u4FDD\u5B58\u3002",
|
|
3133
|
+
params: {
|
|
3134
|
+
password: {
|
|
3135
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3136
|
+
}
|
|
3137
|
+
}
|
|
2771
3138
|
}
|
|
2772
3139
|
}
|
|
2773
3140
|
},
|
|
@@ -2911,7 +3278,21 @@ var zhCNObjects = {
|
|
|
2911
3278
|
},
|
|
2912
3279
|
_actions: {
|
|
2913
3280
|
link_social: {
|
|
2914
|
-
label: "\u5173\u8054\u793E\u4EA4\u8D26\u53F7"
|
|
3281
|
+
label: "\u5173\u8054\u793E\u4EA4\u8D26\u53F7",
|
|
3282
|
+
params: {
|
|
3283
|
+
provider: {
|
|
3284
|
+
label: "\u670D\u52A1\u63D0\u4F9B\u5546",
|
|
3285
|
+
options: {
|
|
3286
|
+
google: "Google",
|
|
3287
|
+
github: "GitHub",
|
|
3288
|
+
microsoft: "Microsoft",
|
|
3289
|
+
apple: "Apple",
|
|
3290
|
+
facebook: "Facebook",
|
|
3291
|
+
gitlab: "GitLab",
|
|
3292
|
+
discord: "Discord"
|
|
3293
|
+
}
|
|
3294
|
+
}
|
|
3295
|
+
}
|
|
2915
3296
|
},
|
|
2916
3297
|
unlink_account: {
|
|
2917
3298
|
label: "\u89E3\u9664\u5173\u8054",
|
|
@@ -3044,7 +3425,11 @@ var zhCNObjects = {
|
|
|
3044
3425
|
},
|
|
3045
3426
|
_views: {
|
|
3046
3427
|
mine: {
|
|
3047
|
-
label: "My Memberships"
|
|
3428
|
+
label: "My Memberships",
|
|
3429
|
+
emptyState: {
|
|
3430
|
+
title: "No organizations yet",
|
|
3431
|
+
message: "You haven't joined any organizations."
|
|
3432
|
+
}
|
|
3048
3433
|
}
|
|
3049
3434
|
},
|
|
3050
3435
|
_actions: {
|
|
@@ -3464,16 +3849,31 @@ var zhCNObjects = {
|
|
|
3464
3849
|
},
|
|
3465
3850
|
_actions: {
|
|
3466
3851
|
enable_two_factor: {
|
|
3467
|
-
label: "\u542F\u7528 2FA"
|
|
3852
|
+
label: "\u542F\u7528 2FA",
|
|
3853
|
+
params: {
|
|
3854
|
+
password: {
|
|
3855
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3856
|
+
}
|
|
3857
|
+
}
|
|
3468
3858
|
},
|
|
3469
3859
|
disable_two_factor: {
|
|
3470
3860
|
label: "\u505C\u7528 2FA",
|
|
3471
3861
|
confirmText: "\u8981\u505C\u7528\u4F60\u8D26\u53F7\u4E0A\u7684\u53CC\u56E0\u7D20\u8BA4\u8BC1\u5417\uFF1F",
|
|
3472
|
-
successMessage: "2FA \u5DF2\u505C\u7528"
|
|
3862
|
+
successMessage: "2FA \u5DF2\u505C\u7528",
|
|
3863
|
+
params: {
|
|
3864
|
+
password: {
|
|
3865
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3866
|
+
}
|
|
3867
|
+
}
|
|
3473
3868
|
},
|
|
3474
3869
|
regenerate_backup_codes: {
|
|
3475
3870
|
label: "\u91CD\u65B0\u751F\u6210\u5907\u7528\u7801",
|
|
3476
|
-
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"
|
|
3871
|
+
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",
|
|
3872
|
+
params: {
|
|
3873
|
+
password: {
|
|
3874
|
+
label: "\u5F53\u524D\u5BC6\u7801"
|
|
3875
|
+
}
|
|
3876
|
+
}
|
|
3477
3877
|
}
|
|
3478
3878
|
}
|
|
3479
3879
|
},
|
|
@@ -3653,6 +4053,18 @@ var zhCNObjects = {
|
|
|
3653
4053
|
label: "\u4E3B\u4F53\u7C7B\u578B",
|
|
3654
4054
|
help: "OIDC \u4E3B\u4F53\u7C7B\u578B\uFF08\u4F8B\u5982 public\u3001pairwise\uFF09"
|
|
3655
4055
|
},
|
|
4056
|
+
jwks: {
|
|
4057
|
+
label: "JWKS",
|
|
4058
|
+
help: "Client JSON Web Key Set (for private_key_jwt / signed-request verification)"
|
|
4059
|
+
},
|
|
4060
|
+
jwks_uri: {
|
|
4061
|
+
label: "JWKS URI",
|
|
4062
|
+
help: "URL of the client JSON Web Key Set"
|
|
4063
|
+
},
|
|
4064
|
+
dpop_bound_access_tokens: {
|
|
4065
|
+
label: "DPoP-bound Access Tokens",
|
|
4066
|
+
help: "Require access tokens issued to this client to be DPoP-bound (RFC 9449)"
|
|
4067
|
+
},
|
|
3656
4068
|
disabled: {
|
|
3657
4069
|
label: "\u5DF2\u7981\u7528"
|
|
3658
4070
|
},
|
|
@@ -3664,6 +4076,14 @@ var zhCNObjects = {
|
|
|
3664
4076
|
label: "\u542F\u7528 End Session",
|
|
3665
4077
|
help: "\u5141\u8BB8\u5BA2\u6237\u7AEF\u8C03\u7528 OIDC end-session \u7AEF\u70B9"
|
|
3666
4078
|
},
|
|
4079
|
+
backchannel_logout_uri: {
|
|
4080
|
+
label: "Back-channel Logout URI",
|
|
4081
|
+
help: "OIDC back-channel logout endpoint of the client"
|
|
4082
|
+
},
|
|
4083
|
+
backchannel_logout_session_required: {
|
|
4084
|
+
label: "Back-channel Logout Session Required",
|
|
4085
|
+
help: "Whether the back-channel logout token must include a sid claim"
|
|
4086
|
+
},
|
|
3667
4087
|
software_id: {
|
|
3668
4088
|
label: "\u8F6F\u4EF6 ID"
|
|
3669
4089
|
},
|
|
@@ -3715,7 +4135,25 @@ var zhCNObjects = {
|
|
|
3715
4135
|
successMessage: "OAuth \u5E94\u7528\u5DF2\u542F\u7528"
|
|
3716
4136
|
},
|
|
3717
4137
|
create_oauth_application: {
|
|
3718
|
-
label: "\u6CE8\u518C OAuth \u5E94\u7528"
|
|
4138
|
+
label: "\u6CE8\u518C OAuth \u5E94\u7528",
|
|
4139
|
+
params: {
|
|
4140
|
+
name: {
|
|
4141
|
+
label: "\u5E94\u7528\u540D\u79F0"
|
|
4142
|
+
},
|
|
4143
|
+
redirectURLs: {
|
|
4144
|
+
label: "\u56DE\u8C03 URL",
|
|
4145
|
+
helpText: "\u6BCF\u884C\u4E00\u4E2A URL\u3002\u751F\u4EA7\u73AF\u5883\u5FC5\u987B\u4F7F\u7528 https://\u3002"
|
|
4146
|
+
},
|
|
4147
|
+
type: {
|
|
4148
|
+
label: "\u5E94\u7528\u7C7B\u578B",
|
|
4149
|
+
options: {
|
|
4150
|
+
web: "Web",
|
|
4151
|
+
native: "\u539F\u751F\u5E94\u7528",
|
|
4152
|
+
"user-agent-based": "\u57FA\u4E8E User-Agent",
|
|
4153
|
+
public: "\u516C\u5171\u5BA2\u6237\u7AEF"
|
|
4154
|
+
}
|
|
4155
|
+
}
|
|
4156
|
+
}
|
|
3719
4157
|
},
|
|
3720
4158
|
rotate_client_secret: {
|
|
3721
4159
|
label: "\u8F6E\u6362 Client Secret",
|
|
@@ -3760,6 +4198,18 @@ var zhCNObjects = {
|
|
|
3760
4198
|
label: "\u5F15\u7528 ID",
|
|
3761
4199
|
help: "\u8C03\u7528\u65B9\u63D0\u4F9B\u7684\u5173\u8054\u6807\u8BC6\u7B26"
|
|
3762
4200
|
},
|
|
4201
|
+
authorization_code_id: {
|
|
4202
|
+
label: "Authorization Code ID",
|
|
4203
|
+
help: "ID of the authorization-code grant this token originates from"
|
|
4204
|
+
},
|
|
4205
|
+
resources: {
|
|
4206
|
+
label: "Resources",
|
|
4207
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
4208
|
+
},
|
|
4209
|
+
requested_user_info_claims: {
|
|
4210
|
+
label: "Requested UserInfo Claims",
|
|
4211
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
4212
|
+
},
|
|
3763
4213
|
scopes: {
|
|
3764
4214
|
label: "\u8303\u56F4",
|
|
3765
4215
|
help: "\u6388\u4E88\u8BE5\u4EE4\u724C\u7684 scopes \u7684 JSON \u5E8F\u5217\u5316\u5217\u8868"
|
|
@@ -3769,6 +4219,14 @@ var zhCNObjects = {
|
|
|
3769
4219
|
},
|
|
3770
4220
|
created_at: {
|
|
3771
4221
|
label: "\u521B\u5EFA\u65F6\u95F4"
|
|
4222
|
+
},
|
|
4223
|
+
revoked: {
|
|
4224
|
+
label: "Revoked At",
|
|
4225
|
+
help: "Timestamp at which this access token was revoked"
|
|
4226
|
+
},
|
|
4227
|
+
confirmation: {
|
|
4228
|
+
label: "Confirmation",
|
|
4229
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
3772
4230
|
}
|
|
3773
4231
|
}
|
|
3774
4232
|
},
|
|
@@ -3800,6 +4258,18 @@ var zhCNObjects = {
|
|
|
3800
4258
|
label: "\u5F15\u7528 ID",
|
|
3801
4259
|
help: "\u8C03\u7528\u65B9\u63D0\u4F9B\u7684\u5173\u8054\u6807\u8BC6\u7B26"
|
|
3802
4260
|
},
|
|
4261
|
+
authorization_code_id: {
|
|
4262
|
+
label: "Authorization Code ID",
|
|
4263
|
+
help: "ID of the authorization-code grant this token chain originates from"
|
|
4264
|
+
},
|
|
4265
|
+
resources: {
|
|
4266
|
+
label: "Resources",
|
|
4267
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
4268
|
+
},
|
|
4269
|
+
requested_user_info_claims: {
|
|
4270
|
+
label: "Requested UserInfo Claims",
|
|
4271
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
4272
|
+
},
|
|
3803
4273
|
scopes: {
|
|
3804
4274
|
label: "\u8303\u56F4",
|
|
3805
4275
|
help: "\u6388\u4E88\u8BE5\u4EE4\u724C\u7684 scopes \u7684 JSON \u5E8F\u5217\u5316\u5217\u8868"
|
|
@@ -3814,9 +4284,25 @@ var zhCNObjects = {
|
|
|
3814
4284
|
label: "\u64A4\u9500\u65F6\u95F4",
|
|
3815
4285
|
help: "\u8BE5\u5237\u65B0\u4EE4\u724C\u88AB\u64A4\u9500\u7684\u65F6\u95F4\u6233"
|
|
3816
4286
|
},
|
|
4287
|
+
rotated_at: {
|
|
4288
|
+
label: "Rotated At",
|
|
4289
|
+
help: "Timestamp at which this token was rotated (superseded by a new row)"
|
|
4290
|
+
},
|
|
4291
|
+
rotation_replay_response: {
|
|
4292
|
+
label: "Rotation Replay Response",
|
|
4293
|
+
help: "Cached token response replayed when the old token is re-presented within the reuse interval"
|
|
4294
|
+
},
|
|
4295
|
+
rotation_replay_expires_at: {
|
|
4296
|
+
label: "Rotation Replay Expires At",
|
|
4297
|
+
help: "End of the post-rotation reuse interval during which the replay response is served"
|
|
4298
|
+
},
|
|
3817
4299
|
auth_time: {
|
|
3818
4300
|
label: "\u8BA4\u8BC1\u65F6\u95F4",
|
|
3819
4301
|
help: "\u8BE5\u4EE4\u724C\u94FE\u4E2D\u7528\u6237\u6700\u521D\u5B8C\u6210\u8BA4\u8BC1\u7684\u65F6\u95F4"
|
|
4302
|
+
},
|
|
4303
|
+
confirmation: {
|
|
4304
|
+
label: "Confirmation",
|
|
4305
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
3820
4306
|
}
|
|
3821
4307
|
}
|
|
3822
4308
|
},
|
|
@@ -3840,6 +4326,14 @@ var zhCNObjects = {
|
|
|
3840
4326
|
label: "\u5F15\u7528 ID",
|
|
3841
4327
|
help: "\u8C03\u7528\u65B9\u63D0\u4F9B\u7684\u5173\u8054\u6807\u8BC6\u7B26"
|
|
3842
4328
|
},
|
|
4329
|
+
resources: {
|
|
4330
|
+
label: "Resources",
|
|
4331
|
+
help: "JSON-serialized list of RFC 8707 resource indicators the consent covers"
|
|
4332
|
+
},
|
|
4333
|
+
requested_user_info_claims: {
|
|
4334
|
+
label: "Requested UserInfo Claims",
|
|
4335
|
+
help: "JSON-serialized list of OIDC claims the user consented to expose"
|
|
4336
|
+
},
|
|
3843
4337
|
scopes: {
|
|
3844
4338
|
label: "\u8303\u56F4",
|
|
3845
4339
|
help: "\u7528\u6237\u540C\u610F\u7684 scopes \u7684 JSON \u5E8F\u5217\u5316\u5217\u8868"
|
|
@@ -3852,6 +4346,107 @@ var zhCNObjects = {
|
|
|
3852
4346
|
}
|
|
3853
4347
|
}
|
|
3854
4348
|
},
|
|
4349
|
+
sys_oauth_resource: {
|
|
4350
|
+
label: "OAuth Resource",
|
|
4351
|
+
pluralLabel: "OAuth Resources",
|
|
4352
|
+
description: "Registered OAuth protected resources (RFC 8707 resource indicators)",
|
|
4353
|
+
fields: {
|
|
4354
|
+
id: {
|
|
4355
|
+
label: "ID"
|
|
4356
|
+
},
|
|
4357
|
+
identifier: {
|
|
4358
|
+
label: "Identifier",
|
|
4359
|
+
help: "Resource indicator URI presented in the RFC 8707 resource parameter"
|
|
4360
|
+
},
|
|
4361
|
+
name: {
|
|
4362
|
+
label: "Name"
|
|
4363
|
+
},
|
|
4364
|
+
access_token_ttl: {
|
|
4365
|
+
label: "Access Token TTL",
|
|
4366
|
+
help: "Access-token lifetime in seconds for this resource (overrides the server default)"
|
|
4367
|
+
},
|
|
4368
|
+
refresh_token_ttl: {
|
|
4369
|
+
label: "Refresh Token TTL",
|
|
4370
|
+
help: "Refresh-token lifetime in seconds for this resource (overrides the server default)"
|
|
4371
|
+
},
|
|
4372
|
+
signing_algorithm: {
|
|
4373
|
+
label: "Signing Algorithm",
|
|
4374
|
+
help: "JWS algorithm used to sign access tokens for this resource"
|
|
4375
|
+
},
|
|
4376
|
+
signing_key_id: {
|
|
4377
|
+
label: "Signing Key ID",
|
|
4378
|
+
help: "Key id (kid) used to sign access tokens for this resource"
|
|
4379
|
+
},
|
|
4380
|
+
allowed_scopes: {
|
|
4381
|
+
label: "Allowed Scopes",
|
|
4382
|
+
help: "JSON-serialized list of scopes clients may request for this resource"
|
|
4383
|
+
},
|
|
4384
|
+
custom_claims: {
|
|
4385
|
+
label: "Custom Claims",
|
|
4386
|
+
help: "JSON object of extra claims stamped on access tokens for this resource"
|
|
4387
|
+
},
|
|
4388
|
+
dpop_bound_access_tokens_required: {
|
|
4389
|
+
label: "DPoP Required",
|
|
4390
|
+
help: "Require access tokens for this resource to be DPoP-bound (RFC 9449)"
|
|
4391
|
+
},
|
|
4392
|
+
disabled: {
|
|
4393
|
+
label: "Disabled"
|
|
4394
|
+
},
|
|
4395
|
+
policy_version: {
|
|
4396
|
+
label: "Policy Version",
|
|
4397
|
+
help: "Monotonic version of the resource token policy"
|
|
4398
|
+
},
|
|
4399
|
+
metadata: {
|
|
4400
|
+
label: "Metadata",
|
|
4401
|
+
help: "JSON object of additional resource metadata"
|
|
4402
|
+
},
|
|
4403
|
+
created_at: {
|
|
4404
|
+
label: "Created At"
|
|
4405
|
+
},
|
|
4406
|
+
updated_at: {
|
|
4407
|
+
label: "Updated At"
|
|
4408
|
+
}
|
|
4409
|
+
}
|
|
4410
|
+
},
|
|
4411
|
+
sys_oauth_client_resource: {
|
|
4412
|
+
label: "OAuth Client Resource",
|
|
4413
|
+
pluralLabel: "OAuth Client Resources",
|
|
4414
|
+
description: "Grants allowing an OAuth client to request tokens for a protected resource",
|
|
4415
|
+
fields: {
|
|
4416
|
+
id: {
|
|
4417
|
+
label: "ID"
|
|
4418
|
+
},
|
|
4419
|
+
client_id: {
|
|
4420
|
+
label: "Client ID",
|
|
4421
|
+
help: "Foreign key to sys_oauth_application.client_id"
|
|
4422
|
+
},
|
|
4423
|
+
resource_id: {
|
|
4424
|
+
label: "Resource ID",
|
|
4425
|
+
help: "Foreign key to sys_oauth_resource.identifier"
|
|
4426
|
+
},
|
|
4427
|
+
metadata: {
|
|
4428
|
+
label: "Metadata",
|
|
4429
|
+
help: "JSON object of additional grant metadata"
|
|
4430
|
+
},
|
|
4431
|
+
created_at: {
|
|
4432
|
+
label: "Created At"
|
|
4433
|
+
}
|
|
4434
|
+
}
|
|
4435
|
+
},
|
|
4436
|
+
sys_oauth_client_assertion: {
|
|
4437
|
+
label: "OAuth Client Assertion",
|
|
4438
|
+
pluralLabel: "OAuth Client Assertions",
|
|
4439
|
+
description: "Consumed OAuth client-assertion JTIs (RFC 7523 replay prevention)",
|
|
4440
|
+
fields: {
|
|
4441
|
+
id: {
|
|
4442
|
+
label: "ID"
|
|
4443
|
+
},
|
|
4444
|
+
expires_at: {
|
|
4445
|
+
label: "Expires At",
|
|
4446
|
+
help: "Assertion expiry \u2014 rows past this instant are safe to prune"
|
|
4447
|
+
}
|
|
4448
|
+
}
|
|
4449
|
+
},
|
|
3855
4450
|
sys_jwks: {
|
|
3856
4451
|
label: "\u7B7E\u540D\u5BC6\u94A5 (JWKS)",
|
|
3857
4452
|
pluralLabel: "\u7B7E\u540D\u5BC6\u94A5 (JWKS)",
|
|
@@ -3869,6 +4464,14 @@ var zhCNObjects = {
|
|
|
3869
4464
|
label: "\u79C1\u94A5",
|
|
3870
4465
|
help: "JWK \u79C1\u94A5\u7684 JSON \u5E8F\u5217\u5316\u5185\u5BB9\uFF08\u9759\u6001\u5B58\u50A8\u65F6\u52A0\u5BC6\uFF09"
|
|
3871
4466
|
},
|
|
4467
|
+
alg: {
|
|
4468
|
+
label: "\u7B97\u6CD5",
|
|
4469
|
+
help: "JWK \u7B7E\u540D\u7B97\u6CD5\uFF0C\u5982 `EdDSA`\uFF08better-auth 1.7+\uFF09"
|
|
4470
|
+
},
|
|
4471
|
+
crv: {
|
|
4472
|
+
label: "\u66F2\u7EBF",
|
|
4473
|
+
help: "EdDSA/EC \u5BC6\u94A5\u4F7F\u7528\u7684 JWK \u66F2\u7EBF\uFF0C\u5982 `Ed25519`\uFF08better-auth 1.7+\uFF09"
|
|
4474
|
+
},
|
|
3872
4475
|
created_at: {
|
|
3873
4476
|
label: "\u521B\u5EFA\u65F6\u95F4"
|
|
3874
4477
|
},
|
|
@@ -3925,7 +4528,11 @@ var zhCNObjects = {
|
|
|
3925
4528
|
},
|
|
3926
4529
|
_views: {
|
|
3927
4530
|
recent: {
|
|
3928
|
-
label: "Recent"
|
|
4531
|
+
label: "Recent",
|
|
4532
|
+
emptyState: {
|
|
4533
|
+
title: "No events",
|
|
4534
|
+
message: "No notification events have been emitted."
|
|
4535
|
+
}
|
|
3929
4536
|
},
|
|
3930
4537
|
by_topic: {
|
|
3931
4538
|
label: "By Topic"
|
|
@@ -3962,23 +4569,6 @@ var zhCNObjects = {
|
|
|
3962
4569
|
size: {
|
|
3963
4570
|
label: "\u5927\u5C0F\uFF08\u5B57\u8282\uFF09"
|
|
3964
4571
|
},
|
|
3965
|
-
share_type: {
|
|
3966
|
-
label: "\u5171\u4EAB\u7C7B\u578B",
|
|
3967
|
-
help: "viewer | collaborator | inferred\uFF08\u7EE7\u627F\u81EA\u7236\u8BB0\u5F55\uFF09",
|
|
3968
|
-
options: {
|
|
3969
|
-
viewer: "\u67E5\u770B\u8005",
|
|
3970
|
-
collaborator: "\u534F\u4F5C\u8005",
|
|
3971
|
-
inferred: "\u63A8\u65AD"
|
|
3972
|
-
}
|
|
3973
|
-
},
|
|
3974
|
-
visibility: {
|
|
3975
|
-
label: "\u53EF\u89C1\u6027",
|
|
3976
|
-
options: {
|
|
3977
|
-
internal: "\u5185\u90E8",
|
|
3978
|
-
all_users: "\u5168\u90E8\u7528\u6237",
|
|
3979
|
-
shared_users: "\u5171\u4EAB\u7528\u6237"
|
|
3980
|
-
}
|
|
3981
|
-
},
|
|
3982
4572
|
uploaded_by: {
|
|
3983
4573
|
label: "\u4E0A\u4F20\u4EBA"
|
|
3984
4574
|
},
|
|
@@ -5249,7 +5839,12 @@ var jaJPObjects = {
|
|
|
5249
5839
|
ban_user: {
|
|
5250
5840
|
label: "\u5229\u7528\u505C\u6B62",
|
|
5251
5841
|
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",
|
|
5252
|
-
successMessage: "\u30E6\u30FC\u30B6\u30FC\u3092\u5229\u7528\u505C\u6B62\u306B\u3057\u307E\u3057\u305F"
|
|
5842
|
+
successMessage: "\u30E6\u30FC\u30B6\u30FC\u3092\u5229\u7528\u505C\u6B62\u306B\u3057\u307E\u3057\u305F",
|
|
5843
|
+
params: {
|
|
5844
|
+
banReason: {
|
|
5845
|
+
label: "\u5229\u7528\u505C\u6B62\u306E\u7406\u7531"
|
|
5846
|
+
}
|
|
5847
|
+
}
|
|
5253
5848
|
},
|
|
5254
5849
|
unban_user: {
|
|
5255
5850
|
label: "\u5229\u7528\u505C\u6B62\u3092\u89E3\u9664",
|
|
@@ -5261,15 +5856,46 @@ var jaJPObjects = {
|
|
|
5261
5856
|
},
|
|
5262
5857
|
create_user: {
|
|
5263
5858
|
label: "\u30E6\u30FC\u30B6\u30FC\u3092\u4F5C\u6210",
|
|
5264
|
-
successMessage: "\u30E6\u30FC\u30B6\u30FC\u3092\u4F5C\u6210\u3057\u307E\u3057\u305F"
|
|
5859
|
+
successMessage: "\u30E6\u30FC\u30B6\u30FC\u3092\u4F5C\u6210\u3057\u307E\u3057\u305F",
|
|
5860
|
+
params: {
|
|
5861
|
+
phoneNumber: {
|
|
5862
|
+
label: "\u96FB\u8A71\u756A\u53F7",
|
|
5863
|
+
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"
|
|
5864
|
+
},
|
|
5865
|
+
generatePassword: {
|
|
5866
|
+
label: "\u4E00\u6642\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u751F\u6210"
|
|
5867
|
+
},
|
|
5868
|
+
password: {
|
|
5869
|
+
label: "\u30D1\u30B9\u30EF\u30FC\u30C9\uFF08\u7A7A\u6B04\u306E\u5834\u5408\u306F\u81EA\u52D5\u751F\u6210\uFF09"
|
|
5870
|
+
},
|
|
5871
|
+
mustChangePassword: {
|
|
5872
|
+
label: "\u521D\u56DE\u30B5\u30A4\u30F3\u30A4\u30F3\u6642\u306B\u30D1\u30B9\u30EF\u30FC\u30C9\u5909\u66F4\u3092\u5FC5\u9808\u306B\u3059\u308B"
|
|
5873
|
+
}
|
|
5874
|
+
}
|
|
5265
5875
|
},
|
|
5266
5876
|
set_user_password: {
|
|
5267
5877
|
label: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u8A2D\u5B9A",
|
|
5268
|
-
successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F"
|
|
5878
|
+
successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F",
|
|
5879
|
+
params: {
|
|
5880
|
+
generatePassword: {
|
|
5881
|
+
label: "\u4E00\u6642\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u751F\u6210"
|
|
5882
|
+
},
|
|
5883
|
+
newPassword: {
|
|
5884
|
+
label: "\u65B0\u3057\u3044\u30D1\u30B9\u30EF\u30FC\u30C9\uFF08\u7A7A\u6B04\u306E\u5834\u5408\u306F\u81EA\u52D5\u751F\u6210\uFF09"
|
|
5885
|
+
},
|
|
5886
|
+
mustChangePassword: {
|
|
5887
|
+
label: "\u6B21\u56DE\u30B5\u30A4\u30F3\u30A4\u30F3\u6642\u306B\u30D1\u30B9\u30EF\u30FC\u30C9\u5909\u66F4\u3092\u5FC5\u9808\u306B\u3059\u308B"
|
|
5888
|
+
}
|
|
5889
|
+
}
|
|
5269
5890
|
},
|
|
5270
5891
|
set_user_role: {
|
|
5271
5892
|
label: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u30ED\u30FC\u30EB\u3092\u8A2D\u5B9A",
|
|
5272
|
-
successMessage: "\u30ED\u30FC\u30EB\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F"
|
|
5893
|
+
successMessage: "\u30ED\u30FC\u30EB\u3092\u66F4\u65B0\u3057\u307E\u3057\u305F",
|
|
5894
|
+
params: {
|
|
5895
|
+
role: {
|
|
5896
|
+
label: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u30ED\u30FC\u30EB"
|
|
5897
|
+
}
|
|
5898
|
+
}
|
|
5273
5899
|
},
|
|
5274
5900
|
impersonate_user: {
|
|
5275
5901
|
label: "\u4EE3\u7406\u30ED\u30B0\u30A4\u30F3",
|
|
@@ -5282,11 +5908,27 @@ var jaJPObjects = {
|
|
|
5282
5908
|
},
|
|
5283
5909
|
change_my_password: {
|
|
5284
5910
|
label: "\u30D1\u30B9\u30EF\u30FC\u30C9\u5909\u66F4",
|
|
5285
|
-
successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u5909\u66F4\u3057\u307E\u3057\u305F"
|
|
5911
|
+
successMessage: "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u5909\u66F4\u3057\u307E\u3057\u305F",
|
|
5912
|
+
params: {
|
|
5913
|
+
currentPassword: {
|
|
5914
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
5915
|
+
},
|
|
5916
|
+
newPassword: {
|
|
5917
|
+
label: "\u65B0\u3057\u3044\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
5918
|
+
},
|
|
5919
|
+
revokeOtherSessions: {
|
|
5920
|
+
label: "\u4ED6\u306E\u30C7\u30D0\u30A4\u30B9\u304B\u3089\u30B5\u30A4\u30F3\u30A2\u30A6\u30C8"
|
|
5921
|
+
}
|
|
5922
|
+
}
|
|
5286
5923
|
},
|
|
5287
5924
|
change_my_email: {
|
|
5288
5925
|
label: "\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u5909\u66F4",
|
|
5289
|
-
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"
|
|
5926
|
+
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",
|
|
5927
|
+
params: {
|
|
5928
|
+
newEmail: {
|
|
5929
|
+
label: "\u65B0\u3057\u3044\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9"
|
|
5930
|
+
}
|
|
5931
|
+
}
|
|
5290
5932
|
},
|
|
5291
5933
|
resend_verification_email: {
|
|
5292
5934
|
label: "\u78BA\u8A8D\u30E1\u30FC\u30EB\u3092\u518D\u9001",
|
|
@@ -5295,21 +5937,41 @@ var jaJPObjects = {
|
|
|
5295
5937
|
delete_my_account: {
|
|
5296
5938
|
label: "\u30A2\u30AB\u30A6\u30F3\u30C8\u524A\u9664",
|
|
5297
5939
|
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",
|
|
5298
|
-
successMessage: "\u30A2\u30AB\u30A6\u30F3\u30C8\u3092\u524A\u9664\u3057\u307E\u3057\u305F"
|
|
5940
|
+
successMessage: "\u30A2\u30AB\u30A6\u30F3\u30C8\u3092\u524A\u9664\u3057\u307E\u3057\u305F",
|
|
5941
|
+
params: {
|
|
5942
|
+
password: {
|
|
5943
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
5944
|
+
}
|
|
5945
|
+
}
|
|
5299
5946
|
},
|
|
5300
5947
|
enable_two_factor: {
|
|
5301
5948
|
label: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u6709\u52B9\u5316",
|
|
5302
|
-
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"
|
|
5949
|
+
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",
|
|
5950
|
+
params: {
|
|
5951
|
+
password: {
|
|
5952
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
5953
|
+
}
|
|
5954
|
+
}
|
|
5303
5955
|
},
|
|
5304
5956
|
disable_two_factor: {
|
|
5305
5957
|
label: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u7121\u52B9\u5316",
|
|
5306
5958
|
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",
|
|
5307
|
-
successMessage: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u7121\u52B9\u306B\u3057\u307E\u3057\u305F\u3002"
|
|
5959
|
+
successMessage: "\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u7121\u52B9\u306B\u3057\u307E\u3057\u305F\u3002",
|
|
5960
|
+
params: {
|
|
5961
|
+
password: {
|
|
5962
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
5963
|
+
}
|
|
5964
|
+
}
|
|
5308
5965
|
},
|
|
5309
5966
|
generate_backup_codes: {
|
|
5310
5967
|
label: "\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u3092\u518D\u751F\u6210",
|
|
5311
5968
|
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",
|
|
5312
|
-
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"
|
|
5969
|
+
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",
|
|
5970
|
+
params: {
|
|
5971
|
+
password: {
|
|
5972
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
5973
|
+
}
|
|
5974
|
+
}
|
|
5313
5975
|
}
|
|
5314
5976
|
}
|
|
5315
5977
|
},
|
|
@@ -5453,7 +6115,21 @@ var jaJPObjects = {
|
|
|
5453
6115
|
},
|
|
5454
6116
|
_actions: {
|
|
5455
6117
|
link_social: {
|
|
5456
|
-
label: "\u30BD\u30FC\u30B7\u30E3\u30EB\u30A2\u30AB\u30A6\u30F3\u30C8\u9023\u643A"
|
|
6118
|
+
label: "\u30BD\u30FC\u30B7\u30E3\u30EB\u30A2\u30AB\u30A6\u30F3\u30C8\u9023\u643A",
|
|
6119
|
+
params: {
|
|
6120
|
+
provider: {
|
|
6121
|
+
label: "\u30D7\u30ED\u30D0\u30A4\u30C0\u30FC",
|
|
6122
|
+
options: {
|
|
6123
|
+
google: "Google",
|
|
6124
|
+
github: "GitHub",
|
|
6125
|
+
microsoft: "Microsoft",
|
|
6126
|
+
apple: "Apple",
|
|
6127
|
+
facebook: "Facebook",
|
|
6128
|
+
gitlab: "GitLab",
|
|
6129
|
+
discord: "Discord"
|
|
6130
|
+
}
|
|
6131
|
+
}
|
|
6132
|
+
}
|
|
5457
6133
|
},
|
|
5458
6134
|
unlink_account: {
|
|
5459
6135
|
label: "\u9023\u643A\u89E3\u9664",
|
|
@@ -5586,7 +6262,11 @@ var jaJPObjects = {
|
|
|
5586
6262
|
},
|
|
5587
6263
|
_views: {
|
|
5588
6264
|
mine: {
|
|
5589
|
-
label: "My Memberships"
|
|
6265
|
+
label: "My Memberships",
|
|
6266
|
+
emptyState: {
|
|
6267
|
+
title: "No organizations yet",
|
|
6268
|
+
message: "You haven't joined any organizations."
|
|
6269
|
+
}
|
|
5590
6270
|
}
|
|
5591
6271
|
},
|
|
5592
6272
|
_actions: {
|
|
@@ -6006,16 +6686,31 @@ var jaJPObjects = {
|
|
|
6006
6686
|
},
|
|
6007
6687
|
_actions: {
|
|
6008
6688
|
enable_two_factor: {
|
|
6009
|
-
label: "2FA \u3092\u6709\u52B9\u5316"
|
|
6689
|
+
label: "2FA \u3092\u6709\u52B9\u5316",
|
|
6690
|
+
params: {
|
|
6691
|
+
password: {
|
|
6692
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
6693
|
+
}
|
|
6694
|
+
}
|
|
6010
6695
|
},
|
|
6011
6696
|
disable_two_factor: {
|
|
6012
6697
|
label: "2FA \u3092\u7121\u52B9\u5316",
|
|
6013
6698
|
confirmText: "\u30A2\u30AB\u30A6\u30F3\u30C8\u306E\u4E8C\u8981\u7D20\u8A8D\u8A3C\u3092\u7121\u52B9\u5316\u3057\u307E\u3059\u304B\uFF1F",
|
|
6014
|
-
successMessage: "2FA \u3092\u7121\u52B9\u5316\u3057\u307E\u3057\u305F"
|
|
6699
|
+
successMessage: "2FA \u3092\u7121\u52B9\u5316\u3057\u307E\u3057\u305F",
|
|
6700
|
+
params: {
|
|
6701
|
+
password: {
|
|
6702
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
6703
|
+
}
|
|
6704
|
+
}
|
|
6015
6705
|
},
|
|
6016
6706
|
regenerate_backup_codes: {
|
|
6017
6707
|
label: "\u30D0\u30C3\u30AF\u30A2\u30C3\u30D7\u30B3\u30FC\u30C9\u518D\u751F\u6210",
|
|
6018
|
-
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"
|
|
6708
|
+
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",
|
|
6709
|
+
params: {
|
|
6710
|
+
password: {
|
|
6711
|
+
label: "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9"
|
|
6712
|
+
}
|
|
6713
|
+
}
|
|
6019
6714
|
}
|
|
6020
6715
|
}
|
|
6021
6716
|
},
|
|
@@ -6195,6 +6890,18 @@ var jaJPObjects = {
|
|
|
6195
6890
|
label: "\u30B5\u30D6\u30B8\u30A7\u30AF\u30C8\u30BF\u30A4\u30D7",
|
|
6196
6891
|
help: "OIDC \u30B5\u30D6\u30B8\u30A7\u30AF\u30C8\u30BF\u30A4\u30D7\uFF08\u4F8B: public\u3001pairwise\uFF09"
|
|
6197
6892
|
},
|
|
6893
|
+
jwks: {
|
|
6894
|
+
label: "JWKS",
|
|
6895
|
+
help: "Client JSON Web Key Set (for private_key_jwt / signed-request verification)"
|
|
6896
|
+
},
|
|
6897
|
+
jwks_uri: {
|
|
6898
|
+
label: "JWKS URI",
|
|
6899
|
+
help: "URL of the client JSON Web Key Set"
|
|
6900
|
+
},
|
|
6901
|
+
dpop_bound_access_tokens: {
|
|
6902
|
+
label: "DPoP-bound Access Tokens",
|
|
6903
|
+
help: "Require access tokens issued to this client to be DPoP-bound (RFC 9449)"
|
|
6904
|
+
},
|
|
6198
6905
|
disabled: {
|
|
6199
6906
|
label: "\u7121\u52B9"
|
|
6200
6907
|
},
|
|
@@ -6206,6 +6913,14 @@ var jaJPObjects = {
|
|
|
6206
6913
|
label: "\u30A8\u30F3\u30C9\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u6709\u52B9\u5316",
|
|
6207
6914
|
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"
|
|
6208
6915
|
},
|
|
6916
|
+
backchannel_logout_uri: {
|
|
6917
|
+
label: "Back-channel Logout URI",
|
|
6918
|
+
help: "OIDC back-channel logout endpoint of the client"
|
|
6919
|
+
},
|
|
6920
|
+
backchannel_logout_session_required: {
|
|
6921
|
+
label: "Back-channel Logout Session Required",
|
|
6922
|
+
help: "Whether the back-channel logout token must include a sid claim"
|
|
6923
|
+
},
|
|
6209
6924
|
software_id: {
|
|
6210
6925
|
label: "\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2 ID"
|
|
6211
6926
|
},
|
|
@@ -6257,7 +6972,25 @@ var jaJPObjects = {
|
|
|
6257
6972
|
successMessage: "OAuth\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u6709\u52B9\u5316\u3057\u307E\u3057\u305F"
|
|
6258
6973
|
},
|
|
6259
6974
|
create_oauth_application: {
|
|
6260
|
-
label: "OAuth\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u767B\u9332"
|
|
6975
|
+
label: "OAuth\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u767B\u9332",
|
|
6976
|
+
params: {
|
|
6977
|
+
name: {
|
|
6978
|
+
label: "\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u540D"
|
|
6979
|
+
},
|
|
6980
|
+
redirectURLs: {
|
|
6981
|
+
label: "\u30EA\u30C0\u30A4\u30EC\u30AF\u30C8 URL",
|
|
6982
|
+
helpText: "1 \u884C\u306B\u3064\u304D 1 \u3064\u306E URL\u3002\u672C\u756A\u74B0\u5883\u3067\u306F https:// \u304C\u5FC5\u9808\u3067\u3059\u3002"
|
|
6983
|
+
},
|
|
6984
|
+
type: {
|
|
6985
|
+
label: "\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u30BF\u30A4\u30D7",
|
|
6986
|
+
options: {
|
|
6987
|
+
web: "Web",
|
|
6988
|
+
native: "\u30CD\u30A4\u30C6\u30A3\u30D6",
|
|
6989
|
+
"user-agent-based": "\u30E6\u30FC\u30B6\u30FC\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u578B",
|
|
6990
|
+
public: "\u30D1\u30D6\u30EA\u30C3\u30AF"
|
|
6991
|
+
}
|
|
6992
|
+
}
|
|
6993
|
+
}
|
|
6261
6994
|
},
|
|
6262
6995
|
rotate_client_secret: {
|
|
6263
6996
|
label: "\u30AF\u30E9\u30A4\u30A2\u30F3\u30C8\u30B7\u30FC\u30AF\u30EC\u30C3\u30C8\u66F4\u65B0",
|
|
@@ -6302,6 +7035,18 @@ var jaJPObjects = {
|
|
|
6302
7035
|
label: "\u53C2\u7167 ID",
|
|
6303
7036
|
help: "\u547C\u3073\u51FA\u3057\u5143\u304C\u6307\u5B9A\u3057\u305F\u76F8\u95A2\u8B58\u5225\u5B50"
|
|
6304
7037
|
},
|
|
7038
|
+
authorization_code_id: {
|
|
7039
|
+
label: "Authorization Code ID",
|
|
7040
|
+
help: "ID of the authorization-code grant this token originates from"
|
|
7041
|
+
},
|
|
7042
|
+
resources: {
|
|
7043
|
+
label: "Resources",
|
|
7044
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
7045
|
+
},
|
|
7046
|
+
requested_user_info_claims: {
|
|
7047
|
+
label: "Requested UserInfo Claims",
|
|
7048
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
7049
|
+
},
|
|
6305
7050
|
scopes: {
|
|
6306
7051
|
label: "\u30B9\u30B3\u30FC\u30D7",
|
|
6307
7052
|
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"
|
|
@@ -6311,6 +7056,14 @@ var jaJPObjects = {
|
|
|
6311
7056
|
},
|
|
6312
7057
|
created_at: {
|
|
6313
7058
|
label: "\u4F5C\u6210\u65E5\u6642"
|
|
7059
|
+
},
|
|
7060
|
+
revoked: {
|
|
7061
|
+
label: "Revoked At",
|
|
7062
|
+
help: "Timestamp at which this access token was revoked"
|
|
7063
|
+
},
|
|
7064
|
+
confirmation: {
|
|
7065
|
+
label: "Confirmation",
|
|
7066
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
6314
7067
|
}
|
|
6315
7068
|
}
|
|
6316
7069
|
},
|
|
@@ -6342,6 +7095,18 @@ var jaJPObjects = {
|
|
|
6342
7095
|
label: "\u53C2\u7167 ID",
|
|
6343
7096
|
help: "\u547C\u3073\u51FA\u3057\u5143\u304C\u6307\u5B9A\u3057\u305F\u76F8\u95A2\u8B58\u5225\u5B50"
|
|
6344
7097
|
},
|
|
7098
|
+
authorization_code_id: {
|
|
7099
|
+
label: "Authorization Code ID",
|
|
7100
|
+
help: "ID of the authorization-code grant this token chain originates from"
|
|
7101
|
+
},
|
|
7102
|
+
resources: {
|
|
7103
|
+
label: "Resources",
|
|
7104
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
7105
|
+
},
|
|
7106
|
+
requested_user_info_claims: {
|
|
7107
|
+
label: "Requested UserInfo Claims",
|
|
7108
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
7109
|
+
},
|
|
6345
7110
|
scopes: {
|
|
6346
7111
|
label: "\u30B9\u30B3\u30FC\u30D7",
|
|
6347
7112
|
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"
|
|
@@ -6356,9 +7121,25 @@ var jaJPObjects = {
|
|
|
6356
7121
|
label: "\u5931\u52B9\u65E5\u6642",
|
|
6357
7122
|
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"
|
|
6358
7123
|
},
|
|
7124
|
+
rotated_at: {
|
|
7125
|
+
label: "Rotated At",
|
|
7126
|
+
help: "Timestamp at which this token was rotated (superseded by a new row)"
|
|
7127
|
+
},
|
|
7128
|
+
rotation_replay_response: {
|
|
7129
|
+
label: "Rotation Replay Response",
|
|
7130
|
+
help: "Cached token response replayed when the old token is re-presented within the reuse interval"
|
|
7131
|
+
},
|
|
7132
|
+
rotation_replay_expires_at: {
|
|
7133
|
+
label: "Rotation Replay Expires At",
|
|
7134
|
+
help: "End of the post-rotation reuse interval during which the replay response is served"
|
|
7135
|
+
},
|
|
6359
7136
|
auth_time: {
|
|
6360
7137
|
label: "\u8A8D\u8A3C\u65E5\u6642",
|
|
6361
7138
|
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"
|
|
7139
|
+
},
|
|
7140
|
+
confirmation: {
|
|
7141
|
+
label: "Confirmation",
|
|
7142
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
6362
7143
|
}
|
|
6363
7144
|
}
|
|
6364
7145
|
},
|
|
@@ -6382,6 +7163,14 @@ var jaJPObjects = {
|
|
|
6382
7163
|
label: "\u53C2\u7167 ID",
|
|
6383
7164
|
help: "\u547C\u3073\u51FA\u3057\u5143\u304C\u6307\u5B9A\u3057\u305F\u76F8\u95A2\u8B58\u5225\u5B50"
|
|
6384
7165
|
},
|
|
7166
|
+
resources: {
|
|
7167
|
+
label: "Resources",
|
|
7168
|
+
help: "JSON-serialized list of RFC 8707 resource indicators the consent covers"
|
|
7169
|
+
},
|
|
7170
|
+
requested_user_info_claims: {
|
|
7171
|
+
label: "Requested UserInfo Claims",
|
|
7172
|
+
help: "JSON-serialized list of OIDC claims the user consented to expose"
|
|
7173
|
+
},
|
|
6385
7174
|
scopes: {
|
|
6386
7175
|
label: "\u30B9\u30B3\u30FC\u30D7",
|
|
6387
7176
|
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"
|
|
@@ -6394,6 +7183,107 @@ var jaJPObjects = {
|
|
|
6394
7183
|
}
|
|
6395
7184
|
}
|
|
6396
7185
|
},
|
|
7186
|
+
sys_oauth_resource: {
|
|
7187
|
+
label: "OAuth Resource",
|
|
7188
|
+
pluralLabel: "OAuth Resources",
|
|
7189
|
+
description: "Registered OAuth protected resources (RFC 8707 resource indicators)",
|
|
7190
|
+
fields: {
|
|
7191
|
+
id: {
|
|
7192
|
+
label: "ID"
|
|
7193
|
+
},
|
|
7194
|
+
identifier: {
|
|
7195
|
+
label: "Identifier",
|
|
7196
|
+
help: "Resource indicator URI presented in the RFC 8707 resource parameter"
|
|
7197
|
+
},
|
|
7198
|
+
name: {
|
|
7199
|
+
label: "Name"
|
|
7200
|
+
},
|
|
7201
|
+
access_token_ttl: {
|
|
7202
|
+
label: "Access Token TTL",
|
|
7203
|
+
help: "Access-token lifetime in seconds for this resource (overrides the server default)"
|
|
7204
|
+
},
|
|
7205
|
+
refresh_token_ttl: {
|
|
7206
|
+
label: "Refresh Token TTL",
|
|
7207
|
+
help: "Refresh-token lifetime in seconds for this resource (overrides the server default)"
|
|
7208
|
+
},
|
|
7209
|
+
signing_algorithm: {
|
|
7210
|
+
label: "Signing Algorithm",
|
|
7211
|
+
help: "JWS algorithm used to sign access tokens for this resource"
|
|
7212
|
+
},
|
|
7213
|
+
signing_key_id: {
|
|
7214
|
+
label: "Signing Key ID",
|
|
7215
|
+
help: "Key id (kid) used to sign access tokens for this resource"
|
|
7216
|
+
},
|
|
7217
|
+
allowed_scopes: {
|
|
7218
|
+
label: "Allowed Scopes",
|
|
7219
|
+
help: "JSON-serialized list of scopes clients may request for this resource"
|
|
7220
|
+
},
|
|
7221
|
+
custom_claims: {
|
|
7222
|
+
label: "Custom Claims",
|
|
7223
|
+
help: "JSON object of extra claims stamped on access tokens for this resource"
|
|
7224
|
+
},
|
|
7225
|
+
dpop_bound_access_tokens_required: {
|
|
7226
|
+
label: "DPoP Required",
|
|
7227
|
+
help: "Require access tokens for this resource to be DPoP-bound (RFC 9449)"
|
|
7228
|
+
},
|
|
7229
|
+
disabled: {
|
|
7230
|
+
label: "Disabled"
|
|
7231
|
+
},
|
|
7232
|
+
policy_version: {
|
|
7233
|
+
label: "Policy Version",
|
|
7234
|
+
help: "Monotonic version of the resource token policy"
|
|
7235
|
+
},
|
|
7236
|
+
metadata: {
|
|
7237
|
+
label: "Metadata",
|
|
7238
|
+
help: "JSON object of additional resource metadata"
|
|
7239
|
+
},
|
|
7240
|
+
created_at: {
|
|
7241
|
+
label: "Created At"
|
|
7242
|
+
},
|
|
7243
|
+
updated_at: {
|
|
7244
|
+
label: "Updated At"
|
|
7245
|
+
}
|
|
7246
|
+
}
|
|
7247
|
+
},
|
|
7248
|
+
sys_oauth_client_resource: {
|
|
7249
|
+
label: "OAuth Client Resource",
|
|
7250
|
+
pluralLabel: "OAuth Client Resources",
|
|
7251
|
+
description: "Grants allowing an OAuth client to request tokens for a protected resource",
|
|
7252
|
+
fields: {
|
|
7253
|
+
id: {
|
|
7254
|
+
label: "ID"
|
|
7255
|
+
},
|
|
7256
|
+
client_id: {
|
|
7257
|
+
label: "Client ID",
|
|
7258
|
+
help: "Foreign key to sys_oauth_application.client_id"
|
|
7259
|
+
},
|
|
7260
|
+
resource_id: {
|
|
7261
|
+
label: "Resource ID",
|
|
7262
|
+
help: "Foreign key to sys_oauth_resource.identifier"
|
|
7263
|
+
},
|
|
7264
|
+
metadata: {
|
|
7265
|
+
label: "Metadata",
|
|
7266
|
+
help: "JSON object of additional grant metadata"
|
|
7267
|
+
},
|
|
7268
|
+
created_at: {
|
|
7269
|
+
label: "Created At"
|
|
7270
|
+
}
|
|
7271
|
+
}
|
|
7272
|
+
},
|
|
7273
|
+
sys_oauth_client_assertion: {
|
|
7274
|
+
label: "OAuth Client Assertion",
|
|
7275
|
+
pluralLabel: "OAuth Client Assertions",
|
|
7276
|
+
description: "Consumed OAuth client-assertion JTIs (RFC 7523 replay prevention)",
|
|
7277
|
+
fields: {
|
|
7278
|
+
id: {
|
|
7279
|
+
label: "ID"
|
|
7280
|
+
},
|
|
7281
|
+
expires_at: {
|
|
7282
|
+
label: "Expires At",
|
|
7283
|
+
help: "Assertion expiry \u2014 rows past this instant are safe to prune"
|
|
7284
|
+
}
|
|
7285
|
+
}
|
|
7286
|
+
},
|
|
6397
7287
|
sys_jwks: {
|
|
6398
7288
|
label: "\u7F72\u540D\u30AD\u30FC (JWKS)",
|
|
6399
7289
|
pluralLabel: "\u7F72\u540D\u30AD\u30FC (JWKS)",
|
|
@@ -6411,6 +7301,14 @@ var jaJPObjects = {
|
|
|
6411
7301
|
label: "\u79D8\u5BC6\u9375",
|
|
6412
7302
|
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"
|
|
6413
7303
|
},
|
|
7304
|
+
alg: {
|
|
7305
|
+
label: "\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0",
|
|
7306
|
+
help: "JWK \u7F72\u540D\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0\uFF08\u4F8B: `EdDSA`\u3001better-auth 1.7+\uFF09"
|
|
7307
|
+
},
|
|
7308
|
+
crv: {
|
|
7309
|
+
label: "\u66F2\u7DDA",
|
|
7310
|
+
help: "EdDSA/EC \u9375\u3067\u4F7F\u3046 JWK \u66F2\u7DDA\uFF08\u4F8B: `Ed25519`\u3001better-auth 1.7+\uFF09"
|
|
7311
|
+
},
|
|
6414
7312
|
created_at: {
|
|
6415
7313
|
label: "\u4F5C\u6210\u65E5\u6642"
|
|
6416
7314
|
},
|
|
@@ -6467,7 +7365,11 @@ var jaJPObjects = {
|
|
|
6467
7365
|
},
|
|
6468
7366
|
_views: {
|
|
6469
7367
|
recent: {
|
|
6470
|
-
label: "Recent"
|
|
7368
|
+
label: "Recent",
|
|
7369
|
+
emptyState: {
|
|
7370
|
+
title: "No events",
|
|
7371
|
+
message: "No notification events have been emitted."
|
|
7372
|
+
}
|
|
6471
7373
|
},
|
|
6472
7374
|
by_topic: {
|
|
6473
7375
|
label: "By Topic"
|
|
@@ -6504,23 +7406,6 @@ var jaJPObjects = {
|
|
|
6504
7406
|
size: {
|
|
6505
7407
|
label: "\u30B5\u30A4\u30BA\uFF08\u30D0\u30A4\u30C8\uFF09"
|
|
6506
7408
|
},
|
|
6507
|
-
share_type: {
|
|
6508
|
-
label: "\u5171\u6709\u30BF\u30A4\u30D7",
|
|
6509
|
-
help: "viewer | collaborator | inferred\uFF08\u89AA\u30EC\u30B3\u30FC\u30C9\u304B\u3089\u7D99\u627F\uFF09",
|
|
6510
|
-
options: {
|
|
6511
|
-
viewer: "\u95B2\u89A7\u8005",
|
|
6512
|
-
collaborator: "\u5171\u540C\u7DE8\u96C6\u8005",
|
|
6513
|
-
inferred: "\u63A8\u5B9A"
|
|
6514
|
-
}
|
|
6515
|
-
},
|
|
6516
|
-
visibility: {
|
|
6517
|
-
label: "\u516C\u958B\u7BC4\u56F2",
|
|
6518
|
-
options: {
|
|
6519
|
-
internal: "\u5185\u90E8",
|
|
6520
|
-
all_users: "\u3059\u3079\u3066\u306E\u30E6\u30FC\u30B6\u30FC",
|
|
6521
|
-
shared_users: "\u5171\u6709\u30E6\u30FC\u30B6\u30FC"
|
|
6522
|
-
}
|
|
6523
|
-
},
|
|
6524
7409
|
uploaded_by: {
|
|
6525
7410
|
label: "\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u8005"
|
|
6526
7411
|
},
|
|
@@ -7787,7 +8672,12 @@ var esESObjects = {
|
|
|
7787
8672
|
ban_user: {
|
|
7788
8673
|
label: "Bloquear usuario",
|
|
7789
8674
|
confirmText: "\xBFBloquear a este usuario? Cerrar\xE1 sesi\xF3n y no podr\xE1 volver a iniciarla hasta que se desbloquee.",
|
|
7790
|
-
successMessage: "Usuario bloqueado"
|
|
8675
|
+
successMessage: "Usuario bloqueado",
|
|
8676
|
+
params: {
|
|
8677
|
+
banReason: {
|
|
8678
|
+
label: "Motivo del bloqueo"
|
|
8679
|
+
}
|
|
8680
|
+
}
|
|
7791
8681
|
},
|
|
7792
8682
|
unban_user: {
|
|
7793
8683
|
label: "Desbloquear usuario",
|
|
@@ -7799,15 +8689,46 @@ var esESObjects = {
|
|
|
7799
8689
|
},
|
|
7800
8690
|
create_user: {
|
|
7801
8691
|
label: "Crear usuario",
|
|
7802
|
-
successMessage: "Usuario creado"
|
|
8692
|
+
successMessage: "Usuario creado",
|
|
8693
|
+
params: {
|
|
8694
|
+
phoneNumber: {
|
|
8695
|
+
label: "N\xFAmero de tel\xE9fono",
|
|
8696
|
+
helpText: "N\xFAmero de tel\xE9fono para iniciar sesi\xF3n (E.164, p. ej. +8613800000000). Obligatorio si no se indica un correo."
|
|
8697
|
+
},
|
|
8698
|
+
generatePassword: {
|
|
8699
|
+
label: "Generar contrase\xF1a temporal"
|
|
8700
|
+
},
|
|
8701
|
+
password: {
|
|
8702
|
+
label: "Contrase\xF1a (dejar en blanco para generarla)"
|
|
8703
|
+
},
|
|
8704
|
+
mustChangePassword: {
|
|
8705
|
+
label: "Exigir cambio de contrase\xF1a en el primer inicio de sesi\xF3n"
|
|
8706
|
+
}
|
|
8707
|
+
}
|
|
7803
8708
|
},
|
|
7804
8709
|
set_user_password: {
|
|
7805
8710
|
label: "Establecer contrase\xF1a",
|
|
7806
|
-
successMessage: "Contrase\xF1a actualizada"
|
|
8711
|
+
successMessage: "Contrase\xF1a actualizada",
|
|
8712
|
+
params: {
|
|
8713
|
+
generatePassword: {
|
|
8714
|
+
label: "Generar contrase\xF1a temporal"
|
|
8715
|
+
},
|
|
8716
|
+
newPassword: {
|
|
8717
|
+
label: "Nueva contrase\xF1a (dejar en blanco para generarla)"
|
|
8718
|
+
},
|
|
8719
|
+
mustChangePassword: {
|
|
8720
|
+
label: "Exigir cambio de contrase\xF1a en el pr\xF3ximo inicio de sesi\xF3n"
|
|
8721
|
+
}
|
|
8722
|
+
}
|
|
7807
8723
|
},
|
|
7808
8724
|
set_user_role: {
|
|
7809
8725
|
label: "Establecer rol de plataforma",
|
|
7810
|
-
successMessage: "Rol actualizado"
|
|
8726
|
+
successMessage: "Rol actualizado",
|
|
8727
|
+
params: {
|
|
8728
|
+
role: {
|
|
8729
|
+
label: "Rol de plataforma"
|
|
8730
|
+
}
|
|
8731
|
+
}
|
|
7811
8732
|
},
|
|
7812
8733
|
impersonate_user: {
|
|
7813
8734
|
label: "Suplantar usuario",
|
|
@@ -7820,11 +8741,27 @@ var esESObjects = {
|
|
|
7820
8741
|
},
|
|
7821
8742
|
change_my_password: {
|
|
7822
8743
|
label: "Cambiar contrase\xF1a",
|
|
7823
|
-
successMessage: "Contrase\xF1a cambiada"
|
|
8744
|
+
successMessage: "Contrase\xF1a cambiada",
|
|
8745
|
+
params: {
|
|
8746
|
+
currentPassword: {
|
|
8747
|
+
label: "Contrase\xF1a actual"
|
|
8748
|
+
},
|
|
8749
|
+
newPassword: {
|
|
8750
|
+
label: "Nueva contrase\xF1a"
|
|
8751
|
+
},
|
|
8752
|
+
revokeOtherSessions: {
|
|
8753
|
+
label: "Cerrar sesi\xF3n en los dem\xE1s dispositivos"
|
|
8754
|
+
}
|
|
8755
|
+
}
|
|
7824
8756
|
},
|
|
7825
8757
|
change_my_email: {
|
|
7826
8758
|
label: "Cambiar correo",
|
|
7827
|
-
successMessage: "Correo de verificaci\xF3n enviado; revisa la nueva direcci\xF3n para confirmar."
|
|
8759
|
+
successMessage: "Correo de verificaci\xF3n enviado; revisa la nueva direcci\xF3n para confirmar.",
|
|
8760
|
+
params: {
|
|
8761
|
+
newEmail: {
|
|
8762
|
+
label: "Nuevo correo"
|
|
8763
|
+
}
|
|
8764
|
+
}
|
|
7828
8765
|
},
|
|
7829
8766
|
resend_verification_email: {
|
|
7830
8767
|
label: "Reenviar correo de verificaci\xF3n",
|
|
@@ -7833,21 +8770,41 @@ var esESObjects = {
|
|
|
7833
8770
|
delete_my_account: {
|
|
7834
8771
|
label: "Eliminar mi cuenta",
|
|
7835
8772
|
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.",
|
|
7836
|
-
successMessage: "Cuenta eliminada"
|
|
8773
|
+
successMessage: "Cuenta eliminada",
|
|
8774
|
+
params: {
|
|
8775
|
+
password: {
|
|
8776
|
+
label: "Contrase\xF1a actual"
|
|
8777
|
+
}
|
|
8778
|
+
}
|
|
7837
8779
|
},
|
|
7838
8780
|
enable_two_factor: {
|
|
7839
8781
|
label: "Habilitar autenticaci\xF3n de dos factores",
|
|
7840
|
-
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."
|
|
8782
|
+
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.",
|
|
8783
|
+
params: {
|
|
8784
|
+
password: {
|
|
8785
|
+
label: "Contrase\xF1a actual"
|
|
8786
|
+
}
|
|
8787
|
+
}
|
|
7841
8788
|
},
|
|
7842
8789
|
disable_two_factor: {
|
|
7843
8790
|
label: "Deshabilitar autenticaci\xF3n de dos factores",
|
|
7844
8791
|
confirmText: "\xBFDesactivar la autenticaci\xF3n de dos factores? Tu cuenta ser\xE1 menos segura.",
|
|
7845
|
-
successMessage: "Autenticaci\xF3n de dos factores deshabilitada."
|
|
8792
|
+
successMessage: "Autenticaci\xF3n de dos factores deshabilitada.",
|
|
8793
|
+
params: {
|
|
8794
|
+
password: {
|
|
8795
|
+
label: "Contrase\xF1a actual"
|
|
8796
|
+
}
|
|
8797
|
+
}
|
|
7846
8798
|
},
|
|
7847
8799
|
generate_backup_codes: {
|
|
7848
8800
|
label: "Regenerar c\xF3digos de respaldo",
|
|
7849
8801
|
confirmText: "\xBFGenerar un nuevo juego de c\xF3digos de respaldo? Los c\xF3digos generados anteriormente dejar\xE1n de funcionar.",
|
|
7850
|
-
successMessage: "Nuevos c\xF3digos de respaldo generados; gu\xE1rdalos en un lugar seguro."
|
|
8802
|
+
successMessage: "Nuevos c\xF3digos de respaldo generados; gu\xE1rdalos en un lugar seguro.",
|
|
8803
|
+
params: {
|
|
8804
|
+
password: {
|
|
8805
|
+
label: "Contrase\xF1a actual"
|
|
8806
|
+
}
|
|
8807
|
+
}
|
|
7851
8808
|
}
|
|
7852
8809
|
}
|
|
7853
8810
|
},
|
|
@@ -7991,7 +8948,21 @@ var esESObjects = {
|
|
|
7991
8948
|
},
|
|
7992
8949
|
_actions: {
|
|
7993
8950
|
link_social: {
|
|
7994
|
-
label: "Vincular cuenta social"
|
|
8951
|
+
label: "Vincular cuenta social",
|
|
8952
|
+
params: {
|
|
8953
|
+
provider: {
|
|
8954
|
+
label: "Proveedor",
|
|
8955
|
+
options: {
|
|
8956
|
+
google: "Google",
|
|
8957
|
+
github: "GitHub",
|
|
8958
|
+
microsoft: "Microsoft",
|
|
8959
|
+
apple: "Apple",
|
|
8960
|
+
facebook: "Facebook",
|
|
8961
|
+
gitlab: "GitLab",
|
|
8962
|
+
discord: "Discord"
|
|
8963
|
+
}
|
|
8964
|
+
}
|
|
8965
|
+
}
|
|
7995
8966
|
},
|
|
7996
8967
|
unlink_account: {
|
|
7997
8968
|
label: "Desvincular cuenta",
|
|
@@ -8124,7 +9095,11 @@ var esESObjects = {
|
|
|
8124
9095
|
},
|
|
8125
9096
|
_views: {
|
|
8126
9097
|
mine: {
|
|
8127
|
-
label: "My Memberships"
|
|
9098
|
+
label: "My Memberships",
|
|
9099
|
+
emptyState: {
|
|
9100
|
+
title: "No organizations yet",
|
|
9101
|
+
message: "You haven't joined any organizations."
|
|
9102
|
+
}
|
|
8128
9103
|
}
|
|
8129
9104
|
},
|
|
8130
9105
|
_actions: {
|
|
@@ -8544,16 +9519,31 @@ var esESObjects = {
|
|
|
8544
9519
|
},
|
|
8545
9520
|
_actions: {
|
|
8546
9521
|
enable_two_factor: {
|
|
8547
|
-
label: "Habilitar 2FA"
|
|
9522
|
+
label: "Habilitar 2FA",
|
|
9523
|
+
params: {
|
|
9524
|
+
password: {
|
|
9525
|
+
label: "Contrase\xF1a actual"
|
|
9526
|
+
}
|
|
9527
|
+
}
|
|
8548
9528
|
},
|
|
8549
9529
|
disable_two_factor: {
|
|
8550
9530
|
label: "Deshabilitar 2FA",
|
|
8551
9531
|
confirmText: "\xBFDeshabilitar la autenticaci\xF3n de doble factor en su cuenta?",
|
|
8552
|
-
successMessage: "2FA deshabilitado"
|
|
9532
|
+
successMessage: "2FA deshabilitado",
|
|
9533
|
+
params: {
|
|
9534
|
+
password: {
|
|
9535
|
+
label: "Contrase\xF1a actual"
|
|
9536
|
+
}
|
|
9537
|
+
}
|
|
8553
9538
|
},
|
|
8554
9539
|
regenerate_backup_codes: {
|
|
8555
9540
|
label: "Regenerar c\xF3digos de respaldo",
|
|
8556
|
-
confirmText: "\xBFRegenerar los c\xF3digos de respaldo? Todos los c\xF3digos de respaldo anteriores dejar\xE1n de funcionar de inmediato."
|
|
9541
|
+
confirmText: "\xBFRegenerar los c\xF3digos de respaldo? Todos los c\xF3digos de respaldo anteriores dejar\xE1n de funcionar de inmediato.",
|
|
9542
|
+
params: {
|
|
9543
|
+
password: {
|
|
9544
|
+
label: "Contrase\xF1a actual"
|
|
9545
|
+
}
|
|
9546
|
+
}
|
|
8557
9547
|
}
|
|
8558
9548
|
}
|
|
8559
9549
|
},
|
|
@@ -8733,6 +9723,18 @@ var esESObjects = {
|
|
|
8733
9723
|
label: "Tipo de sujeto",
|
|
8734
9724
|
help: "Tipo de sujeto OIDC (p. ej. public, pairwise)."
|
|
8735
9725
|
},
|
|
9726
|
+
jwks: {
|
|
9727
|
+
label: "JWKS",
|
|
9728
|
+
help: "Client JSON Web Key Set (for private_key_jwt / signed-request verification)"
|
|
9729
|
+
},
|
|
9730
|
+
jwks_uri: {
|
|
9731
|
+
label: "JWKS URI",
|
|
9732
|
+
help: "URL of the client JSON Web Key Set"
|
|
9733
|
+
},
|
|
9734
|
+
dpop_bound_access_tokens: {
|
|
9735
|
+
label: "DPoP-bound Access Tokens",
|
|
9736
|
+
help: "Require access tokens issued to this client to be DPoP-bound (RFC 9449)"
|
|
9737
|
+
},
|
|
8736
9738
|
disabled: {
|
|
8737
9739
|
label: "Deshabilitado"
|
|
8738
9740
|
},
|
|
@@ -8744,6 +9746,14 @@ var esESObjects = {
|
|
|
8744
9746
|
label: "Habilitar finalizaci\xF3n de sesi\xF3n",
|
|
8745
9747
|
help: "Permitir que el cliente llame al endpoint OIDC de finalizaci\xF3n de sesi\xF3n."
|
|
8746
9748
|
},
|
|
9749
|
+
backchannel_logout_uri: {
|
|
9750
|
+
label: "Back-channel Logout URI",
|
|
9751
|
+
help: "OIDC back-channel logout endpoint of the client"
|
|
9752
|
+
},
|
|
9753
|
+
backchannel_logout_session_required: {
|
|
9754
|
+
label: "Back-channel Logout Session Required",
|
|
9755
|
+
help: "Whether the back-channel logout token must include a sid claim"
|
|
9756
|
+
},
|
|
8747
9757
|
software_id: {
|
|
8748
9758
|
label: "ID de software"
|
|
8749
9759
|
},
|
|
@@ -8795,7 +9805,25 @@ var esESObjects = {
|
|
|
8795
9805
|
successMessage: "Aplicaci\xF3n OAuth habilitada"
|
|
8796
9806
|
},
|
|
8797
9807
|
create_oauth_application: {
|
|
8798
|
-
label: "Registrar aplicaci\xF3n OAuth"
|
|
9808
|
+
label: "Registrar aplicaci\xF3n OAuth",
|
|
9809
|
+
params: {
|
|
9810
|
+
name: {
|
|
9811
|
+
label: "Nombre de la aplicaci\xF3n"
|
|
9812
|
+
},
|
|
9813
|
+
redirectURLs: {
|
|
9814
|
+
label: "URLs de redirecci\xF3n",
|
|
9815
|
+
helpText: "Una URL por l\xEDnea. Debe usar https:// en producci\xF3n."
|
|
9816
|
+
},
|
|
9817
|
+
type: {
|
|
9818
|
+
label: "Tipo de aplicaci\xF3n",
|
|
9819
|
+
options: {
|
|
9820
|
+
web: "Web",
|
|
9821
|
+
native: "Nativa",
|
|
9822
|
+
"user-agent-based": "Basada en user-agent",
|
|
9823
|
+
public: "P\xFAblica"
|
|
9824
|
+
}
|
|
9825
|
+
}
|
|
9826
|
+
}
|
|
8799
9827
|
},
|
|
8800
9828
|
rotate_client_secret: {
|
|
8801
9829
|
label: "Rotar Client Secret",
|
|
@@ -8840,6 +9868,18 @@ var esESObjects = {
|
|
|
8840
9868
|
label: "ID de referencia",
|
|
8841
9869
|
help: "Identificador de correlaci\xF3n proporcionado por quien llama."
|
|
8842
9870
|
},
|
|
9871
|
+
authorization_code_id: {
|
|
9872
|
+
label: "Authorization Code ID",
|
|
9873
|
+
help: "ID of the authorization-code grant this token originates from"
|
|
9874
|
+
},
|
|
9875
|
+
resources: {
|
|
9876
|
+
label: "Resources",
|
|
9877
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
9878
|
+
},
|
|
9879
|
+
requested_user_info_claims: {
|
|
9880
|
+
label: "Requested UserInfo Claims",
|
|
9881
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
9882
|
+
},
|
|
8843
9883
|
scopes: {
|
|
8844
9884
|
label: "\xC1mbitos",
|
|
8845
9885
|
help: "Lista serializada en JSON de \xE1mbitos concedidos a este token."
|
|
@@ -8849,6 +9889,14 @@ var esESObjects = {
|
|
|
8849
9889
|
},
|
|
8850
9890
|
created_at: {
|
|
8851
9891
|
label: "Creado el"
|
|
9892
|
+
},
|
|
9893
|
+
revoked: {
|
|
9894
|
+
label: "Revoked At",
|
|
9895
|
+
help: "Timestamp at which this access token was revoked"
|
|
9896
|
+
},
|
|
9897
|
+
confirmation: {
|
|
9898
|
+
label: "Confirmation",
|
|
9899
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
8852
9900
|
}
|
|
8853
9901
|
}
|
|
8854
9902
|
},
|
|
@@ -8880,6 +9928,18 @@ var esESObjects = {
|
|
|
8880
9928
|
label: "ID de referencia",
|
|
8881
9929
|
help: "Identificador de correlaci\xF3n proporcionado por quien llama."
|
|
8882
9930
|
},
|
|
9931
|
+
authorization_code_id: {
|
|
9932
|
+
label: "Authorization Code ID",
|
|
9933
|
+
help: "ID of the authorization-code grant this token chain originates from"
|
|
9934
|
+
},
|
|
9935
|
+
resources: {
|
|
9936
|
+
label: "Resources",
|
|
9937
|
+
help: "JSON-serialized list of RFC 8707 resource indicators bound to this token"
|
|
9938
|
+
},
|
|
9939
|
+
requested_user_info_claims: {
|
|
9940
|
+
label: "Requested UserInfo Claims",
|
|
9941
|
+
help: "JSON-serialized list of OIDC claims requested for the userinfo endpoint"
|
|
9942
|
+
},
|
|
8883
9943
|
scopes: {
|
|
8884
9944
|
label: "\xC1mbitos",
|
|
8885
9945
|
help: "Lista serializada en JSON de \xE1mbitos concedidos a este token."
|
|
@@ -8894,9 +9954,25 @@ var esESObjects = {
|
|
|
8894
9954
|
label: "Revocado el",
|
|
8895
9955
|
help: "Marca temporal en la que se revoc\xF3 este token de actualizaci\xF3n."
|
|
8896
9956
|
},
|
|
9957
|
+
rotated_at: {
|
|
9958
|
+
label: "Rotated At",
|
|
9959
|
+
help: "Timestamp at which this token was rotated (superseded by a new row)"
|
|
9960
|
+
},
|
|
9961
|
+
rotation_replay_response: {
|
|
9962
|
+
label: "Rotation Replay Response",
|
|
9963
|
+
help: "Cached token response replayed when the old token is re-presented within the reuse interval"
|
|
9964
|
+
},
|
|
9965
|
+
rotation_replay_expires_at: {
|
|
9966
|
+
label: "Rotation Replay Expires At",
|
|
9967
|
+
help: "End of the post-rotation reuse interval during which the replay response is served"
|
|
9968
|
+
},
|
|
8897
9969
|
auth_time: {
|
|
8898
9970
|
label: "Hora de autenticaci\xF3n",
|
|
8899
9971
|
help: "Momento en que el usuario se autentic\xF3 originalmente para esta cadena de tokens."
|
|
9972
|
+
},
|
|
9973
|
+
confirmation: {
|
|
9974
|
+
label: "Confirmation",
|
|
9975
|
+
help: "JSON RFC 7800 cnf claim (e.g. DPoP key thumbprint) binding this token to a key"
|
|
8900
9976
|
}
|
|
8901
9977
|
}
|
|
8902
9978
|
},
|
|
@@ -8920,6 +9996,14 @@ var esESObjects = {
|
|
|
8920
9996
|
label: "ID de referencia",
|
|
8921
9997
|
help: "Identificador de correlaci\xF3n proporcionado por quien llama."
|
|
8922
9998
|
},
|
|
9999
|
+
resources: {
|
|
10000
|
+
label: "Resources",
|
|
10001
|
+
help: "JSON-serialized list of RFC 8707 resource indicators the consent covers"
|
|
10002
|
+
},
|
|
10003
|
+
requested_user_info_claims: {
|
|
10004
|
+
label: "Requested UserInfo Claims",
|
|
10005
|
+
help: "JSON-serialized list of OIDC claims the user consented to expose"
|
|
10006
|
+
},
|
|
8923
10007
|
scopes: {
|
|
8924
10008
|
label: "\xC1mbitos",
|
|
8925
10009
|
help: "Lista serializada en JSON de \xE1mbitos a los que el usuario dio consentimiento."
|
|
@@ -8932,6 +10016,107 @@ var esESObjects = {
|
|
|
8932
10016
|
}
|
|
8933
10017
|
}
|
|
8934
10018
|
},
|
|
10019
|
+
sys_oauth_resource: {
|
|
10020
|
+
label: "OAuth Resource",
|
|
10021
|
+
pluralLabel: "OAuth Resources",
|
|
10022
|
+
description: "Registered OAuth protected resources (RFC 8707 resource indicators)",
|
|
10023
|
+
fields: {
|
|
10024
|
+
id: {
|
|
10025
|
+
label: "ID"
|
|
10026
|
+
},
|
|
10027
|
+
identifier: {
|
|
10028
|
+
label: "Identifier",
|
|
10029
|
+
help: "Resource indicator URI presented in the RFC 8707 resource parameter"
|
|
10030
|
+
},
|
|
10031
|
+
name: {
|
|
10032
|
+
label: "Name"
|
|
10033
|
+
},
|
|
10034
|
+
access_token_ttl: {
|
|
10035
|
+
label: "Access Token TTL",
|
|
10036
|
+
help: "Access-token lifetime in seconds for this resource (overrides the server default)"
|
|
10037
|
+
},
|
|
10038
|
+
refresh_token_ttl: {
|
|
10039
|
+
label: "Refresh Token TTL",
|
|
10040
|
+
help: "Refresh-token lifetime in seconds for this resource (overrides the server default)"
|
|
10041
|
+
},
|
|
10042
|
+
signing_algorithm: {
|
|
10043
|
+
label: "Signing Algorithm",
|
|
10044
|
+
help: "JWS algorithm used to sign access tokens for this resource"
|
|
10045
|
+
},
|
|
10046
|
+
signing_key_id: {
|
|
10047
|
+
label: "Signing Key ID",
|
|
10048
|
+
help: "Key id (kid) used to sign access tokens for this resource"
|
|
10049
|
+
},
|
|
10050
|
+
allowed_scopes: {
|
|
10051
|
+
label: "Allowed Scopes",
|
|
10052
|
+
help: "JSON-serialized list of scopes clients may request for this resource"
|
|
10053
|
+
},
|
|
10054
|
+
custom_claims: {
|
|
10055
|
+
label: "Custom Claims",
|
|
10056
|
+
help: "JSON object of extra claims stamped on access tokens for this resource"
|
|
10057
|
+
},
|
|
10058
|
+
dpop_bound_access_tokens_required: {
|
|
10059
|
+
label: "DPoP Required",
|
|
10060
|
+
help: "Require access tokens for this resource to be DPoP-bound (RFC 9449)"
|
|
10061
|
+
},
|
|
10062
|
+
disabled: {
|
|
10063
|
+
label: "Disabled"
|
|
10064
|
+
},
|
|
10065
|
+
policy_version: {
|
|
10066
|
+
label: "Policy Version",
|
|
10067
|
+
help: "Monotonic version of the resource token policy"
|
|
10068
|
+
},
|
|
10069
|
+
metadata: {
|
|
10070
|
+
label: "Metadata",
|
|
10071
|
+
help: "JSON object of additional resource metadata"
|
|
10072
|
+
},
|
|
10073
|
+
created_at: {
|
|
10074
|
+
label: "Created At"
|
|
10075
|
+
},
|
|
10076
|
+
updated_at: {
|
|
10077
|
+
label: "Updated At"
|
|
10078
|
+
}
|
|
10079
|
+
}
|
|
10080
|
+
},
|
|
10081
|
+
sys_oauth_client_resource: {
|
|
10082
|
+
label: "OAuth Client Resource",
|
|
10083
|
+
pluralLabel: "OAuth Client Resources",
|
|
10084
|
+
description: "Grants allowing an OAuth client to request tokens for a protected resource",
|
|
10085
|
+
fields: {
|
|
10086
|
+
id: {
|
|
10087
|
+
label: "ID"
|
|
10088
|
+
},
|
|
10089
|
+
client_id: {
|
|
10090
|
+
label: "Client ID",
|
|
10091
|
+
help: "Foreign key to sys_oauth_application.client_id"
|
|
10092
|
+
},
|
|
10093
|
+
resource_id: {
|
|
10094
|
+
label: "Resource ID",
|
|
10095
|
+
help: "Foreign key to sys_oauth_resource.identifier"
|
|
10096
|
+
},
|
|
10097
|
+
metadata: {
|
|
10098
|
+
label: "Metadata",
|
|
10099
|
+
help: "JSON object of additional grant metadata"
|
|
10100
|
+
},
|
|
10101
|
+
created_at: {
|
|
10102
|
+
label: "Created At"
|
|
10103
|
+
}
|
|
10104
|
+
}
|
|
10105
|
+
},
|
|
10106
|
+
sys_oauth_client_assertion: {
|
|
10107
|
+
label: "OAuth Client Assertion",
|
|
10108
|
+
pluralLabel: "OAuth Client Assertions",
|
|
10109
|
+
description: "Consumed OAuth client-assertion JTIs (RFC 7523 replay prevention)",
|
|
10110
|
+
fields: {
|
|
10111
|
+
id: {
|
|
10112
|
+
label: "ID"
|
|
10113
|
+
},
|
|
10114
|
+
expires_at: {
|
|
10115
|
+
label: "Expires At",
|
|
10116
|
+
help: "Assertion expiry \u2014 rows past this instant are safe to prune"
|
|
10117
|
+
}
|
|
10118
|
+
}
|
|
10119
|
+
},
|
|
8935
10120
|
sys_jwks: {
|
|
8936
10121
|
label: "Clave de firma (JWKS)",
|
|
8937
10122
|
pluralLabel: "Claves de firma (JWKS)",
|
|
@@ -8949,6 +10134,14 @@ var esESObjects = {
|
|
|
8949
10134
|
label: "Clave privada",
|
|
8950
10135
|
help: "Clave privada JWK serializada en JSON (cifrada en reposo)."
|
|
8951
10136
|
},
|
|
10137
|
+
alg: {
|
|
10138
|
+
label: "Algoritmo",
|
|
10139
|
+
help: "Algoritmo de firma JWK, p. ej. `EdDSA` (better-auth 1.7+)"
|
|
10140
|
+
},
|
|
10141
|
+
crv: {
|
|
10142
|
+
label: "Curva",
|
|
10143
|
+
help: "Curva JWK para claves EdDSA/EC, p. ej. `Ed25519` (better-auth 1.7+)"
|
|
10144
|
+
},
|
|
8952
10145
|
created_at: {
|
|
8953
10146
|
label: "Creado el"
|
|
8954
10147
|
},
|
|
@@ -9005,7 +10198,11 @@ var esESObjects = {
|
|
|
9005
10198
|
},
|
|
9006
10199
|
_views: {
|
|
9007
10200
|
recent: {
|
|
9008
|
-
label: "Recent"
|
|
10201
|
+
label: "Recent",
|
|
10202
|
+
emptyState: {
|
|
10203
|
+
title: "No events",
|
|
10204
|
+
message: "No notification events have been emitted."
|
|
10205
|
+
}
|
|
9009
10206
|
},
|
|
9010
10207
|
by_topic: {
|
|
9011
10208
|
label: "By Topic"
|
|
@@ -9042,23 +10239,6 @@ var esESObjects = {
|
|
|
9042
10239
|
size: {
|
|
9043
10240
|
label: "Tama\xF1o (bytes)"
|
|
9044
10241
|
},
|
|
9045
|
-
share_type: {
|
|
9046
|
-
label: "Tipo de compartici\xF3n",
|
|
9047
|
-
help: "visualizador | colaborador | inferido (heredado del registro principal)",
|
|
9048
|
-
options: {
|
|
9049
|
-
viewer: "Visualizador",
|
|
9050
|
-
collaborator: "Colaborador",
|
|
9051
|
-
inferred: "Inferido"
|
|
9052
|
-
}
|
|
9053
|
-
},
|
|
9054
|
-
visibility: {
|
|
9055
|
-
label: "Visibilidad",
|
|
9056
|
-
options: {
|
|
9057
|
-
internal: "Interno",
|
|
9058
|
-
all_users: "Todos los usuarios",
|
|
9059
|
-
shared_users: "Usuarios compartidos"
|
|
9060
|
-
}
|
|
9061
|
-
},
|
|
9062
10242
|
uploaded_by: {
|
|
9063
10243
|
label: "Subido por"
|
|
9064
10244
|
},
|
|
@@ -10990,6 +12170,22 @@ var enMetadataForms = {
|
|
|
10990
12170
|
label: "Variables",
|
|
10991
12171
|
helpText: "Local page state variables"
|
|
10992
12172
|
},
|
|
12173
|
+
"variables.name": {
|
|
12174
|
+
label: "Name",
|
|
12175
|
+
helpText: "Variable name \u2014 exposed to expressions as `page.<name>`"
|
|
12176
|
+
},
|
|
12177
|
+
"variables.type": {
|
|
12178
|
+
label: "Type",
|
|
12179
|
+
helpText: "Value type"
|
|
12180
|
+
},
|
|
12181
|
+
"variables.defaultValue": {
|
|
12182
|
+
label: "Default Value",
|
|
12183
|
+
helpText: "Initial value (defaults to a type-appropriate empty value)"
|
|
12184
|
+
},
|
|
12185
|
+
"variables.source": {
|
|
12186
|
+
label: "Source",
|
|
12187
|
+
helpText: "Component (by id) that writes this variable \u2014 e.g. an element:record_picker"
|
|
12188
|
+
},
|
|
10993
12189
|
regions: {
|
|
10994
12190
|
label: "Regions",
|
|
10995
12191
|
helpText: "Layout regions (header, main, sidebar, footer) with components"
|
|
@@ -12753,6 +13949,22 @@ var zhCNMetadataForms = {
|
|
|
12753
13949
|
label: "\u53D8\u91CF",
|
|
12754
13950
|
helpText: "\u9875\u9762\u672C\u5730\u72B6\u6001\u53D8\u91CF"
|
|
12755
13951
|
},
|
|
13952
|
+
"variables.name": {
|
|
13953
|
+
label: "\u540D\u79F0",
|
|
13954
|
+
helpText: "\u53D8\u91CF\u540D\u2014\u2014\u5728\u8868\u8FBE\u5F0F\u4E2D\u4EE5 `page.<name>` \u8BBF\u95EE"
|
|
13955
|
+
},
|
|
13956
|
+
"variables.type": {
|
|
13957
|
+
label: "\u7C7B\u578B",
|
|
13958
|
+
helpText: "\u503C\u7C7B\u578B"
|
|
13959
|
+
},
|
|
13960
|
+
"variables.defaultValue": {
|
|
13961
|
+
label: "\u9ED8\u8BA4\u503C",
|
|
13962
|
+
helpText: "\u521D\u59CB\u503C\uFF08\u9ED8\u8BA4\u4E3A\u5BF9\u5E94\u7C7B\u578B\u7684\u7A7A\u503C\uFF09"
|
|
13963
|
+
},
|
|
13964
|
+
"variables.source": {
|
|
13965
|
+
label: "\u6765\u6E90",
|
|
13966
|
+
helpText: "\u5199\u5165\u8BE5\u53D8\u91CF\u7684\u7EC4\u4EF6\uFF08\u6309 id \u6307\u5B9A\uFF09\uFF0C\u5982 element:record_picker"
|
|
13967
|
+
},
|
|
12756
13968
|
regions: {
|
|
12757
13969
|
label: "\u533A\u57DF",
|
|
12758
13970
|
helpText: "\u5E03\u5C40\u533A\u57DF\uFF08header\u3001main\u3001sidebar\u3001footer\uFF09\u53CA\u5176\u7EC4\u4EF6"
|
|
@@ -14516,6 +15728,22 @@ var jaJPMetadataForms = {
|
|
|
14516
15728
|
label: "\u5909\u6570",
|
|
14517
15729
|
helpText: "\u30DA\u30FC\u30B8\u30ED\u30FC\u30AB\u30EB\u72B6\u614B\u5909\u6570"
|
|
14518
15730
|
},
|
|
15731
|
+
"variables.name": {
|
|
15732
|
+
label: "\u540D\u524D",
|
|
15733
|
+
helpText: "\u5909\u6570\u540D \u2014 \u5F0F\u3067\u306F `page.<name>` \u3068\u3057\u3066\u53C2\u7167\u3067\u304D\u307E\u3059"
|
|
15734
|
+
},
|
|
15735
|
+
"variables.type": {
|
|
15736
|
+
label: "\u578B",
|
|
15737
|
+
helpText: "\u5024\u306E\u578B"
|
|
15738
|
+
},
|
|
15739
|
+
"variables.defaultValue": {
|
|
15740
|
+
label: "\u30C7\u30D5\u30A9\u30EB\u30C8\u5024",
|
|
15741
|
+
helpText: "\u521D\u671F\u5024\uFF08\u672A\u6307\u5B9A\u306E\u5834\u5408\u306F\u578B\u306B\u5FDC\u3058\u305F\u7A7A\u306E\u5024\uFF09"
|
|
15742
|
+
},
|
|
15743
|
+
"variables.source": {
|
|
15744
|
+
label: "\u30BD\u30FC\u30B9",
|
|
15745
|
+
helpText: "\u3053\u306E\u5909\u6570\u306B\u66F8\u304D\u8FBC\u3080\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\uFF08id \u6307\u5B9A\uFF09\u2014 \u4F8B: element:record_picker"
|
|
15746
|
+
},
|
|
14519
15747
|
regions: {
|
|
14520
15748
|
label: "\u30EA\u30FC\u30B8\u30E7\u30F3",
|
|
14521
15749
|
helpText: "\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u3092\u542B\u3080\u30EC\u30A4\u30A2\u30A6\u30C8\u9818\u57DF\uFF08header, main, sidebar, footer\uFF09"
|
|
@@ -16279,6 +17507,22 @@ var esESMetadataForms = {
|
|
|
16279
17507
|
label: "Variables de p\xE1gina",
|
|
16280
17508
|
helpText: "Variables de estado local de p\xE1gina"
|
|
16281
17509
|
},
|
|
17510
|
+
"variables.name": {
|
|
17511
|
+
label: "Nombre",
|
|
17512
|
+
helpText: "Nombre de la variable \u2014 expuesta en expresiones como `page.<name>`"
|
|
17513
|
+
},
|
|
17514
|
+
"variables.type": {
|
|
17515
|
+
label: "Tipo",
|
|
17516
|
+
helpText: "Tipo de valor"
|
|
17517
|
+
},
|
|
17518
|
+
"variables.defaultValue": {
|
|
17519
|
+
label: "Valor predeterminado",
|
|
17520
|
+
helpText: "Valor inicial (por defecto, un valor vac\xEDo seg\xFAn el tipo)"
|
|
17521
|
+
},
|
|
17522
|
+
"variables.source": {
|
|
17523
|
+
label: "Origen",
|
|
17524
|
+
helpText: "Componente (por id) que escribe esta variable \u2014 p. ej. un element:record_picker"
|
|
17525
|
+
},
|
|
16282
17526
|
regions: {
|
|
16283
17527
|
label: "Regiones",
|
|
16284
17528
|
helpText: "Regiones de dise\xF1o (header, main, sidebar, footer) con componentes"
|