authhero 8.20.0 → 8.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +142 -142
- package/dist/authhero.d.ts +402 -82
- package/dist/authhero.mjs +15092 -17184
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/errors/is-http-exception-like.d.ts +11 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +280 -79
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- 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 +2 -2
- package/dist/types/routes/management-api/actions.d.ts +3 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/client-grants.d.ts +16 -0
- package/dist/types/routes/management-api/clients.d.ts +109 -13
- package/dist/types/routes/management-api/connections.d.ts +16 -15
- package/dist/types/routes/management-api/flows.d.ts +1 -0
- package/dist/types/routes/management-api/forms.d.ts +1 -0
- package/dist/types/routes/management-api/grants.d.ts +1 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/hooks.d.ts +1 -0
- package/dist/types/routes/management-api/index.d.ts +276 -76
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +42 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +36 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/resource-servers.d.ts +1 -0
- package/dist/types/routes/management-api/roles.d.ts +2 -0
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +5 -5
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +7 -2
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.d.ts +122 -0
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +12 -12
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- 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/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, }
|
|
|
30
30
|
export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
|
|
31
31
|
export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
|
|
32
32
|
export { wrapProxyAdaptersWithKvPublish, backfillProxyHostsToKv, type KvPublishOptions, type WrappedProxyAdapters, type BackfillProxyHostsOptions, type BackfillResult, } from "./routes/proxy-control-plane/kv-publish";
|
|
33
|
+
export { createWfpTenantHostResolver, wrapTenantsAdapterWithWfpKvPublish, composeHostResolvers, wfpTenantHost, isWfpSubdomainSafeTenantId, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, type WfpTenantHostResolverOptions, type WfpTenantsKvPublishOptions, } from "./routes/proxy-control-plane/wfp-tenant-hosts";
|
|
33
34
|
export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, type VerifyControlPlaneTokenOptions, type VerifyControlPlaneTokenResult, } from "./routes/proxy-control-plane/verify";
|
|
34
35
|
export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
|
|
35
36
|
export { seed, MANAGEMENT_API_SCOPES } from "./seed";
|
|
@@ -62,8 +63,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
62
63
|
$get: {
|
|
63
64
|
input: {
|
|
64
65
|
query: {
|
|
65
|
-
include_password_hashes?: "
|
|
66
|
-
gzip?: "
|
|
66
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
67
|
+
gzip?: "false" | "true" | undefined;
|
|
67
68
|
};
|
|
68
69
|
} & {
|
|
69
70
|
header: {
|
|
@@ -76,8 +77,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
76
77
|
} | {
|
|
77
78
|
input: {
|
|
78
79
|
query: {
|
|
79
|
-
include_password_hashes?: "
|
|
80
|
-
gzip?: "
|
|
80
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
81
|
+
gzip?: "false" | "true" | undefined;
|
|
81
82
|
};
|
|
82
83
|
} & {
|
|
83
84
|
header: {
|
|
@@ -96,7 +97,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
96
97
|
$post: {
|
|
97
98
|
input: {
|
|
98
99
|
query: {
|
|
99
|
-
include_password_hashes?: "
|
|
100
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
100
101
|
};
|
|
101
102
|
} & {
|
|
102
103
|
header: {
|
|
@@ -150,7 +151,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
150
151
|
};
|
|
151
152
|
} & {
|
|
152
153
|
json: {
|
|
153
|
-
type: "
|
|
154
|
+
type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
154
155
|
phone_number?: string | undefined;
|
|
155
156
|
totp_secret?: string | undefined;
|
|
156
157
|
credential_id?: string | undefined;
|
|
@@ -290,7 +291,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
290
291
|
};
|
|
291
292
|
};
|
|
292
293
|
output: {
|
|
293
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
294
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
294
295
|
enabled: boolean;
|
|
295
296
|
trial_expired?: boolean | undefined;
|
|
296
297
|
}[];
|
|
@@ -445,7 +446,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
445
446
|
$get: {
|
|
446
447
|
input: {
|
|
447
448
|
param: {
|
|
448
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
449
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
449
450
|
};
|
|
450
451
|
} & {
|
|
451
452
|
header: {
|
|
@@ -453,7 +454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
453
454
|
};
|
|
454
455
|
};
|
|
455
456
|
output: {
|
|
456
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
457
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
457
458
|
enabled: boolean;
|
|
458
459
|
trial_expired?: boolean | undefined;
|
|
459
460
|
};
|
|
@@ -466,7 +467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
466
467
|
$put: {
|
|
467
468
|
input: {
|
|
468
469
|
param: {
|
|
469
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
470
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
470
471
|
};
|
|
471
472
|
} & {
|
|
472
473
|
header: {
|
|
@@ -478,7 +479,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
478
479
|
};
|
|
479
480
|
};
|
|
480
481
|
output: {
|
|
481
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
482
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
482
483
|
enabled: boolean;
|
|
483
484
|
trial_expired?: boolean | undefined;
|
|
484
485
|
};
|
|
@@ -608,6 +609,39 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
608
609
|
} | undefined;
|
|
609
610
|
}[];
|
|
610
611
|
total?: number | undefined;
|
|
612
|
+
next?: string | undefined;
|
|
613
|
+
} | {
|
|
614
|
+
organizations: {
|
|
615
|
+
created_at: string;
|
|
616
|
+
updated_at: string;
|
|
617
|
+
id: string;
|
|
618
|
+
name: string;
|
|
619
|
+
display_name?: string | undefined;
|
|
620
|
+
branding?: {
|
|
621
|
+
logo_url?: string | undefined;
|
|
622
|
+
colors?: {
|
|
623
|
+
primary?: string | undefined;
|
|
624
|
+
page_background?: string | undefined;
|
|
625
|
+
} | undefined;
|
|
626
|
+
} | undefined;
|
|
627
|
+
metadata?: {
|
|
628
|
+
[x: string]: any;
|
|
629
|
+
} | undefined;
|
|
630
|
+
enabled_connections?: {
|
|
631
|
+
connection_id: string;
|
|
632
|
+
assign_membership_on_login: boolean;
|
|
633
|
+
show_as_button: boolean;
|
|
634
|
+
is_signup_enabled: boolean;
|
|
635
|
+
}[] | undefined;
|
|
636
|
+
token_quota?: {
|
|
637
|
+
client_credentials?: {
|
|
638
|
+
enforce: boolean;
|
|
639
|
+
per_day: number;
|
|
640
|
+
per_hour: number;
|
|
641
|
+
} | undefined;
|
|
642
|
+
} | undefined;
|
|
643
|
+
}[];
|
|
644
|
+
next?: string | undefined;
|
|
611
645
|
};
|
|
612
646
|
outputFormat: "json";
|
|
613
647
|
status: 200;
|
|
@@ -1328,6 +1362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1328
1362
|
updated_at?: string | undefined;
|
|
1329
1363
|
}[];
|
|
1330
1364
|
total?: number | undefined;
|
|
1365
|
+
next?: string | undefined;
|
|
1331
1366
|
};
|
|
1332
1367
|
outputFormat: "json";
|
|
1333
1368
|
status: 200;
|
|
@@ -1411,8 +1446,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1411
1446
|
};
|
|
1412
1447
|
} & {
|
|
1413
1448
|
json: {
|
|
1414
|
-
show_as_button?: boolean | undefined;
|
|
1415
1449
|
assign_membership_on_login?: boolean | undefined;
|
|
1450
|
+
show_as_button?: boolean | undefined;
|
|
1416
1451
|
is_signup_enabled?: boolean | undefined;
|
|
1417
1452
|
};
|
|
1418
1453
|
};
|
|
@@ -1540,6 +1575,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1540
1575
|
updated_at?: string | undefined;
|
|
1541
1576
|
}[];
|
|
1542
1577
|
total?: number | undefined;
|
|
1578
|
+
next?: string | undefined;
|
|
1543
1579
|
};
|
|
1544
1580
|
outputFormat: "json";
|
|
1545
1581
|
status: 200;
|
|
@@ -1811,6 +1847,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1811
1847
|
updated_at?: string | undefined;
|
|
1812
1848
|
}[];
|
|
1813
1849
|
total?: number | undefined;
|
|
1850
|
+
next?: string | undefined;
|
|
1814
1851
|
};
|
|
1815
1852
|
outputFormat: "json";
|
|
1816
1853
|
status: 200;
|
|
@@ -1966,6 +2003,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1966
2003
|
created_at: string;
|
|
1967
2004
|
}[];
|
|
1968
2005
|
total?: number | undefined;
|
|
2006
|
+
next?: string | undefined;
|
|
1969
2007
|
};
|
|
1970
2008
|
outputFormat: "json";
|
|
1971
2009
|
status: 200;
|
|
@@ -2143,6 +2181,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2143
2181
|
id: string;
|
|
2144
2182
|
}[];
|
|
2145
2183
|
total?: number | undefined;
|
|
2184
|
+
next?: string | undefined;
|
|
2146
2185
|
};
|
|
2147
2186
|
outputFormat: "json";
|
|
2148
2187
|
status: 200;
|
|
@@ -3671,6 +3710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3671
3710
|
} | undefined;
|
|
3672
3711
|
}[];
|
|
3673
3712
|
total?: number | undefined;
|
|
3713
|
+
next?: string | undefined;
|
|
3674
3714
|
};
|
|
3675
3715
|
outputFormat: "json";
|
|
3676
3716
|
status: 200;
|
|
@@ -6882,7 +6922,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6882
6922
|
};
|
|
6883
6923
|
};
|
|
6884
6924
|
output: {
|
|
6885
|
-
prompt: "
|
|
6925
|
+
prompt: "mfa" | "organizations" | "status" | "login" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6886
6926
|
language: string;
|
|
6887
6927
|
}[];
|
|
6888
6928
|
outputFormat: "json";
|
|
@@ -6920,7 +6960,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6920
6960
|
$get: {
|
|
6921
6961
|
input: {
|
|
6922
6962
|
param: {
|
|
6923
|
-
prompt: "
|
|
6963
|
+
prompt: "mfa" | "organizations" | "status" | "login" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6924
6964
|
language: string;
|
|
6925
6965
|
};
|
|
6926
6966
|
} & {
|
|
@@ -6942,7 +6982,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6942
6982
|
$put: {
|
|
6943
6983
|
input: {
|
|
6944
6984
|
param: {
|
|
6945
|
-
prompt: "
|
|
6985
|
+
prompt: "mfa" | "organizations" | "status" | "login" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6946
6986
|
language: string;
|
|
6947
6987
|
};
|
|
6948
6988
|
} & {
|
|
@@ -6966,7 +7006,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6966
7006
|
$delete: {
|
|
6967
7007
|
input: {
|
|
6968
7008
|
param: {
|
|
6969
|
-
prompt: "
|
|
7009
|
+
prompt: "mfa" | "organizations" | "status" | "login" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6970
7010
|
language: string;
|
|
6971
7011
|
};
|
|
6972
7012
|
} & {
|
|
@@ -7265,6 +7305,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7265
7305
|
is_system?: boolean | undefined;
|
|
7266
7306
|
}[];
|
|
7267
7307
|
total?: number | undefined;
|
|
7308
|
+
next?: string | undefined;
|
|
7268
7309
|
};
|
|
7269
7310
|
outputFormat: "json";
|
|
7270
7311
|
status: 200;
|
|
@@ -8103,6 +8144,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8103
8144
|
} | undefined;
|
|
8104
8145
|
})[];
|
|
8105
8146
|
total?: number | undefined;
|
|
8147
|
+
next?: string | undefined;
|
|
8106
8148
|
};
|
|
8107
8149
|
outputFormat: "json";
|
|
8108
8150
|
status: 200;
|
|
@@ -8467,7 +8509,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8467
8509
|
log_type: string;
|
|
8468
8510
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8469
8511
|
actor: {
|
|
8470
|
-
type: "
|
|
8512
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8471
8513
|
id?: string | undefined;
|
|
8472
8514
|
email?: string | undefined;
|
|
8473
8515
|
org_id?: string | undefined;
|
|
@@ -8777,7 +8819,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8777
8819
|
created_at: string;
|
|
8778
8820
|
updated_at: string;
|
|
8779
8821
|
name: string;
|
|
8780
|
-
provider: "auth0" | "
|
|
8822
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8781
8823
|
connection: string;
|
|
8782
8824
|
enabled: boolean;
|
|
8783
8825
|
credentials: {
|
|
@@ -8809,7 +8851,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8809
8851
|
created_at: string;
|
|
8810
8852
|
updated_at: string;
|
|
8811
8853
|
name: string;
|
|
8812
|
-
provider: "auth0" | "
|
|
8854
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8813
8855
|
connection: string;
|
|
8814
8856
|
enabled: boolean;
|
|
8815
8857
|
credentials: {
|
|
@@ -8835,7 +8877,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8835
8877
|
} & {
|
|
8836
8878
|
json: {
|
|
8837
8879
|
name: string;
|
|
8838
|
-
provider: "auth0" | "
|
|
8880
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8839
8881
|
connection: string;
|
|
8840
8882
|
credentials: {
|
|
8841
8883
|
domain: string;
|
|
@@ -8852,7 +8894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8852
8894
|
created_at: string;
|
|
8853
8895
|
updated_at: string;
|
|
8854
8896
|
name: string;
|
|
8855
|
-
provider: "auth0" | "
|
|
8897
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8856
8898
|
connection: string;
|
|
8857
8899
|
enabled: boolean;
|
|
8858
8900
|
credentials: {
|
|
@@ -8883,7 +8925,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8883
8925
|
json: {
|
|
8884
8926
|
id?: string | undefined;
|
|
8885
8927
|
name?: string | undefined;
|
|
8886
|
-
provider?: "auth0" | "
|
|
8928
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8887
8929
|
connection?: string | undefined;
|
|
8888
8930
|
enabled?: boolean | undefined;
|
|
8889
8931
|
credentials?: {
|
|
@@ -8899,7 +8941,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8899
8941
|
created_at: string;
|
|
8900
8942
|
updated_at: string;
|
|
8901
8943
|
name: string;
|
|
8902
|
-
provider: "auth0" | "
|
|
8944
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8903
8945
|
connection: string;
|
|
8904
8946
|
enabled: boolean;
|
|
8905
8947
|
credentials: {
|
|
@@ -8947,7 +8989,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8947
8989
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8948
8990
|
};
|
|
8949
8991
|
id: string;
|
|
8950
|
-
status: "
|
|
8992
|
+
status: "suspended" | "active" | "paused";
|
|
8951
8993
|
filters?: {
|
|
8952
8994
|
type: string;
|
|
8953
8995
|
name: string;
|
|
@@ -8979,7 +9021,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8979
9021
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8980
9022
|
};
|
|
8981
9023
|
id: string;
|
|
8982
|
-
status: "
|
|
9024
|
+
status: "suspended" | "active" | "paused";
|
|
8983
9025
|
filters?: {
|
|
8984
9026
|
type: string;
|
|
8985
9027
|
name: string;
|
|
@@ -9004,7 +9046,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9004
9046
|
name: string;
|
|
9005
9047
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9006
9048
|
sink: Record<string, unknown>;
|
|
9007
|
-
status?: "
|
|
9049
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9008
9050
|
filters?: {
|
|
9009
9051
|
type: string;
|
|
9010
9052
|
name: string;
|
|
@@ -9019,7 +9061,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9019
9061
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9020
9062
|
};
|
|
9021
9063
|
id: string;
|
|
9022
|
-
status: "
|
|
9064
|
+
status: "suspended" | "active" | "paused";
|
|
9023
9065
|
filters?: {
|
|
9024
9066
|
type: string;
|
|
9025
9067
|
name: string;
|
|
@@ -9054,7 +9096,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9054
9096
|
}[] | undefined;
|
|
9055
9097
|
isPriority?: boolean | undefined;
|
|
9056
9098
|
id?: string | undefined;
|
|
9057
|
-
status?: "
|
|
9099
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9058
9100
|
created_at?: string | undefined;
|
|
9059
9101
|
updated_at?: string | undefined;
|
|
9060
9102
|
};
|
|
@@ -9066,7 +9108,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9066
9108
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9067
9109
|
};
|
|
9068
9110
|
id: string;
|
|
9069
|
-
status: "
|
|
9111
|
+
status: "suspended" | "active" | "paused";
|
|
9070
9112
|
filters?: {
|
|
9071
9113
|
type: string;
|
|
9072
9114
|
name: string;
|
|
@@ -9117,7 +9159,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9117
9159
|
};
|
|
9118
9160
|
};
|
|
9119
9161
|
output: {
|
|
9120
|
-
type: "
|
|
9162
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9121
9163
|
date: string;
|
|
9122
9164
|
isMobile: boolean;
|
|
9123
9165
|
log_id: string;
|
|
@@ -9156,7 +9198,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9156
9198
|
limit: number;
|
|
9157
9199
|
length: number;
|
|
9158
9200
|
logs: {
|
|
9159
|
-
type: "
|
|
9201
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9160
9202
|
date: string;
|
|
9161
9203
|
isMobile: boolean;
|
|
9162
9204
|
log_id: string;
|
|
@@ -9192,6 +9234,45 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9192
9234
|
} | undefined;
|
|
9193
9235
|
}[];
|
|
9194
9236
|
total?: number | undefined;
|
|
9237
|
+
next?: string | undefined;
|
|
9238
|
+
} | {
|
|
9239
|
+
logs: {
|
|
9240
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9241
|
+
date: string;
|
|
9242
|
+
isMobile: boolean;
|
|
9243
|
+
log_id: string;
|
|
9244
|
+
description?: string | undefined;
|
|
9245
|
+
ip?: string | undefined;
|
|
9246
|
+
user_agent?: string | undefined;
|
|
9247
|
+
details?: any;
|
|
9248
|
+
user_id?: string | undefined;
|
|
9249
|
+
user_name?: string | undefined;
|
|
9250
|
+
connection?: string | undefined;
|
|
9251
|
+
connection_id?: string | undefined;
|
|
9252
|
+
client_id?: string | undefined;
|
|
9253
|
+
client_name?: string | undefined;
|
|
9254
|
+
audience?: string | undefined;
|
|
9255
|
+
scope?: string | undefined;
|
|
9256
|
+
strategy?: string | undefined;
|
|
9257
|
+
strategy_type?: string | undefined;
|
|
9258
|
+
hostname?: string | undefined;
|
|
9259
|
+
auth0_client?: {
|
|
9260
|
+
name: string;
|
|
9261
|
+
version: string;
|
|
9262
|
+
env?: {
|
|
9263
|
+
node?: string | undefined;
|
|
9264
|
+
} | undefined;
|
|
9265
|
+
} | undefined;
|
|
9266
|
+
location_info?: {
|
|
9267
|
+
country_code: string;
|
|
9268
|
+
city_name: string;
|
|
9269
|
+
latitude: string;
|
|
9270
|
+
longitude: string;
|
|
9271
|
+
time_zone: string;
|
|
9272
|
+
continent_code: string;
|
|
9273
|
+
} | undefined;
|
|
9274
|
+
}[];
|
|
9275
|
+
next?: string | undefined;
|
|
9195
9276
|
};
|
|
9196
9277
|
outputFormat: "json";
|
|
9197
9278
|
status: 200;
|
|
@@ -9210,7 +9291,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9210
9291
|
};
|
|
9211
9292
|
};
|
|
9212
9293
|
output: {
|
|
9213
|
-
type: "
|
|
9294
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9214
9295
|
date: string;
|
|
9215
9296
|
isMobile: boolean;
|
|
9216
9297
|
log_id: string;
|
|
@@ -9313,6 +9394,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9313
9394
|
audience?: string | undefined;
|
|
9314
9395
|
}[];
|
|
9315
9396
|
total?: number | undefined;
|
|
9397
|
+
next?: string | undefined;
|
|
9316
9398
|
};
|
|
9317
9399
|
outputFormat: "json";
|
|
9318
9400
|
status: 200;
|
|
@@ -9402,6 +9484,22 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9402
9484
|
updated_at?: string | undefined;
|
|
9403
9485
|
}[];
|
|
9404
9486
|
total?: number | undefined;
|
|
9487
|
+
next?: string | undefined;
|
|
9488
|
+
} | {
|
|
9489
|
+
client_grants: {
|
|
9490
|
+
id: string;
|
|
9491
|
+
client_id: string;
|
|
9492
|
+
audience: string;
|
|
9493
|
+
scope?: string[] | undefined;
|
|
9494
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9495
|
+
allow_any_organization?: boolean | undefined;
|
|
9496
|
+
is_system?: boolean | undefined;
|
|
9497
|
+
subject_type?: "user" | "client" | undefined;
|
|
9498
|
+
authorization_details_types?: string[] | undefined;
|
|
9499
|
+
created_at?: string | undefined;
|
|
9500
|
+
updated_at?: string | undefined;
|
|
9501
|
+
}[];
|
|
9502
|
+
next?: string | undefined;
|
|
9405
9503
|
};
|
|
9406
9504
|
outputFormat: "json";
|
|
9407
9505
|
status: 200;
|
|
@@ -9598,7 +9696,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9598
9696
|
addons?: {
|
|
9599
9697
|
[x: string]: any;
|
|
9600
9698
|
} | undefined;
|
|
9601
|
-
token_endpoint_auth_method?: "none" | "
|
|
9699
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9602
9700
|
client_metadata?: {
|
|
9603
9701
|
[x: string]: string;
|
|
9604
9702
|
} | undefined;
|
|
@@ -9694,7 +9792,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9694
9792
|
addons?: {
|
|
9695
9793
|
[x: string]: any;
|
|
9696
9794
|
} | undefined;
|
|
9697
|
-
token_endpoint_auth_method?: "none" | "
|
|
9795
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9698
9796
|
client_metadata?: {
|
|
9699
9797
|
[x: string]: string;
|
|
9700
9798
|
} | undefined;
|
|
@@ -9739,6 +9837,102 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9739
9837
|
user_linking_mode?: "builtin" | "off" | undefined;
|
|
9740
9838
|
}[];
|
|
9741
9839
|
total?: number | undefined;
|
|
9840
|
+
next?: string | undefined;
|
|
9841
|
+
} | {
|
|
9842
|
+
clients: {
|
|
9843
|
+
created_at: string;
|
|
9844
|
+
updated_at: string;
|
|
9845
|
+
name: string;
|
|
9846
|
+
global: boolean;
|
|
9847
|
+
is_first_party: boolean;
|
|
9848
|
+
oidc_conformant: boolean;
|
|
9849
|
+
auth0_conformant: boolean;
|
|
9850
|
+
sso: boolean;
|
|
9851
|
+
sso_disabled: boolean;
|
|
9852
|
+
cross_origin_authentication: boolean;
|
|
9853
|
+
custom_login_page_on: boolean;
|
|
9854
|
+
require_pushed_authorization_requests: boolean;
|
|
9855
|
+
require_proof_of_possession: boolean;
|
|
9856
|
+
client_id: string;
|
|
9857
|
+
description?: string | undefined;
|
|
9858
|
+
client_secret?: string | undefined;
|
|
9859
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9860
|
+
logo_uri?: string | undefined;
|
|
9861
|
+
callbacks?: string[] | undefined;
|
|
9862
|
+
allowed_origins?: string[] | undefined;
|
|
9863
|
+
web_origins?: string[] | undefined;
|
|
9864
|
+
client_aliases?: string[] | undefined;
|
|
9865
|
+
allowed_clients?: string[] | undefined;
|
|
9866
|
+
connections?: string[] | undefined;
|
|
9867
|
+
allowed_logout_urls?: string[] | undefined;
|
|
9868
|
+
session_transfer?: {
|
|
9869
|
+
[x: string]: any;
|
|
9870
|
+
} | undefined;
|
|
9871
|
+
oidc_logout?: {
|
|
9872
|
+
[x: string]: any;
|
|
9873
|
+
} | undefined;
|
|
9874
|
+
grant_types?: string[] | undefined;
|
|
9875
|
+
jwt_configuration?: {
|
|
9876
|
+
[x: string]: any;
|
|
9877
|
+
} | undefined;
|
|
9878
|
+
signing_keys?: {
|
|
9879
|
+
[x: string]: any;
|
|
9880
|
+
}[] | undefined;
|
|
9881
|
+
encryption_key?: {
|
|
9882
|
+
[x: string]: any;
|
|
9883
|
+
} | undefined;
|
|
9884
|
+
cross_origin_loc?: string | undefined;
|
|
9885
|
+
custom_login_page?: string | undefined;
|
|
9886
|
+
custom_login_page_preview?: string | undefined;
|
|
9887
|
+
form_template?: string | undefined;
|
|
9888
|
+
addons?: {
|
|
9889
|
+
[x: string]: any;
|
|
9890
|
+
} | undefined;
|
|
9891
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9892
|
+
client_metadata?: {
|
|
9893
|
+
[x: string]: string;
|
|
9894
|
+
} | undefined;
|
|
9895
|
+
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9896
|
+
mobile?: {
|
|
9897
|
+
[x: string]: any;
|
|
9898
|
+
} | undefined;
|
|
9899
|
+
initiate_login_uri?: string | undefined;
|
|
9900
|
+
native_social_login?: {
|
|
9901
|
+
[x: string]: any;
|
|
9902
|
+
} | undefined;
|
|
9903
|
+
refresh_token?: {
|
|
9904
|
+
rotation_type?: "rotating" | "non-rotating" | undefined;
|
|
9905
|
+
leeway?: number | undefined;
|
|
9906
|
+
expiration_type?: "expiring" | "non-expiring" | undefined;
|
|
9907
|
+
token_lifetime?: number | undefined;
|
|
9908
|
+
infinite_token_lifetime?: boolean | undefined;
|
|
9909
|
+
idle_token_lifetime?: number | undefined;
|
|
9910
|
+
infinite_idle_token_lifetime?: boolean | undefined;
|
|
9911
|
+
} | undefined;
|
|
9912
|
+
default_organization?: {
|
|
9913
|
+
[x: string]: any;
|
|
9914
|
+
} | undefined;
|
|
9915
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9916
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
9917
|
+
client_authentication_methods?: {
|
|
9918
|
+
[x: string]: any;
|
|
9919
|
+
} | undefined;
|
|
9920
|
+
signed_request_object?: {
|
|
9921
|
+
[x: string]: any;
|
|
9922
|
+
} | undefined;
|
|
9923
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
9924
|
+
par_request_expiry?: number | undefined;
|
|
9925
|
+
token_quota?: {
|
|
9926
|
+
[x: string]: any;
|
|
9927
|
+
} | undefined;
|
|
9928
|
+
owner_user_id?: string | undefined;
|
|
9929
|
+
registration_type?: "manual" | "open_dcr" | "iat_dcr" | undefined;
|
|
9930
|
+
registration_metadata?: {
|
|
9931
|
+
[x: string]: any;
|
|
9932
|
+
} | undefined;
|
|
9933
|
+
user_linking_mode?: "builtin" | "off" | undefined;
|
|
9934
|
+
}[];
|
|
9935
|
+
next?: string | undefined;
|
|
9742
9936
|
};
|
|
9743
9937
|
outputFormat: "json";
|
|
9744
9938
|
status: 200;
|
|
@@ -9805,7 +9999,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9805
9999
|
addons?: {
|
|
9806
10000
|
[x: string]: any;
|
|
9807
10001
|
} | undefined;
|
|
9808
|
-
token_endpoint_auth_method?: "none" | "
|
|
10002
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9809
10003
|
client_metadata?: {
|
|
9810
10004
|
[x: string]: string;
|
|
9811
10005
|
} | undefined;
|
|
@@ -9915,7 +10109,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9915
10109
|
custom_login_page_preview?: string | undefined;
|
|
9916
10110
|
form_template?: string | undefined;
|
|
9917
10111
|
addons?: Record<string, any> | undefined;
|
|
9918
|
-
token_endpoint_auth_method?: "none" | "
|
|
10112
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9919
10113
|
client_metadata?: Record<string, string> | undefined;
|
|
9920
10114
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9921
10115
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9995,7 +10189,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9995
10189
|
addons?: {
|
|
9996
10190
|
[x: string]: any;
|
|
9997
10191
|
} | undefined;
|
|
9998
|
-
token_endpoint_auth_method?: "none" | "
|
|
10192
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9999
10193
|
client_metadata?: {
|
|
10000
10194
|
[x: string]: string;
|
|
10001
10195
|
} | undefined;
|
|
@@ -10084,7 +10278,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10084
10278
|
custom_login_page_preview?: string | undefined;
|
|
10085
10279
|
form_template?: string | undefined;
|
|
10086
10280
|
addons?: Record<string, any> | undefined;
|
|
10087
|
-
token_endpoint_auth_method?: "none" | "
|
|
10281
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10088
10282
|
client_metadata?: Record<string, string> | undefined;
|
|
10089
10283
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10090
10284
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10164,7 +10358,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10164
10358
|
addons?: {
|
|
10165
10359
|
[x: string]: any;
|
|
10166
10360
|
} | undefined;
|
|
10167
|
-
token_endpoint_auth_method?: "none" | "
|
|
10361
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10168
10362
|
client_metadata?: {
|
|
10169
10363
|
[x: string]: string;
|
|
10170
10364
|
} | undefined;
|
|
@@ -10852,6 +11046,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10852
11046
|
}[] | undefined;
|
|
10853
11047
|
}[];
|
|
10854
11048
|
total?: number | undefined;
|
|
11049
|
+
next?: string | undefined;
|
|
10855
11050
|
};
|
|
10856
11051
|
outputFormat: "json";
|
|
10857
11052
|
status: 200;
|
|
@@ -11321,6 +11516,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11321
11516
|
updated_at?: string | undefined;
|
|
11322
11517
|
}[];
|
|
11323
11518
|
total?: number | undefined;
|
|
11519
|
+
next?: string | undefined;
|
|
11324
11520
|
};
|
|
11325
11521
|
outputFormat: "json";
|
|
11326
11522
|
status: 200;
|
|
@@ -11398,6 +11594,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11398
11594
|
idle_expires_at?: string | undefined;
|
|
11399
11595
|
}[];
|
|
11400
11596
|
total?: number | undefined;
|
|
11597
|
+
next?: string | undefined;
|
|
11401
11598
|
};
|
|
11402
11599
|
outputFormat: "json";
|
|
11403
11600
|
status: 200;
|
|
@@ -11428,7 +11625,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11428
11625
|
};
|
|
11429
11626
|
};
|
|
11430
11627
|
output: {
|
|
11431
|
-
type: "
|
|
11628
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11432
11629
|
date: string;
|
|
11433
11630
|
isMobile: boolean;
|
|
11434
11631
|
log_id: string;
|
|
@@ -11467,7 +11664,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11467
11664
|
limit: number;
|
|
11468
11665
|
length: number;
|
|
11469
11666
|
logs: {
|
|
11470
|
-
type: "
|
|
11667
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11471
11668
|
date: string;
|
|
11472
11669
|
isMobile: boolean;
|
|
11473
11670
|
log_id: string;
|
|
@@ -11503,6 +11700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11503
11700
|
} | undefined;
|
|
11504
11701
|
}[];
|
|
11505
11702
|
total?: number | undefined;
|
|
11703
|
+
next?: string | undefined;
|
|
11506
11704
|
};
|
|
11507
11705
|
outputFormat: "json";
|
|
11508
11706
|
status: 200;
|
|
@@ -11752,6 +11950,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11752
11950
|
} | undefined;
|
|
11753
11951
|
}[];
|
|
11754
11952
|
total?: number | undefined;
|
|
11953
|
+
next?: string | undefined;
|
|
11755
11954
|
};
|
|
11756
11955
|
outputFormat: "json";
|
|
11757
11956
|
status: 200;
|
|
@@ -12647,12 +12846,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12647
12846
|
background_color: string;
|
|
12648
12847
|
background_image_url: string;
|
|
12649
12848
|
page_layout: "center" | "left" | "right";
|
|
12650
|
-
logo_placement?: "
|
|
12849
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12651
12850
|
};
|
|
12652
12851
|
widget: {
|
|
12653
12852
|
header_text_alignment: "center" | "left" | "right";
|
|
12654
12853
|
logo_height: number;
|
|
12655
|
-
logo_position: "
|
|
12854
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12656
12855
|
logo_url: string;
|
|
12657
12856
|
social_buttons_layout: "bottom" | "top";
|
|
12658
12857
|
};
|
|
@@ -12737,12 +12936,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12737
12936
|
background_color: string;
|
|
12738
12937
|
background_image_url: string;
|
|
12739
12938
|
page_layout: "center" | "left" | "right";
|
|
12740
|
-
logo_placement?: "
|
|
12939
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12741
12940
|
};
|
|
12742
12941
|
widget: {
|
|
12743
12942
|
header_text_alignment: "center" | "left" | "right";
|
|
12744
12943
|
logo_height: number;
|
|
12745
|
-
logo_position: "
|
|
12944
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12746
12945
|
logo_url: string;
|
|
12747
12946
|
social_buttons_layout: "bottom" | "top";
|
|
12748
12947
|
};
|
|
@@ -12816,12 +13015,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12816
13015
|
background_color: string;
|
|
12817
13016
|
background_image_url: string;
|
|
12818
13017
|
page_layout: "center" | "left" | "right";
|
|
12819
|
-
logo_placement?: "
|
|
13018
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12820
13019
|
};
|
|
12821
13020
|
widget: {
|
|
12822
13021
|
header_text_alignment: "center" | "left" | "right";
|
|
12823
13022
|
logo_height: number;
|
|
12824
|
-
logo_position: "
|
|
13023
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12825
13024
|
logo_url: string;
|
|
12826
13025
|
social_buttons_layout: "bottom" | "top";
|
|
12827
13026
|
};
|
|
@@ -12978,7 +13177,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12978
13177
|
} & {
|
|
12979
13178
|
json: {
|
|
12980
13179
|
body?: string | undefined;
|
|
12981
|
-
screen?: "
|
|
13180
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
12982
13181
|
branding?: {
|
|
12983
13182
|
colors?: {
|
|
12984
13183
|
primary: string;
|
|
@@ -13064,12 +13263,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13064
13263
|
background_color: string;
|
|
13065
13264
|
background_image_url: string;
|
|
13066
13265
|
page_layout: "center" | "left" | "right";
|
|
13067
|
-
logo_placement?: "
|
|
13266
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13068
13267
|
} | undefined;
|
|
13069
13268
|
widget?: {
|
|
13070
13269
|
header_text_alignment: "center" | "left" | "right";
|
|
13071
13270
|
logo_height: number;
|
|
13072
|
-
logo_position: "
|
|
13271
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13073
13272
|
logo_url: string;
|
|
13074
13273
|
social_buttons_layout: "bottom" | "top";
|
|
13075
13274
|
} | undefined;
|
|
@@ -13269,7 +13468,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13269
13468
|
logs: {
|
|
13270
13469
|
action_name: string;
|
|
13271
13470
|
lines: {
|
|
13272
|
-
level: "
|
|
13471
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13273
13472
|
message: string;
|
|
13274
13473
|
}[];
|
|
13275
13474
|
}[];
|
|
@@ -13352,6 +13551,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13352
13551
|
}[] | undefined;
|
|
13353
13552
|
}[];
|
|
13354
13553
|
total?: number | undefined;
|
|
13554
|
+
next?: string | undefined;
|
|
13355
13555
|
};
|
|
13356
13556
|
outputFormat: "json";
|
|
13357
13557
|
status: 200;
|
|
@@ -13760,6 +13960,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13760
13960
|
}[] | undefined;
|
|
13761
13961
|
}[];
|
|
13762
13962
|
total?: number | undefined;
|
|
13963
|
+
next?: string | undefined;
|
|
13763
13964
|
};
|
|
13764
13965
|
outputFormat: "json";
|
|
13765
13966
|
status: 200;
|
|
@@ -13936,7 +14137,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13936
14137
|
args: import("hono/utils/types").JSONValue[];
|
|
13937
14138
|
}[];
|
|
13938
14139
|
logs: {
|
|
13939
|
-
level: "
|
|
14140
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13940
14141
|
message: string;
|
|
13941
14142
|
}[];
|
|
13942
14143
|
error?: string | undefined;
|
|
@@ -14247,7 +14448,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14247
14448
|
scope?: string | undefined;
|
|
14248
14449
|
grant_types?: string[] | undefined;
|
|
14249
14450
|
response_types?: string[] | undefined;
|
|
14250
|
-
token_endpoint_auth_method?: "none" | "
|
|
14451
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14251
14452
|
jwks_uri?: string | undefined;
|
|
14252
14453
|
jwks?: Record<string, unknown> | undefined;
|
|
14253
14454
|
software_id?: string | undefined;
|
|
@@ -14336,7 +14537,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14336
14537
|
scope?: string | undefined;
|
|
14337
14538
|
grant_types?: string[] | undefined;
|
|
14338
14539
|
response_types?: string[] | undefined;
|
|
14339
|
-
token_endpoint_auth_method?: "none" | "
|
|
14540
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14340
14541
|
jwks_uri?: string | undefined;
|
|
14341
14542
|
jwks?: Record<string, unknown> | undefined;
|
|
14342
14543
|
software_id?: string | undefined;
|
|
@@ -14682,20 +14883,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14682
14883
|
email: string;
|
|
14683
14884
|
send: "code" | "link";
|
|
14684
14885
|
authParams: {
|
|
14685
|
-
username?: string | undefined;
|
|
14686
|
-
state?: string | undefined;
|
|
14687
14886
|
audience?: string | undefined;
|
|
14887
|
+
username?: string | undefined;
|
|
14888
|
+
scope?: string | undefined;
|
|
14688
14889
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14689
14890
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14690
|
-
|
|
14891
|
+
state?: string | undefined;
|
|
14892
|
+
prompt?: string | undefined;
|
|
14893
|
+
ui_locales?: string | undefined;
|
|
14691
14894
|
organization?: string | undefined;
|
|
14692
|
-
nonce?: string | undefined;
|
|
14693
14895
|
redirect_uri?: string | undefined;
|
|
14694
14896
|
act_as?: string | undefined;
|
|
14695
|
-
|
|
14897
|
+
nonce?: string | undefined;
|
|
14696
14898
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14697
14899
|
code_challenge?: string | undefined;
|
|
14698
|
-
ui_locales?: string | undefined;
|
|
14699
14900
|
max_age?: number | undefined;
|
|
14700
14901
|
acr_values?: string | undefined;
|
|
14701
14902
|
claims?: {
|
|
@@ -14718,20 +14919,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14718
14919
|
phone_number: string;
|
|
14719
14920
|
send: "code" | "link";
|
|
14720
14921
|
authParams: {
|
|
14721
|
-
username?: string | undefined;
|
|
14722
|
-
state?: string | undefined;
|
|
14723
14922
|
audience?: string | undefined;
|
|
14923
|
+
username?: string | undefined;
|
|
14924
|
+
scope?: string | undefined;
|
|
14724
14925
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14725
14926
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14726
|
-
|
|
14927
|
+
state?: string | undefined;
|
|
14928
|
+
prompt?: string | undefined;
|
|
14929
|
+
ui_locales?: string | undefined;
|
|
14727
14930
|
organization?: string | undefined;
|
|
14728
|
-
nonce?: string | undefined;
|
|
14729
14931
|
redirect_uri?: string | undefined;
|
|
14730
14932
|
act_as?: string | undefined;
|
|
14731
|
-
|
|
14933
|
+
nonce?: string | undefined;
|
|
14732
14934
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14733
14935
|
code_challenge?: string | undefined;
|
|
14734
|
-
ui_locales?: string | undefined;
|
|
14735
14936
|
max_age?: number | undefined;
|
|
14736
14937
|
acr_values?: string | undefined;
|
|
14737
14938
|
claims?: {
|
|
@@ -14862,14 +15063,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14862
15063
|
input: {
|
|
14863
15064
|
form: {
|
|
14864
15065
|
token: string;
|
|
14865
|
-
token_type_hint?: "
|
|
15066
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14866
15067
|
client_id?: string | undefined;
|
|
14867
15068
|
client_secret?: string | undefined;
|
|
14868
15069
|
};
|
|
14869
15070
|
} & {
|
|
14870
15071
|
json: {
|
|
14871
15072
|
token: string;
|
|
14872
|
-
token_type_hint?: "
|
|
15073
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14873
15074
|
client_id?: string | undefined;
|
|
14874
15075
|
client_secret?: string | undefined;
|
|
14875
15076
|
};
|
|
@@ -14881,14 +15082,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14881
15082
|
input: {
|
|
14882
15083
|
form: {
|
|
14883
15084
|
token: string;
|
|
14884
|
-
token_type_hint?: "
|
|
15085
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14885
15086
|
client_id?: string | undefined;
|
|
14886
15087
|
client_secret?: string | undefined;
|
|
14887
15088
|
};
|
|
14888
15089
|
} & {
|
|
14889
15090
|
json: {
|
|
14890
15091
|
token: string;
|
|
14891
|
-
token_type_hint?: "
|
|
15092
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14892
15093
|
client_id?: string | undefined;
|
|
14893
15094
|
client_secret?: string | undefined;
|
|
14894
15095
|
};
|
|
@@ -14903,14 +15104,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14903
15104
|
input: {
|
|
14904
15105
|
form: {
|
|
14905
15106
|
token: string;
|
|
14906
|
-
token_type_hint?: "
|
|
15107
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14907
15108
|
client_id?: string | undefined;
|
|
14908
15109
|
client_secret?: string | undefined;
|
|
14909
15110
|
};
|
|
14910
15111
|
} & {
|
|
14911
15112
|
json: {
|
|
14912
15113
|
token: string;
|
|
14913
|
-
token_type_hint?: "
|
|
15114
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14914
15115
|
client_id?: string | undefined;
|
|
14915
15116
|
client_secret?: string | undefined;
|
|
14916
15117
|
};
|
|
@@ -16258,7 +16459,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16258
16459
|
} & {
|
|
16259
16460
|
form: {
|
|
16260
16461
|
username: string;
|
|
16261
|
-
login_selection?: "
|
|
16462
|
+
login_selection?: "password" | "code" | undefined;
|
|
16262
16463
|
};
|
|
16263
16464
|
};
|
|
16264
16465
|
output: {};
|
|
@@ -16272,7 +16473,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16272
16473
|
} & {
|
|
16273
16474
|
form: {
|
|
16274
16475
|
username: string;
|
|
16275
|
-
login_selection?: "
|
|
16476
|
+
login_selection?: "password" | "code" | undefined;
|
|
16276
16477
|
};
|
|
16277
16478
|
};
|
|
16278
16479
|
output: {};
|
|
@@ -16637,7 +16838,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16637
16838
|
$get: {
|
|
16638
16839
|
input: {
|
|
16639
16840
|
param: {
|
|
16640
|
-
screen: "
|
|
16841
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16641
16842
|
};
|
|
16642
16843
|
} & {
|
|
16643
16844
|
query: {
|
|
@@ -16653,7 +16854,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16653
16854
|
} | {
|
|
16654
16855
|
input: {
|
|
16655
16856
|
param: {
|
|
16656
|
-
screen: "
|
|
16857
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16657
16858
|
};
|
|
16658
16859
|
} & {
|
|
16659
16860
|
query: {
|
|
@@ -16669,7 +16870,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16669
16870
|
} | {
|
|
16670
16871
|
input: {
|
|
16671
16872
|
param: {
|
|
16672
|
-
screen: "
|
|
16873
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16673
16874
|
};
|
|
16674
16875
|
} & {
|
|
16675
16876
|
query: {
|
|
@@ -16689,7 +16890,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16689
16890
|
$post: {
|
|
16690
16891
|
input: {
|
|
16691
16892
|
param: {
|
|
16692
|
-
screen: "
|
|
16893
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16693
16894
|
};
|
|
16694
16895
|
} & {
|
|
16695
16896
|
query: {
|
|
@@ -16707,7 +16908,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16707
16908
|
} | {
|
|
16708
16909
|
input: {
|
|
16709
16910
|
param: {
|
|
16710
|
-
screen: "
|
|
16911
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16711
16912
|
};
|
|
16712
16913
|
} & {
|
|
16713
16914
|
query: {
|