authhero 9.2.0 → 9.4.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-b5f14fa6.entry.js +1 -0
- package/dist/assets/u/widget/p-f94037cd.entry.js +1 -0
- package/dist/authhero.cjs +144 -143
- package/dist/authhero.d.ts +241 -120
- package/dist/authhero.mjs +13638 -13842
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +8 -4
- package/dist/types/helpers/client.d.ts +4 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/session-usage.d.ts +48 -0
- package/dist/types/hooks/formhooks.d.ts +24 -0
- package/dist/types/index.d.ts +237 -120
- 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 +26 -26
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- 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/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +13 -13
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +18 -10
- package/dist/types/routes/management-api/connections.d.ts +25 -5
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- 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 +95 -6
- package/dist/types/routes/management-api/index.d.ts +204 -87
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- 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/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 +18 -10
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-widget-page.d.ts +12 -0
- package/dist/types/strategies/internal-oauth2.d.ts +5 -5
- package/dist/types/utils/locale.d.ts +26 -0
- package/package.json +6 -7
- package/dist/assets/u/widget/p-cdfc4555.entry.js +0 -1
- package/dist/assets/u/widget/p-e95c436f.entry.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -430,6 +430,9 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
430
430
|
client_secret: z.ZodOptional<z.ZodString>;
|
|
431
431
|
app_secret: z.ZodOptional<z.ZodString>;
|
|
432
432
|
scope: z.ZodOptional<z.ZodString>;
|
|
433
|
+
client_secret_hint: z.ZodOptional<z.ZodString>;
|
|
434
|
+
app_secret_hint: z.ZodOptional<z.ZodString>;
|
|
435
|
+
twilio_token_hint: z.ZodOptional<z.ZodString>;
|
|
433
436
|
authorization_endpoint: z.ZodOptional<z.ZodString>;
|
|
434
437
|
token_endpoint: z.ZodOptional<z.ZodString>;
|
|
435
438
|
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
@@ -476,6 +479,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
476
479
|
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
477
480
|
client_id: z.ZodOptional<z.ZodString>;
|
|
478
481
|
client_secret: z.ZodOptional<z.ZodString>;
|
|
482
|
+
client_secret_hint: z.ZodOptional<z.ZodString>;
|
|
479
483
|
realm: z.ZodOptional<z.ZodString>;
|
|
480
484
|
}, z.core.$strip>>;
|
|
481
485
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
@@ -4349,7 +4353,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4349
4353
|
};
|
|
4350
4354
|
} & {
|
|
4351
4355
|
json: {
|
|
4352
|
-
type: "
|
|
4356
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
4353
4357
|
phone_number?: string | undefined;
|
|
4354
4358
|
totp_secret?: string | undefined;
|
|
4355
4359
|
credential_id?: string | undefined;
|
|
@@ -4489,7 +4493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4489
4493
|
};
|
|
4490
4494
|
};
|
|
4491
4495
|
output: {
|
|
4492
|
-
name: "email" | "
|
|
4496
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4493
4497
|
enabled: boolean;
|
|
4494
4498
|
trial_expired?: boolean | undefined;
|
|
4495
4499
|
}[];
|
|
@@ -4644,7 +4648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4644
4648
|
$get: {
|
|
4645
4649
|
input: {
|
|
4646
4650
|
param: {
|
|
4647
|
-
factor_name: "email" | "
|
|
4651
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4648
4652
|
};
|
|
4649
4653
|
} & {
|
|
4650
4654
|
header: {
|
|
@@ -4652,7 +4656,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4652
4656
|
};
|
|
4653
4657
|
};
|
|
4654
4658
|
output: {
|
|
4655
|
-
name: "email" | "
|
|
4659
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4656
4660
|
enabled: boolean;
|
|
4657
4661
|
trial_expired?: boolean | undefined;
|
|
4658
4662
|
};
|
|
@@ -4665,7 +4669,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4665
4669
|
$put: {
|
|
4666
4670
|
input: {
|
|
4667
4671
|
param: {
|
|
4668
|
-
factor_name: "email" | "
|
|
4672
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4669
4673
|
};
|
|
4670
4674
|
} & {
|
|
4671
4675
|
header: {
|
|
@@ -4677,7 +4681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4677
4681
|
};
|
|
4678
4682
|
};
|
|
4679
4683
|
output: {
|
|
4680
|
-
name: "email" | "
|
|
4684
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4681
4685
|
enabled: boolean;
|
|
4682
4686
|
trial_expired?: boolean | undefined;
|
|
4683
4687
|
};
|
|
@@ -6216,9 +6220,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6216
6220
|
};
|
|
6217
6221
|
} & {
|
|
6218
6222
|
query: {
|
|
6219
|
-
from?: string | undefined;
|
|
6220
6223
|
page?: string | undefined;
|
|
6221
6224
|
include_totals?: string | undefined;
|
|
6225
|
+
from?: string | undefined;
|
|
6222
6226
|
per_page?: string | undefined;
|
|
6223
6227
|
take?: string | undefined;
|
|
6224
6228
|
};
|
|
@@ -11214,7 +11218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11214
11218
|
};
|
|
11215
11219
|
};
|
|
11216
11220
|
output: {
|
|
11217
|
-
prompt: "
|
|
11221
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11218
11222
|
language: string;
|
|
11219
11223
|
}[];
|
|
11220
11224
|
outputFormat: "json";
|
|
@@ -11252,7 +11256,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11252
11256
|
$get: {
|
|
11253
11257
|
input: {
|
|
11254
11258
|
param: {
|
|
11255
|
-
prompt: "
|
|
11259
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11256
11260
|
language: string;
|
|
11257
11261
|
};
|
|
11258
11262
|
} & {
|
|
@@ -11274,7 +11278,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11274
11278
|
$put: {
|
|
11275
11279
|
input: {
|
|
11276
11280
|
param: {
|
|
11277
|
-
prompt: "
|
|
11281
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11278
11282
|
language: string;
|
|
11279
11283
|
};
|
|
11280
11284
|
} & {
|
|
@@ -11298,7 +11302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11298
11302
|
$delete: {
|
|
11299
11303
|
input: {
|
|
11300
11304
|
param: {
|
|
11301
|
-
prompt: "
|
|
11305
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11302
11306
|
language: string;
|
|
11303
11307
|
};
|
|
11304
11308
|
} & {
|
|
@@ -11345,6 +11349,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11345
11349
|
client_secret?: string | undefined;
|
|
11346
11350
|
app_secret?: string | undefined;
|
|
11347
11351
|
scope?: string | undefined;
|
|
11352
|
+
client_secret_hint?: string | undefined;
|
|
11353
|
+
app_secret_hint?: string | undefined;
|
|
11354
|
+
twilio_token_hint?: string | undefined;
|
|
11348
11355
|
authorization_endpoint?: string | undefined;
|
|
11349
11356
|
token_endpoint?: string | undefined;
|
|
11350
11357
|
userinfo_endpoint?: string | undefined;
|
|
@@ -11382,6 +11389,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11382
11389
|
userinfo_endpoint?: string | undefined;
|
|
11383
11390
|
client_id?: string | undefined;
|
|
11384
11391
|
client_secret?: string | undefined;
|
|
11392
|
+
client_secret_hint?: string | undefined;
|
|
11385
11393
|
realm?: string | undefined;
|
|
11386
11394
|
} | undefined;
|
|
11387
11395
|
attributes?: {
|
|
@@ -11437,7 +11445,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11437
11445
|
} | undefined;
|
|
11438
11446
|
} | undefined;
|
|
11439
11447
|
passkey_options?: {
|
|
11440
|
-
challenge_ui?: "
|
|
11448
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11441
11449
|
local_enrollment_enabled?: boolean | undefined;
|
|
11442
11450
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11443
11451
|
} | undefined;
|
|
@@ -11479,6 +11487,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11479
11487
|
client_secret?: string | undefined;
|
|
11480
11488
|
app_secret?: string | undefined;
|
|
11481
11489
|
scope?: string | undefined;
|
|
11490
|
+
client_secret_hint?: string | undefined;
|
|
11491
|
+
app_secret_hint?: string | undefined;
|
|
11492
|
+
twilio_token_hint?: string | undefined;
|
|
11482
11493
|
authorization_endpoint?: string | undefined;
|
|
11483
11494
|
token_endpoint?: string | undefined;
|
|
11484
11495
|
userinfo_endpoint?: string | undefined;
|
|
@@ -11516,6 +11527,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11516
11527
|
userinfo_endpoint?: string | undefined;
|
|
11517
11528
|
client_id?: string | undefined;
|
|
11518
11529
|
client_secret?: string | undefined;
|
|
11530
|
+
client_secret_hint?: string | undefined;
|
|
11519
11531
|
realm?: string | undefined;
|
|
11520
11532
|
} | undefined;
|
|
11521
11533
|
attributes?: {
|
|
@@ -11571,7 +11583,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11571
11583
|
} | undefined;
|
|
11572
11584
|
} | undefined;
|
|
11573
11585
|
passkey_options?: {
|
|
11574
|
-
challenge_ui?: "
|
|
11586
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11575
11587
|
local_enrollment_enabled?: boolean | undefined;
|
|
11576
11588
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11577
11589
|
} | undefined;
|
|
@@ -11629,6 +11641,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11629
11641
|
client_secret?: string | undefined;
|
|
11630
11642
|
app_secret?: string | undefined;
|
|
11631
11643
|
scope?: string | undefined;
|
|
11644
|
+
client_secret_hint?: string | undefined;
|
|
11645
|
+
app_secret_hint?: string | undefined;
|
|
11646
|
+
twilio_token_hint?: string | undefined;
|
|
11632
11647
|
authorization_endpoint?: string | undefined;
|
|
11633
11648
|
token_endpoint?: string | undefined;
|
|
11634
11649
|
userinfo_endpoint?: string | undefined;
|
|
@@ -11666,6 +11681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11666
11681
|
userinfo_endpoint?: string | undefined;
|
|
11667
11682
|
client_id?: string | undefined;
|
|
11668
11683
|
client_secret?: string | undefined;
|
|
11684
|
+
client_secret_hint?: string | undefined;
|
|
11669
11685
|
realm?: string | undefined;
|
|
11670
11686
|
} | undefined;
|
|
11671
11687
|
attributes?: {
|
|
@@ -11721,7 +11737,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11721
11737
|
} | undefined;
|
|
11722
11738
|
} | undefined;
|
|
11723
11739
|
passkey_options?: {
|
|
11724
|
-
challenge_ui?: "
|
|
11740
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11725
11741
|
local_enrollment_enabled?: boolean | undefined;
|
|
11726
11742
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11727
11743
|
} | undefined;
|
|
@@ -11808,6 +11824,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11808
11824
|
client_secret?: string | undefined;
|
|
11809
11825
|
app_secret?: string | undefined;
|
|
11810
11826
|
scope?: string | undefined;
|
|
11827
|
+
client_secret_hint?: string | undefined;
|
|
11828
|
+
app_secret_hint?: string | undefined;
|
|
11829
|
+
twilio_token_hint?: string | undefined;
|
|
11811
11830
|
authorization_endpoint?: string | undefined;
|
|
11812
11831
|
token_endpoint?: string | undefined;
|
|
11813
11832
|
userinfo_endpoint?: string | undefined;
|
|
@@ -11845,6 +11864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11845
11864
|
userinfo_endpoint?: string | undefined;
|
|
11846
11865
|
client_id?: string | undefined;
|
|
11847
11866
|
client_secret?: string | undefined;
|
|
11867
|
+
client_secret_hint?: string | undefined;
|
|
11848
11868
|
realm?: string | undefined;
|
|
11849
11869
|
} | undefined;
|
|
11850
11870
|
attributes?: {
|
|
@@ -11900,7 +11920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11900
11920
|
} | undefined;
|
|
11901
11921
|
} | undefined;
|
|
11902
11922
|
passkey_options?: {
|
|
11903
|
-
challenge_ui?: "
|
|
11923
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11904
11924
|
local_enrollment_enabled?: boolean | undefined;
|
|
11905
11925
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11906
11926
|
} | undefined;
|
|
@@ -11966,6 +11986,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11966
11986
|
client_secret?: string | undefined;
|
|
11967
11987
|
app_secret?: string | undefined;
|
|
11968
11988
|
scope?: string | undefined;
|
|
11989
|
+
client_secret_hint?: string | undefined;
|
|
11990
|
+
app_secret_hint?: string | undefined;
|
|
11991
|
+
twilio_token_hint?: string | undefined;
|
|
11969
11992
|
authorization_endpoint?: string | undefined;
|
|
11970
11993
|
token_endpoint?: string | undefined;
|
|
11971
11994
|
userinfo_endpoint?: string | undefined;
|
|
@@ -12003,6 +12026,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12003
12026
|
userinfo_endpoint?: string | undefined;
|
|
12004
12027
|
client_id?: string | undefined;
|
|
12005
12028
|
client_secret?: string | undefined;
|
|
12029
|
+
client_secret_hint?: string | undefined;
|
|
12006
12030
|
realm?: string | undefined;
|
|
12007
12031
|
} | undefined;
|
|
12008
12032
|
attributes?: {
|
|
@@ -12058,7 +12082,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12058
12082
|
} | undefined;
|
|
12059
12083
|
} | undefined;
|
|
12060
12084
|
passkey_options?: {
|
|
12061
|
-
challenge_ui?: "
|
|
12085
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
12062
12086
|
local_enrollment_enabled?: boolean | undefined;
|
|
12063
12087
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
12064
12088
|
} | undefined;
|
|
@@ -12347,7 +12371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12347
12371
|
[x: string]: hono_utils_types.JSONValue;
|
|
12348
12372
|
} | undefined;
|
|
12349
12373
|
} | {
|
|
12350
|
-
trigger_id: "
|
|
12374
|
+
trigger_id: "post-user-login";
|
|
12351
12375
|
enabled: boolean;
|
|
12352
12376
|
synchronous: boolean;
|
|
12353
12377
|
created_at: string;
|
|
@@ -12382,6 +12406,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12382
12406
|
metadata?: {
|
|
12383
12407
|
[x: string]: hono_utils_types.JSONValue;
|
|
12384
12408
|
} | undefined;
|
|
12409
|
+
} | {
|
|
12410
|
+
trigger_id: "post-user-login";
|
|
12411
|
+
enabled: boolean;
|
|
12412
|
+
synchronous: boolean;
|
|
12413
|
+
created_at: string;
|
|
12414
|
+
updated_at: string;
|
|
12415
|
+
hook_id: string;
|
|
12416
|
+
page_id: "impersonate";
|
|
12417
|
+
priority?: number | undefined;
|
|
12418
|
+
metadata?: {
|
|
12419
|
+
[x: string]: hono_utils_types.JSONValue;
|
|
12420
|
+
} | undefined;
|
|
12421
|
+
permission_required?: string | undefined;
|
|
12385
12422
|
})[] | {
|
|
12386
12423
|
start: number;
|
|
12387
12424
|
limit: number;
|
|
@@ -12399,7 +12436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12399
12436
|
[x: string]: hono_utils_types.JSONValue;
|
|
12400
12437
|
} | undefined;
|
|
12401
12438
|
} | {
|
|
12402
|
-
trigger_id: "
|
|
12439
|
+
trigger_id: "post-user-login";
|
|
12403
12440
|
enabled: boolean;
|
|
12404
12441
|
synchronous: boolean;
|
|
12405
12442
|
created_at: string;
|
|
@@ -12434,6 +12471,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12434
12471
|
metadata?: {
|
|
12435
12472
|
[x: string]: hono_utils_types.JSONValue;
|
|
12436
12473
|
} | undefined;
|
|
12474
|
+
} | {
|
|
12475
|
+
trigger_id: "post-user-login";
|
|
12476
|
+
enabled: boolean;
|
|
12477
|
+
synchronous: boolean;
|
|
12478
|
+
created_at: string;
|
|
12479
|
+
updated_at: string;
|
|
12480
|
+
hook_id: string;
|
|
12481
|
+
page_id: "impersonate";
|
|
12482
|
+
priority?: number | undefined;
|
|
12483
|
+
metadata?: {
|
|
12484
|
+
[x: string]: hono_utils_types.JSONValue;
|
|
12485
|
+
} | undefined;
|
|
12486
|
+
permission_required?: string | undefined;
|
|
12437
12487
|
})[];
|
|
12438
12488
|
total?: number | undefined;
|
|
12439
12489
|
next?: string | undefined;
|
|
@@ -12459,7 +12509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12459
12509
|
hook_id?: string | undefined;
|
|
12460
12510
|
metadata?: Record<string, unknown> | undefined;
|
|
12461
12511
|
} | {
|
|
12462
|
-
trigger_id: "
|
|
12512
|
+
trigger_id: "post-user-login";
|
|
12463
12513
|
form_id: string;
|
|
12464
12514
|
enabled?: boolean | undefined;
|
|
12465
12515
|
synchronous?: boolean | undefined;
|
|
@@ -12482,6 +12532,15 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12482
12532
|
priority?: number | undefined;
|
|
12483
12533
|
hook_id?: string | undefined;
|
|
12484
12534
|
metadata?: Record<string, unknown> | undefined;
|
|
12535
|
+
} | {
|
|
12536
|
+
trigger_id: "post-user-login";
|
|
12537
|
+
page_id: "impersonate";
|
|
12538
|
+
permission_required?: string | undefined;
|
|
12539
|
+
enabled?: boolean | undefined;
|
|
12540
|
+
synchronous?: boolean | undefined;
|
|
12541
|
+
priority?: number | undefined;
|
|
12542
|
+
hook_id?: string | undefined;
|
|
12543
|
+
metadata?: Record<string, unknown> | undefined;
|
|
12485
12544
|
};
|
|
12486
12545
|
};
|
|
12487
12546
|
output: {
|
|
@@ -12497,7 +12556,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12497
12556
|
[x: string]: hono_utils_types.JSONValue;
|
|
12498
12557
|
} | undefined;
|
|
12499
12558
|
} | {
|
|
12500
|
-
trigger_id: "
|
|
12559
|
+
trigger_id: "post-user-login";
|
|
12501
12560
|
enabled: boolean;
|
|
12502
12561
|
synchronous: boolean;
|
|
12503
12562
|
created_at: string;
|
|
@@ -12532,6 +12591,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12532
12591
|
metadata?: {
|
|
12533
12592
|
[x: string]: hono_utils_types.JSONValue;
|
|
12534
12593
|
} | undefined;
|
|
12594
|
+
} | {
|
|
12595
|
+
trigger_id: "post-user-login";
|
|
12596
|
+
enabled: boolean;
|
|
12597
|
+
synchronous: boolean;
|
|
12598
|
+
created_at: string;
|
|
12599
|
+
updated_at: string;
|
|
12600
|
+
hook_id: string;
|
|
12601
|
+
page_id: "impersonate";
|
|
12602
|
+
priority?: number | undefined;
|
|
12603
|
+
metadata?: {
|
|
12604
|
+
[x: string]: hono_utils_types.JSONValue;
|
|
12605
|
+
} | undefined;
|
|
12606
|
+
permission_required?: string | undefined;
|
|
12535
12607
|
};
|
|
12536
12608
|
outputFormat: "json";
|
|
12537
12609
|
status: 201;
|
|
@@ -12540,6 +12612,21 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12540
12612
|
} & {
|
|
12541
12613
|
"/:hook_id": {
|
|
12542
12614
|
$patch: {
|
|
12615
|
+
input: {
|
|
12616
|
+
param: {
|
|
12617
|
+
hook_id: string;
|
|
12618
|
+
};
|
|
12619
|
+
} & {
|
|
12620
|
+
header: {
|
|
12621
|
+
"tenant-id"?: string | undefined;
|
|
12622
|
+
};
|
|
12623
|
+
} & {
|
|
12624
|
+
json: unknown;
|
|
12625
|
+
};
|
|
12626
|
+
output: {};
|
|
12627
|
+
outputFormat: string;
|
|
12628
|
+
status: 400;
|
|
12629
|
+
} | {
|
|
12543
12630
|
input: {
|
|
12544
12631
|
param: {
|
|
12545
12632
|
hook_id: string;
|
|
@@ -12579,7 +12666,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12579
12666
|
[x: string]: hono_utils_types.JSONValue;
|
|
12580
12667
|
} | undefined;
|
|
12581
12668
|
} | {
|
|
12582
|
-
trigger_id: "
|
|
12669
|
+
trigger_id: "post-user-login";
|
|
12583
12670
|
enabled: boolean;
|
|
12584
12671
|
synchronous: boolean;
|
|
12585
12672
|
created_at: string;
|
|
@@ -12614,6 +12701,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12614
12701
|
metadata?: {
|
|
12615
12702
|
[x: string]: hono_utils_types.JSONValue;
|
|
12616
12703
|
} | undefined;
|
|
12704
|
+
} | {
|
|
12705
|
+
trigger_id: "post-user-login";
|
|
12706
|
+
enabled: boolean;
|
|
12707
|
+
synchronous: boolean;
|
|
12708
|
+
created_at: string;
|
|
12709
|
+
updated_at: string;
|
|
12710
|
+
hook_id: string;
|
|
12711
|
+
page_id: "impersonate";
|
|
12712
|
+
priority?: number | undefined;
|
|
12713
|
+
metadata?: {
|
|
12714
|
+
[x: string]: hono_utils_types.JSONValue;
|
|
12715
|
+
} | undefined;
|
|
12716
|
+
permission_required?: string | undefined;
|
|
12617
12717
|
};
|
|
12618
12718
|
outputFormat: "json";
|
|
12619
12719
|
status: 200;
|
|
@@ -12657,7 +12757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12657
12757
|
[x: string]: hono_utils_types.JSONValue;
|
|
12658
12758
|
} | undefined;
|
|
12659
12759
|
} | {
|
|
12660
|
-
trigger_id: "
|
|
12760
|
+
trigger_id: "post-user-login";
|
|
12661
12761
|
enabled: boolean;
|
|
12662
12762
|
synchronous: boolean;
|
|
12663
12763
|
created_at: string;
|
|
@@ -12692,6 +12792,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12692
12792
|
metadata?: {
|
|
12693
12793
|
[x: string]: hono_utils_types.JSONValue;
|
|
12694
12794
|
} | undefined;
|
|
12795
|
+
} | {
|
|
12796
|
+
trigger_id: "post-user-login";
|
|
12797
|
+
enabled: boolean;
|
|
12798
|
+
synchronous: boolean;
|
|
12799
|
+
created_at: string;
|
|
12800
|
+
updated_at: string;
|
|
12801
|
+
hook_id: string;
|
|
12802
|
+
page_id: "impersonate";
|
|
12803
|
+
priority?: number | undefined;
|
|
12804
|
+
metadata?: {
|
|
12805
|
+
[x: string]: hono_utils_types.JSONValue;
|
|
12806
|
+
} | undefined;
|
|
12807
|
+
permission_required?: string | undefined;
|
|
12695
12808
|
};
|
|
12696
12809
|
outputFormat: "json";
|
|
12697
12810
|
status: 200;
|
|
@@ -12801,7 +12914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12801
12914
|
log_type: string;
|
|
12802
12915
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
12803
12916
|
actor: {
|
|
12804
|
-
type: "
|
|
12917
|
+
type: "user" | "api_key" | "client_credentials" | "system" | "admin";
|
|
12805
12918
|
id?: string | undefined;
|
|
12806
12919
|
email?: string | undefined;
|
|
12807
12920
|
org_id?: string | undefined;
|
|
@@ -13452,7 +13565,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13452
13565
|
};
|
|
13453
13566
|
};
|
|
13454
13567
|
output: {
|
|
13455
|
-
type: "
|
|
13568
|
+
type: "i" | "fn" | "sapi" | "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";
|
|
13456
13569
|
date: string;
|
|
13457
13570
|
isMobile: boolean;
|
|
13458
13571
|
log_id: string;
|
|
@@ -13491,7 +13604,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13491
13604
|
limit: number;
|
|
13492
13605
|
length: number;
|
|
13493
13606
|
logs: {
|
|
13494
|
-
type: "
|
|
13607
|
+
type: "i" | "fn" | "sapi" | "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";
|
|
13495
13608
|
date: string;
|
|
13496
13609
|
isMobile: boolean;
|
|
13497
13610
|
log_id: string;
|
|
@@ -13530,7 +13643,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13530
13643
|
next?: string | undefined;
|
|
13531
13644
|
} | {
|
|
13532
13645
|
logs: {
|
|
13533
|
-
type: "
|
|
13646
|
+
type: "i" | "fn" | "sapi" | "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";
|
|
13534
13647
|
date: string;
|
|
13535
13648
|
isMobile: boolean;
|
|
13536
13649
|
log_id: string;
|
|
@@ -13584,7 +13697,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13584
13697
|
};
|
|
13585
13698
|
};
|
|
13586
13699
|
output: {
|
|
13587
|
-
type: "
|
|
13700
|
+
type: "i" | "fn" | "sapi" | "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";
|
|
13588
13701
|
date: string;
|
|
13589
13702
|
isMobile: boolean;
|
|
13590
13703
|
log_id: string;
|
|
@@ -13740,7 +13853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13740
13853
|
audience?: string | undefined;
|
|
13741
13854
|
client_id?: string | undefined;
|
|
13742
13855
|
allow_any_organization?: string | undefined;
|
|
13743
|
-
subject_type?: "
|
|
13856
|
+
subject_type?: "user" | "client" | undefined;
|
|
13744
13857
|
};
|
|
13745
13858
|
} & {
|
|
13746
13859
|
header: {
|
|
@@ -13755,7 +13868,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13755
13868
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13756
13869
|
allow_any_organization?: boolean | undefined;
|
|
13757
13870
|
is_system?: boolean | undefined;
|
|
13758
|
-
subject_type?: "
|
|
13871
|
+
subject_type?: "user" | "client" | undefined;
|
|
13759
13872
|
authorization_details_types?: string[] | undefined;
|
|
13760
13873
|
created_at?: string | undefined;
|
|
13761
13874
|
updated_at?: string | undefined;
|
|
@@ -13771,7 +13884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13771
13884
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13772
13885
|
allow_any_organization?: boolean | undefined;
|
|
13773
13886
|
is_system?: boolean | undefined;
|
|
13774
|
-
subject_type?: "
|
|
13887
|
+
subject_type?: "user" | "client" | undefined;
|
|
13775
13888
|
authorization_details_types?: string[] | undefined;
|
|
13776
13889
|
created_at?: string | undefined;
|
|
13777
13890
|
updated_at?: string | undefined;
|
|
@@ -13787,7 +13900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13787
13900
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13788
13901
|
allow_any_organization?: boolean | undefined;
|
|
13789
13902
|
is_system?: boolean | undefined;
|
|
13790
|
-
subject_type?: "
|
|
13903
|
+
subject_type?: "user" | "client" | undefined;
|
|
13791
13904
|
authorization_details_types?: string[] | undefined;
|
|
13792
13905
|
created_at?: string | undefined;
|
|
13793
13906
|
updated_at?: string | undefined;
|
|
@@ -13818,7 +13931,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13818
13931
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13819
13932
|
allow_any_organization?: boolean | undefined;
|
|
13820
13933
|
is_system?: boolean | undefined;
|
|
13821
|
-
subject_type?: "
|
|
13934
|
+
subject_type?: "user" | "client" | undefined;
|
|
13822
13935
|
authorization_details_types?: string[] | undefined;
|
|
13823
13936
|
created_at?: string | undefined;
|
|
13824
13937
|
updated_at?: string | undefined;
|
|
@@ -13863,7 +13976,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13863
13976
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13864
13977
|
allow_any_organization?: boolean | undefined;
|
|
13865
13978
|
is_system?: boolean | undefined;
|
|
13866
|
-
subject_type?: "
|
|
13979
|
+
subject_type?: "user" | "client" | undefined;
|
|
13867
13980
|
authorization_details_types?: string[] | undefined;
|
|
13868
13981
|
};
|
|
13869
13982
|
};
|
|
@@ -13875,7 +13988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13875
13988
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13876
13989
|
allow_any_organization?: boolean | undefined;
|
|
13877
13990
|
is_system?: boolean | undefined;
|
|
13878
|
-
subject_type?: "
|
|
13991
|
+
subject_type?: "user" | "client" | undefined;
|
|
13879
13992
|
authorization_details_types?: string[] | undefined;
|
|
13880
13993
|
created_at?: string | undefined;
|
|
13881
13994
|
updated_at?: string | undefined;
|
|
@@ -13899,7 +14012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13899
14012
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13900
14013
|
allow_any_organization?: boolean | undefined;
|
|
13901
14014
|
is_system?: boolean | undefined;
|
|
13902
|
-
subject_type?: "
|
|
14015
|
+
subject_type?: "user" | "client" | undefined;
|
|
13903
14016
|
authorization_details_types?: string[] | undefined;
|
|
13904
14017
|
};
|
|
13905
14018
|
};
|
|
@@ -13911,7 +14024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13911
14024
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13912
14025
|
allow_any_organization?: boolean | undefined;
|
|
13913
14026
|
is_system?: boolean | undefined;
|
|
13914
|
-
subject_type?: "
|
|
14027
|
+
subject_type?: "user" | "client" | undefined;
|
|
13915
14028
|
authorization_details_types?: string[] | undefined;
|
|
13916
14029
|
created_at?: string | undefined;
|
|
13917
14030
|
updated_at?: string | undefined;
|
|
@@ -13995,7 +14108,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13995
14108
|
addons?: {
|
|
13996
14109
|
[x: string]: any;
|
|
13997
14110
|
} | undefined;
|
|
13998
|
-
token_endpoint_auth_method?: "
|
|
14111
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13999
14112
|
client_metadata?: {
|
|
14000
14113
|
[x: string]: string;
|
|
14001
14114
|
} | undefined;
|
|
@@ -14097,7 +14210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14097
14210
|
addons?: {
|
|
14098
14211
|
[x: string]: any;
|
|
14099
14212
|
} | undefined;
|
|
14100
|
-
token_endpoint_auth_method?: "
|
|
14213
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14101
14214
|
client_metadata?: {
|
|
14102
14215
|
[x: string]: string;
|
|
14103
14216
|
} | undefined;
|
|
@@ -14199,7 +14312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14199
14312
|
addons?: {
|
|
14200
14313
|
[x: string]: any;
|
|
14201
14314
|
} | undefined;
|
|
14202
|
-
token_endpoint_auth_method?: "
|
|
14315
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14203
14316
|
client_metadata?: {
|
|
14204
14317
|
[x: string]: string;
|
|
14205
14318
|
} | undefined;
|
|
@@ -14316,7 +14429,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14316
14429
|
addons?: {
|
|
14317
14430
|
[x: string]: any;
|
|
14318
14431
|
} | undefined;
|
|
14319
|
-
token_endpoint_auth_method?: "
|
|
14432
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14320
14433
|
client_metadata?: {
|
|
14321
14434
|
[x: string]: string;
|
|
14322
14435
|
} | undefined;
|
|
@@ -14434,7 +14547,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14434
14547
|
custom_login_page_preview?: string | undefined;
|
|
14435
14548
|
form_template?: string | undefined;
|
|
14436
14549
|
addons?: Record<string, any> | undefined;
|
|
14437
|
-
token_endpoint_auth_method?: "
|
|
14550
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14438
14551
|
client_metadata?: Record<string, string> | undefined;
|
|
14439
14552
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14440
14553
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14520,7 +14633,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14520
14633
|
addons?: {
|
|
14521
14634
|
[x: string]: any;
|
|
14522
14635
|
} | undefined;
|
|
14523
|
-
token_endpoint_auth_method?: "
|
|
14636
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14524
14637
|
client_metadata?: {
|
|
14525
14638
|
[x: string]: string;
|
|
14526
14639
|
} | undefined;
|
|
@@ -14617,7 +14730,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14617
14730
|
custom_login_page_preview?: string | undefined;
|
|
14618
14731
|
form_template?: string | undefined;
|
|
14619
14732
|
addons?: Record<string, any> | undefined;
|
|
14620
|
-
token_endpoint_auth_method?: "
|
|
14733
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14621
14734
|
client_metadata?: Record<string, string> | undefined;
|
|
14622
14735
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14623
14736
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14703,7 +14816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14703
14816
|
addons?: {
|
|
14704
14817
|
[x: string]: any;
|
|
14705
14818
|
} | undefined;
|
|
14706
|
-
token_endpoint_auth_method?: "
|
|
14819
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14707
14820
|
client_metadata?: {
|
|
14708
14821
|
[x: string]: string;
|
|
14709
14822
|
} | undefined;
|
|
@@ -14780,6 +14893,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14780
14893
|
client_secret?: string | undefined;
|
|
14781
14894
|
app_secret?: string | undefined;
|
|
14782
14895
|
scope?: string | undefined;
|
|
14896
|
+
client_secret_hint?: string | undefined;
|
|
14897
|
+
app_secret_hint?: string | undefined;
|
|
14898
|
+
twilio_token_hint?: string | undefined;
|
|
14783
14899
|
authorization_endpoint?: string | undefined;
|
|
14784
14900
|
token_endpoint?: string | undefined;
|
|
14785
14901
|
userinfo_endpoint?: string | undefined;
|
|
@@ -14817,6 +14933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14817
14933
|
userinfo_endpoint?: string | undefined;
|
|
14818
14934
|
client_id?: string | undefined;
|
|
14819
14935
|
client_secret?: string | undefined;
|
|
14936
|
+
client_secret_hint?: string | undefined;
|
|
14820
14937
|
realm?: string | undefined;
|
|
14821
14938
|
} | undefined;
|
|
14822
14939
|
attributes?: {
|
|
@@ -14872,7 +14989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14872
14989
|
} | undefined;
|
|
14873
14990
|
} | undefined;
|
|
14874
14991
|
passkey_options?: {
|
|
14875
|
-
challenge_ui?: "
|
|
14992
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
14876
14993
|
local_enrollment_enabled?: boolean | undefined;
|
|
14877
14994
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
14878
14995
|
} | undefined;
|
|
@@ -14934,6 +15051,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14934
15051
|
client_secret?: string | undefined;
|
|
14935
15052
|
app_secret?: string | undefined;
|
|
14936
15053
|
scope?: string | undefined;
|
|
15054
|
+
client_secret_hint?: string | undefined;
|
|
15055
|
+
app_secret_hint?: string | undefined;
|
|
15056
|
+
twilio_token_hint?: string | undefined;
|
|
14937
15057
|
authorization_endpoint?: string | undefined;
|
|
14938
15058
|
token_endpoint?: string | undefined;
|
|
14939
15059
|
userinfo_endpoint?: string | undefined;
|
|
@@ -14971,6 +15091,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14971
15091
|
userinfo_endpoint?: string | undefined;
|
|
14972
15092
|
client_id?: string | undefined;
|
|
14973
15093
|
client_secret?: string | undefined;
|
|
15094
|
+
client_secret_hint?: string | undefined;
|
|
14974
15095
|
realm?: string | undefined;
|
|
14975
15096
|
} | undefined;
|
|
14976
15097
|
attributes?: {
|
|
@@ -15026,7 +15147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15026
15147
|
} | undefined;
|
|
15027
15148
|
} | undefined;
|
|
15028
15149
|
passkey_options?: {
|
|
15029
|
-
challenge_ui?: "
|
|
15150
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
15030
15151
|
local_enrollment_enabled?: boolean | undefined;
|
|
15031
15152
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
15032
15153
|
} | undefined;
|
|
@@ -16048,7 +16169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16048
16169
|
};
|
|
16049
16170
|
};
|
|
16050
16171
|
output: {
|
|
16051
|
-
type: "
|
|
16172
|
+
type: "i" | "fn" | "sapi" | "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";
|
|
16052
16173
|
date: string;
|
|
16053
16174
|
isMobile: boolean;
|
|
16054
16175
|
log_id: string;
|
|
@@ -16087,7 +16208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16087
16208
|
limit: number;
|
|
16088
16209
|
length: number;
|
|
16089
16210
|
logs: {
|
|
16090
|
-
type: "
|
|
16211
|
+
type: "i" | "fn" | "sapi" | "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";
|
|
16091
16212
|
date: string;
|
|
16092
16213
|
isMobile: boolean;
|
|
16093
16214
|
log_id: string;
|
|
@@ -16406,7 +16527,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16406
16527
|
};
|
|
16407
16528
|
} & {
|
|
16408
16529
|
json: {
|
|
16409
|
-
template: "
|
|
16530
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16410
16531
|
body: string;
|
|
16411
16532
|
from: string;
|
|
16412
16533
|
subject: string;
|
|
@@ -16427,7 +16548,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16427
16548
|
};
|
|
16428
16549
|
} & {
|
|
16429
16550
|
json: {
|
|
16430
|
-
template: "
|
|
16551
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16431
16552
|
body: string;
|
|
16432
16553
|
from: string;
|
|
16433
16554
|
subject: string;
|
|
@@ -16439,7 +16560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16439
16560
|
};
|
|
16440
16561
|
};
|
|
16441
16562
|
output: {
|
|
16442
|
-
template: "
|
|
16563
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16443
16564
|
body: string;
|
|
16444
16565
|
from: string;
|
|
16445
16566
|
subject: string;
|
|
@@ -16462,7 +16583,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16462
16583
|
};
|
|
16463
16584
|
};
|
|
16464
16585
|
output: {
|
|
16465
|
-
name: "
|
|
16586
|
+
name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16466
16587
|
body: string;
|
|
16467
16588
|
subject: string;
|
|
16468
16589
|
}[];
|
|
@@ -16475,7 +16596,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16475
16596
|
$get: {
|
|
16476
16597
|
input: {
|
|
16477
16598
|
param: {
|
|
16478
|
-
templateName: "
|
|
16599
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16479
16600
|
};
|
|
16480
16601
|
} & {
|
|
16481
16602
|
header: {
|
|
@@ -16488,7 +16609,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16488
16609
|
} | {
|
|
16489
16610
|
input: {
|
|
16490
16611
|
param: {
|
|
16491
|
-
templateName: "
|
|
16612
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16492
16613
|
};
|
|
16493
16614
|
} & {
|
|
16494
16615
|
header: {
|
|
@@ -16496,7 +16617,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16496
16617
|
};
|
|
16497
16618
|
};
|
|
16498
16619
|
output: {
|
|
16499
|
-
template: "
|
|
16620
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16500
16621
|
body: string;
|
|
16501
16622
|
from: string;
|
|
16502
16623
|
subject: string;
|
|
@@ -16515,7 +16636,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16515
16636
|
$put: {
|
|
16516
16637
|
input: {
|
|
16517
16638
|
param: {
|
|
16518
|
-
templateName: "
|
|
16639
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16519
16640
|
};
|
|
16520
16641
|
} & {
|
|
16521
16642
|
header: {
|
|
@@ -16523,7 +16644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16523
16644
|
};
|
|
16524
16645
|
} & {
|
|
16525
16646
|
json: {
|
|
16526
|
-
template: "
|
|
16647
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16527
16648
|
body: string;
|
|
16528
16649
|
subject: string;
|
|
16529
16650
|
syntax?: "liquid" | undefined;
|
|
@@ -16535,7 +16656,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16535
16656
|
};
|
|
16536
16657
|
};
|
|
16537
16658
|
output: {
|
|
16538
|
-
template: "
|
|
16659
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16539
16660
|
body: string;
|
|
16540
16661
|
from: string;
|
|
16541
16662
|
subject: string;
|
|
@@ -16554,7 +16675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16554
16675
|
$patch: {
|
|
16555
16676
|
input: {
|
|
16556
16677
|
param: {
|
|
16557
|
-
templateName: "
|
|
16678
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16558
16679
|
};
|
|
16559
16680
|
} & {
|
|
16560
16681
|
header: {
|
|
@@ -16562,7 +16683,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16562
16683
|
};
|
|
16563
16684
|
} & {
|
|
16564
16685
|
json: {
|
|
16565
|
-
template?: "
|
|
16686
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16566
16687
|
body?: string | undefined;
|
|
16567
16688
|
from?: string | undefined;
|
|
16568
16689
|
subject?: string | undefined;
|
|
@@ -16579,7 +16700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16579
16700
|
} | {
|
|
16580
16701
|
input: {
|
|
16581
16702
|
param: {
|
|
16582
|
-
templateName: "
|
|
16703
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16583
16704
|
};
|
|
16584
16705
|
} & {
|
|
16585
16706
|
header: {
|
|
@@ -16587,7 +16708,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16587
16708
|
};
|
|
16588
16709
|
} & {
|
|
16589
16710
|
json: {
|
|
16590
|
-
template?: "
|
|
16711
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16591
16712
|
body?: string | undefined;
|
|
16592
16713
|
from?: string | undefined;
|
|
16593
16714
|
subject?: string | undefined;
|
|
@@ -16599,7 +16720,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16599
16720
|
};
|
|
16600
16721
|
};
|
|
16601
16722
|
output: {
|
|
16602
|
-
template: "
|
|
16723
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16603
16724
|
body: string;
|
|
16604
16725
|
from: string;
|
|
16605
16726
|
subject: string;
|
|
@@ -16618,7 +16739,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16618
16739
|
$delete: {
|
|
16619
16740
|
input: {
|
|
16620
16741
|
param: {
|
|
16621
|
-
templateName: "
|
|
16742
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16622
16743
|
};
|
|
16623
16744
|
} & {
|
|
16624
16745
|
header: {
|
|
@@ -16631,7 +16752,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16631
16752
|
} | {
|
|
16632
16753
|
input: {
|
|
16633
16754
|
param: {
|
|
16634
|
-
templateName: "
|
|
16755
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16635
16756
|
};
|
|
16636
16757
|
} & {
|
|
16637
16758
|
header: {
|
|
@@ -16648,7 +16769,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16648
16769
|
$post: {
|
|
16649
16770
|
input: {
|
|
16650
16771
|
param: {
|
|
16651
|
-
templateName: "
|
|
16772
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16652
16773
|
};
|
|
16653
16774
|
} & {
|
|
16654
16775
|
header: {
|
|
@@ -16931,7 +17052,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16931
17052
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16932
17053
|
custom_domain_id: string;
|
|
16933
17054
|
primary: boolean;
|
|
16934
|
-
status: "
|
|
17055
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
16935
17056
|
verification_method?: "txt" | undefined;
|
|
16936
17057
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16937
17058
|
domain_metadata?: {
|
|
@@ -16972,7 +17093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16972
17093
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16973
17094
|
custom_domain_id: string;
|
|
16974
17095
|
primary: boolean;
|
|
16975
|
-
status: "
|
|
17096
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
16976
17097
|
verification_method?: "txt" | undefined;
|
|
16977
17098
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16978
17099
|
domain_metadata?: {
|
|
@@ -17036,7 +17157,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17036
17157
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17037
17158
|
custom_domain_id: string;
|
|
17038
17159
|
primary: boolean;
|
|
17039
|
-
status: "
|
|
17160
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17040
17161
|
verification_method?: "txt" | undefined;
|
|
17041
17162
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17042
17163
|
domain_metadata?: {
|
|
@@ -17083,7 +17204,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17083
17204
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17084
17205
|
custom_domain_id: string;
|
|
17085
17206
|
primary: boolean;
|
|
17086
|
-
status: "
|
|
17207
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17087
17208
|
verification_method?: "txt" | undefined;
|
|
17088
17209
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17089
17210
|
domain_metadata?: {
|
|
@@ -17129,7 +17250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17129
17250
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17130
17251
|
custom_domain_id: string;
|
|
17131
17252
|
primary: boolean;
|
|
17132
|
-
status: "
|
|
17253
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17133
17254
|
verification_method?: "txt" | undefined;
|
|
17134
17255
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17135
17256
|
domain_metadata?: {
|
|
@@ -17170,7 +17291,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17170
17291
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17171
17292
|
custom_domain_id: string;
|
|
17172
17293
|
primary: boolean;
|
|
17173
|
-
status: "
|
|
17294
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
17174
17295
|
verification_method?: "txt" | undefined;
|
|
17175
17296
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17176
17297
|
domain_metadata?: {
|
|
@@ -17218,7 +17339,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17218
17339
|
base_focus_color: string;
|
|
17219
17340
|
base_hover_color: string;
|
|
17220
17341
|
body_text: string;
|
|
17221
|
-
captcha_widget_theme: "
|
|
17342
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17222
17343
|
error: string;
|
|
17223
17344
|
header: string;
|
|
17224
17345
|
icons: string;
|
|
@@ -17269,7 +17390,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17269
17390
|
background_color: string;
|
|
17270
17391
|
background_image_url: string;
|
|
17271
17392
|
page_layout: "center" | "left" | "right";
|
|
17272
|
-
logo_placement?: "
|
|
17393
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
17273
17394
|
};
|
|
17274
17395
|
widget: {
|
|
17275
17396
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -17308,7 +17429,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17308
17429
|
base_focus_color: string;
|
|
17309
17430
|
base_hover_color: string;
|
|
17310
17431
|
body_text: string;
|
|
17311
|
-
captcha_widget_theme: "
|
|
17432
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17312
17433
|
error: string;
|
|
17313
17434
|
header: string;
|
|
17314
17435
|
icons: string;
|
|
@@ -17359,7 +17480,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17359
17480
|
background_color: string;
|
|
17360
17481
|
background_image_url: string;
|
|
17361
17482
|
page_layout: "center" | "left" | "right";
|
|
17362
|
-
logo_placement?: "
|
|
17483
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
17363
17484
|
};
|
|
17364
17485
|
widget: {
|
|
17365
17486
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -17387,7 +17508,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17387
17508
|
base_focus_color: string;
|
|
17388
17509
|
base_hover_color: string;
|
|
17389
17510
|
body_text: string;
|
|
17390
|
-
captcha_widget_theme: "
|
|
17511
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17391
17512
|
error: string;
|
|
17392
17513
|
header: string;
|
|
17393
17514
|
icons: string;
|
|
@@ -17438,7 +17559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17438
17559
|
background_color: string;
|
|
17439
17560
|
background_image_url: string;
|
|
17440
17561
|
page_layout: "center" | "left" | "right";
|
|
17441
|
-
logo_placement?: "
|
|
17562
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
17442
17563
|
};
|
|
17443
17564
|
widget: {
|
|
17444
17565
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -17477,7 +17598,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17477
17598
|
font?: {
|
|
17478
17599
|
url: string;
|
|
17479
17600
|
} | undefined;
|
|
17480
|
-
dark_mode?: "
|
|
17601
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17481
17602
|
};
|
|
17482
17603
|
outputFormat: "json";
|
|
17483
17604
|
status: 200;
|
|
@@ -17507,7 +17628,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17507
17628
|
font?: {
|
|
17508
17629
|
url: string;
|
|
17509
17630
|
} | undefined;
|
|
17510
|
-
dark_mode?: "
|
|
17631
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17511
17632
|
};
|
|
17512
17633
|
};
|
|
17513
17634
|
output: {
|
|
@@ -17526,7 +17647,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17526
17647
|
font?: {
|
|
17527
17648
|
url: string;
|
|
17528
17649
|
} | undefined;
|
|
17529
|
-
dark_mode?: "
|
|
17650
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17530
17651
|
};
|
|
17531
17652
|
outputFormat: "json";
|
|
17532
17653
|
status: 200;
|
|
@@ -17600,7 +17721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17600
17721
|
} & {
|
|
17601
17722
|
json: {
|
|
17602
17723
|
body?: string | undefined;
|
|
17603
|
-
screen?: "
|
|
17724
|
+
screen?: "password" | "login" | "signup" | "identifier" | undefined;
|
|
17604
17725
|
branding?: {
|
|
17605
17726
|
colors?: {
|
|
17606
17727
|
primary: string;
|
|
@@ -17617,7 +17738,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17617
17738
|
font?: {
|
|
17618
17739
|
url: string;
|
|
17619
17740
|
} | undefined;
|
|
17620
|
-
dark_mode?: "
|
|
17741
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17621
17742
|
} | undefined;
|
|
17622
17743
|
theme?: {
|
|
17623
17744
|
borders?: {
|
|
@@ -17635,7 +17756,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17635
17756
|
base_focus_color: string;
|
|
17636
17757
|
base_hover_color: string;
|
|
17637
17758
|
body_text: string;
|
|
17638
|
-
captcha_widget_theme: "
|
|
17759
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17639
17760
|
error: string;
|
|
17640
17761
|
header: string;
|
|
17641
17762
|
icons: string;
|
|
@@ -17686,7 +17807,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17686
17807
|
background_color: string;
|
|
17687
17808
|
background_image_url: string;
|
|
17688
17809
|
page_layout: "center" | "left" | "right";
|
|
17689
|
-
logo_placement?: "
|
|
17810
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
17690
17811
|
} | undefined;
|
|
17691
17812
|
widget?: {
|
|
17692
17813
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -17891,7 +18012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17891
18012
|
logs: {
|
|
17892
18013
|
action_name: string;
|
|
17893
18014
|
lines: {
|
|
17894
|
-
level: "error" | "
|
|
18015
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
17895
18016
|
message: string;
|
|
17896
18017
|
}[];
|
|
17897
18018
|
}[];
|
|
@@ -18560,7 +18681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18560
18681
|
args: hono_utils_types.JSONValue[];
|
|
18561
18682
|
}[];
|
|
18562
18683
|
logs: {
|
|
18563
|
-
level: "error" | "
|
|
18684
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
18564
18685
|
message: string;
|
|
18565
18686
|
}[];
|
|
18566
18687
|
error?: string | undefined;
|
|
@@ -18871,7 +18992,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18871
18992
|
scope?: string | undefined;
|
|
18872
18993
|
grant_types?: string[] | undefined;
|
|
18873
18994
|
response_types?: string[] | undefined;
|
|
18874
|
-
token_endpoint_auth_method?: "
|
|
18995
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18875
18996
|
jwks_uri?: string | undefined;
|
|
18876
18997
|
jwks?: Record<string, unknown> | undefined;
|
|
18877
18998
|
software_id?: string | undefined;
|
|
@@ -18960,7 +19081,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18960
19081
|
scope?: string | undefined;
|
|
18961
19082
|
grant_types?: string[] | undefined;
|
|
18962
19083
|
response_types?: string[] | undefined;
|
|
18963
|
-
token_endpoint_auth_method?: "
|
|
19084
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18964
19085
|
jwks_uri?: string | undefined;
|
|
18965
19086
|
jwks?: Record<string, unknown> | undefined;
|
|
18966
19087
|
software_id?: string | undefined;
|
|
@@ -19306,19 +19427,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19306
19427
|
email: string;
|
|
19307
19428
|
send: "code" | "link";
|
|
19308
19429
|
authParams: {
|
|
19430
|
+
state?: string | undefined;
|
|
19431
|
+
username?: string | undefined;
|
|
19432
|
+
code_challenge?: string | undefined;
|
|
19433
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19434
|
+
redirect_uri?: string | undefined;
|
|
19435
|
+
nonce?: string | undefined;
|
|
19436
|
+
act_as?: string | undefined;
|
|
19309
19437
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19310
19438
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19311
|
-
scope?: string | undefined;
|
|
19312
|
-
username?: string | undefined;
|
|
19313
|
-
state?: string | undefined;
|
|
19314
19439
|
audience?: string | undefined;
|
|
19315
|
-
act_as?: string | undefined;
|
|
19316
|
-
redirect_uri?: string | undefined;
|
|
19317
19440
|
organization?: string | undefined;
|
|
19318
|
-
|
|
19441
|
+
scope?: string | undefined;
|
|
19319
19442
|
prompt?: string | undefined;
|
|
19320
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19321
|
-
code_challenge?: string | undefined;
|
|
19322
19443
|
ui_locales?: string | undefined;
|
|
19323
19444
|
max_age?: number | undefined;
|
|
19324
19445
|
acr_values?: string | undefined;
|
|
@@ -19342,19 +19463,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19342
19463
|
phone_number: string;
|
|
19343
19464
|
send: "code" | "link";
|
|
19344
19465
|
authParams: {
|
|
19466
|
+
state?: string | undefined;
|
|
19467
|
+
username?: string | undefined;
|
|
19468
|
+
code_challenge?: string | undefined;
|
|
19469
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19470
|
+
redirect_uri?: string | undefined;
|
|
19471
|
+
nonce?: string | undefined;
|
|
19472
|
+
act_as?: string | undefined;
|
|
19345
19473
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19346
19474
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19347
|
-
scope?: string | undefined;
|
|
19348
|
-
username?: string | undefined;
|
|
19349
|
-
state?: string | undefined;
|
|
19350
19475
|
audience?: string | undefined;
|
|
19351
|
-
act_as?: string | undefined;
|
|
19352
|
-
redirect_uri?: string | undefined;
|
|
19353
19476
|
organization?: string | undefined;
|
|
19354
|
-
|
|
19477
|
+
scope?: string | undefined;
|
|
19355
19478
|
prompt?: string | undefined;
|
|
19356
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19357
|
-
code_challenge?: string | undefined;
|
|
19358
19479
|
ui_locales?: string | undefined;
|
|
19359
19480
|
max_age?: number | undefined;
|
|
19360
19481
|
acr_values?: string | undefined;
|
|
@@ -19486,14 +19607,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19486
19607
|
input: {
|
|
19487
19608
|
form: {
|
|
19488
19609
|
token: string;
|
|
19489
|
-
token_type_hint?: "
|
|
19610
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19490
19611
|
client_id?: string | undefined;
|
|
19491
19612
|
client_secret?: string | undefined;
|
|
19492
19613
|
};
|
|
19493
19614
|
} & {
|
|
19494
19615
|
json: {
|
|
19495
19616
|
token: string;
|
|
19496
|
-
token_type_hint?: "
|
|
19617
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19497
19618
|
client_id?: string | undefined;
|
|
19498
19619
|
client_secret?: string | undefined;
|
|
19499
19620
|
};
|
|
@@ -19505,14 +19626,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19505
19626
|
input: {
|
|
19506
19627
|
form: {
|
|
19507
19628
|
token: string;
|
|
19508
|
-
token_type_hint?: "
|
|
19629
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19509
19630
|
client_id?: string | undefined;
|
|
19510
19631
|
client_secret?: string | undefined;
|
|
19511
19632
|
};
|
|
19512
19633
|
} & {
|
|
19513
19634
|
json: {
|
|
19514
19635
|
token: string;
|
|
19515
|
-
token_type_hint?: "
|
|
19636
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19516
19637
|
client_id?: string | undefined;
|
|
19517
19638
|
client_secret?: string | undefined;
|
|
19518
19639
|
};
|
|
@@ -19527,14 +19648,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19527
19648
|
input: {
|
|
19528
19649
|
form: {
|
|
19529
19650
|
token: string;
|
|
19530
|
-
token_type_hint?: "
|
|
19651
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19531
19652
|
client_id?: string | undefined;
|
|
19532
19653
|
client_secret?: string | undefined;
|
|
19533
19654
|
};
|
|
19534
19655
|
} & {
|
|
19535
19656
|
json: {
|
|
19536
19657
|
token: string;
|
|
19537
|
-
token_type_hint?: "
|
|
19658
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19538
19659
|
client_id?: string | undefined;
|
|
19539
19660
|
client_secret?: string | undefined;
|
|
19540
19661
|
};
|
|
@@ -20263,7 +20384,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20263
20384
|
};
|
|
20264
20385
|
output: {};
|
|
20265
20386
|
outputFormat: string;
|
|
20266
|
-
status:
|
|
20387
|
+
status: 200;
|
|
20267
20388
|
} | {
|
|
20268
20389
|
input: {
|
|
20269
20390
|
query: {
|
|
@@ -20277,7 +20398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20277
20398
|
};
|
|
20278
20399
|
output: {};
|
|
20279
20400
|
outputFormat: string;
|
|
20280
|
-
status:
|
|
20401
|
+
status: 302;
|
|
20281
20402
|
} | {
|
|
20282
20403
|
input: {
|
|
20283
20404
|
query: {
|
|
@@ -20886,7 +21007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20886
21007
|
} & {
|
|
20887
21008
|
form: {
|
|
20888
21009
|
username: string;
|
|
20889
|
-
login_selection?: "
|
|
21010
|
+
login_selection?: "password" | "code" | undefined;
|
|
20890
21011
|
};
|
|
20891
21012
|
};
|
|
20892
21013
|
output: {};
|
|
@@ -20900,7 +21021,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20900
21021
|
} & {
|
|
20901
21022
|
form: {
|
|
20902
21023
|
username: string;
|
|
20903
|
-
login_selection?: "
|
|
21024
|
+
login_selection?: "password" | "code" | undefined;
|
|
20904
21025
|
};
|
|
20905
21026
|
};
|
|
20906
21027
|
output: {};
|
|
@@ -21265,7 +21386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21265
21386
|
$get: {
|
|
21266
21387
|
input: {
|
|
21267
21388
|
param: {
|
|
21268
|
-
screen: "
|
|
21389
|
+
screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21269
21390
|
};
|
|
21270
21391
|
} & {
|
|
21271
21392
|
query: {
|
|
@@ -21281,7 +21402,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21281
21402
|
} | {
|
|
21282
21403
|
input: {
|
|
21283
21404
|
param: {
|
|
21284
|
-
screen: "
|
|
21405
|
+
screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21285
21406
|
};
|
|
21286
21407
|
} & {
|
|
21287
21408
|
query: {
|
|
@@ -21297,7 +21418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21297
21418
|
} | {
|
|
21298
21419
|
input: {
|
|
21299
21420
|
param: {
|
|
21300
|
-
screen: "
|
|
21421
|
+
screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21301
21422
|
};
|
|
21302
21423
|
} & {
|
|
21303
21424
|
query: {
|
|
@@ -21317,7 +21438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21317
21438
|
$post: {
|
|
21318
21439
|
input: {
|
|
21319
21440
|
param: {
|
|
21320
|
-
screen: "
|
|
21441
|
+
screen: "impersonate" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21321
21442
|
};
|
|
21322
21443
|
} & {
|
|
21323
21444
|
query: {
|
|
@@ -21335,7 +21456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21335
21456
|
} | {
|
|
21336
21457
|
input: {
|
|
21337
21458
|
param: {
|
|
21338
|
-
screen: "
|
|
21459
|
+
screen: "impersonate" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21339
21460
|
};
|
|
21340
21461
|
} & {
|
|
21341
21462
|
query: {
|