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
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
12
|
+
gzip?: "true" | "false" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
26
|
+
gzip?: "true" | "false" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "
|
|
99
|
+
type: "push" | "email" | "passkey" | "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
|
};
|
|
@@ -1202,12 +1202,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1202
1202
|
invitee: {
|
|
1203
1203
|
email?: string | undefined;
|
|
1204
1204
|
};
|
|
1205
|
-
app_metadata?: Record<string, any> | undefined;
|
|
1206
|
-
user_metadata?: Record<string, any> | undefined;
|
|
1207
1205
|
id?: string | undefined;
|
|
1208
1206
|
connection_id?: string | undefined;
|
|
1209
|
-
|
|
1207
|
+
app_metadata?: Record<string, any> | undefined;
|
|
1208
|
+
user_metadata?: Record<string, any> | undefined;
|
|
1210
1209
|
roles?: string[] | undefined;
|
|
1210
|
+
ttl_sec?: number | undefined;
|
|
1211
1211
|
send_invitation_email?: boolean | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
@@ -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,9 +1963,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1963
1963
|
};
|
|
1964
1964
|
} & {
|
|
1965
1965
|
query: {
|
|
1966
|
+
from?: string | undefined;
|
|
1966
1967
|
page?: string | undefined;
|
|
1967
1968
|
include_totals?: string | undefined;
|
|
1968
|
-
from?: string | undefined;
|
|
1969
1969
|
per_page?: string | undefined;
|
|
1970
1970
|
take?: string | undefined;
|
|
1971
1971
|
};
|
|
@@ -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: "client_credentials" | "user" | "system" | "
|
|
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: {
|
|
@@ -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;
|
|
@@ -9670,7 +9690,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9670
9690
|
audience?: string | undefined;
|
|
9671
9691
|
client_id?: string | undefined;
|
|
9672
9692
|
allow_any_organization?: string | undefined;
|
|
9673
|
-
subject_type?: "
|
|
9693
|
+
subject_type?: "user" | "client" | undefined;
|
|
9674
9694
|
};
|
|
9675
9695
|
} & {
|
|
9676
9696
|
header: {
|
|
@@ -9685,7 +9705,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9685
9705
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9686
9706
|
allow_any_organization?: boolean | undefined;
|
|
9687
9707
|
is_system?: boolean | undefined;
|
|
9688
|
-
subject_type?: "
|
|
9708
|
+
subject_type?: "user" | "client" | undefined;
|
|
9689
9709
|
authorization_details_types?: string[] | undefined;
|
|
9690
9710
|
created_at?: string | undefined;
|
|
9691
9711
|
updated_at?: string | undefined;
|
|
@@ -9701,7 +9721,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9701
9721
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9702
9722
|
allow_any_organization?: boolean | undefined;
|
|
9703
9723
|
is_system?: boolean | undefined;
|
|
9704
|
-
subject_type?: "
|
|
9724
|
+
subject_type?: "user" | "client" | undefined;
|
|
9705
9725
|
authorization_details_types?: string[] | undefined;
|
|
9706
9726
|
created_at?: string | undefined;
|
|
9707
9727
|
updated_at?: string | undefined;
|
|
@@ -9717,7 +9737,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9717
9737
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9718
9738
|
allow_any_organization?: boolean | undefined;
|
|
9719
9739
|
is_system?: boolean | undefined;
|
|
9720
|
-
subject_type?: "
|
|
9740
|
+
subject_type?: "user" | "client" | undefined;
|
|
9721
9741
|
authorization_details_types?: string[] | undefined;
|
|
9722
9742
|
created_at?: string | undefined;
|
|
9723
9743
|
updated_at?: string | undefined;
|
|
@@ -9748,7 +9768,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9748
9768
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9749
9769
|
allow_any_organization?: boolean | undefined;
|
|
9750
9770
|
is_system?: boolean | undefined;
|
|
9751
|
-
subject_type?: "
|
|
9771
|
+
subject_type?: "user" | "client" | undefined;
|
|
9752
9772
|
authorization_details_types?: string[] | undefined;
|
|
9753
9773
|
created_at?: string | undefined;
|
|
9754
9774
|
updated_at?: string | undefined;
|
|
@@ -9793,7 +9813,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9793
9813
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9794
9814
|
allow_any_organization?: boolean | undefined;
|
|
9795
9815
|
is_system?: boolean | undefined;
|
|
9796
|
-
subject_type?: "
|
|
9816
|
+
subject_type?: "user" | "client" | undefined;
|
|
9797
9817
|
authorization_details_types?: string[] | undefined;
|
|
9798
9818
|
};
|
|
9799
9819
|
};
|
|
@@ -9805,7 +9825,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9805
9825
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9806
9826
|
allow_any_organization?: boolean | undefined;
|
|
9807
9827
|
is_system?: boolean | undefined;
|
|
9808
|
-
subject_type?: "
|
|
9828
|
+
subject_type?: "user" | "client" | undefined;
|
|
9809
9829
|
authorization_details_types?: string[] | undefined;
|
|
9810
9830
|
created_at?: string | undefined;
|
|
9811
9831
|
updated_at?: string | undefined;
|
|
@@ -9829,7 +9849,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9829
9849
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9830
9850
|
allow_any_organization?: boolean | undefined;
|
|
9831
9851
|
is_system?: boolean | undefined;
|
|
9832
|
-
subject_type?: "
|
|
9852
|
+
subject_type?: "user" | "client" | undefined;
|
|
9833
9853
|
authorization_details_types?: string[] | undefined;
|
|
9834
9854
|
};
|
|
9835
9855
|
};
|
|
@@ -9841,7 +9861,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9841
9861
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9842
9862
|
allow_any_organization?: boolean | undefined;
|
|
9843
9863
|
is_system?: boolean | undefined;
|
|
9844
|
-
subject_type?: "
|
|
9864
|
+
subject_type?: "user" | "client" | undefined;
|
|
9845
9865
|
authorization_details_types?: string[] | undefined;
|
|
9846
9866
|
created_at?: string | undefined;
|
|
9847
9867
|
updated_at?: string | undefined;
|
|
@@ -11093,13 +11113,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11093
11113
|
};
|
|
11094
11114
|
};
|
|
11095
11115
|
output: {
|
|
11096
|
-
kid: string;
|
|
11097
11116
|
type: "jwt_signing" | "saml_encryption";
|
|
11117
|
+
kid: string;
|
|
11098
11118
|
cert: string;
|
|
11099
11119
|
fingerprint: string;
|
|
11100
11120
|
thumbprint: string;
|
|
11101
|
-
connection?: string | undefined;
|
|
11102
11121
|
tenant_id?: string | undefined;
|
|
11122
|
+
connection?: string | undefined;
|
|
11103
11123
|
next?: boolean | undefined;
|
|
11104
11124
|
revoked_at?: string | undefined;
|
|
11105
11125
|
current?: boolean | undefined;
|
|
@@ -11132,13 +11152,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11132
11152
|
};
|
|
11133
11153
|
};
|
|
11134
11154
|
output: {
|
|
11135
|
-
kid: string;
|
|
11136
11155
|
type: "jwt_signing" | "saml_encryption";
|
|
11156
|
+
kid: string;
|
|
11137
11157
|
cert: string;
|
|
11138
11158
|
fingerprint: string;
|
|
11139
11159
|
thumbprint: string;
|
|
11140
|
-
connection?: string | undefined;
|
|
11141
11160
|
tenant_id?: string | undefined;
|
|
11161
|
+
connection?: string | undefined;
|
|
11142
11162
|
next?: boolean | undefined;
|
|
11143
11163
|
revoked_at?: string | undefined;
|
|
11144
11164
|
current?: boolean | undefined;
|
|
@@ -11170,13 +11190,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11170
11190
|
};
|
|
11171
11191
|
};
|
|
11172
11192
|
output: {
|
|
11173
|
-
kid: string;
|
|
11174
11193
|
type: "jwt_signing" | "saml_encryption";
|
|
11194
|
+
kid: string;
|
|
11175
11195
|
cert: string;
|
|
11176
11196
|
fingerprint: string;
|
|
11177
11197
|
thumbprint: string;
|
|
11178
|
-
connection?: string | undefined;
|
|
11179
11198
|
tenant_id?: string | undefined;
|
|
11199
|
+
connection?: string | undefined;
|
|
11180
11200
|
next?: boolean | undefined;
|
|
11181
11201
|
revoked_at?: string | undefined;
|
|
11182
11202
|
current?: boolean | undefined;
|
|
@@ -11210,13 +11230,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11210
11230
|
};
|
|
11211
11231
|
};
|
|
11212
11232
|
output: {
|
|
11213
|
-
kid: string;
|
|
11214
11233
|
type: "jwt_signing" | "saml_encryption";
|
|
11234
|
+
kid: string;
|
|
11215
11235
|
cert: string;
|
|
11216
11236
|
fingerprint: string;
|
|
11217
11237
|
thumbprint: string;
|
|
11218
|
-
connection?: string | undefined;
|
|
11219
11238
|
tenant_id?: string | undefined;
|
|
11239
|
+
connection?: string | undefined;
|
|
11220
11240
|
next?: boolean | undefined;
|
|
11221
11241
|
revoked_at?: string | undefined;
|
|
11222
11242
|
current?: boolean | undefined;
|
|
@@ -12068,12 +12088,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12068
12088
|
};
|
|
12069
12089
|
};
|
|
12070
12090
|
output: {
|
|
12091
|
+
id: string;
|
|
12071
12092
|
created_at: string;
|
|
12072
|
-
user_id: string;
|
|
12073
12093
|
client_id: string;
|
|
12094
|
+
user_id: string;
|
|
12074
12095
|
rotating: boolean;
|
|
12075
|
-
id: string;
|
|
12076
|
-
login_id: string;
|
|
12077
12096
|
device: {
|
|
12078
12097
|
initial_user_agent: string;
|
|
12079
12098
|
initial_ip: string;
|
|
@@ -12082,32 +12101,29 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12082
12101
|
last_ip: string;
|
|
12083
12102
|
last_asn: string;
|
|
12084
12103
|
};
|
|
12104
|
+
login_id: string;
|
|
12085
12105
|
resource_servers: {
|
|
12086
12106
|
audience: string;
|
|
12087
12107
|
scopes: string;
|
|
12088
12108
|
}[];
|
|
12109
|
+
revoked_at?: string | undefined;
|
|
12089
12110
|
expires_at?: string | undefined;
|
|
12111
|
+
idle_expires_at?: string | undefined;
|
|
12090
12112
|
session_id?: string | undefined;
|
|
12113
|
+
organization?: string | undefined;
|
|
12091
12114
|
auth_connection?: string | undefined;
|
|
12092
12115
|
auth_strategy?: {
|
|
12093
12116
|
strategy: string;
|
|
12094
12117
|
strategy_type: string;
|
|
12095
12118
|
} | undefined;
|
|
12096
|
-
organization?: string | undefined;
|
|
12097
|
-
revoked_at?: string | undefined;
|
|
12098
|
-
idle_expires_at?: string | undefined;
|
|
12099
12119
|
last_exchanged_at?: string | undefined;
|
|
12100
12120
|
}[] | {
|
|
12101
|
-
start: number;
|
|
12102
|
-
limit: number;
|
|
12103
|
-
length: number;
|
|
12104
12121
|
tokens: {
|
|
12122
|
+
id: string;
|
|
12105
12123
|
created_at: string;
|
|
12106
|
-
user_id: string;
|
|
12107
12124
|
client_id: string;
|
|
12125
|
+
user_id: string;
|
|
12108
12126
|
rotating: boolean;
|
|
12109
|
-
id: string;
|
|
12110
|
-
login_id: string;
|
|
12111
12127
|
device: {
|
|
12112
12128
|
initial_user_agent: string;
|
|
12113
12129
|
initial_ip: string;
|
|
@@ -12116,32 +12132,34 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12116
12132
|
last_ip: string;
|
|
12117
12133
|
last_asn: string;
|
|
12118
12134
|
};
|
|
12135
|
+
login_id: string;
|
|
12119
12136
|
resource_servers: {
|
|
12120
12137
|
audience: string;
|
|
12121
12138
|
scopes: string;
|
|
12122
12139
|
}[];
|
|
12140
|
+
revoked_at?: string | undefined;
|
|
12123
12141
|
expires_at?: string | undefined;
|
|
12142
|
+
idle_expires_at?: string | undefined;
|
|
12124
12143
|
session_id?: string | undefined;
|
|
12144
|
+
organization?: string | undefined;
|
|
12125
12145
|
auth_connection?: string | undefined;
|
|
12126
12146
|
auth_strategy?: {
|
|
12127
12147
|
strategy: string;
|
|
12128
12148
|
strategy_type: string;
|
|
12129
12149
|
} | undefined;
|
|
12130
|
-
organization?: string | undefined;
|
|
12131
|
-
revoked_at?: string | undefined;
|
|
12132
|
-
idle_expires_at?: 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: {
|
|
12158
|
+
id: string;
|
|
12139
12159
|
created_at: string;
|
|
12140
|
-
user_id: string;
|
|
12141
12160
|
client_id: string;
|
|
12161
|
+
user_id: string;
|
|
12142
12162
|
rotating: boolean;
|
|
12143
|
-
id: string;
|
|
12144
|
-
login_id: string;
|
|
12145
12163
|
device: {
|
|
12146
12164
|
initial_user_agent: string;
|
|
12147
12165
|
initial_ip: string;
|
|
@@ -12150,22 +12168,24 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12150
12168
|
last_ip: string;
|
|
12151
12169
|
last_asn: string;
|
|
12152
12170
|
};
|
|
12171
|
+
login_id: string;
|
|
12153
12172
|
resource_servers: {
|
|
12154
12173
|
audience: string;
|
|
12155
12174
|
scopes: string;
|
|
12156
12175
|
}[];
|
|
12176
|
+
revoked_at?: string | undefined;
|
|
12157
12177
|
expires_at?: string | undefined;
|
|
12178
|
+
idle_expires_at?: string | undefined;
|
|
12158
12179
|
session_id?: string | undefined;
|
|
12180
|
+
organization?: string | undefined;
|
|
12159
12181
|
auth_connection?: string | undefined;
|
|
12160
12182
|
auth_strategy?: {
|
|
12161
12183
|
strategy: string;
|
|
12162
12184
|
strategy_type: string;
|
|
12163
12185
|
} | undefined;
|
|
12164
|
-
organization?: string | undefined;
|
|
12165
|
-
revoked_at?: string | undefined;
|
|
12166
|
-
idle_expires_at?: 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;
|
|
@@ -13935,7 +13954,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13935
13954
|
json: {
|
|
13936
13955
|
bindings: {
|
|
13937
13956
|
ref: {
|
|
13938
|
-
type?: "
|
|
13957
|
+
type?: "action_id" | "action_name" | undefined;
|
|
13939
13958
|
value?: string | undefined;
|
|
13940
13959
|
id?: string | undefined;
|
|
13941
13960
|
name?: string | undefined;
|
|
@@ -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;
|
|
@@ -14057,7 +14075,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14057
14075
|
logs: {
|
|
14058
14076
|
action_name: string;
|
|
14059
14077
|
lines: {
|
|
14060
|
-
level: "
|
|
14078
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
14061
14079
|
message: string;
|
|
14062
14080
|
}[];
|
|
14063
14081
|
}[];
|
|
@@ -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";
|
|
@@ -14726,7 +14737,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14726
14737
|
args: import("hono/utils/types").JSONValue[];
|
|
14727
14738
|
}[];
|
|
14728
14739
|
logs: {
|
|
14729
|
-
level: "
|
|
14740
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
14730
14741
|
message: string;
|
|
14731
14742
|
}[];
|
|
14732
14743
|
error?: string | undefined;
|