authhero 9.5.0 → 9.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +138 -138
- package/dist/authhero.d.ts +133 -133
- package/dist/authhero.mjs +12511 -12403
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -6
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +133 -133
- package/dist/types/routes/auth-api/index.d.ts +26 -26
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/branding.d.ts +3 -3
- package/dist/types/routes/management-api/clients.d.ts +16 -16
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- package/dist/types/routes/management-api/email-templates.d.ts +2 -2
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +86 -86
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +6 -6
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenants.d.ts +28 -28
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +8 -8
- package/dist/types/routes/universal-login/continue.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/routes/universal-login/identifier.d.ts +4 -4
- package/dist/types/routes/universal-login/impersonate.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-form-node.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +9 -9
- package/dist/types/routes/universal-login/u2-routes.d.ts +7 -7
- package/package.json +6 -6
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
12
|
+
gzip?: "true" | "false" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
26
|
+
gzip?: "true" | "false" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "push" | "email" | "passkey" | "phone" | "
|
|
99
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "
|
|
394
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "
|
|
402
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "
|
|
415
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "
|
|
427
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1196,19 +1196,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1196
1196
|
} & {
|
|
1197
1197
|
json: {
|
|
1198
1198
|
client_id: string;
|
|
1199
|
-
inviter: {
|
|
1200
|
-
name?: string | undefined;
|
|
1201
|
-
};
|
|
1202
1199
|
invitee: {
|
|
1203
1200
|
email?: string | undefined;
|
|
1204
1201
|
};
|
|
1202
|
+
inviter: {
|
|
1203
|
+
name?: string | undefined;
|
|
1204
|
+
};
|
|
1205
1205
|
id?: string | undefined;
|
|
1206
1206
|
app_metadata?: Record<string, any> | undefined;
|
|
1207
1207
|
user_metadata?: Record<string, any> | undefined;
|
|
1208
1208
|
connection_id?: string | undefined;
|
|
1209
|
-
ttl_sec?: number | undefined;
|
|
1210
1209
|
roles?: string[] | undefined;
|
|
1211
1210
|
send_invitation_email?: boolean | undefined;
|
|
1211
|
+
ttl_sec?: number | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
1214
1214
|
output: {
|
|
@@ -1255,7 +1255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1255
1255
|
};
|
|
1256
1256
|
output: {};
|
|
1257
1257
|
outputFormat: string;
|
|
1258
|
-
status:
|
|
1258
|
+
status: 204;
|
|
1259
1259
|
} | {
|
|
1260
1260
|
input: {
|
|
1261
1261
|
param: {
|
|
@@ -1269,7 +1269,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1269
1269
|
};
|
|
1270
1270
|
output: {};
|
|
1271
1271
|
outputFormat: string;
|
|
1272
|
-
status:
|
|
1272
|
+
status: 404;
|
|
1273
1273
|
};
|
|
1274
1274
|
};
|
|
1275
1275
|
} & {
|
|
@@ -6961,7 +6961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6961
6961
|
};
|
|
6962
6962
|
};
|
|
6963
6963
|
output: {
|
|
6964
|
-
prompt: "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa
|
|
6964
|
+
prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6965
6965
|
language: string;
|
|
6966
6966
|
}[];
|
|
6967
6967
|
outputFormat: "json";
|
|
@@ -6999,7 +6999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6999
6999
|
$get: {
|
|
7000
7000
|
input: {
|
|
7001
7001
|
param: {
|
|
7002
|
-
prompt: "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa
|
|
7002
|
+
prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7003
7003
|
language: string;
|
|
7004
7004
|
};
|
|
7005
7005
|
} & {
|
|
@@ -7021,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7021
7021
|
$put: {
|
|
7022
7022
|
input: {
|
|
7023
7023
|
param: {
|
|
7024
|
-
prompt: "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa
|
|
7024
|
+
prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7025
7025
|
language: string;
|
|
7026
7026
|
};
|
|
7027
7027
|
} & {
|
|
@@ -7045,7 +7045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7045
7045
|
$delete: {
|
|
7046
7046
|
input: {
|
|
7047
7047
|
param: {
|
|
7048
|
-
prompt: "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa
|
|
7048
|
+
prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7049
7049
|
language: string;
|
|
7050
7050
|
};
|
|
7051
7051
|
} & {
|
|
@@ -7141,7 +7141,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7141
7141
|
active?: boolean | undefined;
|
|
7142
7142
|
} | undefined;
|
|
7143
7143
|
signup?: {
|
|
7144
|
-
status?: "
|
|
7144
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7145
7145
|
verification?: {
|
|
7146
7146
|
active?: boolean | undefined;
|
|
7147
7147
|
} | undefined;
|
|
@@ -7158,7 +7158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7158
7158
|
active?: boolean | undefined;
|
|
7159
7159
|
} | undefined;
|
|
7160
7160
|
signup?: {
|
|
7161
|
-
status?: "
|
|
7161
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7162
7162
|
} | undefined;
|
|
7163
7163
|
validation?: {
|
|
7164
7164
|
max_length?: number | undefined;
|
|
@@ -7175,7 +7175,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7175
7175
|
active?: boolean | undefined;
|
|
7176
7176
|
} | undefined;
|
|
7177
7177
|
signup?: {
|
|
7178
|
-
status?: "
|
|
7178
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7179
7179
|
} | undefined;
|
|
7180
7180
|
} | undefined;
|
|
7181
7181
|
} | undefined;
|
|
@@ -7279,7 +7279,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7279
7279
|
active?: boolean | undefined;
|
|
7280
7280
|
} | undefined;
|
|
7281
7281
|
signup?: {
|
|
7282
|
-
status?: "
|
|
7282
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7283
7283
|
verification?: {
|
|
7284
7284
|
active?: boolean | undefined;
|
|
7285
7285
|
} | undefined;
|
|
@@ -7296,7 +7296,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7296
7296
|
active?: boolean | undefined;
|
|
7297
7297
|
} | undefined;
|
|
7298
7298
|
signup?: {
|
|
7299
|
-
status?: "
|
|
7299
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7300
7300
|
} | undefined;
|
|
7301
7301
|
validation?: {
|
|
7302
7302
|
max_length?: number | undefined;
|
|
@@ -7313,7 +7313,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7313
7313
|
active?: boolean | undefined;
|
|
7314
7314
|
} | undefined;
|
|
7315
7315
|
signup?: {
|
|
7316
|
-
status?: "
|
|
7316
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7317
7317
|
} | undefined;
|
|
7318
7318
|
} | undefined;
|
|
7319
7319
|
} | undefined;
|
|
@@ -7433,7 +7433,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7433
7433
|
active?: boolean | undefined;
|
|
7434
7434
|
} | undefined;
|
|
7435
7435
|
signup?: {
|
|
7436
|
-
status?: "
|
|
7436
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7437
7437
|
verification?: {
|
|
7438
7438
|
active?: boolean | undefined;
|
|
7439
7439
|
} | undefined;
|
|
@@ -7450,7 +7450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7450
7450
|
active?: boolean | undefined;
|
|
7451
7451
|
} | undefined;
|
|
7452
7452
|
signup?: {
|
|
7453
|
-
status?: "
|
|
7453
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7454
7454
|
} | undefined;
|
|
7455
7455
|
validation?: {
|
|
7456
7456
|
max_length?: number | undefined;
|
|
@@ -7467,7 +7467,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7467
7467
|
active?: boolean | undefined;
|
|
7468
7468
|
} | undefined;
|
|
7469
7469
|
signup?: {
|
|
7470
|
-
status?: "
|
|
7470
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7471
7471
|
} | undefined;
|
|
7472
7472
|
} | undefined;
|
|
7473
7473
|
} | undefined;
|
|
@@ -7616,7 +7616,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7616
7616
|
active?: boolean | undefined;
|
|
7617
7617
|
} | undefined;
|
|
7618
7618
|
signup?: {
|
|
7619
|
-
status?: "
|
|
7619
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7620
7620
|
verification?: {
|
|
7621
7621
|
active?: boolean | undefined;
|
|
7622
7622
|
} | undefined;
|
|
@@ -7633,7 +7633,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7633
7633
|
active?: boolean | undefined;
|
|
7634
7634
|
} | undefined;
|
|
7635
7635
|
signup?: {
|
|
7636
|
-
status?: "
|
|
7636
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7637
7637
|
} | undefined;
|
|
7638
7638
|
validation?: {
|
|
7639
7639
|
max_length?: number | undefined;
|
|
@@ -7650,7 +7650,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7650
7650
|
active?: boolean | undefined;
|
|
7651
7651
|
} | undefined;
|
|
7652
7652
|
signup?: {
|
|
7653
|
-
status?: "
|
|
7653
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7654
7654
|
} | undefined;
|
|
7655
7655
|
} | undefined;
|
|
7656
7656
|
} | undefined;
|
|
@@ -7778,7 +7778,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7778
7778
|
active?: boolean | undefined;
|
|
7779
7779
|
} | undefined;
|
|
7780
7780
|
signup?: {
|
|
7781
|
-
status?: "
|
|
7781
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7782
7782
|
verification?: {
|
|
7783
7783
|
active?: boolean | undefined;
|
|
7784
7784
|
} | undefined;
|
|
@@ -7795,7 +7795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7795
7795
|
active?: boolean | undefined;
|
|
7796
7796
|
} | undefined;
|
|
7797
7797
|
signup?: {
|
|
7798
|
-
status?: "
|
|
7798
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7799
7799
|
} | undefined;
|
|
7800
7800
|
validation?: {
|
|
7801
7801
|
max_length?: number | undefined;
|
|
@@ -7812,7 +7812,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7812
7812
|
active?: boolean | undefined;
|
|
7813
7813
|
} | undefined;
|
|
7814
7814
|
signup?: {
|
|
7815
|
-
status?: "
|
|
7815
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7816
7816
|
} | undefined;
|
|
7817
7817
|
} | undefined;
|
|
7818
7818
|
} | undefined;
|
|
@@ -8368,7 +8368,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8368
8368
|
};
|
|
8369
8369
|
output: {};
|
|
8370
8370
|
outputFormat: string;
|
|
8371
|
-
status:
|
|
8371
|
+
status: 400;
|
|
8372
8372
|
} | {
|
|
8373
8373
|
input: {
|
|
8374
8374
|
param: {
|
|
@@ -8383,7 +8383,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8383
8383
|
};
|
|
8384
8384
|
output: {};
|
|
8385
8385
|
outputFormat: string;
|
|
8386
|
-
status:
|
|
8386
|
+
status: 404;
|
|
8387
8387
|
} | {
|
|
8388
8388
|
input: {
|
|
8389
8389
|
param: {
|
|
@@ -8588,7 +8588,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8588
8588
|
};
|
|
8589
8589
|
output: {};
|
|
8590
8590
|
outputFormat: string;
|
|
8591
|
-
status:
|
|
8591
|
+
status: 400;
|
|
8592
8592
|
} | {
|
|
8593
8593
|
input: {
|
|
8594
8594
|
param: {
|
|
@@ -8605,7 +8605,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8605
8605
|
};
|
|
8606
8606
|
output: {};
|
|
8607
8607
|
outputFormat: string;
|
|
8608
|
-
status:
|
|
8608
|
+
status: 404;
|
|
8609
8609
|
} | {
|
|
8610
8610
|
input: {
|
|
8611
8611
|
param: {
|
|
@@ -8657,7 +8657,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8657
8657
|
log_type: string;
|
|
8658
8658
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8659
8659
|
actor: {
|
|
8660
|
-
type: "user" | "client_credentials" | "
|
|
8660
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8661
8661
|
id?: string | undefined;
|
|
8662
8662
|
email?: string | undefined;
|
|
8663
8663
|
org_id?: string | undefined;
|
|
@@ -8968,7 +8968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8968
8968
|
created_at: string;
|
|
8969
8969
|
updated_at: string;
|
|
8970
8970
|
name: string;
|
|
8971
|
-
provider: "auth0" | "
|
|
8971
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8972
8972
|
connection: string;
|
|
8973
8973
|
enabled: boolean;
|
|
8974
8974
|
credentials: {
|
|
@@ -9000,7 +9000,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9000
9000
|
created_at: string;
|
|
9001
9001
|
updated_at: string;
|
|
9002
9002
|
name: string;
|
|
9003
|
-
provider: "auth0" | "
|
|
9003
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9004
9004
|
connection: string;
|
|
9005
9005
|
enabled: boolean;
|
|
9006
9006
|
credentials: {
|
|
@@ -9026,7 +9026,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9026
9026
|
} & {
|
|
9027
9027
|
json: {
|
|
9028
9028
|
name: string;
|
|
9029
|
-
provider: "auth0" | "
|
|
9029
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9030
9030
|
connection: string;
|
|
9031
9031
|
credentials: {
|
|
9032
9032
|
domain: string;
|
|
@@ -9043,7 +9043,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9043
9043
|
created_at: string;
|
|
9044
9044
|
updated_at: string;
|
|
9045
9045
|
name: string;
|
|
9046
|
-
provider: "auth0" | "
|
|
9046
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9047
9047
|
connection: string;
|
|
9048
9048
|
enabled: boolean;
|
|
9049
9049
|
credentials: {
|
|
@@ -9074,7 +9074,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9074
9074
|
json: {
|
|
9075
9075
|
id?: string | undefined;
|
|
9076
9076
|
name?: string | undefined;
|
|
9077
|
-
provider?: "auth0" | "
|
|
9077
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
9078
9078
|
connection?: string | undefined;
|
|
9079
9079
|
enabled?: boolean | undefined;
|
|
9080
9080
|
credentials?: {
|
|
@@ -9090,7 +9090,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9090
9090
|
created_at: string;
|
|
9091
9091
|
updated_at: string;
|
|
9092
9092
|
name: string;
|
|
9093
|
-
provider: "auth0" | "
|
|
9093
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9094
9094
|
connection: string;
|
|
9095
9095
|
enabled: boolean;
|
|
9096
9096
|
credentials: {
|
|
@@ -9308,7 +9308,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9308
9308
|
};
|
|
9309
9309
|
};
|
|
9310
9310
|
output: {
|
|
9311
|
-
type: "
|
|
9311
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9312
9312
|
date: string;
|
|
9313
9313
|
isMobile: boolean;
|
|
9314
9314
|
log_id: string;
|
|
@@ -9347,7 +9347,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9347
9347
|
limit: number;
|
|
9348
9348
|
length: number;
|
|
9349
9349
|
logs: {
|
|
9350
|
-
type: "
|
|
9350
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9351
9351
|
date: string;
|
|
9352
9352
|
isMobile: boolean;
|
|
9353
9353
|
log_id: string;
|
|
@@ -9386,7 +9386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9386
9386
|
next?: string | undefined;
|
|
9387
9387
|
} | {
|
|
9388
9388
|
logs: {
|
|
9389
|
-
type: "
|
|
9389
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9390
9390
|
date: string;
|
|
9391
9391
|
isMobile: boolean;
|
|
9392
9392
|
log_id: string;
|
|
@@ -9440,7 +9440,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9440
9440
|
};
|
|
9441
9441
|
};
|
|
9442
9442
|
output: {
|
|
9443
|
-
type: "
|
|
9443
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9444
9444
|
date: string;
|
|
9445
9445
|
isMobile: boolean;
|
|
9446
9446
|
log_id: string;
|
|
@@ -9851,7 +9851,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9851
9851
|
addons?: {
|
|
9852
9852
|
[x: string]: any;
|
|
9853
9853
|
} | undefined;
|
|
9854
|
-
token_endpoint_auth_method?: "none" | "
|
|
9854
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9855
9855
|
client_metadata?: {
|
|
9856
9856
|
[x: string]: string;
|
|
9857
9857
|
} | undefined;
|
|
@@ -9953,7 +9953,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9953
9953
|
addons?: {
|
|
9954
9954
|
[x: string]: any;
|
|
9955
9955
|
} | undefined;
|
|
9956
|
-
token_endpoint_auth_method?: "none" | "
|
|
9956
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9957
9957
|
client_metadata?: {
|
|
9958
9958
|
[x: string]: string;
|
|
9959
9959
|
} | undefined;
|
|
@@ -10055,7 +10055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10055
10055
|
addons?: {
|
|
10056
10056
|
[x: string]: any;
|
|
10057
10057
|
} | undefined;
|
|
10058
|
-
token_endpoint_auth_method?: "none" | "
|
|
10058
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10059
10059
|
client_metadata?: {
|
|
10060
10060
|
[x: string]: string;
|
|
10061
10061
|
} | undefined;
|
|
@@ -10172,7 +10172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10172
10172
|
addons?: {
|
|
10173
10173
|
[x: string]: any;
|
|
10174
10174
|
} | undefined;
|
|
10175
|
-
token_endpoint_auth_method?: "none" | "
|
|
10175
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10176
10176
|
client_metadata?: {
|
|
10177
10177
|
[x: string]: string;
|
|
10178
10178
|
} | undefined;
|
|
@@ -10290,7 +10290,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10290
10290
|
custom_login_page_preview?: string | undefined;
|
|
10291
10291
|
form_template?: string | undefined;
|
|
10292
10292
|
addons?: Record<string, any> | undefined;
|
|
10293
|
-
token_endpoint_auth_method?: "none" | "
|
|
10293
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10294
10294
|
client_metadata?: Record<string, string> | undefined;
|
|
10295
10295
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10296
10296
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10376,7 +10376,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10376
10376
|
addons?: {
|
|
10377
10377
|
[x: string]: any;
|
|
10378
10378
|
} | undefined;
|
|
10379
|
-
token_endpoint_auth_method?: "none" | "
|
|
10379
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10380
10380
|
client_metadata?: {
|
|
10381
10381
|
[x: string]: string;
|
|
10382
10382
|
} | undefined;
|
|
@@ -10473,7 +10473,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10473
10473
|
custom_login_page_preview?: string | undefined;
|
|
10474
10474
|
form_template?: string | undefined;
|
|
10475
10475
|
addons?: Record<string, any> | undefined;
|
|
10476
|
-
token_endpoint_auth_method?: "none" | "
|
|
10476
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10477
10477
|
client_metadata?: Record<string, string> | undefined;
|
|
10478
10478
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10479
10479
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10559,7 +10559,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10559
10559
|
addons?: {
|
|
10560
10560
|
[x: string]: any;
|
|
10561
10561
|
} | undefined;
|
|
10562
|
-
token_endpoint_auth_method?: "none" | "
|
|
10562
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10563
10563
|
client_metadata?: {
|
|
10564
10564
|
[x: string]: string;
|
|
10565
10565
|
} | undefined;
|
|
@@ -10685,7 +10685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10685
10685
|
active?: boolean | undefined;
|
|
10686
10686
|
} | undefined;
|
|
10687
10687
|
signup?: {
|
|
10688
|
-
status?: "
|
|
10688
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10689
10689
|
verification?: {
|
|
10690
10690
|
active?: boolean | undefined;
|
|
10691
10691
|
} | undefined;
|
|
@@ -10702,7 +10702,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10702
10702
|
active?: boolean | undefined;
|
|
10703
10703
|
} | undefined;
|
|
10704
10704
|
signup?: {
|
|
10705
|
-
status?: "
|
|
10705
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10706
10706
|
} | undefined;
|
|
10707
10707
|
validation?: {
|
|
10708
10708
|
max_length?: number | undefined;
|
|
@@ -10719,7 +10719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10719
10719
|
active?: boolean | undefined;
|
|
10720
10720
|
} | undefined;
|
|
10721
10721
|
signup?: {
|
|
10722
|
-
status?: "
|
|
10722
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10723
10723
|
} | undefined;
|
|
10724
10724
|
} | undefined;
|
|
10725
10725
|
} | undefined;
|
|
@@ -10843,7 +10843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10843
10843
|
active?: boolean | undefined;
|
|
10844
10844
|
} | undefined;
|
|
10845
10845
|
signup?: {
|
|
10846
|
-
status?: "
|
|
10846
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10847
10847
|
verification?: {
|
|
10848
10848
|
active?: boolean | undefined;
|
|
10849
10849
|
} | undefined;
|
|
@@ -10860,7 +10860,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10860
10860
|
active?: boolean | undefined;
|
|
10861
10861
|
} | undefined;
|
|
10862
10862
|
signup?: {
|
|
10863
|
-
status?: "
|
|
10863
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10864
10864
|
} | undefined;
|
|
10865
10865
|
validation?: {
|
|
10866
10866
|
max_length?: number | undefined;
|
|
@@ -10877,7 +10877,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10877
10877
|
active?: boolean | undefined;
|
|
10878
10878
|
} | undefined;
|
|
10879
10879
|
signup?: {
|
|
10880
|
-
status?: "
|
|
10880
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10881
10881
|
} | undefined;
|
|
10882
10882
|
} | undefined;
|
|
10883
10883
|
} | undefined;
|
|
@@ -11912,7 +11912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11912
11912
|
};
|
|
11913
11913
|
};
|
|
11914
11914
|
output: {
|
|
11915
|
-
type: "
|
|
11915
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11916
11916
|
date: string;
|
|
11917
11917
|
isMobile: boolean;
|
|
11918
11918
|
log_id: string;
|
|
@@ -11951,7 +11951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11951
11951
|
limit: number;
|
|
11952
11952
|
length: number;
|
|
11953
11953
|
logs: {
|
|
11954
|
-
type: "
|
|
11954
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11955
11955
|
date: string;
|
|
11956
11956
|
isMobile: boolean;
|
|
11957
11957
|
log_id: string;
|
|
@@ -12491,7 +12491,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12491
12491
|
};
|
|
12492
12492
|
output: {};
|
|
12493
12493
|
outputFormat: string;
|
|
12494
|
-
status:
|
|
12494
|
+
status: 204;
|
|
12495
12495
|
} | {
|
|
12496
12496
|
input: {
|
|
12497
12497
|
param: {
|
|
@@ -12504,7 +12504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12504
12504
|
};
|
|
12505
12505
|
output: {};
|
|
12506
12506
|
outputFormat: string;
|
|
12507
|
-
status:
|
|
12507
|
+
status: 404;
|
|
12508
12508
|
};
|
|
12509
12509
|
};
|
|
12510
12510
|
} & {
|
|
@@ -12640,7 +12640,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12640
12640
|
};
|
|
12641
12641
|
output: {};
|
|
12642
12642
|
outputFormat: string;
|
|
12643
|
-
status:
|
|
12643
|
+
status: 204;
|
|
12644
12644
|
} | {
|
|
12645
12645
|
input: {
|
|
12646
12646
|
header: {
|
|
@@ -12649,7 +12649,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12649
12649
|
};
|
|
12650
12650
|
output: {};
|
|
12651
12651
|
outputFormat: string;
|
|
12652
|
-
status:
|
|
12652
|
+
status: 404;
|
|
12653
12653
|
};
|
|
12654
12654
|
};
|
|
12655
12655
|
}, "/emails/provider"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -12758,7 +12758,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12758
12758
|
};
|
|
12759
12759
|
output: {};
|
|
12760
12760
|
outputFormat: string;
|
|
12761
|
-
status:
|
|
12761
|
+
status: 204;
|
|
12762
12762
|
} | {
|
|
12763
12763
|
input: {
|
|
12764
12764
|
header: {
|
|
@@ -12767,7 +12767,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12767
12767
|
};
|
|
12768
12768
|
output: {};
|
|
12769
12769
|
outputFormat: string;
|
|
12770
|
-
status:
|
|
12770
|
+
status: 404;
|
|
12771
12771
|
};
|
|
12772
12772
|
};
|
|
12773
12773
|
}, "/email/providers"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -12795,7 +12795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12795
12795
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12796
12796
|
custom_domain_id: string;
|
|
12797
12797
|
primary: boolean;
|
|
12798
|
-
status: "
|
|
12798
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12799
12799
|
verification_method?: "txt" | undefined;
|
|
12800
12800
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12801
12801
|
domain_metadata?: {
|
|
@@ -12836,7 +12836,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12836
12836
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12837
12837
|
custom_domain_id: string;
|
|
12838
12838
|
primary: boolean;
|
|
12839
|
-
status: "
|
|
12839
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12840
12840
|
verification_method?: "txt" | undefined;
|
|
12841
12841
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12842
12842
|
domain_metadata?: {
|
|
@@ -12900,7 +12900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12900
12900
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12901
12901
|
custom_domain_id: string;
|
|
12902
12902
|
primary: boolean;
|
|
12903
|
-
status: "
|
|
12903
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12904
12904
|
verification_method?: "txt" | undefined;
|
|
12905
12905
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12906
12906
|
domain_metadata?: {
|
|
@@ -12947,7 +12947,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12947
12947
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12948
12948
|
custom_domain_id: string;
|
|
12949
12949
|
primary: boolean;
|
|
12950
|
-
status: "
|
|
12950
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12951
12951
|
verification_method?: "txt" | undefined;
|
|
12952
12952
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12953
12953
|
domain_metadata?: {
|
|
@@ -12993,7 +12993,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12993
12993
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12994
12994
|
custom_domain_id: string;
|
|
12995
12995
|
primary: boolean;
|
|
12996
|
-
status: "
|
|
12996
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12997
12997
|
verification_method?: "txt" | undefined;
|
|
12998
12998
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12999
12999
|
domain_metadata?: {
|
|
@@ -13034,7 +13034,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13034
13034
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13035
13035
|
custom_domain_id: string;
|
|
13036
13036
|
primary: boolean;
|
|
13037
|
-
status: "
|
|
13037
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13038
13038
|
verification_method?: "txt" | undefined;
|
|
13039
13039
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13040
13040
|
domain_metadata?: {
|
|
@@ -13425,7 +13425,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13425
13425
|
};
|
|
13426
13426
|
output: {};
|
|
13427
13427
|
outputFormat: string;
|
|
13428
|
-
status:
|
|
13428
|
+
status: 400;
|
|
13429
13429
|
} | {
|
|
13430
13430
|
input: {
|
|
13431
13431
|
header: {
|
|
@@ -13438,7 +13438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13438
13438
|
};
|
|
13439
13439
|
output: {};
|
|
13440
13440
|
outputFormat: string;
|
|
13441
|
-
status:
|
|
13441
|
+
status: 204;
|
|
13442
13442
|
};
|
|
13443
13443
|
};
|
|
13444
13444
|
} & {
|
|
@@ -13464,7 +13464,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13464
13464
|
} & {
|
|
13465
13465
|
json: {
|
|
13466
13466
|
body?: string | undefined;
|
|
13467
|
-
screen?: "
|
|
13467
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
13468
13468
|
branding?: {
|
|
13469
13469
|
colors?: {
|
|
13470
13470
|
primary: string;
|
|
@@ -13755,7 +13755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13755
13755
|
logs: {
|
|
13756
13756
|
action_name: string;
|
|
13757
13757
|
lines: {
|
|
13758
|
-
level: "
|
|
13758
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13759
13759
|
message: string;
|
|
13760
13760
|
}[];
|
|
13761
13761
|
}[];
|
|
@@ -14063,7 +14063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14063
14063
|
};
|
|
14064
14064
|
output: {};
|
|
14065
14065
|
outputFormat: string;
|
|
14066
|
-
status:
|
|
14066
|
+
status: 200;
|
|
14067
14067
|
} | {
|
|
14068
14068
|
input: {
|
|
14069
14069
|
param: {
|
|
@@ -14076,7 +14076,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14076
14076
|
};
|
|
14077
14077
|
output: {};
|
|
14078
14078
|
outputFormat: string;
|
|
14079
|
-
status:
|
|
14079
|
+
status: 404;
|
|
14080
14080
|
} | {
|
|
14081
14081
|
input: {
|
|
14082
14082
|
param: {
|
|
@@ -14424,7 +14424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14424
14424
|
args: import("hono/utils/types").JSONValue[];
|
|
14425
14425
|
}[];
|
|
14426
14426
|
logs: {
|
|
14427
|
-
level: "
|
|
14427
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
14428
14428
|
message: string;
|
|
14429
14429
|
}[];
|
|
14430
14430
|
error?: string | undefined;
|