authhero 9.9.0 → 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 +537 -338
- package/dist/authhero.d.ts +297 -124
- package/dist/authhero.mjs +14879 -14098
- 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/grant-tokens.d.ts +16 -0
- 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/refresh-token-lifetime.d.ts +103 -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/hooks/addDataHooks.d.ts +4 -3
- package/dist/types/index.d.ts +134 -121
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- 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/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/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +21 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +107 -96
- package/dist/types/routes/management-api/keys.d.ts +12 -12
- 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 +5 -5
- 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/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +11 -11
- package/dist/types/routes/management-api/users.d.ts +15 -15
- 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/info-code-exchange.d.ts +27 -0
- package/dist/types/routes/universal-login/token-info-page.d.ts +26 -0
- 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/dist/types/utils/email.d.ts +21 -9
- package/package.json +8 -8
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "push" | "email" | "passkey" | "
|
|
99
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "
|
|
394
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "
|
|
402
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "
|
|
415
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "
|
|
427
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1196,19 +1196,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1196
1196
|
} & {
|
|
1197
1197
|
json: {
|
|
1198
1198
|
client_id: string;
|
|
1199
|
-
invitee: {
|
|
1200
|
-
email?: string | undefined;
|
|
1201
|
-
};
|
|
1202
1199
|
inviter: {
|
|
1203
1200
|
name?: string | undefined;
|
|
1204
1201
|
};
|
|
1202
|
+
invitee: {
|
|
1203
|
+
email?: string | undefined;
|
|
1204
|
+
};
|
|
1205
1205
|
id?: string | undefined;
|
|
1206
|
+
connection_id?: string | undefined;
|
|
1206
1207
|
app_metadata?: Record<string, any> | undefined;
|
|
1207
1208
|
user_metadata?: Record<string, any> | undefined;
|
|
1208
|
-
connection_id?: string | undefined;
|
|
1209
1209
|
roles?: string[] | undefined;
|
|
1210
|
-
send_invitation_email?: boolean | undefined;
|
|
1211
1210
|
ttl_sec?: number | undefined;
|
|
1211
|
+
send_invitation_email?: boolean | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
1214
1214
|
output: {
|
|
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1391
1391
|
};
|
|
1392
1392
|
} & {
|
|
1393
1393
|
json: {
|
|
1394
|
-
show_as_button?: boolean | undefined;
|
|
1395
1394
|
assign_membership_on_login?: boolean | undefined;
|
|
1395
|
+
show_as_button?: boolean | undefined;
|
|
1396
1396
|
is_signup_enabled?: boolean | undefined;
|
|
1397
1397
|
};
|
|
1398
1398
|
};
|
|
@@ -1963,8 +1963,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1963
1963
|
};
|
|
1964
1964
|
} & {
|
|
1965
1965
|
query: {
|
|
1966
|
-
page?: string | undefined;
|
|
1967
1966
|
from?: string | undefined;
|
|
1967
|
+
page?: string | undefined;
|
|
1968
1968
|
include_totals?: string | undefined;
|
|
1969
1969
|
per_page?: string | undefined;
|
|
1970
1970
|
take?: string | undefined;
|
|
@@ -7035,7 +7035,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7035
7035
|
};
|
|
7036
7036
|
};
|
|
7037
7037
|
output: {
|
|
7038
|
-
prompt: "
|
|
7038
|
+
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";
|
|
7039
7039
|
language: string;
|
|
7040
7040
|
}[];
|
|
7041
7041
|
outputFormat: "json";
|
|
@@ -7073,7 +7073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7073
7073
|
$get: {
|
|
7074
7074
|
input: {
|
|
7075
7075
|
param: {
|
|
7076
|
-
prompt: "
|
|
7076
|
+
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";
|
|
7077
7077
|
language: string;
|
|
7078
7078
|
};
|
|
7079
7079
|
} & {
|
|
@@ -7095,7 +7095,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7095
7095
|
$put: {
|
|
7096
7096
|
input: {
|
|
7097
7097
|
param: {
|
|
7098
|
-
prompt: "
|
|
7098
|
+
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";
|
|
7099
7099
|
language: string;
|
|
7100
7100
|
};
|
|
7101
7101
|
} & {
|
|
@@ -7119,7 +7119,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7119
7119
|
$delete: {
|
|
7120
7120
|
input: {
|
|
7121
7121
|
param: {
|
|
7122
|
-
prompt: "
|
|
7122
|
+
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";
|
|
7123
7123
|
language: string;
|
|
7124
7124
|
};
|
|
7125
7125
|
} & {
|
|
@@ -8731,7 +8731,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8731
8731
|
log_type: string;
|
|
8732
8732
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8733
8733
|
actor: {
|
|
8734
|
-
type: "
|
|
8734
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8735
8735
|
id?: string | undefined;
|
|
8736
8736
|
email?: string | undefined;
|
|
8737
8737
|
org_id?: string | undefined;
|
|
@@ -8814,6 +8814,26 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8814
8814
|
status: 200;
|
|
8815
8815
|
};
|
|
8816
8816
|
};
|
|
8817
|
+
} & {
|
|
8818
|
+
"/bulk-retry": {
|
|
8819
|
+
$post: {
|
|
8820
|
+
input: {
|
|
8821
|
+
header: {
|
|
8822
|
+
"tenant-id"?: string | undefined;
|
|
8823
|
+
};
|
|
8824
|
+
} & {
|
|
8825
|
+
json: {
|
|
8826
|
+
ids: string[];
|
|
8827
|
+
};
|
|
8828
|
+
};
|
|
8829
|
+
output: {
|
|
8830
|
+
replayed: string[];
|
|
8831
|
+
not_found: string[];
|
|
8832
|
+
};
|
|
8833
|
+
outputFormat: "json";
|
|
8834
|
+
status: 200;
|
|
8835
|
+
};
|
|
8836
|
+
};
|
|
8817
8837
|
} & {
|
|
8818
8838
|
"/:id/retry": {
|
|
8819
8839
|
$post: {
|
|
@@ -9042,7 +9062,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9042
9062
|
created_at: string;
|
|
9043
9063
|
updated_at: string;
|
|
9044
9064
|
name: string;
|
|
9045
|
-
provider: "auth0" | "
|
|
9065
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9046
9066
|
connection: string;
|
|
9047
9067
|
enabled: boolean;
|
|
9048
9068
|
credentials: {
|
|
@@ -9074,7 +9094,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9074
9094
|
created_at: string;
|
|
9075
9095
|
updated_at: string;
|
|
9076
9096
|
name: string;
|
|
9077
|
-
provider: "auth0" | "
|
|
9097
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9078
9098
|
connection: string;
|
|
9079
9099
|
enabled: boolean;
|
|
9080
9100
|
credentials: {
|
|
@@ -9100,7 +9120,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9100
9120
|
} & {
|
|
9101
9121
|
json: {
|
|
9102
9122
|
name: string;
|
|
9103
|
-
provider: "auth0" | "
|
|
9123
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9104
9124
|
connection: string;
|
|
9105
9125
|
credentials: {
|
|
9106
9126
|
domain: string;
|
|
@@ -9117,7 +9137,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9117
9137
|
created_at: string;
|
|
9118
9138
|
updated_at: string;
|
|
9119
9139
|
name: string;
|
|
9120
|
-
provider: "auth0" | "
|
|
9140
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9121
9141
|
connection: string;
|
|
9122
9142
|
enabled: boolean;
|
|
9123
9143
|
credentials: {
|
|
@@ -9148,7 +9168,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9148
9168
|
json: {
|
|
9149
9169
|
id?: string | undefined;
|
|
9150
9170
|
name?: string | undefined;
|
|
9151
|
-
provider?: "auth0" | "
|
|
9171
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
9152
9172
|
connection?: string | undefined;
|
|
9153
9173
|
enabled?: boolean | undefined;
|
|
9154
9174
|
credentials?: {
|
|
@@ -9164,7 +9184,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9164
9184
|
created_at: string;
|
|
9165
9185
|
updated_at: string;
|
|
9166
9186
|
name: string;
|
|
9167
|
-
provider: "auth0" | "
|
|
9187
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9168
9188
|
connection: string;
|
|
9169
9189
|
enabled: boolean;
|
|
9170
9190
|
credentials: {
|
|
@@ -9212,7 +9232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9212
9232
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9213
9233
|
};
|
|
9214
9234
|
id: string;
|
|
9215
|
-
status: "
|
|
9235
|
+
status: "suspended" | "active" | "paused";
|
|
9216
9236
|
filters?: {
|
|
9217
9237
|
type: string;
|
|
9218
9238
|
name: string;
|
|
@@ -9244,7 +9264,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9244
9264
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9245
9265
|
};
|
|
9246
9266
|
id: string;
|
|
9247
|
-
status: "
|
|
9267
|
+
status: "suspended" | "active" | "paused";
|
|
9248
9268
|
filters?: {
|
|
9249
9269
|
type: string;
|
|
9250
9270
|
name: string;
|
|
@@ -9269,7 +9289,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9269
9289
|
name: string;
|
|
9270
9290
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9271
9291
|
sink: Record<string, unknown>;
|
|
9272
|
-
status?: "
|
|
9292
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9273
9293
|
filters?: {
|
|
9274
9294
|
type: string;
|
|
9275
9295
|
name: string;
|
|
@@ -9284,7 +9304,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9284
9304
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9285
9305
|
};
|
|
9286
9306
|
id: string;
|
|
9287
|
-
status: "
|
|
9307
|
+
status: "suspended" | "active" | "paused";
|
|
9288
9308
|
filters?: {
|
|
9289
9309
|
type: string;
|
|
9290
9310
|
name: string;
|
|
@@ -9319,7 +9339,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9319
9339
|
}[] | undefined;
|
|
9320
9340
|
isPriority?: boolean | undefined;
|
|
9321
9341
|
id?: string | undefined;
|
|
9322
|
-
status?: "
|
|
9342
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9323
9343
|
created_at?: string | undefined;
|
|
9324
9344
|
updated_at?: string | undefined;
|
|
9325
9345
|
};
|
|
@@ -9331,7 +9351,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9331
9351
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9332
9352
|
};
|
|
9333
9353
|
id: string;
|
|
9334
|
-
status: "
|
|
9354
|
+
status: "suspended" | "active" | "paused";
|
|
9335
9355
|
filters?: {
|
|
9336
9356
|
type: string;
|
|
9337
9357
|
name: string;
|
|
@@ -9382,7 +9402,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9382
9402
|
};
|
|
9383
9403
|
};
|
|
9384
9404
|
output: {
|
|
9385
|
-
type: "
|
|
9405
|
+
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";
|
|
9386
9406
|
date: string;
|
|
9387
9407
|
isMobile: boolean;
|
|
9388
9408
|
log_id: string;
|
|
@@ -9421,7 +9441,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9421
9441
|
limit: number;
|
|
9422
9442
|
length: number;
|
|
9423
9443
|
logs: {
|
|
9424
|
-
type: "
|
|
9444
|
+
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";
|
|
9425
9445
|
date: string;
|
|
9426
9446
|
isMobile: boolean;
|
|
9427
9447
|
log_id: string;
|
|
@@ -9460,7 +9480,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9460
9480
|
next?: string | undefined;
|
|
9461
9481
|
} | {
|
|
9462
9482
|
logs: {
|
|
9463
|
-
type: "
|
|
9483
|
+
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";
|
|
9464
9484
|
date: string;
|
|
9465
9485
|
isMobile: boolean;
|
|
9466
9486
|
log_id: string;
|
|
@@ -9514,7 +9534,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9514
9534
|
};
|
|
9515
9535
|
};
|
|
9516
9536
|
output: {
|
|
9517
|
-
type: "
|
|
9537
|
+
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";
|
|
9518
9538
|
date: string;
|
|
9519
9539
|
isMobile: boolean;
|
|
9520
9540
|
log_id: string;
|
|
@@ -11098,11 +11118,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11098
11118
|
cert: string;
|
|
11099
11119
|
fingerprint: string;
|
|
11100
11120
|
thumbprint: string;
|
|
11101
|
-
revoked_at?: string | undefined;
|
|
11102
11121
|
tenant_id?: string | undefined;
|
|
11103
11122
|
connection?: string | undefined;
|
|
11104
|
-
current?: boolean | undefined;
|
|
11105
11123
|
next?: boolean | undefined;
|
|
11124
|
+
revoked_at?: string | undefined;
|
|
11125
|
+
current?: boolean | undefined;
|
|
11106
11126
|
previous?: boolean | undefined;
|
|
11107
11127
|
current_since?: string | undefined;
|
|
11108
11128
|
current_until?: string | undefined;
|
|
@@ -11137,11 +11157,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11137
11157
|
cert: string;
|
|
11138
11158
|
fingerprint: string;
|
|
11139
11159
|
thumbprint: string;
|
|
11140
|
-
revoked_at?: string | undefined;
|
|
11141
11160
|
tenant_id?: string | undefined;
|
|
11142
11161
|
connection?: string | undefined;
|
|
11143
|
-
current?: boolean | undefined;
|
|
11144
11162
|
next?: boolean | undefined;
|
|
11163
|
+
revoked_at?: string | undefined;
|
|
11164
|
+
current?: boolean | undefined;
|
|
11145
11165
|
previous?: boolean | undefined;
|
|
11146
11166
|
current_since?: string | undefined;
|
|
11147
11167
|
current_until?: string | undefined;
|
|
@@ -11175,11 +11195,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11175
11195
|
cert: string;
|
|
11176
11196
|
fingerprint: string;
|
|
11177
11197
|
thumbprint: string;
|
|
11178
|
-
revoked_at?: string | undefined;
|
|
11179
11198
|
tenant_id?: string | undefined;
|
|
11180
11199
|
connection?: string | undefined;
|
|
11181
|
-
current?: boolean | undefined;
|
|
11182
11200
|
next?: boolean | undefined;
|
|
11201
|
+
revoked_at?: string | undefined;
|
|
11202
|
+
current?: boolean | undefined;
|
|
11183
11203
|
previous?: boolean | undefined;
|
|
11184
11204
|
current_since?: string | undefined;
|
|
11185
11205
|
current_until?: string | undefined;
|
|
@@ -11215,11 +11235,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11215
11235
|
cert: string;
|
|
11216
11236
|
fingerprint: string;
|
|
11217
11237
|
thumbprint: string;
|
|
11218
|
-
revoked_at?: string | undefined;
|
|
11219
11238
|
tenant_id?: string | undefined;
|
|
11220
11239
|
connection?: string | undefined;
|
|
11221
|
-
current?: boolean | undefined;
|
|
11222
11240
|
next?: boolean | undefined;
|
|
11241
|
+
revoked_at?: string | undefined;
|
|
11242
|
+
current?: boolean | undefined;
|
|
11223
11243
|
previous?: boolean | undefined;
|
|
11224
11244
|
current_since?: string | undefined;
|
|
11225
11245
|
current_until?: string | undefined;
|
|
@@ -12068,9 +12088,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12068
12088
|
};
|
|
12069
12089
|
};
|
|
12070
12090
|
output: {
|
|
12071
|
-
created_at: string;
|
|
12072
12091
|
id: string;
|
|
12092
|
+
created_at: string;
|
|
12093
|
+
client_id: string;
|
|
12073
12094
|
user_id: string;
|
|
12095
|
+
rotating: boolean;
|
|
12074
12096
|
device: {
|
|
12075
12097
|
initial_user_agent: string;
|
|
12076
12098
|
initial_ip: string;
|
|
@@ -12079,8 +12101,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12079
12101
|
last_ip: string;
|
|
12080
12102
|
last_asn: string;
|
|
12081
12103
|
};
|
|
12082
|
-
client_id: string;
|
|
12083
|
-
rotating: boolean;
|
|
12084
12104
|
login_id: string;
|
|
12085
12105
|
resource_servers: {
|
|
12086
12106
|
audience: string;
|
|
@@ -12090,21 +12110,20 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12090
12110
|
expires_at?: string | undefined;
|
|
12091
12111
|
idle_expires_at?: string | undefined;
|
|
12092
12112
|
session_id?: string | undefined;
|
|
12113
|
+
organization?: string | undefined;
|
|
12093
12114
|
auth_connection?: string | undefined;
|
|
12094
12115
|
auth_strategy?: {
|
|
12095
12116
|
strategy: string;
|
|
12096
12117
|
strategy_type: string;
|
|
12097
12118
|
} | undefined;
|
|
12098
|
-
organization?: string | undefined;
|
|
12099
12119
|
last_exchanged_at?: string | undefined;
|
|
12100
12120
|
}[] | {
|
|
12101
|
-
start: number;
|
|
12102
|
-
limit: number;
|
|
12103
|
-
length: number;
|
|
12104
12121
|
tokens: {
|
|
12105
|
-
created_at: string;
|
|
12106
12122
|
id: string;
|
|
12123
|
+
created_at: string;
|
|
12124
|
+
client_id: string;
|
|
12107
12125
|
user_id: string;
|
|
12126
|
+
rotating: boolean;
|
|
12108
12127
|
device: {
|
|
12109
12128
|
initial_user_agent: string;
|
|
12110
12129
|
initial_ip: string;
|
|
@@ -12113,8 +12132,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12113
12132
|
last_ip: string;
|
|
12114
12133
|
last_asn: string;
|
|
12115
12134
|
};
|
|
12116
|
-
client_id: string;
|
|
12117
|
-
rotating: boolean;
|
|
12118
12135
|
login_id: string;
|
|
12119
12136
|
resource_servers: {
|
|
12120
12137
|
audience: string;
|
|
@@ -12124,21 +12141,25 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12124
12141
|
expires_at?: string | undefined;
|
|
12125
12142
|
idle_expires_at?: string | undefined;
|
|
12126
12143
|
session_id?: string | undefined;
|
|
12144
|
+
organization?: string | undefined;
|
|
12127
12145
|
auth_connection?: string | undefined;
|
|
12128
12146
|
auth_strategy?: {
|
|
12129
12147
|
strategy: string;
|
|
12130
12148
|
strategy_type: string;
|
|
12131
12149
|
} | undefined;
|
|
12132
|
-
organization?: string | undefined;
|
|
12133
12150
|
last_exchanged_at?: string | undefined;
|
|
12134
12151
|
}[];
|
|
12135
|
-
total?: number | undefined;
|
|
12136
12152
|
next?: string | undefined;
|
|
12137
12153
|
} | {
|
|
12154
|
+
start: number;
|
|
12155
|
+
limit: number;
|
|
12156
|
+
length: number;
|
|
12138
12157
|
tokens: {
|
|
12139
|
-
created_at: string;
|
|
12140
12158
|
id: string;
|
|
12159
|
+
created_at: string;
|
|
12160
|
+
client_id: string;
|
|
12141
12161
|
user_id: string;
|
|
12162
|
+
rotating: boolean;
|
|
12142
12163
|
device: {
|
|
12143
12164
|
initial_user_agent: string;
|
|
12144
12165
|
initial_ip: string;
|
|
@@ -12147,8 +12168,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12147
12168
|
last_ip: string;
|
|
12148
12169
|
last_asn: string;
|
|
12149
12170
|
};
|
|
12150
|
-
client_id: string;
|
|
12151
|
-
rotating: boolean;
|
|
12152
12171
|
login_id: string;
|
|
12153
12172
|
resource_servers: {
|
|
12154
12173
|
audience: string;
|
|
@@ -12158,14 +12177,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12158
12177
|
expires_at?: string | undefined;
|
|
12159
12178
|
idle_expires_at?: string | undefined;
|
|
12160
12179
|
session_id?: string | undefined;
|
|
12180
|
+
organization?: string | undefined;
|
|
12161
12181
|
auth_connection?: string | undefined;
|
|
12162
12182
|
auth_strategy?: {
|
|
12163
12183
|
strategy: string;
|
|
12164
12184
|
strategy_type: string;
|
|
12165
12185
|
} | undefined;
|
|
12166
|
-
organization?: string | undefined;
|
|
12167
12186
|
last_exchanged_at?: string | undefined;
|
|
12168
12187
|
}[];
|
|
12188
|
+
total?: number | undefined;
|
|
12169
12189
|
next?: string | undefined;
|
|
12170
12190
|
};
|
|
12171
12191
|
outputFormat: "json";
|
|
@@ -12214,7 +12234,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12214
12234
|
};
|
|
12215
12235
|
};
|
|
12216
12236
|
output: {
|
|
12217
|
-
type: "
|
|
12237
|
+
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";
|
|
12218
12238
|
date: string;
|
|
12219
12239
|
isMobile: boolean;
|
|
12220
12240
|
log_id: string;
|
|
@@ -12253,7 +12273,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12253
12273
|
limit: number;
|
|
12254
12274
|
length: number;
|
|
12255
12275
|
logs: {
|
|
12256
|
-
type: "
|
|
12276
|
+
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";
|
|
12257
12277
|
date: string;
|
|
12258
12278
|
isMobile: boolean;
|
|
12259
12279
|
log_id: string;
|
|
@@ -12572,7 +12592,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12572
12592
|
};
|
|
12573
12593
|
} & {
|
|
12574
12594
|
json: {
|
|
12575
|
-
template: "
|
|
12595
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12576
12596
|
body: string;
|
|
12577
12597
|
from: string;
|
|
12578
12598
|
subject: string;
|
|
@@ -12593,7 +12613,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12593
12613
|
};
|
|
12594
12614
|
} & {
|
|
12595
12615
|
json: {
|
|
12596
|
-
template: "
|
|
12616
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12597
12617
|
body: string;
|
|
12598
12618
|
from: string;
|
|
12599
12619
|
subject: string;
|
|
@@ -12605,7 +12625,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12605
12625
|
};
|
|
12606
12626
|
};
|
|
12607
12627
|
output: {
|
|
12608
|
-
template: "
|
|
12628
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12609
12629
|
body: string;
|
|
12610
12630
|
from: string;
|
|
12611
12631
|
subject: string;
|
|
@@ -12628,7 +12648,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12628
12648
|
};
|
|
12629
12649
|
};
|
|
12630
12650
|
output: {
|
|
12631
|
-
name: "
|
|
12651
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12632
12652
|
body: string;
|
|
12633
12653
|
subject: string;
|
|
12634
12654
|
}[];
|
|
@@ -12641,7 +12661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12641
12661
|
$get: {
|
|
12642
12662
|
input: {
|
|
12643
12663
|
param: {
|
|
12644
|
-
templateName: "
|
|
12664
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12645
12665
|
};
|
|
12646
12666
|
} & {
|
|
12647
12667
|
header: {
|
|
@@ -12654,7 +12674,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12654
12674
|
} | {
|
|
12655
12675
|
input: {
|
|
12656
12676
|
param: {
|
|
12657
|
-
templateName: "
|
|
12677
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12658
12678
|
};
|
|
12659
12679
|
} & {
|
|
12660
12680
|
header: {
|
|
@@ -12662,7 +12682,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12662
12682
|
};
|
|
12663
12683
|
};
|
|
12664
12684
|
output: {
|
|
12665
|
-
template: "
|
|
12685
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12666
12686
|
body: string;
|
|
12667
12687
|
from: string;
|
|
12668
12688
|
subject: string;
|
|
@@ -12681,7 +12701,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12681
12701
|
$put: {
|
|
12682
12702
|
input: {
|
|
12683
12703
|
param: {
|
|
12684
|
-
templateName: "
|
|
12704
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12685
12705
|
};
|
|
12686
12706
|
} & {
|
|
12687
12707
|
header: {
|
|
@@ -12689,7 +12709,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12689
12709
|
};
|
|
12690
12710
|
} & {
|
|
12691
12711
|
json: {
|
|
12692
|
-
template: "
|
|
12712
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12693
12713
|
body: string;
|
|
12694
12714
|
subject: string;
|
|
12695
12715
|
syntax?: "liquid" | undefined;
|
|
@@ -12701,7 +12721,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12701
12721
|
};
|
|
12702
12722
|
};
|
|
12703
12723
|
output: {
|
|
12704
|
-
template: "
|
|
12724
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12705
12725
|
body: string;
|
|
12706
12726
|
from: string;
|
|
12707
12727
|
subject: string;
|
|
@@ -12720,7 +12740,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12720
12740
|
$patch: {
|
|
12721
12741
|
input: {
|
|
12722
12742
|
param: {
|
|
12723
|
-
templateName: "
|
|
12743
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12724
12744
|
};
|
|
12725
12745
|
} & {
|
|
12726
12746
|
header: {
|
|
@@ -12728,7 +12748,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12728
12748
|
};
|
|
12729
12749
|
} & {
|
|
12730
12750
|
json: {
|
|
12731
|
-
template?: "
|
|
12751
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12732
12752
|
body?: string | undefined;
|
|
12733
12753
|
from?: string | undefined;
|
|
12734
12754
|
subject?: string | undefined;
|
|
@@ -12745,7 +12765,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12745
12765
|
} | {
|
|
12746
12766
|
input: {
|
|
12747
12767
|
param: {
|
|
12748
|
-
templateName: "
|
|
12768
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12749
12769
|
};
|
|
12750
12770
|
} & {
|
|
12751
12771
|
header: {
|
|
@@ -12753,7 +12773,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12753
12773
|
};
|
|
12754
12774
|
} & {
|
|
12755
12775
|
json: {
|
|
12756
|
-
template?: "
|
|
12776
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12757
12777
|
body?: string | undefined;
|
|
12758
12778
|
from?: string | undefined;
|
|
12759
12779
|
subject?: string | undefined;
|
|
@@ -12765,7 +12785,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12765
12785
|
};
|
|
12766
12786
|
};
|
|
12767
12787
|
output: {
|
|
12768
|
-
template: "
|
|
12788
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12769
12789
|
body: string;
|
|
12770
12790
|
from: string;
|
|
12771
12791
|
subject: string;
|
|
@@ -12784,7 +12804,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12784
12804
|
$delete: {
|
|
12785
12805
|
input: {
|
|
12786
12806
|
param: {
|
|
12787
|
-
templateName: "
|
|
12807
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12788
12808
|
};
|
|
12789
12809
|
} & {
|
|
12790
12810
|
header: {
|
|
@@ -12797,7 +12817,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12797
12817
|
} | {
|
|
12798
12818
|
input: {
|
|
12799
12819
|
param: {
|
|
12800
|
-
templateName: "
|
|
12820
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12801
12821
|
};
|
|
12802
12822
|
} & {
|
|
12803
12823
|
header: {
|
|
@@ -12814,7 +12834,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12814
12834
|
$post: {
|
|
12815
12835
|
input: {
|
|
12816
12836
|
param: {
|
|
12817
|
-
templateName: "
|
|
12837
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12818
12838
|
};
|
|
12819
12839
|
} & {
|
|
12820
12840
|
header: {
|
|
@@ -13435,12 +13455,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13435
13455
|
background_color: string;
|
|
13436
13456
|
background_image_url: string;
|
|
13437
13457
|
page_layout: "center" | "left" | "right";
|
|
13438
|
-
logo_placement?: "
|
|
13458
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13439
13459
|
};
|
|
13440
13460
|
widget: {
|
|
13441
13461
|
header_text_alignment: "center" | "left" | "right";
|
|
13442
13462
|
logo_height: number;
|
|
13443
|
-
logo_position: "
|
|
13463
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13444
13464
|
logo_url: string;
|
|
13445
13465
|
social_buttons_layout: "bottom" | "top";
|
|
13446
13466
|
};
|
|
@@ -13525,12 +13545,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13525
13545
|
background_color: string;
|
|
13526
13546
|
background_image_url: string;
|
|
13527
13547
|
page_layout: "center" | "left" | "right";
|
|
13528
|
-
logo_placement?: "
|
|
13548
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13529
13549
|
};
|
|
13530
13550
|
widget: {
|
|
13531
13551
|
header_text_alignment: "center" | "left" | "right";
|
|
13532
13552
|
logo_height: number;
|
|
13533
|
-
logo_position: "
|
|
13553
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13534
13554
|
logo_url: string;
|
|
13535
13555
|
social_buttons_layout: "bottom" | "top";
|
|
13536
13556
|
};
|
|
@@ -13604,12 +13624,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13604
13624
|
background_color: string;
|
|
13605
13625
|
background_image_url: string;
|
|
13606
13626
|
page_layout: "center" | "left" | "right";
|
|
13607
|
-
logo_placement?: "
|
|
13627
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13608
13628
|
};
|
|
13609
13629
|
widget: {
|
|
13610
13630
|
header_text_alignment: "center" | "left" | "right";
|
|
13611
13631
|
logo_height: number;
|
|
13612
|
-
logo_position: "
|
|
13632
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13613
13633
|
logo_url: string;
|
|
13614
13634
|
social_buttons_layout: "bottom" | "top";
|
|
13615
13635
|
};
|
|
@@ -13766,7 +13786,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13766
13786
|
} & {
|
|
13767
13787
|
json: {
|
|
13768
13788
|
body?: string | undefined;
|
|
13769
|
-
screen?: "password" | "
|
|
13789
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
13770
13790
|
branding?: {
|
|
13771
13791
|
colors?: {
|
|
13772
13792
|
primary: string;
|
|
@@ -13852,12 +13872,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13852
13872
|
background_color: string;
|
|
13853
13873
|
background_image_url: string;
|
|
13854
13874
|
page_layout: "center" | "left" | "right";
|
|
13855
|
-
logo_placement?: "
|
|
13875
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13856
13876
|
} | undefined;
|
|
13857
13877
|
widget?: {
|
|
13858
13878
|
header_text_alignment: "center" | "left" | "right";
|
|
13859
13879
|
logo_height: number;
|
|
13860
|
-
logo_position: "
|
|
13880
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13861
13881
|
logo_url: string;
|
|
13862
13882
|
social_buttons_layout: "bottom" | "top";
|
|
13863
13883
|
} | undefined;
|
|
@@ -13909,7 +13929,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13909
13929
|
deployed_at?: string | undefined;
|
|
13910
13930
|
secrets?: {
|
|
13911
13931
|
name: string;
|
|
13912
|
-
value?: string | undefined;
|
|
13913
13932
|
}[] | undefined;
|
|
13914
13933
|
};
|
|
13915
13934
|
created_at: string;
|
|
@@ -13971,7 +13990,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13971
13990
|
deployed_at?: string | undefined;
|
|
13972
13991
|
secrets?: {
|
|
13973
13992
|
name: string;
|
|
13974
|
-
value?: string | undefined;
|
|
13975
13993
|
}[] | undefined;
|
|
13976
13994
|
};
|
|
13977
13995
|
created_at: string;
|
|
@@ -14108,7 +14126,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14108
14126
|
deployed_at?: string | undefined;
|
|
14109
14127
|
secrets?: {
|
|
14110
14128
|
name: string;
|
|
14111
|
-
value?: string | undefined;
|
|
14112
14129
|
}[] | undefined;
|
|
14113
14130
|
}[] | {
|
|
14114
14131
|
start: number;
|
|
@@ -14136,7 +14153,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14136
14153
|
deployed_at?: string | undefined;
|
|
14137
14154
|
secrets?: {
|
|
14138
14155
|
name: string;
|
|
14139
|
-
value?: string | undefined;
|
|
14140
14156
|
}[] | undefined;
|
|
14141
14157
|
}[];
|
|
14142
14158
|
total?: number | undefined;
|
|
@@ -14196,7 +14212,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14196
14212
|
deployed_at?: string | undefined;
|
|
14197
14213
|
secrets?: {
|
|
14198
14214
|
name: string;
|
|
14199
|
-
value?: string | undefined;
|
|
14200
14215
|
}[] | undefined;
|
|
14201
14216
|
};
|
|
14202
14217
|
outputFormat: "json";
|
|
@@ -14250,7 +14265,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14250
14265
|
deployed_at?: string | undefined;
|
|
14251
14266
|
secrets?: {
|
|
14252
14267
|
name: string;
|
|
14253
|
-
value?: string | undefined;
|
|
14254
14268
|
}[] | undefined;
|
|
14255
14269
|
};
|
|
14256
14270
|
outputFormat: "json";
|
|
@@ -14344,7 +14358,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14344
14358
|
deployed_at?: string | undefined;
|
|
14345
14359
|
secrets?: {
|
|
14346
14360
|
name: string;
|
|
14347
|
-
value?: string | undefined;
|
|
14348
14361
|
}[] | undefined;
|
|
14349
14362
|
};
|
|
14350
14363
|
outputFormat: "json";
|
|
@@ -14441,7 +14454,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14441
14454
|
deployed_at?: string | undefined;
|
|
14442
14455
|
secrets?: {
|
|
14443
14456
|
name: string;
|
|
14444
|
-
value?: string | undefined;
|
|
14445
14457
|
}[] | undefined;
|
|
14446
14458
|
};
|
|
14447
14459
|
outputFormat: "json";
|
|
@@ -14658,7 +14670,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14658
14670
|
deployed_at?: string | undefined;
|
|
14659
14671
|
secrets?: {
|
|
14660
14672
|
name: string;
|
|
14661
|
-
value?: string | undefined;
|
|
14662
14673
|
}[] | undefined;
|
|
14663
14674
|
};
|
|
14664
14675
|
outputFormat: "json";
|