authhero 9.6.0 → 9.6.1

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.
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8
8
  $get: {
9
9
  input: {
10
10
  query: {
11
- include_password_hashes?: "true" | "false" | undefined;
12
- gzip?: "true" | "false" | undefined;
11
+ include_password_hashes?: "false" | "true" | undefined;
12
+ gzip?: "false" | "true" | 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?: "true" | "false" | undefined;
26
- gzip?: "true" | "false" | undefined;
25
+ include_password_hashes?: "false" | "true" | undefined;
26
+ gzip?: "false" | "true" | 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?: "true" | "false" | undefined;
45
+ include_password_hashes?: "false" | "true" | 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: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
99
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
239
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
394
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
402
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
415
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
427
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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
  };
1205
- id?: string | undefined;
1202
+ invitee: {
1203
+ email?: string | undefined;
1204
+ };
1206
1205
  app_metadata?: Record<string, any> | undefined;
1207
1206
  user_metadata?: Record<string, any> | undefined;
1207
+ id?: string | undefined;
1208
1208
  connection_id?: string | undefined;
1209
+ ttl_sec?: number | undefined;
1209
1210
  roles?: string[] | undefined;
1210
1211
  send_invitation_email?: boolean | undefined;
1211
- ttl_sec?: number | undefined;
1212
1212
  };
1213
1213
  };
1214
1214
  output: {
@@ -1963,9 +1963,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1963
1963
  };
1964
1964
  } & {
1965
1965
  query: {
1966
- from?: string | undefined;
1967
1966
  page?: string | undefined;
1968
1967
  include_totals?: string | undefined;
1968
+ from?: string | undefined;
1969
1969
  per_page?: string | undefined;
1970
1970
  take?: string | undefined;
1971
1971
  };
@@ -6961,7 +6961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6961
6961
  };
6962
6962
  };
6963
6963
  output: {
6964
- prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6964
+ prompt: "mfa" | "organizations" | "signup" | "status" | "reset-password" | "login" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6965
6965
  language: string;
6966
6966
  }[];
6967
6967
  outputFormat: "json";
@@ -6999,7 +6999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6999
6999
  $get: {
7000
7000
  input: {
7001
7001
  param: {
7002
- prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7002
+ prompt: "mfa" | "organizations" | "signup" | "status" | "reset-password" | "login" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7003
7003
  language: string;
7004
7004
  };
7005
7005
  } & {
@@ -7021,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7021
7021
  $put: {
7022
7022
  input: {
7023
7023
  param: {
7024
- prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7024
+ prompt: "mfa" | "organizations" | "signup" | "status" | "reset-password" | "login" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7025
7025
  language: string;
7026
7026
  };
7027
7027
  } & {
@@ -7045,7 +7045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7045
7045
  $delete: {
7046
7046
  input: {
7047
7047
  param: {
7048
- prompt: "mfa" | "status" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7048
+ prompt: "mfa" | "organizations" | "signup" | "status" | "reset-password" | "login" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7049
7049
  language: string;
7050
7050
  };
7051
7051
  } & {
@@ -7141,7 +7141,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7141
7141
  active?: boolean | undefined;
7142
7142
  } | undefined;
7143
7143
  signup?: {
7144
- status?: "required" | "optional" | "disabled" | undefined;
7144
+ status?: "optional" | "required" | "disabled" | undefined;
7145
7145
  verification?: {
7146
7146
  active?: boolean | undefined;
7147
7147
  } | undefined;
@@ -7158,7 +7158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7158
7158
  active?: boolean | undefined;
7159
7159
  } | undefined;
7160
7160
  signup?: {
7161
- status?: "required" | "optional" | "disabled" | undefined;
7161
+ status?: "optional" | "required" | "disabled" | undefined;
7162
7162
  } | undefined;
7163
7163
  validation?: {
7164
7164
  max_length?: number | undefined;
@@ -7175,7 +7175,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7175
7175
  active?: boolean | undefined;
7176
7176
  } | undefined;
7177
7177
  signup?: {
7178
- status?: "required" | "optional" | "disabled" | undefined;
7178
+ status?: "optional" | "required" | "disabled" | undefined;
7179
7179
  } | undefined;
7180
7180
  } | undefined;
7181
7181
  } | undefined;
@@ -7279,7 +7279,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7279
7279
  active?: boolean | undefined;
7280
7280
  } | undefined;
7281
7281
  signup?: {
7282
- status?: "required" | "optional" | "disabled" | undefined;
7282
+ status?: "optional" | "required" | "disabled" | undefined;
7283
7283
  verification?: {
7284
7284
  active?: boolean | undefined;
7285
7285
  } | undefined;
@@ -7296,7 +7296,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7296
7296
  active?: boolean | undefined;
7297
7297
  } | undefined;
7298
7298
  signup?: {
7299
- status?: "required" | "optional" | "disabled" | undefined;
7299
+ status?: "optional" | "required" | "disabled" | undefined;
7300
7300
  } | undefined;
7301
7301
  validation?: {
7302
7302
  max_length?: number | undefined;
@@ -7313,7 +7313,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7313
7313
  active?: boolean | undefined;
7314
7314
  } | undefined;
7315
7315
  signup?: {
7316
- status?: "required" | "optional" | "disabled" | undefined;
7316
+ status?: "optional" | "required" | "disabled" | undefined;
7317
7317
  } | undefined;
7318
7318
  } | undefined;
7319
7319
  } | undefined;
@@ -7433,7 +7433,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7433
7433
  active?: boolean | undefined;
7434
7434
  } | undefined;
7435
7435
  signup?: {
7436
- status?: "required" | "optional" | "disabled" | undefined;
7436
+ status?: "optional" | "required" | "disabled" | undefined;
7437
7437
  verification?: {
7438
7438
  active?: boolean | undefined;
7439
7439
  } | undefined;
@@ -7450,7 +7450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7450
7450
  active?: boolean | undefined;
7451
7451
  } | undefined;
7452
7452
  signup?: {
7453
- status?: "required" | "optional" | "disabled" | undefined;
7453
+ status?: "optional" | "required" | "disabled" | undefined;
7454
7454
  } | undefined;
7455
7455
  validation?: {
7456
7456
  max_length?: number | undefined;
@@ -7467,7 +7467,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7467
7467
  active?: boolean | undefined;
7468
7468
  } | undefined;
7469
7469
  signup?: {
7470
- status?: "required" | "optional" | "disabled" | undefined;
7470
+ status?: "optional" | "required" | "disabled" | undefined;
7471
7471
  } | undefined;
7472
7472
  } | undefined;
7473
7473
  } | undefined;
@@ -7616,7 +7616,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7616
7616
  active?: boolean | undefined;
7617
7617
  } | undefined;
7618
7618
  signup?: {
7619
- status?: "required" | "optional" | "disabled" | undefined;
7619
+ status?: "optional" | "required" | "disabled" | undefined;
7620
7620
  verification?: {
7621
7621
  active?: boolean | undefined;
7622
7622
  } | undefined;
@@ -7633,7 +7633,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7633
7633
  active?: boolean | undefined;
7634
7634
  } | undefined;
7635
7635
  signup?: {
7636
- status?: "required" | "optional" | "disabled" | undefined;
7636
+ status?: "optional" | "required" | "disabled" | undefined;
7637
7637
  } | undefined;
7638
7638
  validation?: {
7639
7639
  max_length?: number | undefined;
@@ -7650,7 +7650,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7650
7650
  active?: boolean | undefined;
7651
7651
  } | undefined;
7652
7652
  signup?: {
7653
- status?: "required" | "optional" | "disabled" | undefined;
7653
+ status?: "optional" | "required" | "disabled" | undefined;
7654
7654
  } | undefined;
7655
7655
  } | undefined;
7656
7656
  } | undefined;
@@ -7778,7 +7778,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7778
7778
  active?: boolean | undefined;
7779
7779
  } | undefined;
7780
7780
  signup?: {
7781
- status?: "required" | "optional" | "disabled" | undefined;
7781
+ status?: "optional" | "required" | "disabled" | undefined;
7782
7782
  verification?: {
7783
7783
  active?: boolean | undefined;
7784
7784
  } | undefined;
@@ -7795,7 +7795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7795
7795
  active?: boolean | undefined;
7796
7796
  } | undefined;
7797
7797
  signup?: {
7798
- status?: "required" | "optional" | "disabled" | undefined;
7798
+ status?: "optional" | "required" | "disabled" | undefined;
7799
7799
  } | undefined;
7800
7800
  validation?: {
7801
7801
  max_length?: number | undefined;
@@ -7812,7 +7812,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7812
7812
  active?: boolean | undefined;
7813
7813
  } | undefined;
7814
7814
  signup?: {
7815
- status?: "required" | "optional" | "disabled" | undefined;
7815
+ status?: "optional" | "required" | "disabled" | undefined;
7816
7816
  } | undefined;
7817
7817
  } | undefined;
7818
7818
  } | undefined;
@@ -8657,7 +8657,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8657
8657
  log_type: string;
8658
8658
  category: "user_action" | "admin_action" | "system" | "api";
8659
8659
  actor: {
8660
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8660
+ type: "client_credentials" | "user" | "system" | "api_key" | "admin";
8661
8661
  id?: string | undefined;
8662
8662
  email?: string | undefined;
8663
8663
  org_id?: string | undefined;
@@ -8968,7 +8968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8968
8968
  created_at: string;
8969
8969
  updated_at: string;
8970
8970
  name: string;
8971
- provider: "auth0" | "oidc" | "okta" | "cognito";
8971
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8972
8972
  connection: string;
8973
8973
  enabled: boolean;
8974
8974
  credentials: {
@@ -9000,7 +9000,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9000
9000
  created_at: string;
9001
9001
  updated_at: string;
9002
9002
  name: string;
9003
- provider: "auth0" | "oidc" | "okta" | "cognito";
9003
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9004
9004
  connection: string;
9005
9005
  enabled: boolean;
9006
9006
  credentials: {
@@ -9026,7 +9026,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9026
9026
  } & {
9027
9027
  json: {
9028
9028
  name: string;
9029
- provider: "auth0" | "oidc" | "okta" | "cognito";
9029
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9030
9030
  connection: string;
9031
9031
  credentials: {
9032
9032
  domain: string;
@@ -9043,7 +9043,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9043
9043
  created_at: string;
9044
9044
  updated_at: string;
9045
9045
  name: string;
9046
- provider: "auth0" | "oidc" | "okta" | "cognito";
9046
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9047
9047
  connection: string;
9048
9048
  enabled: boolean;
9049
9049
  credentials: {
@@ -9074,7 +9074,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9074
9074
  json: {
9075
9075
  id?: string | undefined;
9076
9076
  name?: string | undefined;
9077
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
9077
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
9078
9078
  connection?: string | undefined;
9079
9079
  enabled?: boolean | undefined;
9080
9080
  credentials?: {
@@ -9090,7 +9090,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9090
9090
  created_at: string;
9091
9091
  updated_at: string;
9092
9092
  name: string;
9093
- provider: "auth0" | "oidc" | "okta" | "cognito";
9093
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9094
9094
  connection: string;
9095
9095
  enabled: boolean;
9096
9096
  credentials: {
@@ -9308,7 +9308,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9308
9308
  };
9309
9309
  };
9310
9310
  output: {
9311
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9311
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9312
9312
  date: string;
9313
9313
  isMobile: boolean;
9314
9314
  log_id: string;
@@ -9347,7 +9347,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9347
9347
  limit: number;
9348
9348
  length: number;
9349
9349
  logs: {
9350
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9350
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9351
9351
  date: string;
9352
9352
  isMobile: boolean;
9353
9353
  log_id: string;
@@ -9386,7 +9386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9386
9386
  next?: string | undefined;
9387
9387
  } | {
9388
9388
  logs: {
9389
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9389
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9390
9390
  date: string;
9391
9391
  isMobile: boolean;
9392
9392
  log_id: string;
@@ -9440,7 +9440,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9440
9440
  };
9441
9441
  };
9442
9442
  output: {
9443
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9443
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9444
9444
  date: string;
9445
9445
  isMobile: boolean;
9446
9446
  log_id: string;
@@ -9596,7 +9596,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9596
9596
  audience?: string | undefined;
9597
9597
  client_id?: string | undefined;
9598
9598
  allow_any_organization?: string | undefined;
9599
- subject_type?: "user" | "client" | undefined;
9599
+ subject_type?: "client" | "user" | undefined;
9600
9600
  };
9601
9601
  } & {
9602
9602
  header: {
@@ -9611,7 +9611,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9611
9611
  organization_usage?: "deny" | "allow" | "require" | undefined;
9612
9612
  allow_any_organization?: boolean | undefined;
9613
9613
  is_system?: boolean | undefined;
9614
- subject_type?: "user" | "client" | undefined;
9614
+ subject_type?: "client" | "user" | undefined;
9615
9615
  authorization_details_types?: string[] | undefined;
9616
9616
  created_at?: string | undefined;
9617
9617
  updated_at?: string | undefined;
@@ -9627,7 +9627,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9627
9627
  organization_usage?: "deny" | "allow" | "require" | undefined;
9628
9628
  allow_any_organization?: boolean | undefined;
9629
9629
  is_system?: boolean | undefined;
9630
- subject_type?: "user" | "client" | undefined;
9630
+ subject_type?: "client" | "user" | undefined;
9631
9631
  authorization_details_types?: string[] | undefined;
9632
9632
  created_at?: string | undefined;
9633
9633
  updated_at?: string | undefined;
@@ -9643,7 +9643,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9643
9643
  organization_usage?: "deny" | "allow" | "require" | undefined;
9644
9644
  allow_any_organization?: boolean | undefined;
9645
9645
  is_system?: boolean | undefined;
9646
- subject_type?: "user" | "client" | undefined;
9646
+ subject_type?: "client" | "user" | undefined;
9647
9647
  authorization_details_types?: string[] | undefined;
9648
9648
  created_at?: string | undefined;
9649
9649
  updated_at?: string | undefined;
@@ -9674,7 +9674,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9674
9674
  organization_usage?: "deny" | "allow" | "require" | undefined;
9675
9675
  allow_any_organization?: boolean | undefined;
9676
9676
  is_system?: boolean | undefined;
9677
- subject_type?: "user" | "client" | undefined;
9677
+ subject_type?: "client" | "user" | undefined;
9678
9678
  authorization_details_types?: string[] | undefined;
9679
9679
  created_at?: string | undefined;
9680
9680
  updated_at?: string | undefined;
@@ -9719,7 +9719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9719
9719
  organization_usage?: "deny" | "allow" | "require" | undefined;
9720
9720
  allow_any_organization?: boolean | undefined;
9721
9721
  is_system?: boolean | undefined;
9722
- subject_type?: "user" | "client" | undefined;
9722
+ subject_type?: "client" | "user" | undefined;
9723
9723
  authorization_details_types?: string[] | undefined;
9724
9724
  };
9725
9725
  };
@@ -9731,7 +9731,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9731
9731
  organization_usage?: "deny" | "allow" | "require" | undefined;
9732
9732
  allow_any_organization?: boolean | undefined;
9733
9733
  is_system?: boolean | undefined;
9734
- subject_type?: "user" | "client" | undefined;
9734
+ subject_type?: "client" | "user" | undefined;
9735
9735
  authorization_details_types?: string[] | undefined;
9736
9736
  created_at?: string | undefined;
9737
9737
  updated_at?: string | undefined;
@@ -9755,7 +9755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9755
9755
  organization_usage?: "deny" | "allow" | "require" | undefined;
9756
9756
  allow_any_organization?: boolean | undefined;
9757
9757
  is_system?: boolean | undefined;
9758
- subject_type?: "user" | "client" | undefined;
9758
+ subject_type?: "client" | "user" | undefined;
9759
9759
  authorization_details_types?: string[] | undefined;
9760
9760
  };
9761
9761
  };
@@ -9767,7 +9767,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9767
9767
  organization_usage?: "deny" | "allow" | "require" | undefined;
9768
9768
  allow_any_organization?: boolean | undefined;
9769
9769
  is_system?: boolean | undefined;
9770
- subject_type?: "user" | "client" | undefined;
9770
+ subject_type?: "client" | "user" | undefined;
9771
9771
  authorization_details_types?: string[] | undefined;
9772
9772
  created_at?: string | undefined;
9773
9773
  updated_at?: string | undefined;
@@ -9851,7 +9851,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9851
9851
  addons?: {
9852
9852
  [x: string]: any;
9853
9853
  } | undefined;
9854
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9854
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9855
9855
  client_metadata?: {
9856
9856
  [x: string]: string;
9857
9857
  } | undefined;
@@ -9953,7 +9953,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9953
9953
  addons?: {
9954
9954
  [x: string]: any;
9955
9955
  } | undefined;
9956
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9956
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9957
9957
  client_metadata?: {
9958
9958
  [x: string]: string;
9959
9959
  } | undefined;
@@ -10055,7 +10055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10055
10055
  addons?: {
10056
10056
  [x: string]: any;
10057
10057
  } | undefined;
10058
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10058
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10059
10059
  client_metadata?: {
10060
10060
  [x: string]: string;
10061
10061
  } | undefined;
@@ -10172,7 +10172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10172
10172
  addons?: {
10173
10173
  [x: string]: any;
10174
10174
  } | undefined;
10175
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10175
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10176
10176
  client_metadata?: {
10177
10177
  [x: string]: string;
10178
10178
  } | undefined;
@@ -10290,7 +10290,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10290
10290
  custom_login_page_preview?: string | undefined;
10291
10291
  form_template?: string | undefined;
10292
10292
  addons?: Record<string, any> | undefined;
10293
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10293
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10294
10294
  client_metadata?: Record<string, string> | undefined;
10295
10295
  hide_sign_up_disabled_error?: boolean | undefined;
10296
10296
  mobile?: Record<string, any> | undefined;
@@ -10376,7 +10376,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10376
10376
  addons?: {
10377
10377
  [x: string]: any;
10378
10378
  } | undefined;
10379
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10379
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10380
10380
  client_metadata?: {
10381
10381
  [x: string]: string;
10382
10382
  } | undefined;
@@ -10473,7 +10473,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10473
10473
  custom_login_page_preview?: string | undefined;
10474
10474
  form_template?: string | undefined;
10475
10475
  addons?: Record<string, any> | undefined;
10476
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10476
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10477
10477
  client_metadata?: Record<string, string> | undefined;
10478
10478
  hide_sign_up_disabled_error?: boolean | undefined;
10479
10479
  mobile?: Record<string, any> | undefined;
@@ -10559,7 +10559,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10559
10559
  addons?: {
10560
10560
  [x: string]: any;
10561
10561
  } | undefined;
10562
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10562
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10563
10563
  client_metadata?: {
10564
10564
  [x: string]: string;
10565
10565
  } | undefined;
@@ -10685,7 +10685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10685
10685
  active?: boolean | undefined;
10686
10686
  } | undefined;
10687
10687
  signup?: {
10688
- status?: "required" | "optional" | "disabled" | undefined;
10688
+ status?: "optional" | "required" | "disabled" | undefined;
10689
10689
  verification?: {
10690
10690
  active?: boolean | undefined;
10691
10691
  } | undefined;
@@ -10702,7 +10702,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10702
10702
  active?: boolean | undefined;
10703
10703
  } | undefined;
10704
10704
  signup?: {
10705
- status?: "required" | "optional" | "disabled" | undefined;
10705
+ status?: "optional" | "required" | "disabled" | undefined;
10706
10706
  } | undefined;
10707
10707
  validation?: {
10708
10708
  max_length?: number | undefined;
@@ -10719,7 +10719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10719
10719
  active?: boolean | undefined;
10720
10720
  } | undefined;
10721
10721
  signup?: {
10722
- status?: "required" | "optional" | "disabled" | undefined;
10722
+ status?: "optional" | "required" | "disabled" | undefined;
10723
10723
  } | undefined;
10724
10724
  } | undefined;
10725
10725
  } | undefined;
@@ -10843,7 +10843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10843
10843
  active?: boolean | undefined;
10844
10844
  } | undefined;
10845
10845
  signup?: {
10846
- status?: "required" | "optional" | "disabled" | undefined;
10846
+ status?: "optional" | "required" | "disabled" | undefined;
10847
10847
  verification?: {
10848
10848
  active?: boolean | undefined;
10849
10849
  } | undefined;
@@ -10860,7 +10860,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10860
10860
  active?: boolean | undefined;
10861
10861
  } | undefined;
10862
10862
  signup?: {
10863
- status?: "required" | "optional" | "disabled" | undefined;
10863
+ status?: "optional" | "required" | "disabled" | undefined;
10864
10864
  } | undefined;
10865
10865
  validation?: {
10866
10866
  max_length?: number | undefined;
@@ -10877,7 +10877,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10877
10877
  active?: boolean | undefined;
10878
10878
  } | undefined;
10879
10879
  signup?: {
10880
- status?: "required" | "optional" | "disabled" | undefined;
10880
+ status?: "optional" | "required" | "disabled" | undefined;
10881
10881
  } | undefined;
10882
10882
  } | undefined;
10883
10883
  } | undefined;
@@ -11912,7 +11912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11912
11912
  };
11913
11913
  };
11914
11914
  output: {
11915
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11915
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11916
11916
  date: string;
11917
11917
  isMobile: boolean;
11918
11918
  log_id: string;
@@ -11951,7 +11951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11951
11951
  limit: number;
11952
11952
  length: number;
11953
11953
  logs: {
11954
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11954
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11955
11955
  date: string;
11956
11956
  isMobile: boolean;
11957
11957
  log_id: string;
@@ -12270,7 +12270,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12270
12270
  };
12271
12271
  } & {
12272
12272
  json: {
12273
- 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";
12273
+ template: "verify_email" | "change_password" | "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";
12274
12274
  body: string;
12275
12275
  from: string;
12276
12276
  subject: string;
@@ -12291,7 +12291,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12291
12291
  };
12292
12292
  } & {
12293
12293
  json: {
12294
- 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";
12294
+ template: "verify_email" | "change_password" | "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";
12295
12295
  body: string;
12296
12296
  from: string;
12297
12297
  subject: string;
@@ -12303,7 +12303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12303
12303
  };
12304
12304
  };
12305
12305
  output: {
12306
- 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";
12306
+ template: "verify_email" | "change_password" | "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";
12307
12307
  body: string;
12308
12308
  from: string;
12309
12309
  subject: string;
@@ -12326,7 +12326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12326
12326
  };
12327
12327
  };
12328
12328
  output: {
12329
- 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";
12329
+ name: "verify_email" | "change_password" | "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";
12330
12330
  body: string;
12331
12331
  subject: string;
12332
12332
  }[];
@@ -12339,7 +12339,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12339
12339
  $get: {
12340
12340
  input: {
12341
12341
  param: {
12342
- 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";
12342
+ templateName: "verify_email" | "change_password" | "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";
12343
12343
  };
12344
12344
  } & {
12345
12345
  header: {
@@ -12352,7 +12352,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12352
12352
  } | {
12353
12353
  input: {
12354
12354
  param: {
12355
- 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";
12355
+ templateName: "verify_email" | "change_password" | "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";
12356
12356
  };
12357
12357
  } & {
12358
12358
  header: {
@@ -12360,7 +12360,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12360
12360
  };
12361
12361
  };
12362
12362
  output: {
12363
- 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";
12363
+ template: "verify_email" | "change_password" | "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";
12364
12364
  body: string;
12365
12365
  from: string;
12366
12366
  subject: string;
@@ -12379,7 +12379,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12379
12379
  $put: {
12380
12380
  input: {
12381
12381
  param: {
12382
- 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";
12382
+ templateName: "verify_email" | "change_password" | "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";
12383
12383
  };
12384
12384
  } & {
12385
12385
  header: {
@@ -12387,7 +12387,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12387
12387
  };
12388
12388
  } & {
12389
12389
  json: {
12390
- 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";
12390
+ template: "verify_email" | "change_password" | "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";
12391
12391
  body: string;
12392
12392
  subject: string;
12393
12393
  syntax?: "liquid" | undefined;
@@ -12399,7 +12399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12399
12399
  };
12400
12400
  };
12401
12401
  output: {
12402
- 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";
12402
+ template: "verify_email" | "change_password" | "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";
12403
12403
  body: string;
12404
12404
  from: string;
12405
12405
  subject: string;
@@ -12418,7 +12418,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12418
12418
  $patch: {
12419
12419
  input: {
12420
12420
  param: {
12421
- 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";
12421
+ templateName: "verify_email" | "change_password" | "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";
12422
12422
  };
12423
12423
  } & {
12424
12424
  header: {
@@ -12426,7 +12426,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12426
12426
  };
12427
12427
  } & {
12428
12428
  json: {
12429
- 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;
12429
+ template?: "verify_email" | "change_password" | "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;
12430
12430
  body?: string | undefined;
12431
12431
  from?: string | undefined;
12432
12432
  subject?: string | undefined;
@@ -12443,7 +12443,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12443
12443
  } | {
12444
12444
  input: {
12445
12445
  param: {
12446
- 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";
12446
+ templateName: "verify_email" | "change_password" | "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";
12447
12447
  };
12448
12448
  } & {
12449
12449
  header: {
@@ -12451,7 +12451,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12451
12451
  };
12452
12452
  } & {
12453
12453
  json: {
12454
- 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;
12454
+ template?: "verify_email" | "change_password" | "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;
12455
12455
  body?: string | undefined;
12456
12456
  from?: string | undefined;
12457
12457
  subject?: string | undefined;
@@ -12463,7 +12463,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12463
12463
  };
12464
12464
  };
12465
12465
  output: {
12466
- 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";
12466
+ template: "verify_email" | "change_password" | "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";
12467
12467
  body: string;
12468
12468
  from: string;
12469
12469
  subject: string;
@@ -12482,7 +12482,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12482
12482
  $delete: {
12483
12483
  input: {
12484
12484
  param: {
12485
- 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";
12485
+ templateName: "verify_email" | "change_password" | "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";
12486
12486
  };
12487
12487
  } & {
12488
12488
  header: {
@@ -12495,7 +12495,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12495
12495
  } | {
12496
12496
  input: {
12497
12497
  param: {
12498
- 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";
12498
+ templateName: "verify_email" | "change_password" | "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";
12499
12499
  };
12500
12500
  } & {
12501
12501
  header: {
@@ -12512,7 +12512,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12512
12512
  $post: {
12513
12513
  input: {
12514
12514
  param: {
12515
- 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";
12515
+ templateName: "verify_email" | "change_password" | "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";
12516
12516
  };
12517
12517
  } & {
12518
12518
  header: {
@@ -13425,7 +13425,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13425
13425
  };
13426
13426
  output: {};
13427
13427
  outputFormat: string;
13428
- status: 400;
13428
+ status: 204;
13429
13429
  } | {
13430
13430
  input: {
13431
13431
  header: {
@@ -13438,7 +13438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13438
13438
  };
13439
13439
  output: {};
13440
13440
  outputFormat: string;
13441
- status: 204;
13441
+ status: 400;
13442
13442
  };
13443
13443
  };
13444
13444
  } & {
@@ -13633,7 +13633,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13633
13633
  json: {
13634
13634
  bindings: {
13635
13635
  ref: {
13636
- type?: "action_id" | "action_name" | undefined;
13636
+ type?: "action_name" | "action_id" | undefined;
13637
13637
  value?: string | undefined;
13638
13638
  id?: string | undefined;
13639
13639
  name?: string | undefined;
@@ -13755,7 +13755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13755
13755
  logs: {
13756
13756
  action_name: string;
13757
13757
  lines: {
13758
- level: "error" | "log" | "info" | "warn" | "debug";
13758
+ level: "log" | "error" | "info" | "warn" | "debug";
13759
13759
  message: string;
13760
13760
  }[];
13761
13761
  }[];
@@ -14063,7 +14063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
14063
14063
  };
14064
14064
  output: {};
14065
14065
  outputFormat: string;
14066
- status: 200;
14066
+ status: 409;
14067
14067
  } | {
14068
14068
  input: {
14069
14069
  param: {
@@ -14076,7 +14076,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
14076
14076
  };
14077
14077
  output: {};
14078
14078
  outputFormat: string;
14079
- status: 404;
14079
+ status: 200;
14080
14080
  } | {
14081
14081
  input: {
14082
14082
  param: {
@@ -14089,7 +14089,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
14089
14089
  };
14090
14090
  output: {};
14091
14091
  outputFormat: string;
14092
- status: 409;
14092
+ status: 404;
14093
14093
  };
14094
14094
  };
14095
14095
  } & {
@@ -14424,7 +14424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
14424
14424
  args: import("hono/utils/types").JSONValue[];
14425
14425
  }[];
14426
14426
  logs: {
14427
- level: "error" | "log" | "info" | "warn" | "debug";
14427
+ level: "log" | "error" | "info" | "warn" | "debug";
14428
14428
  message: string;
14429
14429
  }[];
14430
14430
  error?: string | undefined;