authhero 9.1.1 → 9.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/p-e95c436f.entry.js +1 -0
- package/dist/authhero.cjs +143 -143
- package/dist/authhero.d.ts +277 -138
- package/dist/authhero.mjs +14434 -14771
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -6
- package/dist/types/helpers/action-executions-cleanup.d.ts +34 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/run-retention.d.ts +4 -1
- package/dist/types/index.d.ts +238 -134
- package/dist/types/oauth2-client/client.d.ts +50 -0
- package/dist/types/oauth2-client/index.d.ts +3 -0
- package/dist/types/oauth2-client/providers.d.ts +49 -0
- package/dist/types/routes/auth-api/index.d.ts +32 -32
- package/dist/types/routes/auth-api/oidc-logout.d.ts +3 -3
- 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/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +3 -3
- package/dist/types/routes/management-api/clients.d.ts +14 -14
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +154 -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/hooks.d.ts +74 -0
- package/dist/types/routes/management-api/index.d.ts +189 -87
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +29 -29
- 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 +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +7 -7
- package/dist/types/routes/universal-login/u2-routes.d.ts +7 -7
- package/dist/types/strategies/internal-oauth2.d.ts +5 -5
- package/package.json +6 -7
- package/dist/assets/u/widget/p-c179b5da.entry.js +0 -1
|
@@ -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: "
|
|
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
|
+
id?: string | undefined;
|
|
1205
1206
|
app_metadata?: Record<string, any> | undefined;
|
|
1206
1207
|
user_metadata?: Record<string, any> | undefined;
|
|
1207
|
-
id?: string | undefined;
|
|
1208
1208
|
connection_id?: string | undefined;
|
|
1209
1209
|
roles?: string[] | undefined;
|
|
1210
|
-
ttl_sec?: number | undefined;
|
|
1211
1210
|
send_invitation_email?: boolean | undefined;
|
|
1211
|
+
ttl_sec?: number | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
1214
1214
|
output: {
|
|
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1391
1391
|
};
|
|
1392
1392
|
} & {
|
|
1393
1393
|
json: {
|
|
1394
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1395
1394
|
show_as_button?: boolean | undefined;
|
|
1395
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1396
1396
|
is_signup_enabled?: boolean | undefined;
|
|
1397
1397
|
};
|
|
1398
1398
|
};
|
|
@@ -2876,6 +2876,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2876
2876
|
config?: {
|
|
2877
2877
|
placeholder?: string | undefined;
|
|
2878
2878
|
default_value?: string | undefined;
|
|
2879
|
+
last_used?: boolean | undefined;
|
|
2880
|
+
last_used_label?: string | undefined;
|
|
2879
2881
|
} | undefined;
|
|
2880
2882
|
} | {
|
|
2881
2883
|
id: string;
|
|
@@ -3047,6 +3049,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3047
3049
|
multiline?: boolean | undefined;
|
|
3048
3050
|
max_length?: number | undefined;
|
|
3049
3051
|
default_value?: string | undefined;
|
|
3052
|
+
last_used?: boolean | undefined;
|
|
3053
|
+
last_used_label?: string | undefined;
|
|
3050
3054
|
} | undefined;
|
|
3051
3055
|
} | {
|
|
3052
3056
|
id: string;
|
|
@@ -3479,6 +3483,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3479
3483
|
config?: {
|
|
3480
3484
|
placeholder?: string | undefined;
|
|
3481
3485
|
default_value?: string | undefined;
|
|
3486
|
+
last_used?: boolean | undefined;
|
|
3487
|
+
last_used_label?: string | undefined;
|
|
3482
3488
|
} | undefined;
|
|
3483
3489
|
} | {
|
|
3484
3490
|
id: string;
|
|
@@ -3650,6 +3656,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3650
3656
|
multiline?: boolean | undefined;
|
|
3651
3657
|
max_length?: number | undefined;
|
|
3652
3658
|
default_value?: string | undefined;
|
|
3659
|
+
last_used?: boolean | undefined;
|
|
3660
|
+
last_used_label?: string | undefined;
|
|
3653
3661
|
} | undefined;
|
|
3654
3662
|
} | {
|
|
3655
3663
|
id: string;
|
|
@@ -4098,6 +4106,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4098
4106
|
config?: {
|
|
4099
4107
|
placeholder?: string | undefined;
|
|
4100
4108
|
default_value?: string | undefined;
|
|
4109
|
+
last_used?: boolean | undefined;
|
|
4110
|
+
last_used_label?: string | undefined;
|
|
4101
4111
|
} | undefined;
|
|
4102
4112
|
} | {
|
|
4103
4113
|
id: string;
|
|
@@ -4269,6 +4279,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4269
4279
|
multiline?: boolean | undefined;
|
|
4270
4280
|
max_length?: number | undefined;
|
|
4271
4281
|
default_value?: string | undefined;
|
|
4282
|
+
last_used?: boolean | undefined;
|
|
4283
|
+
last_used_label?: string | undefined;
|
|
4272
4284
|
} | undefined;
|
|
4273
4285
|
} | {
|
|
4274
4286
|
id: string;
|
|
@@ -4718,6 +4730,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4718
4730
|
config?: {
|
|
4719
4731
|
placeholder?: string | undefined;
|
|
4720
4732
|
default_value?: string | undefined;
|
|
4733
|
+
last_used?: boolean | undefined;
|
|
4734
|
+
last_used_label?: string | undefined;
|
|
4721
4735
|
} | undefined;
|
|
4722
4736
|
} | {
|
|
4723
4737
|
id: string;
|
|
@@ -4889,6 +4903,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4889
4903
|
multiline?: boolean | undefined;
|
|
4890
4904
|
max_length?: number | undefined;
|
|
4891
4905
|
default_value?: string | undefined;
|
|
4906
|
+
last_used?: boolean | undefined;
|
|
4907
|
+
last_used_label?: string | undefined;
|
|
4892
4908
|
} | undefined;
|
|
4893
4909
|
} | {
|
|
4894
4910
|
id: string;
|
|
@@ -5319,6 +5335,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5319
5335
|
config?: {
|
|
5320
5336
|
placeholder?: string | undefined;
|
|
5321
5337
|
default_value?: string | undefined;
|
|
5338
|
+
last_used?: boolean | undefined;
|
|
5339
|
+
last_used_label?: string | undefined;
|
|
5322
5340
|
} | undefined;
|
|
5323
5341
|
} | {
|
|
5324
5342
|
id: string;
|
|
@@ -5490,6 +5508,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5490
5508
|
multiline?: boolean | undefined;
|
|
5491
5509
|
max_length?: number | undefined;
|
|
5492
5510
|
default_value?: string | undefined;
|
|
5511
|
+
last_used?: boolean | undefined;
|
|
5512
|
+
last_used_label?: string | undefined;
|
|
5493
5513
|
} | undefined;
|
|
5494
5514
|
} | {
|
|
5495
5515
|
id: string;
|
|
@@ -5918,6 +5938,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
5918
5938
|
config?: {
|
|
5919
5939
|
placeholder?: string | undefined;
|
|
5920
5940
|
default_value?: string | undefined;
|
|
5941
|
+
last_used?: boolean | undefined;
|
|
5942
|
+
last_used_label?: string | undefined;
|
|
5921
5943
|
} | undefined;
|
|
5922
5944
|
} | {
|
|
5923
5945
|
id: string;
|
|
@@ -6089,6 +6111,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6089
6111
|
multiline?: boolean | undefined;
|
|
6090
6112
|
max_length?: number | undefined;
|
|
6091
6113
|
default_value?: string | undefined;
|
|
6114
|
+
last_used?: boolean | undefined;
|
|
6115
|
+
last_used_label?: string | undefined;
|
|
6092
6116
|
} | undefined;
|
|
6093
6117
|
} | {
|
|
6094
6118
|
id: string;
|
|
@@ -6519,6 +6543,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6519
6543
|
config?: {
|
|
6520
6544
|
placeholder?: string | undefined;
|
|
6521
6545
|
default_value?: string | undefined;
|
|
6546
|
+
last_used?: boolean | undefined;
|
|
6547
|
+
last_used_label?: string | undefined;
|
|
6522
6548
|
} | undefined;
|
|
6523
6549
|
} | {
|
|
6524
6550
|
id: string;
|
|
@@ -6690,6 +6716,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6690
6716
|
multiline?: boolean | undefined;
|
|
6691
6717
|
max_length?: number | undefined;
|
|
6692
6718
|
default_value?: string | undefined;
|
|
6719
|
+
last_used?: boolean | undefined;
|
|
6720
|
+
last_used_label?: string | undefined;
|
|
6693
6721
|
} | undefined;
|
|
6694
6722
|
} | {
|
|
6695
6723
|
id: string;
|
|
@@ -6933,7 +6961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6933
6961
|
};
|
|
6934
6962
|
};
|
|
6935
6963
|
output: {
|
|
6936
|
-
prompt: "
|
|
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";
|
|
6937
6965
|
language: string;
|
|
6938
6966
|
}[];
|
|
6939
6967
|
outputFormat: "json";
|
|
@@ -6971,7 +6999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6971
6999
|
$get: {
|
|
6972
7000
|
input: {
|
|
6973
7001
|
param: {
|
|
6974
|
-
prompt: "
|
|
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";
|
|
6975
7003
|
language: string;
|
|
6976
7004
|
};
|
|
6977
7005
|
} & {
|
|
@@ -6993,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6993
7021
|
$put: {
|
|
6994
7022
|
input: {
|
|
6995
7023
|
param: {
|
|
6996
|
-
prompt: "
|
|
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";
|
|
6997
7025
|
language: string;
|
|
6998
7026
|
};
|
|
6999
7027
|
} & {
|
|
@@ -7017,7 +7045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7017
7045
|
$delete: {
|
|
7018
7046
|
input: {
|
|
7019
7047
|
param: {
|
|
7020
|
-
prompt: "
|
|
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";
|
|
7021
7049
|
language: string;
|
|
7022
7050
|
};
|
|
7023
7051
|
} & {
|
|
@@ -7109,7 +7137,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7109
7137
|
active?: boolean | undefined;
|
|
7110
7138
|
} | undefined;
|
|
7111
7139
|
signup?: {
|
|
7112
|
-
status?: "
|
|
7140
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7113
7141
|
verification?: {
|
|
7114
7142
|
active?: boolean | undefined;
|
|
7115
7143
|
} | undefined;
|
|
@@ -7126,7 +7154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7126
7154
|
active?: boolean | undefined;
|
|
7127
7155
|
} | undefined;
|
|
7128
7156
|
signup?: {
|
|
7129
|
-
status?: "
|
|
7157
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7130
7158
|
} | undefined;
|
|
7131
7159
|
validation?: {
|
|
7132
7160
|
max_length?: number | undefined;
|
|
@@ -7143,7 +7171,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7143
7171
|
active?: boolean | undefined;
|
|
7144
7172
|
} | undefined;
|
|
7145
7173
|
signup?: {
|
|
7146
|
-
status?: "
|
|
7174
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7147
7175
|
} | undefined;
|
|
7148
7176
|
} | undefined;
|
|
7149
7177
|
} | undefined;
|
|
@@ -7243,7 +7271,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7243
7271
|
active?: boolean | undefined;
|
|
7244
7272
|
} | undefined;
|
|
7245
7273
|
signup?: {
|
|
7246
|
-
status?: "
|
|
7274
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7247
7275
|
verification?: {
|
|
7248
7276
|
active?: boolean | undefined;
|
|
7249
7277
|
} | undefined;
|
|
@@ -7260,7 +7288,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7260
7288
|
active?: boolean | undefined;
|
|
7261
7289
|
} | undefined;
|
|
7262
7290
|
signup?: {
|
|
7263
|
-
status?: "
|
|
7291
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7264
7292
|
} | undefined;
|
|
7265
7293
|
validation?: {
|
|
7266
7294
|
max_length?: number | undefined;
|
|
@@ -7277,7 +7305,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7277
7305
|
active?: boolean | undefined;
|
|
7278
7306
|
} | undefined;
|
|
7279
7307
|
signup?: {
|
|
7280
|
-
status?: "
|
|
7308
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7281
7309
|
} | undefined;
|
|
7282
7310
|
} | undefined;
|
|
7283
7311
|
} | undefined;
|
|
@@ -7393,7 +7421,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7393
7421
|
active?: boolean | undefined;
|
|
7394
7422
|
} | undefined;
|
|
7395
7423
|
signup?: {
|
|
7396
|
-
status?: "
|
|
7424
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7397
7425
|
verification?: {
|
|
7398
7426
|
active?: boolean | undefined;
|
|
7399
7427
|
} | undefined;
|
|
@@ -7410,7 +7438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7410
7438
|
active?: boolean | undefined;
|
|
7411
7439
|
} | undefined;
|
|
7412
7440
|
signup?: {
|
|
7413
|
-
status?: "
|
|
7441
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7414
7442
|
} | undefined;
|
|
7415
7443
|
validation?: {
|
|
7416
7444
|
max_length?: number | undefined;
|
|
@@ -7427,7 +7455,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7427
7455
|
active?: boolean | undefined;
|
|
7428
7456
|
} | undefined;
|
|
7429
7457
|
signup?: {
|
|
7430
|
-
status?: "
|
|
7458
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7431
7459
|
} | undefined;
|
|
7432
7460
|
} | undefined;
|
|
7433
7461
|
} | undefined;
|
|
@@ -7572,7 +7600,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7572
7600
|
active?: boolean | undefined;
|
|
7573
7601
|
} | undefined;
|
|
7574
7602
|
signup?: {
|
|
7575
|
-
status?: "
|
|
7603
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7576
7604
|
verification?: {
|
|
7577
7605
|
active?: boolean | undefined;
|
|
7578
7606
|
} | undefined;
|
|
@@ -7589,7 +7617,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7589
7617
|
active?: boolean | undefined;
|
|
7590
7618
|
} | undefined;
|
|
7591
7619
|
signup?: {
|
|
7592
|
-
status?: "
|
|
7620
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7593
7621
|
} | undefined;
|
|
7594
7622
|
validation?: {
|
|
7595
7623
|
max_length?: number | undefined;
|
|
@@ -7606,7 +7634,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7606
7634
|
active?: boolean | undefined;
|
|
7607
7635
|
} | undefined;
|
|
7608
7636
|
signup?: {
|
|
7609
|
-
status?: "
|
|
7637
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7610
7638
|
} | undefined;
|
|
7611
7639
|
} | undefined;
|
|
7612
7640
|
} | undefined;
|
|
@@ -7730,7 +7758,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7730
7758
|
active?: boolean | undefined;
|
|
7731
7759
|
} | undefined;
|
|
7732
7760
|
signup?: {
|
|
7733
|
-
status?: "
|
|
7761
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7734
7762
|
verification?: {
|
|
7735
7763
|
active?: boolean | undefined;
|
|
7736
7764
|
} | undefined;
|
|
@@ -7747,7 +7775,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7747
7775
|
active?: boolean | undefined;
|
|
7748
7776
|
} | undefined;
|
|
7749
7777
|
signup?: {
|
|
7750
|
-
status?: "
|
|
7778
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7751
7779
|
} | undefined;
|
|
7752
7780
|
validation?: {
|
|
7753
7781
|
max_length?: number | undefined;
|
|
@@ -7764,7 +7792,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7764
7792
|
active?: boolean | undefined;
|
|
7765
7793
|
} | undefined;
|
|
7766
7794
|
signup?: {
|
|
7767
|
-
status?: "
|
|
7795
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7768
7796
|
} | undefined;
|
|
7769
7797
|
} | undefined;
|
|
7770
7798
|
} | undefined;
|
|
@@ -8101,6 +8129,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8101
8129
|
metadata?: {
|
|
8102
8130
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8103
8131
|
} | undefined;
|
|
8132
|
+
} | {
|
|
8133
|
+
trigger_id: "post-user-login";
|
|
8134
|
+
enabled: boolean;
|
|
8135
|
+
synchronous: boolean;
|
|
8136
|
+
created_at: string;
|
|
8137
|
+
updated_at: string;
|
|
8138
|
+
hook_id: string;
|
|
8139
|
+
page_id: "impersonate";
|
|
8140
|
+
priority?: number | undefined;
|
|
8141
|
+
metadata?: {
|
|
8142
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
8143
|
+
} | undefined;
|
|
8144
|
+
permission_required?: string | undefined;
|
|
8104
8145
|
})[] | {
|
|
8105
8146
|
start: number;
|
|
8106
8147
|
limit: number;
|
|
@@ -8153,6 +8194,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8153
8194
|
metadata?: {
|
|
8154
8195
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8155
8196
|
} | undefined;
|
|
8197
|
+
} | {
|
|
8198
|
+
trigger_id: "post-user-login";
|
|
8199
|
+
enabled: boolean;
|
|
8200
|
+
synchronous: boolean;
|
|
8201
|
+
created_at: string;
|
|
8202
|
+
updated_at: string;
|
|
8203
|
+
hook_id: string;
|
|
8204
|
+
page_id: "impersonate";
|
|
8205
|
+
priority?: number | undefined;
|
|
8206
|
+
metadata?: {
|
|
8207
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
8208
|
+
} | undefined;
|
|
8209
|
+
permission_required?: string | undefined;
|
|
8156
8210
|
})[];
|
|
8157
8211
|
total?: number | undefined;
|
|
8158
8212
|
next?: string | undefined;
|
|
@@ -8201,6 +8255,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8201
8255
|
priority?: number | undefined;
|
|
8202
8256
|
hook_id?: string | undefined;
|
|
8203
8257
|
metadata?: Record<string, unknown> | undefined;
|
|
8258
|
+
} | {
|
|
8259
|
+
trigger_id: "post-user-login";
|
|
8260
|
+
page_id: "impersonate";
|
|
8261
|
+
permission_required?: string | undefined;
|
|
8262
|
+
enabled?: boolean | undefined;
|
|
8263
|
+
synchronous?: boolean | undefined;
|
|
8264
|
+
priority?: number | undefined;
|
|
8265
|
+
hook_id?: string | undefined;
|
|
8266
|
+
metadata?: Record<string, unknown> | undefined;
|
|
8204
8267
|
};
|
|
8205
8268
|
};
|
|
8206
8269
|
output: {
|
|
@@ -8251,6 +8314,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8251
8314
|
metadata?: {
|
|
8252
8315
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8253
8316
|
} | undefined;
|
|
8317
|
+
} | {
|
|
8318
|
+
trigger_id: "post-user-login";
|
|
8319
|
+
enabled: boolean;
|
|
8320
|
+
synchronous: boolean;
|
|
8321
|
+
created_at: string;
|
|
8322
|
+
updated_at: string;
|
|
8323
|
+
hook_id: string;
|
|
8324
|
+
page_id: "impersonate";
|
|
8325
|
+
priority?: number | undefined;
|
|
8326
|
+
metadata?: {
|
|
8327
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
8328
|
+
} | undefined;
|
|
8329
|
+
permission_required?: string | undefined;
|
|
8254
8330
|
};
|
|
8255
8331
|
outputFormat: "json";
|
|
8256
8332
|
status: 201;
|
|
@@ -8333,6 +8409,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8333
8409
|
metadata?: {
|
|
8334
8410
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8335
8411
|
} | undefined;
|
|
8412
|
+
} | {
|
|
8413
|
+
trigger_id: "post-user-login";
|
|
8414
|
+
enabled: boolean;
|
|
8415
|
+
synchronous: boolean;
|
|
8416
|
+
created_at: string;
|
|
8417
|
+
updated_at: string;
|
|
8418
|
+
hook_id: string;
|
|
8419
|
+
page_id: "impersonate";
|
|
8420
|
+
priority?: number | undefined;
|
|
8421
|
+
metadata?: {
|
|
8422
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
8423
|
+
} | undefined;
|
|
8424
|
+
permission_required?: string | undefined;
|
|
8336
8425
|
};
|
|
8337
8426
|
outputFormat: "json";
|
|
8338
8427
|
status: 200;
|
|
@@ -8411,6 +8500,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8411
8500
|
metadata?: {
|
|
8412
8501
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8413
8502
|
} | undefined;
|
|
8503
|
+
} | {
|
|
8504
|
+
trigger_id: "post-user-login";
|
|
8505
|
+
enabled: boolean;
|
|
8506
|
+
synchronous: boolean;
|
|
8507
|
+
created_at: string;
|
|
8508
|
+
updated_at: string;
|
|
8509
|
+
hook_id: string;
|
|
8510
|
+
page_id: "impersonate";
|
|
8511
|
+
priority?: number | undefined;
|
|
8512
|
+
metadata?: {
|
|
8513
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
8514
|
+
} | undefined;
|
|
8515
|
+
permission_required?: string | undefined;
|
|
8414
8516
|
};
|
|
8415
8517
|
outputFormat: "json";
|
|
8416
8518
|
status: 200;
|
|
@@ -8520,7 +8622,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8520
8622
|
log_type: string;
|
|
8521
8623
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8522
8624
|
actor: {
|
|
8523
|
-
type: "
|
|
8625
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8524
8626
|
id?: string | undefined;
|
|
8525
8627
|
email?: string | undefined;
|
|
8526
8628
|
org_id?: string | undefined;
|
|
@@ -8831,7 +8933,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8831
8933
|
created_at: string;
|
|
8832
8934
|
updated_at: string;
|
|
8833
8935
|
name: string;
|
|
8834
|
-
provider: "auth0" | "
|
|
8936
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8835
8937
|
connection: string;
|
|
8836
8938
|
enabled: boolean;
|
|
8837
8939
|
credentials: {
|
|
@@ -8863,7 +8965,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8863
8965
|
created_at: string;
|
|
8864
8966
|
updated_at: string;
|
|
8865
8967
|
name: string;
|
|
8866
|
-
provider: "auth0" | "
|
|
8968
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8867
8969
|
connection: string;
|
|
8868
8970
|
enabled: boolean;
|
|
8869
8971
|
credentials: {
|
|
@@ -8889,7 +8991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8889
8991
|
} & {
|
|
8890
8992
|
json: {
|
|
8891
8993
|
name: string;
|
|
8892
|
-
provider: "auth0" | "
|
|
8994
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8893
8995
|
connection: string;
|
|
8894
8996
|
credentials: {
|
|
8895
8997
|
domain: string;
|
|
@@ -8906,7 +9008,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8906
9008
|
created_at: string;
|
|
8907
9009
|
updated_at: string;
|
|
8908
9010
|
name: string;
|
|
8909
|
-
provider: "auth0" | "
|
|
9011
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8910
9012
|
connection: string;
|
|
8911
9013
|
enabled: boolean;
|
|
8912
9014
|
credentials: {
|
|
@@ -8937,7 +9039,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8937
9039
|
json: {
|
|
8938
9040
|
id?: string | undefined;
|
|
8939
9041
|
name?: string | undefined;
|
|
8940
|
-
provider?: "auth0" | "
|
|
9042
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8941
9043
|
connection?: string | undefined;
|
|
8942
9044
|
enabled?: boolean | undefined;
|
|
8943
9045
|
credentials?: {
|
|
@@ -8953,7 +9055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8953
9055
|
created_at: string;
|
|
8954
9056
|
updated_at: string;
|
|
8955
9057
|
name: string;
|
|
8956
|
-
provider: "auth0" | "
|
|
9058
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8957
9059
|
connection: string;
|
|
8958
9060
|
enabled: boolean;
|
|
8959
9061
|
credentials: {
|
|
@@ -9171,7 +9273,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9171
9273
|
};
|
|
9172
9274
|
};
|
|
9173
9275
|
output: {
|
|
9174
|
-
type: "
|
|
9276
|
+
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";
|
|
9175
9277
|
date: string;
|
|
9176
9278
|
isMobile: boolean;
|
|
9177
9279
|
log_id: string;
|
|
@@ -9210,7 +9312,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9210
9312
|
limit: number;
|
|
9211
9313
|
length: number;
|
|
9212
9314
|
logs: {
|
|
9213
|
-
type: "
|
|
9315
|
+
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";
|
|
9214
9316
|
date: string;
|
|
9215
9317
|
isMobile: boolean;
|
|
9216
9318
|
log_id: string;
|
|
@@ -9249,7 +9351,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9249
9351
|
next?: string | undefined;
|
|
9250
9352
|
} | {
|
|
9251
9353
|
logs: {
|
|
9252
|
-
type: "
|
|
9354
|
+
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";
|
|
9253
9355
|
date: string;
|
|
9254
9356
|
isMobile: boolean;
|
|
9255
9357
|
log_id: string;
|
|
@@ -9303,7 +9405,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9303
9405
|
};
|
|
9304
9406
|
};
|
|
9305
9407
|
output: {
|
|
9306
|
-
type: "
|
|
9408
|
+
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";
|
|
9307
9409
|
date: string;
|
|
9308
9410
|
isMobile: boolean;
|
|
9309
9411
|
log_id: string;
|
|
@@ -9714,7 +9816,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9714
9816
|
addons?: {
|
|
9715
9817
|
[x: string]: any;
|
|
9716
9818
|
} | undefined;
|
|
9717
|
-
token_endpoint_auth_method?: "none" | "
|
|
9819
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9718
9820
|
client_metadata?: {
|
|
9719
9821
|
[x: string]: string;
|
|
9720
9822
|
} | undefined;
|
|
@@ -9816,7 +9918,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9816
9918
|
addons?: {
|
|
9817
9919
|
[x: string]: any;
|
|
9818
9920
|
} | undefined;
|
|
9819
|
-
token_endpoint_auth_method?: "none" | "
|
|
9921
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9820
9922
|
client_metadata?: {
|
|
9821
9923
|
[x: string]: string;
|
|
9822
9924
|
} | undefined;
|
|
@@ -9918,7 +10020,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9918
10020
|
addons?: {
|
|
9919
10021
|
[x: string]: any;
|
|
9920
10022
|
} | undefined;
|
|
9921
|
-
token_endpoint_auth_method?: "none" | "
|
|
10023
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9922
10024
|
client_metadata?: {
|
|
9923
10025
|
[x: string]: string;
|
|
9924
10026
|
} | undefined;
|
|
@@ -10035,7 +10137,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10035
10137
|
addons?: {
|
|
10036
10138
|
[x: string]: any;
|
|
10037
10139
|
} | undefined;
|
|
10038
|
-
token_endpoint_auth_method?: "none" | "
|
|
10140
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10039
10141
|
client_metadata?: {
|
|
10040
10142
|
[x: string]: string;
|
|
10041
10143
|
} | undefined;
|
|
@@ -10153,7 +10255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10153
10255
|
custom_login_page_preview?: string | undefined;
|
|
10154
10256
|
form_template?: string | undefined;
|
|
10155
10257
|
addons?: Record<string, any> | undefined;
|
|
10156
|
-
token_endpoint_auth_method?: "none" | "
|
|
10258
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10157
10259
|
client_metadata?: Record<string, string> | undefined;
|
|
10158
10260
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10159
10261
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10239,7 +10341,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10239
10341
|
addons?: {
|
|
10240
10342
|
[x: string]: any;
|
|
10241
10343
|
} | undefined;
|
|
10242
|
-
token_endpoint_auth_method?: "none" | "
|
|
10344
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10243
10345
|
client_metadata?: {
|
|
10244
10346
|
[x: string]: string;
|
|
10245
10347
|
} | undefined;
|
|
@@ -10336,7 +10438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10336
10438
|
custom_login_page_preview?: string | undefined;
|
|
10337
10439
|
form_template?: string | undefined;
|
|
10338
10440
|
addons?: Record<string, any> | undefined;
|
|
10339
|
-
token_endpoint_auth_method?: "none" | "
|
|
10441
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10340
10442
|
client_metadata?: Record<string, string> | undefined;
|
|
10341
10443
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10342
10444
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10422,7 +10524,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10422
10524
|
addons?: {
|
|
10423
10525
|
[x: string]: any;
|
|
10424
10526
|
} | undefined;
|
|
10425
|
-
token_endpoint_auth_method?: "none" | "
|
|
10527
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10426
10528
|
client_metadata?: {
|
|
10427
10529
|
[x: string]: string;
|
|
10428
10530
|
} | undefined;
|
|
@@ -10544,7 +10646,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10544
10646
|
active?: boolean | undefined;
|
|
10545
10647
|
} | undefined;
|
|
10546
10648
|
signup?: {
|
|
10547
|
-
status?: "
|
|
10649
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10548
10650
|
verification?: {
|
|
10549
10651
|
active?: boolean | undefined;
|
|
10550
10652
|
} | undefined;
|
|
@@ -10561,7 +10663,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10561
10663
|
active?: boolean | undefined;
|
|
10562
10664
|
} | undefined;
|
|
10563
10665
|
signup?: {
|
|
10564
|
-
status?: "
|
|
10666
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10565
10667
|
} | undefined;
|
|
10566
10668
|
validation?: {
|
|
10567
10669
|
max_length?: number | undefined;
|
|
@@ -10578,7 +10680,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10578
10680
|
active?: boolean | undefined;
|
|
10579
10681
|
} | undefined;
|
|
10580
10682
|
signup?: {
|
|
10581
|
-
status?: "
|
|
10683
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10582
10684
|
} | undefined;
|
|
10583
10685
|
} | undefined;
|
|
10584
10686
|
} | undefined;
|
|
@@ -10698,7 +10800,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10698
10800
|
active?: boolean | undefined;
|
|
10699
10801
|
} | undefined;
|
|
10700
10802
|
signup?: {
|
|
10701
|
-
status?: "
|
|
10803
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10702
10804
|
verification?: {
|
|
10703
10805
|
active?: boolean | undefined;
|
|
10704
10806
|
} | undefined;
|
|
@@ -10715,7 +10817,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10715
10817
|
active?: boolean | undefined;
|
|
10716
10818
|
} | undefined;
|
|
10717
10819
|
signup?: {
|
|
10718
|
-
status?: "
|
|
10820
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10719
10821
|
} | undefined;
|
|
10720
10822
|
validation?: {
|
|
10721
10823
|
max_length?: number | undefined;
|
|
@@ -10732,7 +10834,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10732
10834
|
active?: boolean | undefined;
|
|
10733
10835
|
} | undefined;
|
|
10734
10836
|
signup?: {
|
|
10735
|
-
status?: "
|
|
10837
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10736
10838
|
} | undefined;
|
|
10737
10839
|
} | undefined;
|
|
10738
10840
|
} | undefined;
|
|
@@ -11767,7 +11869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11767
11869
|
};
|
|
11768
11870
|
};
|
|
11769
11871
|
output: {
|
|
11770
|
-
type: "
|
|
11872
|
+
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";
|
|
11771
11873
|
date: string;
|
|
11772
11874
|
isMobile: boolean;
|
|
11773
11875
|
log_id: string;
|
|
@@ -11806,7 +11908,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11806
11908
|
limit: number;
|
|
11807
11909
|
length: number;
|
|
11808
11910
|
logs: {
|
|
11809
|
-
type: "
|
|
11911
|
+
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";
|
|
11810
11912
|
date: string;
|
|
11811
11913
|
isMobile: boolean;
|
|
11812
11914
|
log_id: string;
|
|
@@ -12125,7 +12227,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12125
12227
|
};
|
|
12126
12228
|
} & {
|
|
12127
12229
|
json: {
|
|
12128
|
-
template: "
|
|
12230
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12129
12231
|
body: string;
|
|
12130
12232
|
from: string;
|
|
12131
12233
|
subject: string;
|
|
@@ -12146,7 +12248,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12146
12248
|
};
|
|
12147
12249
|
} & {
|
|
12148
12250
|
json: {
|
|
12149
|
-
template: "
|
|
12251
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12150
12252
|
body: string;
|
|
12151
12253
|
from: string;
|
|
12152
12254
|
subject: string;
|
|
@@ -12158,7 +12260,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12158
12260
|
};
|
|
12159
12261
|
};
|
|
12160
12262
|
output: {
|
|
12161
|
-
template: "
|
|
12263
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12162
12264
|
body: string;
|
|
12163
12265
|
from: string;
|
|
12164
12266
|
subject: string;
|
|
@@ -12181,7 +12283,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12181
12283
|
};
|
|
12182
12284
|
};
|
|
12183
12285
|
output: {
|
|
12184
|
-
name: "
|
|
12286
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12185
12287
|
body: string;
|
|
12186
12288
|
subject: string;
|
|
12187
12289
|
}[];
|
|
@@ -12194,7 +12296,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12194
12296
|
$get: {
|
|
12195
12297
|
input: {
|
|
12196
12298
|
param: {
|
|
12197
|
-
templateName: "
|
|
12299
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12198
12300
|
};
|
|
12199
12301
|
} & {
|
|
12200
12302
|
header: {
|
|
@@ -12207,7 +12309,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12207
12309
|
} | {
|
|
12208
12310
|
input: {
|
|
12209
12311
|
param: {
|
|
12210
|
-
templateName: "
|
|
12312
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12211
12313
|
};
|
|
12212
12314
|
} & {
|
|
12213
12315
|
header: {
|
|
@@ -12215,7 +12317,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12215
12317
|
};
|
|
12216
12318
|
};
|
|
12217
12319
|
output: {
|
|
12218
|
-
template: "
|
|
12320
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12219
12321
|
body: string;
|
|
12220
12322
|
from: string;
|
|
12221
12323
|
subject: string;
|
|
@@ -12234,7 +12336,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12234
12336
|
$put: {
|
|
12235
12337
|
input: {
|
|
12236
12338
|
param: {
|
|
12237
|
-
templateName: "
|
|
12339
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12238
12340
|
};
|
|
12239
12341
|
} & {
|
|
12240
12342
|
header: {
|
|
@@ -12242,7 +12344,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12242
12344
|
};
|
|
12243
12345
|
} & {
|
|
12244
12346
|
json: {
|
|
12245
|
-
template: "
|
|
12347
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12246
12348
|
body: string;
|
|
12247
12349
|
subject: string;
|
|
12248
12350
|
syntax?: "liquid" | undefined;
|
|
@@ -12254,7 +12356,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12254
12356
|
};
|
|
12255
12357
|
};
|
|
12256
12358
|
output: {
|
|
12257
|
-
template: "
|
|
12359
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12258
12360
|
body: string;
|
|
12259
12361
|
from: string;
|
|
12260
12362
|
subject: string;
|
|
@@ -12273,7 +12375,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12273
12375
|
$patch: {
|
|
12274
12376
|
input: {
|
|
12275
12377
|
param: {
|
|
12276
|
-
templateName: "
|
|
12378
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12277
12379
|
};
|
|
12278
12380
|
} & {
|
|
12279
12381
|
header: {
|
|
@@ -12281,7 +12383,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12281
12383
|
};
|
|
12282
12384
|
} & {
|
|
12283
12385
|
json: {
|
|
12284
|
-
template?: "
|
|
12386
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12285
12387
|
body?: string | undefined;
|
|
12286
12388
|
from?: string | undefined;
|
|
12287
12389
|
subject?: string | undefined;
|
|
@@ -12298,7 +12400,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12298
12400
|
} | {
|
|
12299
12401
|
input: {
|
|
12300
12402
|
param: {
|
|
12301
|
-
templateName: "
|
|
12403
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12302
12404
|
};
|
|
12303
12405
|
} & {
|
|
12304
12406
|
header: {
|
|
@@ -12306,7 +12408,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12306
12408
|
};
|
|
12307
12409
|
} & {
|
|
12308
12410
|
json: {
|
|
12309
|
-
template?: "
|
|
12411
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12310
12412
|
body?: string | undefined;
|
|
12311
12413
|
from?: string | undefined;
|
|
12312
12414
|
subject?: string | undefined;
|
|
@@ -12318,7 +12420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12318
12420
|
};
|
|
12319
12421
|
};
|
|
12320
12422
|
output: {
|
|
12321
|
-
template: "
|
|
12423
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12322
12424
|
body: string;
|
|
12323
12425
|
from: string;
|
|
12324
12426
|
subject: string;
|
|
@@ -12337,7 +12439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12337
12439
|
$delete: {
|
|
12338
12440
|
input: {
|
|
12339
12441
|
param: {
|
|
12340
|
-
templateName: "
|
|
12442
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12341
12443
|
};
|
|
12342
12444
|
} & {
|
|
12343
12445
|
header: {
|
|
@@ -12350,7 +12452,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12350
12452
|
} | {
|
|
12351
12453
|
input: {
|
|
12352
12454
|
param: {
|
|
12353
|
-
templateName: "
|
|
12455
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12354
12456
|
};
|
|
12355
12457
|
} & {
|
|
12356
12458
|
header: {
|
|
@@ -12367,7 +12469,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12367
12469
|
$post: {
|
|
12368
12470
|
input: {
|
|
12369
12471
|
param: {
|
|
12370
|
-
templateName: "
|
|
12472
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12371
12473
|
};
|
|
12372
12474
|
} & {
|
|
12373
12475
|
header: {
|
|
@@ -13280,7 +13382,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13280
13382
|
};
|
|
13281
13383
|
output: {};
|
|
13282
13384
|
outputFormat: string;
|
|
13283
|
-
status:
|
|
13385
|
+
status: 400;
|
|
13284
13386
|
} | {
|
|
13285
13387
|
input: {
|
|
13286
13388
|
header: {
|
|
@@ -13293,7 +13395,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13293
13395
|
};
|
|
13294
13396
|
output: {};
|
|
13295
13397
|
outputFormat: string;
|
|
13296
|
-
status:
|
|
13398
|
+
status: 204;
|
|
13297
13399
|
};
|
|
13298
13400
|
};
|
|
13299
13401
|
} & {
|
|
@@ -13319,7 +13421,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13319
13421
|
} & {
|
|
13320
13422
|
json: {
|
|
13321
13423
|
body?: string | undefined;
|
|
13322
|
-
screen?: "
|
|
13424
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
13323
13425
|
branding?: {
|
|
13324
13426
|
colors?: {
|
|
13325
13427
|
primary: string;
|
|
@@ -13488,7 +13590,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13488
13590
|
json: {
|
|
13489
13591
|
bindings: {
|
|
13490
13592
|
ref: {
|
|
13491
|
-
type?: "
|
|
13593
|
+
type?: "action_id" | "action_name" | undefined;
|
|
13492
13594
|
value?: string | undefined;
|
|
13493
13595
|
id?: string | undefined;
|
|
13494
13596
|
name?: string | undefined;
|
|
@@ -13610,7 +13712,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13610
13712
|
logs: {
|
|
13611
13713
|
action_name: string;
|
|
13612
13714
|
lines: {
|
|
13613
|
-
level: "
|
|
13715
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13614
13716
|
message: string;
|
|
13615
13717
|
}[];
|
|
13616
13718
|
}[];
|
|
@@ -14279,7 +14381,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14279
14381
|
args: import("hono/utils/types").JSONValue[];
|
|
14280
14382
|
}[];
|
|
14281
14383
|
logs: {
|
|
14282
|
-
level: "
|
|
14384
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
14283
14385
|
message: string;
|
|
14284
14386
|
}[];
|
|
14285
14387
|
error?: string | undefined;
|