authhero 8.25.2 → 8.26.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.
Files changed (39) hide show
  1. package/dist/authhero.cjs +115 -115
  2. package/dist/authhero.d.ts +148 -120
  3. package/dist/authhero.mjs +55 -46
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +7 -7
  6. package/dist/types/helpers/codes-cleanup.d.ts +28 -0
  7. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  8. package/dist/types/index.d.ts +119 -117
  9. package/dist/types/routes/auth-api/index.d.ts +20 -20
  10. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  11. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  12. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  13. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  14. package/dist/types/routes/management-api/actions.d.ts +1 -1
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +9 -9
  17. package/dist/types/routes/management-api/clients.d.ts +16 -16
  18. package/dist/types/routes/management-api/connections.d.ts +20 -20
  19. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  20. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  21. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  22. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  23. package/dist/types/routes/management-api/index.d.ts +90 -90
  24. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  25. package/dist/types/routes/management-api/logs.d.ts +4 -4
  26. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  27. package/dist/types/routes/management-api/organizations.d.ts +5 -5
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/roles.d.ts +1 -1
  30. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  31. package/dist/types/routes/management-api/tenants.d.ts +5 -5
  32. package/dist/types/routes/management-api/themes.d.ts +6 -6
  33. package/dist/types/routes/management-api/users.d.ts +2 -2
  34. package/dist/types/routes/universal-login/common.d.ts +14 -14
  35. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  36. package/dist/types/routes/universal-login/index.d.ts +2 -2
  37. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  39. 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?: "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: "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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
427
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
428
428
  enabled: boolean;
429
429
  trial_expired?: boolean | undefined;
430
430
  };
@@ -1196,19 +1196,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1196
1196
  } & {
1197
1197
  json: {
1198
1198
  client_id: string;
1199
- invitee: {
1200
- email?: string | undefined;
1201
- };
1202
1199
  inviter: {
1203
1200
  name?: string | undefined;
1204
1201
  };
1202
+ invitee: {
1203
+ email?: string | undefined;
1204
+ };
1205
1205
  id?: string | undefined;
1206
1206
  app_metadata?: Record<string, any> | undefined;
1207
1207
  user_metadata?: Record<string, any> | undefined;
1208
1208
  connection_id?: string | undefined;
1209
1209
  roles?: string[] | undefined;
1210
- send_invitation_email?: boolean | undefined;
1211
1210
  ttl_sec?: number | undefined;
1211
+ send_invitation_email?: boolean | undefined;
1212
1212
  };
1213
1213
  };
1214
1214
  output: {
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1391
1391
  };
1392
1392
  } & {
1393
1393
  json: {
1394
- show_as_button?: boolean | undefined;
1395
1394
  assign_membership_on_login?: boolean | undefined;
1395
+ show_as_button?: boolean | undefined;
1396
1396
  is_signup_enabled?: boolean | undefined;
1397
1397
  };
1398
1398
  };
@@ -1963,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
  };
@@ -6917,7 +6917,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6917
6917
  };
6918
6918
  };
6919
6919
  output: {
6920
- prompt: "status" | "mfa" | "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";
6920
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
6921
6921
  language: string;
6922
6922
  }[];
6923
6923
  outputFormat: "json";
@@ -6955,7 +6955,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6955
6955
  $get: {
6956
6956
  input: {
6957
6957
  param: {
6958
- prompt: "status" | "mfa" | "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";
6958
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
6959
6959
  language: string;
6960
6960
  };
6961
6961
  } & {
@@ -6977,7 +6977,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6977
6977
  $put: {
6978
6978
  input: {
6979
6979
  param: {
6980
- prompt: "status" | "mfa" | "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";
6980
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
6981
6981
  language: string;
6982
6982
  };
6983
6983
  } & {
@@ -7001,7 +7001,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7001
7001
  $delete: {
7002
7002
  input: {
7003
7003
  param: {
7004
- prompt: "status" | "mfa" | "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";
7004
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
7005
7005
  language: string;
7006
7006
  };
7007
7007
  } & {
@@ -7093,7 +7093,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7093
7093
  active?: boolean | undefined;
7094
7094
  } | undefined;
7095
7095
  signup?: {
7096
- status?: "optional" | "required" | "disabled" | undefined;
7096
+ status?: "required" | "optional" | "disabled" | undefined;
7097
7097
  verification?: {
7098
7098
  active?: boolean | undefined;
7099
7099
  } | undefined;
@@ -7110,7 +7110,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7110
7110
  active?: boolean | undefined;
7111
7111
  } | undefined;
7112
7112
  signup?: {
7113
- status?: "optional" | "required" | "disabled" | undefined;
7113
+ status?: "required" | "optional" | "disabled" | undefined;
7114
7114
  } | undefined;
7115
7115
  validation?: {
7116
7116
  max_length?: number | undefined;
@@ -7127,7 +7127,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7127
7127
  active?: boolean | undefined;
7128
7128
  } | undefined;
7129
7129
  signup?: {
7130
- status?: "optional" | "required" | "disabled" | undefined;
7130
+ status?: "required" | "optional" | "disabled" | undefined;
7131
7131
  } | undefined;
7132
7132
  } | undefined;
7133
7133
  } | undefined;
@@ -7140,7 +7140,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7140
7140
  } | undefined;
7141
7141
  } | undefined;
7142
7142
  passkey_options?: {
7143
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7143
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7144
7144
  local_enrollment_enabled?: boolean | undefined;
7145
7145
  progressive_enrollment_enabled?: boolean | undefined;
7146
7146
  } | undefined;
@@ -7227,7 +7227,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7227
7227
  active?: boolean | undefined;
7228
7228
  } | undefined;
7229
7229
  signup?: {
7230
- status?: "optional" | "required" | "disabled" | undefined;
7230
+ status?: "required" | "optional" | "disabled" | undefined;
7231
7231
  verification?: {
7232
7232
  active?: boolean | undefined;
7233
7233
  } | undefined;
@@ -7244,7 +7244,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7244
7244
  active?: boolean | undefined;
7245
7245
  } | undefined;
7246
7246
  signup?: {
7247
- status?: "optional" | "required" | "disabled" | undefined;
7247
+ status?: "required" | "optional" | "disabled" | undefined;
7248
7248
  } | undefined;
7249
7249
  validation?: {
7250
7250
  max_length?: number | undefined;
@@ -7261,7 +7261,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7261
7261
  active?: boolean | undefined;
7262
7262
  } | undefined;
7263
7263
  signup?: {
7264
- status?: "optional" | "required" | "disabled" | undefined;
7264
+ status?: "required" | "optional" | "disabled" | undefined;
7265
7265
  } | undefined;
7266
7266
  } | undefined;
7267
7267
  } | undefined;
@@ -7274,7 +7274,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7274
7274
  } | undefined;
7275
7275
  } | undefined;
7276
7276
  passkey_options?: {
7277
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7277
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7278
7278
  local_enrollment_enabled?: boolean | undefined;
7279
7279
  progressive_enrollment_enabled?: boolean | undefined;
7280
7280
  } | undefined;
@@ -7377,7 +7377,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7377
7377
  active?: boolean | undefined;
7378
7378
  } | undefined;
7379
7379
  signup?: {
7380
- status?: "optional" | "required" | "disabled" | undefined;
7380
+ status?: "required" | "optional" | "disabled" | undefined;
7381
7381
  verification?: {
7382
7382
  active?: boolean | undefined;
7383
7383
  } | undefined;
@@ -7394,7 +7394,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7394
7394
  active?: boolean | undefined;
7395
7395
  } | undefined;
7396
7396
  signup?: {
7397
- status?: "optional" | "required" | "disabled" | undefined;
7397
+ status?: "required" | "optional" | "disabled" | undefined;
7398
7398
  } | undefined;
7399
7399
  validation?: {
7400
7400
  max_length?: number | undefined;
@@ -7411,7 +7411,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7411
7411
  active?: boolean | undefined;
7412
7412
  } | undefined;
7413
7413
  signup?: {
7414
- status?: "optional" | "required" | "disabled" | undefined;
7414
+ status?: "required" | "optional" | "disabled" | undefined;
7415
7415
  } | undefined;
7416
7416
  } | undefined;
7417
7417
  } | undefined;
@@ -7424,7 +7424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7424
7424
  } | undefined;
7425
7425
  } | undefined;
7426
7426
  passkey_options?: {
7427
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7427
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7428
7428
  local_enrollment_enabled?: boolean | undefined;
7429
7429
  progressive_enrollment_enabled?: boolean | undefined;
7430
7430
  } | undefined;
@@ -7556,7 +7556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7556
7556
  active?: boolean | undefined;
7557
7557
  } | undefined;
7558
7558
  signup?: {
7559
- status?: "optional" | "required" | "disabled" | undefined;
7559
+ status?: "required" | "optional" | "disabled" | undefined;
7560
7560
  verification?: {
7561
7561
  active?: boolean | undefined;
7562
7562
  } | undefined;
@@ -7573,7 +7573,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7573
7573
  active?: boolean | undefined;
7574
7574
  } | undefined;
7575
7575
  signup?: {
7576
- status?: "optional" | "required" | "disabled" | undefined;
7576
+ status?: "required" | "optional" | "disabled" | undefined;
7577
7577
  } | undefined;
7578
7578
  validation?: {
7579
7579
  max_length?: number | undefined;
@@ -7590,7 +7590,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7590
7590
  active?: boolean | undefined;
7591
7591
  } | undefined;
7592
7592
  signup?: {
7593
- status?: "optional" | "required" | "disabled" | undefined;
7593
+ status?: "required" | "optional" | "disabled" | undefined;
7594
7594
  } | undefined;
7595
7595
  } | undefined;
7596
7596
  } | undefined;
@@ -7603,7 +7603,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7603
7603
  } | undefined;
7604
7604
  } | undefined;
7605
7605
  passkey_options?: {
7606
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7606
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7607
7607
  local_enrollment_enabled?: boolean | undefined;
7608
7608
  progressive_enrollment_enabled?: boolean | undefined;
7609
7609
  } | undefined;
@@ -7714,7 +7714,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7714
7714
  active?: boolean | undefined;
7715
7715
  } | undefined;
7716
7716
  signup?: {
7717
- status?: "optional" | "required" | "disabled" | undefined;
7717
+ status?: "required" | "optional" | "disabled" | undefined;
7718
7718
  verification?: {
7719
7719
  active?: boolean | undefined;
7720
7720
  } | undefined;
@@ -7731,7 +7731,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7731
7731
  active?: boolean | undefined;
7732
7732
  } | undefined;
7733
7733
  signup?: {
7734
- status?: "optional" | "required" | "disabled" | undefined;
7734
+ status?: "required" | "optional" | "disabled" | undefined;
7735
7735
  } | undefined;
7736
7736
  validation?: {
7737
7737
  max_length?: number | undefined;
@@ -7748,7 +7748,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7748
7748
  active?: boolean | undefined;
7749
7749
  } | undefined;
7750
7750
  signup?: {
7751
- status?: "optional" | "required" | "disabled" | undefined;
7751
+ status?: "required" | "optional" | "disabled" | undefined;
7752
7752
  } | undefined;
7753
7753
  } | undefined;
7754
7754
  } | undefined;
@@ -7761,7 +7761,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7761
7761
  } | undefined;
7762
7762
  } | undefined;
7763
7763
  passkey_options?: {
7764
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7764
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7765
7765
  local_enrollment_enabled?: boolean | undefined;
7766
7766
  progressive_enrollment_enabled?: boolean | undefined;
7767
7767
  } | undefined;
@@ -7900,7 +7900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7900
7900
  tenant_id: string;
7901
7901
  created_at: string;
7902
7902
  updated_at: string;
7903
- deploymentStatus: "failed" | "deployed" | "not_required";
7903
+ deploymentStatus: "deployed" | "failed" | "not_required";
7904
7904
  secrets?: {
7905
7905
  [x: string]: string;
7906
7906
  } | undefined;
@@ -7990,7 +7990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7990
7990
  tenant_id: string;
7991
7991
  created_at: string;
7992
7992
  updated_at: string;
7993
- deploymentStatus: "failed" | "deployed" | "not_required";
7993
+ deploymentStatus: "deployed" | "failed" | "not_required";
7994
7994
  secrets?: {
7995
7995
  [x: string]: string;
7996
7996
  } | undefined;
@@ -8504,7 +8504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8504
8504
  log_type: string;
8505
8505
  category: "user_action" | "admin_action" | "system" | "api";
8506
8506
  actor: {
8507
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8507
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8508
8508
  id?: string | undefined;
8509
8509
  email?: string | undefined;
8510
8510
  org_id?: string | undefined;
@@ -8814,7 +8814,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8814
8814
  created_at: string;
8815
8815
  updated_at: string;
8816
8816
  name: string;
8817
- provider: "auth0" | "oidc" | "okta" | "cognito";
8817
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8818
8818
  connection: string;
8819
8819
  enabled: boolean;
8820
8820
  credentials: {
@@ -8846,7 +8846,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8846
8846
  created_at: string;
8847
8847
  updated_at: string;
8848
8848
  name: string;
8849
- provider: "auth0" | "oidc" | "okta" | "cognito";
8849
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8850
8850
  connection: string;
8851
8851
  enabled: boolean;
8852
8852
  credentials: {
@@ -8872,7 +8872,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8872
8872
  } & {
8873
8873
  json: {
8874
8874
  name: string;
8875
- provider: "auth0" | "oidc" | "okta" | "cognito";
8875
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8876
8876
  connection: string;
8877
8877
  credentials: {
8878
8878
  domain: string;
@@ -8889,7 +8889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8889
8889
  created_at: string;
8890
8890
  updated_at: string;
8891
8891
  name: string;
8892
- provider: "auth0" | "oidc" | "okta" | "cognito";
8892
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8893
8893
  connection: string;
8894
8894
  enabled: boolean;
8895
8895
  credentials: {
@@ -8920,7 +8920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8920
8920
  json: {
8921
8921
  id?: string | undefined;
8922
8922
  name?: string | undefined;
8923
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8923
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8924
8924
  connection?: string | undefined;
8925
8925
  enabled?: boolean | undefined;
8926
8926
  credentials?: {
@@ -8936,7 +8936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8936
8936
  created_at: string;
8937
8937
  updated_at: string;
8938
8938
  name: string;
8939
- provider: "auth0" | "oidc" | "okta" | "cognito";
8939
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8940
8940
  connection: string;
8941
8941
  enabled: boolean;
8942
8942
  credentials: {
@@ -8984,7 +8984,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8984
8984
  [x: string]: import("hono/utils/types").JSONValue;
8985
8985
  };
8986
8986
  id: string;
8987
- status: "active" | "suspended" | "paused";
8987
+ status: "suspended" | "active" | "paused";
8988
8988
  filters?: {
8989
8989
  type: string;
8990
8990
  name: string;
@@ -9016,7 +9016,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9016
9016
  [x: string]: import("hono/utils/types").JSONValue;
9017
9017
  };
9018
9018
  id: string;
9019
- status: "active" | "suspended" | "paused";
9019
+ status: "suspended" | "active" | "paused";
9020
9020
  filters?: {
9021
9021
  type: string;
9022
9022
  name: string;
@@ -9041,7 +9041,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9041
9041
  name: string;
9042
9042
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
9043
9043
  sink: Record<string, unknown>;
9044
- status?: "active" | "suspended" | "paused" | undefined;
9044
+ status?: "suspended" | "active" | "paused" | undefined;
9045
9045
  filters?: {
9046
9046
  type: string;
9047
9047
  name: string;
@@ -9056,7 +9056,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9056
9056
  [x: string]: import("hono/utils/types").JSONValue;
9057
9057
  };
9058
9058
  id: string;
9059
- status: "active" | "suspended" | "paused";
9059
+ status: "suspended" | "active" | "paused";
9060
9060
  filters?: {
9061
9061
  type: string;
9062
9062
  name: string;
@@ -9091,7 +9091,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9091
9091
  }[] | undefined;
9092
9092
  isPriority?: boolean | undefined;
9093
9093
  id?: string | undefined;
9094
- status?: "active" | "suspended" | "paused" | undefined;
9094
+ status?: "suspended" | "active" | "paused" | undefined;
9095
9095
  created_at?: string | undefined;
9096
9096
  updated_at?: string | undefined;
9097
9097
  };
@@ -9103,7 +9103,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9103
9103
  [x: string]: import("hono/utils/types").JSONValue;
9104
9104
  };
9105
9105
  id: string;
9106
- status: "active" | "suspended" | "paused";
9106
+ status: "suspended" | "active" | "paused";
9107
9107
  filters?: {
9108
9108
  type: string;
9109
9109
  name: string;
@@ -9154,7 +9154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9154
9154
  };
9155
9155
  };
9156
9156
  output: {
9157
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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";
9157
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9158
9158
  date: string;
9159
9159
  isMobile: boolean;
9160
9160
  log_id: string;
@@ -9193,7 +9193,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9193
9193
  limit: number;
9194
9194
  length: number;
9195
9195
  logs: {
9196
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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";
9196
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9197
9197
  date: string;
9198
9198
  isMobile: boolean;
9199
9199
  log_id: string;
@@ -9232,7 +9232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9232
9232
  next?: string | undefined;
9233
9233
  } | {
9234
9234
  logs: {
9235
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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";
9235
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9236
9236
  date: string;
9237
9237
  isMobile: boolean;
9238
9238
  log_id: string;
@@ -9286,7 +9286,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9286
9286
  };
9287
9287
  };
9288
9288
  output: {
9289
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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";
9289
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9290
9290
  date: string;
9291
9291
  isMobile: boolean;
9292
9292
  log_id: string;
@@ -9697,7 +9697,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9697
9697
  addons?: {
9698
9698
  [x: string]: any;
9699
9699
  } | undefined;
9700
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9700
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9701
9701
  client_metadata?: {
9702
9702
  [x: string]: string;
9703
9703
  } | undefined;
@@ -9799,7 +9799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9799
9799
  addons?: {
9800
9800
  [x: string]: any;
9801
9801
  } | undefined;
9802
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9802
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9803
9803
  client_metadata?: {
9804
9804
  [x: string]: string;
9805
9805
  } | undefined;
@@ -9901,7 +9901,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9901
9901
  addons?: {
9902
9902
  [x: string]: any;
9903
9903
  } | undefined;
9904
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9904
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9905
9905
  client_metadata?: {
9906
9906
  [x: string]: string;
9907
9907
  } | undefined;
@@ -10018,7 +10018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10018
10018
  addons?: {
10019
10019
  [x: string]: any;
10020
10020
  } | undefined;
10021
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10021
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10022
10022
  client_metadata?: {
10023
10023
  [x: string]: string;
10024
10024
  } | undefined;
@@ -10136,7 +10136,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10136
10136
  custom_login_page_preview?: string | undefined;
10137
10137
  form_template?: string | undefined;
10138
10138
  addons?: Record<string, any> | undefined;
10139
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10139
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10140
10140
  client_metadata?: Record<string, string> | undefined;
10141
10141
  hide_sign_up_disabled_error?: boolean | undefined;
10142
10142
  mobile?: Record<string, any> | undefined;
@@ -10222,7 +10222,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10222
10222
  addons?: {
10223
10223
  [x: string]: any;
10224
10224
  } | undefined;
10225
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10225
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10226
10226
  client_metadata?: {
10227
10227
  [x: string]: string;
10228
10228
  } | undefined;
@@ -10319,7 +10319,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10319
10319
  custom_login_page_preview?: string | undefined;
10320
10320
  form_template?: string | undefined;
10321
10321
  addons?: Record<string, any> | undefined;
10322
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10322
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10323
10323
  client_metadata?: Record<string, string> | undefined;
10324
10324
  hide_sign_up_disabled_error?: boolean | undefined;
10325
10325
  mobile?: Record<string, any> | undefined;
@@ -10405,7 +10405,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10405
10405
  addons?: {
10406
10406
  [x: string]: any;
10407
10407
  } | undefined;
10408
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10408
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10409
10409
  client_metadata?: {
10410
10410
  [x: string]: string;
10411
10411
  } | undefined;
@@ -10527,7 +10527,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10527
10527
  active?: boolean | undefined;
10528
10528
  } | undefined;
10529
10529
  signup?: {
10530
- status?: "optional" | "required" | "disabled" | undefined;
10530
+ status?: "required" | "optional" | "disabled" | undefined;
10531
10531
  verification?: {
10532
10532
  active?: boolean | undefined;
10533
10533
  } | undefined;
@@ -10544,7 +10544,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10544
10544
  active?: boolean | undefined;
10545
10545
  } | undefined;
10546
10546
  signup?: {
10547
- status?: "optional" | "required" | "disabled" | undefined;
10547
+ status?: "required" | "optional" | "disabled" | undefined;
10548
10548
  } | undefined;
10549
10549
  validation?: {
10550
10550
  max_length?: number | undefined;
@@ -10561,7 +10561,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10561
10561
  active?: boolean | undefined;
10562
10562
  } | undefined;
10563
10563
  signup?: {
10564
- status?: "optional" | "required" | "disabled" | undefined;
10564
+ status?: "required" | "optional" | "disabled" | undefined;
10565
10565
  } | undefined;
10566
10566
  } | undefined;
10567
10567
  } | undefined;
@@ -10574,7 +10574,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10574
10574
  } | undefined;
10575
10575
  } | undefined;
10576
10576
  passkey_options?: {
10577
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10577
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10578
10578
  local_enrollment_enabled?: boolean | undefined;
10579
10579
  progressive_enrollment_enabled?: boolean | undefined;
10580
10580
  } | undefined;
@@ -10681,7 +10681,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10681
10681
  active?: boolean | undefined;
10682
10682
  } | undefined;
10683
10683
  signup?: {
10684
- status?: "optional" | "required" | "disabled" | undefined;
10684
+ status?: "required" | "optional" | "disabled" | undefined;
10685
10685
  verification?: {
10686
10686
  active?: boolean | undefined;
10687
10687
  } | undefined;
@@ -10698,7 +10698,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10698
10698
  active?: boolean | undefined;
10699
10699
  } | undefined;
10700
10700
  signup?: {
10701
- status?: "optional" | "required" | "disabled" | undefined;
10701
+ status?: "required" | "optional" | "disabled" | undefined;
10702
10702
  } | undefined;
10703
10703
  validation?: {
10704
10704
  max_length?: number | undefined;
@@ -10715,7 +10715,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10715
10715
  active?: boolean | undefined;
10716
10716
  } | undefined;
10717
10717
  signup?: {
10718
- status?: "optional" | "required" | "disabled" | undefined;
10718
+ status?: "required" | "optional" | "disabled" | undefined;
10719
10719
  } | undefined;
10720
10720
  } | undefined;
10721
10721
  } | undefined;
@@ -10728,7 +10728,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10728
10728
  } | undefined;
10729
10729
  } | undefined;
10730
10730
  passkey_options?: {
10731
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10731
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10732
10732
  local_enrollment_enabled?: boolean | undefined;
10733
10733
  progressive_enrollment_enabled?: boolean | undefined;
10734
10734
  } | undefined;
@@ -11741,7 +11741,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11741
11741
  };
11742
11742
  };
11743
11743
  output: {
11744
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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";
11744
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11745
11745
  date: string;
11746
11746
  isMobile: boolean;
11747
11747
  log_id: string;
@@ -11780,7 +11780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11780
11780
  limit: number;
11781
11781
  length: number;
11782
11782
  logs: {
11783
- type: "i" | "s" | "fc" | "fd" | "fn" | "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" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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" | "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";
11783
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11784
11784
  date: string;
11785
11785
  isMobile: boolean;
11786
11786
  log_id: string;
@@ -12962,12 +12962,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12962
12962
  background_color: string;
12963
12963
  background_image_url: string;
12964
12964
  page_layout: "center" | "left" | "right";
12965
- logo_placement?: "none" | "widget" | "chip" | undefined;
12965
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12966
12966
  };
12967
12967
  widget: {
12968
12968
  header_text_alignment: "center" | "left" | "right";
12969
12969
  logo_height: number;
12970
- logo_position: "none" | "center" | "left" | "right";
12970
+ logo_position: "center" | "left" | "right" | "none";
12971
12971
  logo_url: string;
12972
12972
  social_buttons_layout: "bottom" | "top";
12973
12973
  };
@@ -13052,12 +13052,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13052
13052
  background_color: string;
13053
13053
  background_image_url: string;
13054
13054
  page_layout: "center" | "left" | "right";
13055
- logo_placement?: "none" | "widget" | "chip" | undefined;
13055
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13056
13056
  };
13057
13057
  widget: {
13058
13058
  header_text_alignment: "center" | "left" | "right";
13059
13059
  logo_height: number;
13060
- logo_position: "none" | "center" | "left" | "right";
13060
+ logo_position: "center" | "left" | "right" | "none";
13061
13061
  logo_url: string;
13062
13062
  social_buttons_layout: "bottom" | "top";
13063
13063
  };
@@ -13131,12 +13131,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13131
13131
  background_color: string;
13132
13132
  background_image_url: string;
13133
13133
  page_layout: "center" | "left" | "right";
13134
- logo_placement?: "none" | "widget" | "chip" | undefined;
13134
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13135
13135
  };
13136
13136
  widget: {
13137
13137
  header_text_alignment: "center" | "left" | "right";
13138
13138
  logo_height: number;
13139
- logo_position: "none" | "center" | "left" | "right";
13139
+ logo_position: "center" | "left" | "right" | "none";
13140
13140
  logo_url: string;
13141
13141
  social_buttons_layout: "bottom" | "top";
13142
13142
  };
@@ -13293,7 +13293,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13293
13293
  } & {
13294
13294
  json: {
13295
13295
  body?: string | undefined;
13296
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
13296
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
13297
13297
  branding?: {
13298
13298
  colors?: {
13299
13299
  primary: string;
@@ -13379,12 +13379,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13379
13379
  background_color: string;
13380
13380
  background_image_url: string;
13381
13381
  page_layout: "center" | "left" | "right";
13382
- logo_placement?: "none" | "widget" | "chip" | undefined;
13382
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13383
13383
  } | undefined;
13384
13384
  widget?: {
13385
13385
  header_text_alignment: "center" | "left" | "right";
13386
13386
  logo_height: number;
13387
- logo_position: "none" | "center" | "left" | "right";
13387
+ logo_position: "center" | "left" | "right" | "none";
13388
13388
  logo_url: string;
13389
13389
  social_buttons_layout: "bottom" | "top";
13390
13390
  } | undefined;
@@ -13537,7 +13537,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13537
13537
  output: {
13538
13538
  id: string;
13539
13539
  trigger_id: string;
13540
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13540
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
13541
13541
  results: {
13542
13542
  action_name: string;
13543
13543
  error: {
@@ -13584,7 +13584,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13584
13584
  logs: {
13585
13585
  action_name: string;
13586
13586
  lines: {
13587
- level: "log" | "error" | "info" | "warn" | "debug";
13587
+ level: "error" | "log" | "info" | "warn" | "debug";
13588
13588
  message: string;
13589
13589
  }[];
13590
13590
  }[];
@@ -14253,7 +14253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
14253
14253
  args: import("hono/utils/types").JSONValue[];
14254
14254
  }[];
14255
14255
  logs: {
14256
- level: "log" | "error" | "info" | "warn" | "debug";
14256
+ level: "error" | "log" | "info" | "warn" | "debug";
14257
14257
  message: string;
14258
14258
  }[];
14259
14259
  error?: string | undefined;