authhero 9.9.1 → 9.10.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 +146 -146
- package/dist/authhero.d.ts +313 -140
- package/dist/authhero.mjs +14974 -14666
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/authorization-code.d.ts +2 -1
- package/dist/types/authentication-flows/client-credentials.d.ts +2 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -5
- package/dist/types/authentication-flows/refresh-token.d.ts +2 -1
- package/dist/types/authentication-flows/token-exchange.d.ts +2 -1
- package/dist/types/helpers/client-assertion-replay.d.ts +21 -0
- package/dist/types/helpers/client-assertion.d.ts +24 -2
- package/dist/types/helpers/default-destinations.d.ts +7 -1
- package/dist/types/helpers/outbox-destinations/index.d.ts +1 -0
- package/dist/types/helpers/outbox-destinations/pipeline.d.ts +63 -0
- package/dist/types/helpers/outbox-relay.d.ts +3 -0
- package/dist/types/helpers/reserved-claims.d.ts +64 -0
- package/dist/types/helpers/run-outbox-relay.d.ts +8 -0
- package/dist/types/index.d.ts +150 -137
- package/dist/types/routes/auth-api/index.d.ts +44 -44
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +24 -24
- package/dist/types/routes/management-api/action-triggers.d.ts +0 -2
- package/dist/types/routes/management-api/actions.d.ts +0 -7
- 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/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +21 -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/index.d.ts +122 -111
- package/dist/types/routes/management-api/keys.d.ts +16 -16
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenants.d.ts +11 -11
- package/dist/types/routes/management-api/users.d.ts +24 -24
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- 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/types/AuthHeroConfig.d.ts +27 -0
- package/dist/types/types/Bindings.d.ts +12 -0
- package/dist/types/types/OutboxMetrics.d.ts +47 -0
- package/dist/types/types/index.d.ts +1 -0
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export { cleanupUserSessions, cleanupSessions, } from "./helpers/user-session-cl
|
|
|
14
14
|
export type { UserSessionCleanupParams } from "./helpers/user-session-cleanup";
|
|
15
15
|
export { drainOutbox } from "./helpers/outbox-relay";
|
|
16
16
|
export type { EventDestination } from "./helpers/outbox-relay";
|
|
17
|
+
export type { OutboxMetric, OutboxMetricName, OutboxMetricsSink, } from "./types/OutboxMetrics";
|
|
17
18
|
export { cleanupOutbox } from "./helpers/outbox-cleanup";
|
|
18
19
|
export { cleanupCodes } from "./helpers/codes-cleanup";
|
|
19
20
|
export { cleanupActionExecutions } from "./helpers/action-executions-cleanup";
|
|
@@ -33,6 +34,7 @@ export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToke
|
|
|
33
34
|
export { CodeHookDestination } from "./helpers/outbox-destinations/code-hooks";
|
|
34
35
|
export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/registration-finalizer";
|
|
35
36
|
export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
|
|
37
|
+
export { PipelineDestination, type PipelineDestinationOptions, type PipelineRecord, } from "./helpers/outbox-destinations/pipeline";
|
|
36
38
|
export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
|
|
37
39
|
export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
|
|
38
40
|
export { CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, } from "./routes/proxy-control-plane/scopes";
|
|
@@ -80,8 +82,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
80
82
|
$get: {
|
|
81
83
|
input: {
|
|
82
84
|
query: {
|
|
83
|
-
include_password_hashes?: "
|
|
84
|
-
gzip?: "
|
|
85
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
86
|
+
gzip?: "true" | "false" | undefined;
|
|
85
87
|
};
|
|
86
88
|
} & {
|
|
87
89
|
header: {
|
|
@@ -94,8 +96,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
94
96
|
} | {
|
|
95
97
|
input: {
|
|
96
98
|
query: {
|
|
97
|
-
include_password_hashes?: "
|
|
98
|
-
gzip?: "
|
|
99
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
100
|
+
gzip?: "true" | "false" | undefined;
|
|
99
101
|
};
|
|
100
102
|
} & {
|
|
101
103
|
header: {
|
|
@@ -114,7 +116,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
114
116
|
$post: {
|
|
115
117
|
input: {
|
|
116
118
|
query: {
|
|
117
|
-
include_password_hashes?: "
|
|
119
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
118
120
|
};
|
|
119
121
|
} & {
|
|
120
122
|
header: {
|
|
@@ -168,7 +170,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
168
170
|
};
|
|
169
171
|
} & {
|
|
170
172
|
json: {
|
|
171
|
-
type: "
|
|
173
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
172
174
|
phone_number?: string | undefined;
|
|
173
175
|
totp_secret?: string | undefined;
|
|
174
176
|
credential_id?: string | undefined;
|
|
@@ -1275,9 +1277,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1275
1277
|
email?: string | undefined;
|
|
1276
1278
|
};
|
|
1277
1279
|
id?: string | undefined;
|
|
1280
|
+
connection_id?: string | undefined;
|
|
1278
1281
|
app_metadata?: Record<string, any> | undefined;
|
|
1279
1282
|
user_metadata?: Record<string, any> | undefined;
|
|
1280
|
-
connection_id?: string | undefined;
|
|
1281
1283
|
roles?: string[] | undefined;
|
|
1282
1284
|
ttl_sec?: number | undefined;
|
|
1283
1285
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1463,8 +1465,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1463
1465
|
};
|
|
1464
1466
|
} & {
|
|
1465
1467
|
json: {
|
|
1466
|
-
show_as_button?: boolean | undefined;
|
|
1467
1468
|
assign_membership_on_login?: boolean | undefined;
|
|
1469
|
+
show_as_button?: boolean | undefined;
|
|
1468
1470
|
is_signup_enabled?: boolean | undefined;
|
|
1469
1471
|
};
|
|
1470
1472
|
};
|
|
@@ -2183,7 +2185,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2183
2185
|
type: "REDIRECT";
|
|
2184
2186
|
action: "REDIRECT_USER";
|
|
2185
2187
|
params: {
|
|
2186
|
-
target: "custom" | "
|
|
2188
|
+
target: "custom" | "change-email" | "account";
|
|
2187
2189
|
custom_url?: string | undefined;
|
|
2188
2190
|
};
|
|
2189
2191
|
alias?: string | undefined;
|
|
@@ -2236,7 +2238,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2236
2238
|
type: "REDIRECT";
|
|
2237
2239
|
action: "REDIRECT_USER";
|
|
2238
2240
|
params: {
|
|
2239
|
-
target: "custom" | "
|
|
2241
|
+
target: "custom" | "change-email" | "account";
|
|
2240
2242
|
custom_url?: string | undefined;
|
|
2241
2243
|
};
|
|
2242
2244
|
alias?: string | undefined;
|
|
@@ -2305,7 +2307,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2305
2307
|
type: "REDIRECT";
|
|
2306
2308
|
action: "REDIRECT_USER";
|
|
2307
2309
|
params: {
|
|
2308
|
-
target: "custom" | "
|
|
2310
|
+
target: "custom" | "change-email" | "account";
|
|
2309
2311
|
custom_url?: string | undefined;
|
|
2310
2312
|
};
|
|
2311
2313
|
alias?: string | undefined;
|
|
@@ -2386,7 +2388,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2386
2388
|
type: "REDIRECT";
|
|
2387
2389
|
action: "REDIRECT_USER";
|
|
2388
2390
|
params: {
|
|
2389
|
-
target: "custom" | "
|
|
2391
|
+
target: "custom" | "change-email" | "account";
|
|
2390
2392
|
custom_url?: string | undefined;
|
|
2391
2393
|
};
|
|
2392
2394
|
alias?: string | undefined;
|
|
@@ -2434,7 +2436,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2434
2436
|
type: "REDIRECT";
|
|
2435
2437
|
action: "REDIRECT_USER";
|
|
2436
2438
|
params: {
|
|
2437
|
-
target: "custom" | "
|
|
2439
|
+
target: "custom" | "change-email" | "account";
|
|
2438
2440
|
custom_url?: string | undefined;
|
|
2439
2441
|
};
|
|
2440
2442
|
alias?: string | undefined;
|
|
@@ -2494,7 +2496,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2494
2496
|
type: "REDIRECT";
|
|
2495
2497
|
action: "REDIRECT_USER";
|
|
2496
2498
|
params: {
|
|
2497
|
-
target: "custom" | "
|
|
2499
|
+
target: "custom" | "change-email" | "account";
|
|
2498
2500
|
custom_url?: string | undefined;
|
|
2499
2501
|
};
|
|
2500
2502
|
alias?: string | undefined;
|
|
@@ -2542,7 +2544,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2542
2544
|
type: "REDIRECT";
|
|
2543
2545
|
action: "REDIRECT_USER";
|
|
2544
2546
|
params: {
|
|
2545
|
-
target: "custom" | "
|
|
2547
|
+
target: "custom" | "change-email" | "account";
|
|
2546
2548
|
custom_url?: string | undefined;
|
|
2547
2549
|
};
|
|
2548
2550
|
alias?: string | undefined;
|
|
@@ -7107,7 +7109,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7107
7109
|
};
|
|
7108
7110
|
};
|
|
7109
7111
|
output: {
|
|
7110
|
-
prompt: "
|
|
7112
|
+
prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
|
|
7111
7113
|
language: string;
|
|
7112
7114
|
}[];
|
|
7113
7115
|
outputFormat: "json";
|
|
@@ -7145,7 +7147,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7145
7147
|
$get: {
|
|
7146
7148
|
input: {
|
|
7147
7149
|
param: {
|
|
7148
|
-
prompt: "
|
|
7150
|
+
prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
|
|
7149
7151
|
language: string;
|
|
7150
7152
|
};
|
|
7151
7153
|
} & {
|
|
@@ -7167,7 +7169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7167
7169
|
$put: {
|
|
7168
7170
|
input: {
|
|
7169
7171
|
param: {
|
|
7170
|
-
prompt: "
|
|
7172
|
+
prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
|
|
7171
7173
|
language: string;
|
|
7172
7174
|
};
|
|
7173
7175
|
} & {
|
|
@@ -7191,7 +7193,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7191
7193
|
$delete: {
|
|
7192
7194
|
input: {
|
|
7193
7195
|
param: {
|
|
7194
|
-
prompt: "
|
|
7196
|
+
prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
|
|
7195
7197
|
language: string;
|
|
7196
7198
|
};
|
|
7197
7199
|
} & {
|
|
@@ -7334,7 +7336,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7334
7336
|
} | undefined;
|
|
7335
7337
|
} | undefined;
|
|
7336
7338
|
passkey_options?: {
|
|
7337
|
-
challenge_ui?: "
|
|
7339
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7338
7340
|
local_enrollment_enabled?: boolean | undefined;
|
|
7339
7341
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7340
7342
|
} | undefined;
|
|
@@ -7472,7 +7474,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7472
7474
|
} | undefined;
|
|
7473
7475
|
} | undefined;
|
|
7474
7476
|
passkey_options?: {
|
|
7475
|
-
challenge_ui?: "
|
|
7477
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7476
7478
|
local_enrollment_enabled?: boolean | undefined;
|
|
7477
7479
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7478
7480
|
} | undefined;
|
|
@@ -7626,7 +7628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7626
7628
|
} | undefined;
|
|
7627
7629
|
} | undefined;
|
|
7628
7630
|
passkey_options?: {
|
|
7629
|
-
challenge_ui?: "
|
|
7631
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7630
7632
|
local_enrollment_enabled?: boolean | undefined;
|
|
7631
7633
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7632
7634
|
} | undefined;
|
|
@@ -7809,7 +7811,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7809
7811
|
} | undefined;
|
|
7810
7812
|
} | undefined;
|
|
7811
7813
|
passkey_options?: {
|
|
7812
|
-
challenge_ui?: "
|
|
7814
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7813
7815
|
local_enrollment_enabled?: boolean | undefined;
|
|
7814
7816
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7815
7817
|
} | undefined;
|
|
@@ -7971,7 +7973,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7971
7973
|
} | undefined;
|
|
7972
7974
|
} | undefined;
|
|
7973
7975
|
passkey_options?: {
|
|
7974
|
-
challenge_ui?: "
|
|
7976
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7975
7977
|
local_enrollment_enabled?: boolean | undefined;
|
|
7976
7978
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7977
7979
|
} | undefined;
|
|
@@ -8886,6 +8888,26 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8886
8888
|
status: 200;
|
|
8887
8889
|
};
|
|
8888
8890
|
};
|
|
8891
|
+
} & {
|
|
8892
|
+
"/bulk-retry": {
|
|
8893
|
+
$post: {
|
|
8894
|
+
input: {
|
|
8895
|
+
header: {
|
|
8896
|
+
"tenant-id"?: string | undefined;
|
|
8897
|
+
};
|
|
8898
|
+
} & {
|
|
8899
|
+
json: {
|
|
8900
|
+
ids: string[];
|
|
8901
|
+
};
|
|
8902
|
+
};
|
|
8903
|
+
output: {
|
|
8904
|
+
replayed: string[];
|
|
8905
|
+
not_found: string[];
|
|
8906
|
+
};
|
|
8907
|
+
outputFormat: "json";
|
|
8908
|
+
status: 200;
|
|
8909
|
+
};
|
|
8910
|
+
};
|
|
8889
8911
|
} & {
|
|
8890
8912
|
"/:id/retry": {
|
|
8891
8913
|
$post: {
|
|
@@ -9114,7 +9136,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9114
9136
|
created_at: string;
|
|
9115
9137
|
updated_at: string;
|
|
9116
9138
|
name: string;
|
|
9117
|
-
provider: "auth0" | "
|
|
9139
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9118
9140
|
connection: string;
|
|
9119
9141
|
enabled: boolean;
|
|
9120
9142
|
credentials: {
|
|
@@ -9146,7 +9168,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9146
9168
|
created_at: string;
|
|
9147
9169
|
updated_at: string;
|
|
9148
9170
|
name: string;
|
|
9149
|
-
provider: "auth0" | "
|
|
9171
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9150
9172
|
connection: string;
|
|
9151
9173
|
enabled: boolean;
|
|
9152
9174
|
credentials: {
|
|
@@ -9172,7 +9194,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9172
9194
|
} & {
|
|
9173
9195
|
json: {
|
|
9174
9196
|
name: string;
|
|
9175
|
-
provider: "auth0" | "
|
|
9197
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9176
9198
|
connection: string;
|
|
9177
9199
|
credentials: {
|
|
9178
9200
|
domain: string;
|
|
@@ -9189,7 +9211,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9189
9211
|
created_at: string;
|
|
9190
9212
|
updated_at: string;
|
|
9191
9213
|
name: string;
|
|
9192
|
-
provider: "auth0" | "
|
|
9214
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9193
9215
|
connection: string;
|
|
9194
9216
|
enabled: boolean;
|
|
9195
9217
|
credentials: {
|
|
@@ -9220,7 +9242,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9220
9242
|
json: {
|
|
9221
9243
|
id?: string | undefined;
|
|
9222
9244
|
name?: string | undefined;
|
|
9223
|
-
provider?: "auth0" | "
|
|
9245
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
9224
9246
|
connection?: string | undefined;
|
|
9225
9247
|
enabled?: boolean | undefined;
|
|
9226
9248
|
credentials?: {
|
|
@@ -9236,7 +9258,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9236
9258
|
created_at: string;
|
|
9237
9259
|
updated_at: string;
|
|
9238
9260
|
name: string;
|
|
9239
|
-
provider: "auth0" | "
|
|
9261
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9240
9262
|
connection: string;
|
|
9241
9263
|
enabled: boolean;
|
|
9242
9264
|
credentials: {
|
|
@@ -9284,7 +9306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9284
9306
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9285
9307
|
};
|
|
9286
9308
|
id: string;
|
|
9287
|
-
status: "
|
|
9309
|
+
status: "suspended" | "active" | "paused";
|
|
9288
9310
|
filters?: {
|
|
9289
9311
|
type: string;
|
|
9290
9312
|
name: string;
|
|
@@ -9316,7 +9338,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9316
9338
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9317
9339
|
};
|
|
9318
9340
|
id: string;
|
|
9319
|
-
status: "
|
|
9341
|
+
status: "suspended" | "active" | "paused";
|
|
9320
9342
|
filters?: {
|
|
9321
9343
|
type: string;
|
|
9322
9344
|
name: string;
|
|
@@ -9341,7 +9363,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9341
9363
|
name: string;
|
|
9342
9364
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9343
9365
|
sink: Record<string, unknown>;
|
|
9344
|
-
status?: "
|
|
9366
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9345
9367
|
filters?: {
|
|
9346
9368
|
type: string;
|
|
9347
9369
|
name: string;
|
|
@@ -9356,7 +9378,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9356
9378
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9357
9379
|
};
|
|
9358
9380
|
id: string;
|
|
9359
|
-
status: "
|
|
9381
|
+
status: "suspended" | "active" | "paused";
|
|
9360
9382
|
filters?: {
|
|
9361
9383
|
type: string;
|
|
9362
9384
|
name: string;
|
|
@@ -9391,7 +9413,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9391
9413
|
}[] | undefined;
|
|
9392
9414
|
isPriority?: boolean | undefined;
|
|
9393
9415
|
id?: string | undefined;
|
|
9394
|
-
status?: "
|
|
9416
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9395
9417
|
created_at?: string | undefined;
|
|
9396
9418
|
updated_at?: string | undefined;
|
|
9397
9419
|
};
|
|
@@ -9403,7 +9425,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9403
9425
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9404
9426
|
};
|
|
9405
9427
|
id: string;
|
|
9406
|
-
status: "
|
|
9428
|
+
status: "suspended" | "active" | "paused";
|
|
9407
9429
|
filters?: {
|
|
9408
9430
|
type: string;
|
|
9409
9431
|
name: string;
|
|
@@ -9454,7 +9476,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9454
9476
|
};
|
|
9455
9477
|
};
|
|
9456
9478
|
output: {
|
|
9457
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
9479
|
+
type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "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";
|
|
9458
9480
|
date: string;
|
|
9459
9481
|
isMobile: boolean;
|
|
9460
9482
|
log_id: string;
|
|
@@ -9493,7 +9515,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9493
9515
|
limit: number;
|
|
9494
9516
|
length: number;
|
|
9495
9517
|
logs: {
|
|
9496
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
9518
|
+
type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "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";
|
|
9497
9519
|
date: string;
|
|
9498
9520
|
isMobile: boolean;
|
|
9499
9521
|
log_id: string;
|
|
@@ -9532,7 +9554,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9532
9554
|
next?: string | undefined;
|
|
9533
9555
|
} | {
|
|
9534
9556
|
logs: {
|
|
9535
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
9557
|
+
type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "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";
|
|
9536
9558
|
date: string;
|
|
9537
9559
|
isMobile: boolean;
|
|
9538
9560
|
log_id: string;
|
|
@@ -9586,7 +9608,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9586
9608
|
};
|
|
9587
9609
|
};
|
|
9588
9610
|
output: {
|
|
9589
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
9611
|
+
type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "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";
|
|
9590
9612
|
date: string;
|
|
9591
9613
|
isMobile: boolean;
|
|
9592
9614
|
log_id: string;
|
|
@@ -10878,7 +10900,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10878
10900
|
} | undefined;
|
|
10879
10901
|
} | undefined;
|
|
10880
10902
|
passkey_options?: {
|
|
10881
|
-
challenge_ui?: "
|
|
10903
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10882
10904
|
local_enrollment_enabled?: boolean | undefined;
|
|
10883
10905
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10884
10906
|
} | undefined;
|
|
@@ -11036,7 +11058,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11036
11058
|
} | undefined;
|
|
11037
11059
|
} | undefined;
|
|
11038
11060
|
passkey_options?: {
|
|
11039
|
-
challenge_ui?: "
|
|
11061
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
11040
11062
|
local_enrollment_enabled?: boolean | undefined;
|
|
11041
11063
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11042
11064
|
} | undefined;
|
|
@@ -11170,15 +11192,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11170
11192
|
cert: string;
|
|
11171
11193
|
fingerprint: string;
|
|
11172
11194
|
thumbprint: string;
|
|
11173
|
-
connection?: string | undefined;
|
|
11174
11195
|
tenant_id?: string | undefined;
|
|
11175
|
-
|
|
11196
|
+
connection?: string | undefined;
|
|
11176
11197
|
next?: boolean | undefined;
|
|
11198
|
+
revoked_at?: string | undefined;
|
|
11199
|
+
current?: boolean | undefined;
|
|
11177
11200
|
previous?: boolean | undefined;
|
|
11178
11201
|
current_since?: string | undefined;
|
|
11179
11202
|
current_until?: string | undefined;
|
|
11180
11203
|
revoked?: boolean | undefined;
|
|
11181
|
-
revoked_at?: string | undefined;
|
|
11182
11204
|
expires_at?: string | undefined;
|
|
11183
11205
|
expired?: boolean | undefined;
|
|
11184
11206
|
inherited?: boolean | undefined;
|
|
@@ -11209,15 +11231,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11209
11231
|
cert: string;
|
|
11210
11232
|
fingerprint: string;
|
|
11211
11233
|
thumbprint: string;
|
|
11212
|
-
connection?: string | undefined;
|
|
11213
11234
|
tenant_id?: string | undefined;
|
|
11214
|
-
|
|
11235
|
+
connection?: string | undefined;
|
|
11215
11236
|
next?: boolean | undefined;
|
|
11237
|
+
revoked_at?: string | undefined;
|
|
11238
|
+
current?: boolean | undefined;
|
|
11216
11239
|
previous?: boolean | undefined;
|
|
11217
11240
|
current_since?: string | undefined;
|
|
11218
11241
|
current_until?: string | undefined;
|
|
11219
11242
|
revoked?: boolean | undefined;
|
|
11220
|
-
revoked_at?: string | undefined;
|
|
11221
11243
|
expires_at?: string | undefined;
|
|
11222
11244
|
expired?: boolean | undefined;
|
|
11223
11245
|
inherited?: boolean | undefined;
|
|
@@ -11247,15 +11269,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11247
11269
|
cert: string;
|
|
11248
11270
|
fingerprint: string;
|
|
11249
11271
|
thumbprint: string;
|
|
11250
|
-
connection?: string | undefined;
|
|
11251
11272
|
tenant_id?: string | undefined;
|
|
11252
|
-
|
|
11273
|
+
connection?: string | undefined;
|
|
11253
11274
|
next?: boolean | undefined;
|
|
11275
|
+
revoked_at?: string | undefined;
|
|
11276
|
+
current?: boolean | undefined;
|
|
11254
11277
|
previous?: boolean | undefined;
|
|
11255
11278
|
current_since?: string | undefined;
|
|
11256
11279
|
current_until?: string | undefined;
|
|
11257
11280
|
revoked?: boolean | undefined;
|
|
11258
|
-
revoked_at?: string | undefined;
|
|
11259
11281
|
expires_at?: string | undefined;
|
|
11260
11282
|
expired?: boolean | undefined;
|
|
11261
11283
|
inherited?: boolean | undefined;
|
|
@@ -11287,15 +11309,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11287
11309
|
cert: string;
|
|
11288
11310
|
fingerprint: string;
|
|
11289
11311
|
thumbprint: string;
|
|
11290
|
-
connection?: string | undefined;
|
|
11291
11312
|
tenant_id?: string | undefined;
|
|
11292
|
-
|
|
11313
|
+
connection?: string | undefined;
|
|
11293
11314
|
next?: boolean | undefined;
|
|
11315
|
+
revoked_at?: string | undefined;
|
|
11316
|
+
current?: boolean | undefined;
|
|
11294
11317
|
previous?: boolean | undefined;
|
|
11295
11318
|
current_since?: string | undefined;
|
|
11296
11319
|
current_until?: string | undefined;
|
|
11297
11320
|
revoked?: boolean | undefined;
|
|
11298
|
-
revoked_at?: string | undefined;
|
|
11299
11321
|
expires_at?: string | undefined;
|
|
11300
11322
|
expired?: boolean | undefined;
|
|
11301
11323
|
inherited?: boolean | undefined;
|
|
@@ -12140,12 +12162,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12140
12162
|
};
|
|
12141
12163
|
};
|
|
12142
12164
|
output: {
|
|
12143
|
-
client_id: string;
|
|
12144
|
-
created_at: string;
|
|
12145
|
-
rotating: boolean;
|
|
12146
12165
|
id: string;
|
|
12166
|
+
created_at: string;
|
|
12167
|
+
client_id: string;
|
|
12147
12168
|
user_id: string;
|
|
12148
|
-
|
|
12169
|
+
rotating: boolean;
|
|
12149
12170
|
device: {
|
|
12150
12171
|
initial_user_agent: string;
|
|
12151
12172
|
initial_ip: string;
|
|
@@ -12154,29 +12175,29 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12154
12175
|
last_ip: string;
|
|
12155
12176
|
last_asn: string;
|
|
12156
12177
|
};
|
|
12178
|
+
login_id: string;
|
|
12157
12179
|
resource_servers: {
|
|
12158
12180
|
audience: string;
|
|
12159
12181
|
scopes: string;
|
|
12160
12182
|
}[];
|
|
12161
|
-
|
|
12183
|
+
revoked_at?: string | undefined;
|
|
12162
12184
|
expires_at?: string | undefined;
|
|
12185
|
+
idle_expires_at?: string | undefined;
|
|
12163
12186
|
session_id?: string | undefined;
|
|
12187
|
+
organization?: string | undefined;
|
|
12164
12188
|
auth_connection?: string | undefined;
|
|
12165
12189
|
auth_strategy?: {
|
|
12166
12190
|
strategy: string;
|
|
12167
12191
|
strategy_type: string;
|
|
12168
12192
|
} | undefined;
|
|
12169
|
-
revoked_at?: string | undefined;
|
|
12170
|
-
idle_expires_at?: string | undefined;
|
|
12171
12193
|
last_exchanged_at?: string | undefined;
|
|
12172
12194
|
}[] | {
|
|
12173
12195
|
tokens: {
|
|
12174
|
-
client_id: string;
|
|
12175
|
-
created_at: string;
|
|
12176
|
-
rotating: boolean;
|
|
12177
12196
|
id: string;
|
|
12197
|
+
created_at: string;
|
|
12198
|
+
client_id: string;
|
|
12178
12199
|
user_id: string;
|
|
12179
|
-
|
|
12200
|
+
rotating: boolean;
|
|
12180
12201
|
device: {
|
|
12181
12202
|
initial_user_agent: string;
|
|
12182
12203
|
initial_ip: string;
|
|
@@ -12185,20 +12206,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12185
12206
|
last_ip: string;
|
|
12186
12207
|
last_asn: string;
|
|
12187
12208
|
};
|
|
12209
|
+
login_id: string;
|
|
12188
12210
|
resource_servers: {
|
|
12189
12211
|
audience: string;
|
|
12190
12212
|
scopes: string;
|
|
12191
12213
|
}[];
|
|
12192
|
-
|
|
12214
|
+
revoked_at?: string | undefined;
|
|
12193
12215
|
expires_at?: string | undefined;
|
|
12216
|
+
idle_expires_at?: string | undefined;
|
|
12194
12217
|
session_id?: string | undefined;
|
|
12218
|
+
organization?: string | undefined;
|
|
12195
12219
|
auth_connection?: string | undefined;
|
|
12196
12220
|
auth_strategy?: {
|
|
12197
12221
|
strategy: string;
|
|
12198
12222
|
strategy_type: string;
|
|
12199
12223
|
} | undefined;
|
|
12200
|
-
revoked_at?: string | undefined;
|
|
12201
|
-
idle_expires_at?: string | undefined;
|
|
12202
12224
|
last_exchanged_at?: string | undefined;
|
|
12203
12225
|
}[];
|
|
12204
12226
|
next?: string | undefined;
|
|
@@ -12207,12 +12229,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12207
12229
|
limit: number;
|
|
12208
12230
|
length: number;
|
|
12209
12231
|
tokens: {
|
|
12210
|
-
client_id: string;
|
|
12211
|
-
created_at: string;
|
|
12212
|
-
rotating: boolean;
|
|
12213
12232
|
id: string;
|
|
12233
|
+
created_at: string;
|
|
12234
|
+
client_id: string;
|
|
12214
12235
|
user_id: string;
|
|
12215
|
-
|
|
12236
|
+
rotating: boolean;
|
|
12216
12237
|
device: {
|
|
12217
12238
|
initial_user_agent: string;
|
|
12218
12239
|
initial_ip: string;
|
|
@@ -12221,20 +12242,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12221
12242
|
last_ip: string;
|
|
12222
12243
|
last_asn: string;
|
|
12223
12244
|
};
|
|
12245
|
+
login_id: string;
|
|
12224
12246
|
resource_servers: {
|
|
12225
12247
|
audience: string;
|
|
12226
12248
|
scopes: string;
|
|
12227
12249
|
}[];
|
|
12228
|
-
|
|
12250
|
+
revoked_at?: string | undefined;
|
|
12229
12251
|
expires_at?: string | undefined;
|
|
12252
|
+
idle_expires_at?: string | undefined;
|
|
12230
12253
|
session_id?: string | undefined;
|
|
12254
|
+
organization?: string | undefined;
|
|
12231
12255
|
auth_connection?: string | undefined;
|
|
12232
12256
|
auth_strategy?: {
|
|
12233
12257
|
strategy: string;
|
|
12234
12258
|
strategy_type: string;
|
|
12235
12259
|
} | undefined;
|
|
12236
|
-
revoked_at?: string | undefined;
|
|
12237
|
-
idle_expires_at?: string | undefined;
|
|
12238
12260
|
last_exchanged_at?: string | undefined;
|
|
12239
12261
|
}[];
|
|
12240
12262
|
total?: number | undefined;
|
|
@@ -12286,7 +12308,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12286
12308
|
};
|
|
12287
12309
|
};
|
|
12288
12310
|
output: {
|
|
12289
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
12311
|
+
type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "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";
|
|
12290
12312
|
date: string;
|
|
12291
12313
|
isMobile: boolean;
|
|
12292
12314
|
log_id: string;
|
|
@@ -12325,7 +12347,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12325
12347
|
limit: number;
|
|
12326
12348
|
length: number;
|
|
12327
12349
|
logs: {
|
|
12328
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
12350
|
+
type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "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";
|
|
12329
12351
|
date: string;
|
|
12330
12352
|
isMobile: boolean;
|
|
12331
12353
|
log_id: string;
|
|
@@ -13456,7 +13478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13456
13478
|
base_focus_color: string;
|
|
13457
13479
|
base_hover_color: string;
|
|
13458
13480
|
body_text: string;
|
|
13459
|
-
captcha_widget_theme: "
|
|
13481
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
13460
13482
|
error: string;
|
|
13461
13483
|
header: string;
|
|
13462
13484
|
icons: string;
|
|
@@ -13507,12 +13529,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13507
13529
|
background_color: string;
|
|
13508
13530
|
background_image_url: string;
|
|
13509
13531
|
page_layout: "center" | "left" | "right";
|
|
13510
|
-
logo_placement?: "
|
|
13532
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13511
13533
|
};
|
|
13512
13534
|
widget: {
|
|
13513
13535
|
header_text_alignment: "center" | "left" | "right";
|
|
13514
13536
|
logo_height: number;
|
|
13515
|
-
logo_position: "
|
|
13537
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13516
13538
|
logo_url: string;
|
|
13517
13539
|
social_buttons_layout: "bottom" | "top";
|
|
13518
13540
|
};
|
|
@@ -13546,7 +13568,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13546
13568
|
base_focus_color: string;
|
|
13547
13569
|
base_hover_color: string;
|
|
13548
13570
|
body_text: string;
|
|
13549
|
-
captcha_widget_theme: "
|
|
13571
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
13550
13572
|
error: string;
|
|
13551
13573
|
header: string;
|
|
13552
13574
|
icons: string;
|
|
@@ -13597,12 +13619,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13597
13619
|
background_color: string;
|
|
13598
13620
|
background_image_url: string;
|
|
13599
13621
|
page_layout: "center" | "left" | "right";
|
|
13600
|
-
logo_placement?: "
|
|
13622
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13601
13623
|
};
|
|
13602
13624
|
widget: {
|
|
13603
13625
|
header_text_alignment: "center" | "left" | "right";
|
|
13604
13626
|
logo_height: number;
|
|
13605
|
-
logo_position: "
|
|
13627
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13606
13628
|
logo_url: string;
|
|
13607
13629
|
social_buttons_layout: "bottom" | "top";
|
|
13608
13630
|
};
|
|
@@ -13625,7 +13647,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13625
13647
|
base_focus_color: string;
|
|
13626
13648
|
base_hover_color: string;
|
|
13627
13649
|
body_text: string;
|
|
13628
|
-
captcha_widget_theme: "
|
|
13650
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
13629
13651
|
error: string;
|
|
13630
13652
|
header: string;
|
|
13631
13653
|
icons: string;
|
|
@@ -13676,12 +13698,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13676
13698
|
background_color: string;
|
|
13677
13699
|
background_image_url: string;
|
|
13678
13700
|
page_layout: "center" | "left" | "right";
|
|
13679
|
-
logo_placement?: "
|
|
13701
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13680
13702
|
};
|
|
13681
13703
|
widget: {
|
|
13682
13704
|
header_text_alignment: "center" | "left" | "right";
|
|
13683
13705
|
logo_height: number;
|
|
13684
|
-
logo_position: "
|
|
13706
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13685
13707
|
logo_url: string;
|
|
13686
13708
|
social_buttons_layout: "bottom" | "top";
|
|
13687
13709
|
};
|
|
@@ -13715,7 +13737,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13715
13737
|
font?: {
|
|
13716
13738
|
url: string;
|
|
13717
13739
|
} | undefined;
|
|
13718
|
-
dark_mode?: "
|
|
13740
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
13719
13741
|
};
|
|
13720
13742
|
outputFormat: "json";
|
|
13721
13743
|
status: 200;
|
|
@@ -13745,7 +13767,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13745
13767
|
font?: {
|
|
13746
13768
|
url: string;
|
|
13747
13769
|
} | undefined;
|
|
13748
|
-
dark_mode?: "
|
|
13770
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
13749
13771
|
};
|
|
13750
13772
|
};
|
|
13751
13773
|
output: {
|
|
@@ -13764,7 +13786,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13764
13786
|
font?: {
|
|
13765
13787
|
url: string;
|
|
13766
13788
|
} | undefined;
|
|
13767
|
-
dark_mode?: "
|
|
13789
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
13768
13790
|
};
|
|
13769
13791
|
outputFormat: "json";
|
|
13770
13792
|
status: 200;
|
|
@@ -13855,7 +13877,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13855
13877
|
font?: {
|
|
13856
13878
|
url: string;
|
|
13857
13879
|
} | undefined;
|
|
13858
|
-
dark_mode?: "
|
|
13880
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
13859
13881
|
} | undefined;
|
|
13860
13882
|
theme?: {
|
|
13861
13883
|
borders?: {
|
|
@@ -13873,7 +13895,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13873
13895
|
base_focus_color: string;
|
|
13874
13896
|
base_hover_color: string;
|
|
13875
13897
|
body_text: string;
|
|
13876
|
-
captcha_widget_theme: "
|
|
13898
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
13877
13899
|
error: string;
|
|
13878
13900
|
header: string;
|
|
13879
13901
|
icons: string;
|
|
@@ -13924,12 +13946,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13924
13946
|
background_color: string;
|
|
13925
13947
|
background_image_url: string;
|
|
13926
13948
|
page_layout: "center" | "left" | "right";
|
|
13927
|
-
logo_placement?: "
|
|
13949
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13928
13950
|
} | undefined;
|
|
13929
13951
|
widget?: {
|
|
13930
13952
|
header_text_alignment: "center" | "left" | "right";
|
|
13931
13953
|
logo_height: number;
|
|
13932
|
-
logo_position: "
|
|
13954
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13933
13955
|
logo_url: string;
|
|
13934
13956
|
social_buttons_layout: "bottom" | "top";
|
|
13935
13957
|
} | undefined;
|
|
@@ -13981,7 +14003,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13981
14003
|
deployed_at?: string | undefined;
|
|
13982
14004
|
secrets?: {
|
|
13983
14005
|
name: string;
|
|
13984
|
-
value?: string | undefined;
|
|
13985
14006
|
}[] | undefined;
|
|
13986
14007
|
};
|
|
13987
14008
|
created_at: string;
|
|
@@ -14043,7 +14064,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14043
14064
|
deployed_at?: string | undefined;
|
|
14044
14065
|
secrets?: {
|
|
14045
14066
|
name: string;
|
|
14046
|
-
value?: string | undefined;
|
|
14047
14067
|
}[] | undefined;
|
|
14048
14068
|
};
|
|
14049
14069
|
created_at: string;
|
|
@@ -14180,7 +14200,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14180
14200
|
deployed_at?: string | undefined;
|
|
14181
14201
|
secrets?: {
|
|
14182
14202
|
name: string;
|
|
14183
|
-
value?: string | undefined;
|
|
14184
14203
|
}[] | undefined;
|
|
14185
14204
|
}[] | {
|
|
14186
14205
|
start: number;
|
|
@@ -14208,7 +14227,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14208
14227
|
deployed_at?: string | undefined;
|
|
14209
14228
|
secrets?: {
|
|
14210
14229
|
name: string;
|
|
14211
|
-
value?: string | undefined;
|
|
14212
14230
|
}[] | undefined;
|
|
14213
14231
|
}[];
|
|
14214
14232
|
total?: number | undefined;
|
|
@@ -14268,7 +14286,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14268
14286
|
deployed_at?: string | undefined;
|
|
14269
14287
|
secrets?: {
|
|
14270
14288
|
name: string;
|
|
14271
|
-
value?: string | undefined;
|
|
14272
14289
|
}[] | undefined;
|
|
14273
14290
|
};
|
|
14274
14291
|
outputFormat: "json";
|
|
@@ -14322,7 +14339,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14322
14339
|
deployed_at?: string | undefined;
|
|
14323
14340
|
secrets?: {
|
|
14324
14341
|
name: string;
|
|
14325
|
-
value?: string | undefined;
|
|
14326
14342
|
}[] | undefined;
|
|
14327
14343
|
};
|
|
14328
14344
|
outputFormat: "json";
|
|
@@ -14416,7 +14432,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14416
14432
|
deployed_at?: string | undefined;
|
|
14417
14433
|
secrets?: {
|
|
14418
14434
|
name: string;
|
|
14419
|
-
value?: string | undefined;
|
|
14420
14435
|
}[] | undefined;
|
|
14421
14436
|
};
|
|
14422
14437
|
outputFormat: "json";
|
|
@@ -14513,7 +14528,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14513
14528
|
deployed_at?: string | undefined;
|
|
14514
14529
|
secrets?: {
|
|
14515
14530
|
name: string;
|
|
14516
|
-
value?: string | undefined;
|
|
14517
14531
|
}[] | undefined;
|
|
14518
14532
|
};
|
|
14519
14533
|
outputFormat: "json";
|
|
@@ -14730,7 +14744,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14730
14744
|
deployed_at?: string | undefined;
|
|
14731
14745
|
secrets?: {
|
|
14732
14746
|
name: string;
|
|
14733
|
-
value?: string | undefined;
|
|
14734
14747
|
}[] | undefined;
|
|
14735
14748
|
};
|
|
14736
14749
|
outputFormat: "json";
|
|
@@ -15255,7 +15268,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15255
15268
|
client_id: string;
|
|
15256
15269
|
redirect_url?: string | undefined;
|
|
15257
15270
|
login_hint?: string | undefined;
|
|
15258
|
-
screen_hint?: "
|
|
15271
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
15259
15272
|
};
|
|
15260
15273
|
};
|
|
15261
15274
|
output: {};
|
|
@@ -15267,7 +15280,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15267
15280
|
client_id: string;
|
|
15268
15281
|
redirect_url?: string | undefined;
|
|
15269
15282
|
login_hint?: string | undefined;
|
|
15270
|
-
screen_hint?: "
|
|
15283
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
15271
15284
|
};
|
|
15272
15285
|
};
|
|
15273
15286
|
output: {
|
|
@@ -15544,19 +15557,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15544
15557
|
email: string;
|
|
15545
15558
|
send: "code" | "link";
|
|
15546
15559
|
authParams: {
|
|
15560
|
+
audience?: string | undefined;
|
|
15561
|
+
username?: string | undefined;
|
|
15562
|
+
prompt?: string | undefined;
|
|
15547
15563
|
scope?: string | undefined;
|
|
15548
|
-
|
|
15549
|
-
act_as?: string | undefined;
|
|
15564
|
+
organization?: string | undefined;
|
|
15550
15565
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15551
15566
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15567
|
+
state?: string | undefined;
|
|
15552
15568
|
redirect_uri?: string | undefined;
|
|
15553
|
-
|
|
15554
|
-
organization?: string | undefined;
|
|
15569
|
+
act_as?: string | undefined;
|
|
15555
15570
|
nonce?: string | undefined;
|
|
15556
|
-
prompt?: string | undefined;
|
|
15557
15571
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15558
15572
|
code_challenge?: string | undefined;
|
|
15559
|
-
username?: string | undefined;
|
|
15560
15573
|
ui_locales?: string | undefined;
|
|
15561
15574
|
max_age?: number | undefined;
|
|
15562
15575
|
acr_values?: string | undefined;
|
|
@@ -15580,19 +15593,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15580
15593
|
phone_number: string;
|
|
15581
15594
|
send: "code" | "link";
|
|
15582
15595
|
authParams: {
|
|
15596
|
+
audience?: string | undefined;
|
|
15597
|
+
username?: string | undefined;
|
|
15598
|
+
prompt?: string | undefined;
|
|
15583
15599
|
scope?: string | undefined;
|
|
15584
|
-
|
|
15585
|
-
act_as?: string | undefined;
|
|
15600
|
+
organization?: string | undefined;
|
|
15586
15601
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15587
15602
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15603
|
+
state?: string | undefined;
|
|
15588
15604
|
redirect_uri?: string | undefined;
|
|
15589
|
-
|
|
15590
|
-
organization?: string | undefined;
|
|
15605
|
+
act_as?: string | undefined;
|
|
15591
15606
|
nonce?: string | undefined;
|
|
15592
|
-
prompt?: string | undefined;
|
|
15593
15607
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15594
15608
|
code_challenge?: string | undefined;
|
|
15595
|
-
username?: string | undefined;
|
|
15596
15609
|
ui_locales?: string | undefined;
|
|
15597
15610
|
max_age?: number | undefined;
|
|
15598
15611
|
acr_values?: string | undefined;
|
|
@@ -15887,17 +15900,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15887
15900
|
client_assertion_type?: string | undefined;
|
|
15888
15901
|
};
|
|
15889
15902
|
};
|
|
15890
|
-
output: {
|
|
15891
|
-
|
|
15892
|
-
|
|
15893
|
-
expires_in: number;
|
|
15894
|
-
id_token?: string | undefined;
|
|
15895
|
-
scope?: string | undefined;
|
|
15896
|
-
state?: string | undefined;
|
|
15897
|
-
refresh_token?: string | undefined;
|
|
15898
|
-
};
|
|
15899
|
-
outputFormat: "json";
|
|
15900
|
-
status: 200;
|
|
15903
|
+
output: {};
|
|
15904
|
+
outputFormat: string;
|
|
15905
|
+
status: 302;
|
|
15901
15906
|
} | {
|
|
15902
15907
|
input: {
|
|
15903
15908
|
form: {
|
|
@@ -15998,9 +16003,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15998
16003
|
client_assertion_type?: string | undefined;
|
|
15999
16004
|
};
|
|
16000
16005
|
};
|
|
16001
|
-
output: {
|
|
16002
|
-
|
|
16003
|
-
|
|
16006
|
+
output: {
|
|
16007
|
+
access_token: string;
|
|
16008
|
+
token_type: string;
|
|
16009
|
+
expires_in: number;
|
|
16010
|
+
id_token?: string | undefined;
|
|
16011
|
+
scope?: string | undefined;
|
|
16012
|
+
state?: string | undefined;
|
|
16013
|
+
refresh_token?: string | undefined;
|
|
16014
|
+
};
|
|
16015
|
+
outputFormat: "json";
|
|
16016
|
+
status: 200;
|
|
16004
16017
|
} | {
|
|
16005
16018
|
input: {
|
|
16006
16019
|
form: {
|
|
@@ -16521,7 +16534,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16521
16534
|
};
|
|
16522
16535
|
output: {};
|
|
16523
16536
|
outputFormat: string;
|
|
16524
|
-
status:
|
|
16537
|
+
status: 200;
|
|
16525
16538
|
} | {
|
|
16526
16539
|
input: {
|
|
16527
16540
|
query: {
|
|
@@ -16535,7 +16548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16535
16548
|
};
|
|
16536
16549
|
output: {};
|
|
16537
16550
|
outputFormat: string;
|
|
16538
|
-
status:
|
|
16551
|
+
status: 302;
|
|
16539
16552
|
} | {
|
|
16540
16553
|
input: {
|
|
16541
16554
|
query: {
|
|
@@ -17523,7 +17536,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17523
17536
|
$get: {
|
|
17524
17537
|
input: {
|
|
17525
17538
|
param: {
|
|
17526
|
-
screen: "login" | "signup" | "
|
|
17539
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "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";
|
|
17527
17540
|
};
|
|
17528
17541
|
} & {
|
|
17529
17542
|
query: {
|
|
@@ -17539,7 +17552,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17539
17552
|
} | {
|
|
17540
17553
|
input: {
|
|
17541
17554
|
param: {
|
|
17542
|
-
screen: "login" | "signup" | "
|
|
17555
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "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";
|
|
17543
17556
|
};
|
|
17544
17557
|
} & {
|
|
17545
17558
|
query: {
|
|
@@ -17555,7 +17568,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17555
17568
|
} | {
|
|
17556
17569
|
input: {
|
|
17557
17570
|
param: {
|
|
17558
|
-
screen: "login" | "signup" | "
|
|
17571
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "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";
|
|
17559
17572
|
};
|
|
17560
17573
|
} & {
|
|
17561
17574
|
query: {
|
|
@@ -17575,7 +17588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17575
17588
|
$post: {
|
|
17576
17589
|
input: {
|
|
17577
17590
|
param: {
|
|
17578
|
-
screen: "login" | "signup" | "
|
|
17591
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "enter-password" | "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";
|
|
17579
17592
|
};
|
|
17580
17593
|
} & {
|
|
17581
17594
|
query: {
|
|
@@ -17593,7 +17606,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17593
17606
|
} | {
|
|
17594
17607
|
input: {
|
|
17595
17608
|
param: {
|
|
17596
|
-
screen: "login" | "signup" | "
|
|
17609
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "enter-password" | "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";
|
|
17597
17610
|
};
|
|
17598
17611
|
} & {
|
|
17599
17612
|
query: {
|