authhero 8.23.1 → 8.24.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 (43) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +139 -142
  3. package/dist/authhero.d.ts +349 -145
  4. package/dist/authhero.mjs +19659 -15484
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/adapters/control-plane-custom-domains.d.ts +35 -0
  7. package/dist/types/authentication-flows/passwordless.d.ts +5 -5
  8. package/dist/types/helpers/control-plane-client.d.ts +46 -0
  9. package/dist/types/helpers/control-plane-sync-events.d.ts +12 -28
  10. package/dist/types/index.d.ts +174 -100
  11. package/dist/types/routes/auth-api/index.d.ts +24 -24
  12. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  13. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  14. package/dist/types/routes/auth-api/token.d.ts +10 -10
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +1 -1
  17. package/dist/types/routes/management-api/clients.d.ts +6 -6
  18. package/dist/types/routes/management-api/connections.d.ts +15 -15
  19. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  20. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  21. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  22. package/dist/types/routes/management-api/helpers.d.ts +47 -0
  23. package/dist/types/routes/management-api/index.d.ts +140 -71
  24. package/dist/types/routes/management-api/logs.d.ts +4 -4
  25. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  26. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  27. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  28. package/dist/types/routes/management-api/roles.d.ts +1 -1
  29. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  30. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  31. package/dist/types/routes/management-api/users.d.ts +71 -2
  32. package/dist/types/routes/proxy-control-plane/custom-domains.d.ts +45 -0
  33. package/dist/types/routes/proxy-control-plane/index.d.ts +24 -6
  34. package/dist/types/routes/proxy-control-plane/scopes.d.ts +13 -0
  35. package/dist/types/routes/proxy-control-plane/verify.d.ts +15 -4
  36. package/dist/types/routes/universal-login/common.d.ts +6 -6
  37. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  38. package/dist/types/routes/universal-login/index.d.ts +2 -2
  39. package/dist/types/routes/universal-login/u2-index.d.ts +3 -3
  40. package/dist/types/routes/universal-login/u2-routes.d.ts +3 -3
  41. package/dist/types/types/AuthHeroConfig.d.ts +22 -7
  42. package/dist/types/types/IdToken.d.ts +4 -4
  43. 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?: "false" | "true" | undefined;
12
- gzip?: "false" | "true" | undefined;
11
+ include_password_hashes?: "true" | "false" | undefined;
12
+ gzip?: "true" | "false" | undefined;
13
13
  };
14
14
  } & {
15
15
  header: {
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
22
22
  } | {
23
23
  input: {
24
24
  query: {
25
- include_password_hashes?: "false" | "true" | undefined;
26
- gzip?: "false" | "true" | undefined;
25
+ include_password_hashes?: "true" | "false" | undefined;
26
+ gzip?: "true" | "false" | undefined;
27
27
  };
28
28
  } & {
29
29
  header: {
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
42
42
  $post: {
43
43
  input: {
44
44
  query: {
45
- include_password_hashes?: "false" | "true" | undefined;
45
+ include_password_hashes?: "true" | "false" | undefined;
46
46
  };
47
47
  } & {
48
48
  header: {
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
96
96
  };
97
97
  } & {
98
98
  json: {
99
- type: "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: "email" | "sms" | "otp" | "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: "email" | "sms" | "otp" | "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: "email" | "sms" | "otp" | "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: "email" | "sms" | "otp" | "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: "email" | "sms" | "otp" | "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
  };
@@ -1202,11 +1202,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1202
1202
  invitee: {
1203
1203
  email?: string | undefined;
1204
1204
  };
1205
- roles?: string[] | undefined;
1206
1205
  id?: string | undefined;
1206
+ connection_id?: string | undefined;
1207
1207
  app_metadata?: Record<string, any> | undefined;
1208
1208
  user_metadata?: Record<string, any> | undefined;
1209
- connection_id?: string | undefined;
1209
+ roles?: string[] | undefined;
1210
1210
  ttl_sec?: number | undefined;
1211
1211
  send_invitation_email?: boolean | undefined;
1212
1212
  };
@@ -1963,9 +1963,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1963
1963
  };
1964
1964
  } & {
1965
1965
  query: {
1966
+ from?: string | undefined;
1966
1967
  page?: string | undefined;
1967
1968
  include_totals?: string | undefined;
1968
- from?: string | undefined;
1969
1969
  per_page?: string | undefined;
1970
1970
  take?: string | undefined;
1971
1971
  };
@@ -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: "mfa" | "organizations" | "signup" | "status" | "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";
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: "mfa" | "organizations" | "signup" | "status" | "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";
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: "mfa" | "organizations" | "signup" | "status" | "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";
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: "mfa" | "organizations" | "signup" | "status" | "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";
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?: "required" | "optional" | "disabled" | undefined;
7096
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
7113
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
7130
+ status?: "optional" | "required" | "disabled" | undefined;
7131
7131
  } | undefined;
7132
7132
  } | undefined;
7133
7133
  } | 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?: "required" | "optional" | "disabled" | undefined;
7230
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
7247
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
7264
+ status?: "optional" | "required" | "disabled" | undefined;
7265
7265
  } | undefined;
7266
7266
  } | undefined;
7267
7267
  } | 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?: "required" | "optional" | "disabled" | undefined;
7380
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
7397
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
7414
+ status?: "optional" | "required" | "disabled" | undefined;
7415
7415
  } | undefined;
7416
7416
  } | undefined;
7417
7417
  } | 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?: "required" | "optional" | "disabled" | undefined;
7559
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
7576
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
7593
+ status?: "optional" | "required" | "disabled" | undefined;
7594
7594
  } | undefined;
7595
7595
  } | undefined;
7596
7596
  } | 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?: "required" | "optional" | "disabled" | undefined;
7717
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
7734
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
7751
+ status?: "optional" | "required" | "disabled" | undefined;
7752
7752
  } | undefined;
7753
7753
  } | undefined;
7754
7754
  } | 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: {
@@ -9154,7 +9154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9154
9154
  };
9155
9155
  };
9156
9156
  output: {
9157
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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";
9157
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
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: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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";
9196
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
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: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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";
9235
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
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: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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";
9289
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
9290
9290
  date: string;
9291
9291
  isMobile: boolean;
9292
9292
  log_id: string;
@@ -10527,7 +10527,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10527
10527
  active?: boolean | undefined;
10528
10528
  } | undefined;
10529
10529
  signup?: {
10530
- status?: "required" | "optional" | "disabled" | undefined;
10530
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
10547
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
10564
+ status?: "optional" | "required" | "disabled" | undefined;
10565
10565
  } | undefined;
10566
10566
  } | undefined;
10567
10567
  } | 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?: "required" | "optional" | "disabled" | undefined;
10684
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
10701
+ status?: "optional" | "required" | "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?: "required" | "optional" | "disabled" | undefined;
10718
+ status?: "optional" | "required" | "disabled" | undefined;
10719
10719
  } | undefined;
10720
10720
  } | undefined;
10721
10721
  } | undefined;
@@ -11094,6 +11094,75 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11094
11094
  }[];
11095
11095
  total?: number | undefined;
11096
11096
  next?: string | undefined;
11097
+ } | {
11098
+ users: {
11099
+ created_at: string;
11100
+ updated_at: string;
11101
+ connection: string;
11102
+ user_id: string;
11103
+ email_verified: boolean;
11104
+ provider: string;
11105
+ is_social: boolean;
11106
+ login_count: number;
11107
+ name?: string | undefined;
11108
+ email?: string | undefined;
11109
+ username?: string | undefined;
11110
+ given_name?: string | undefined;
11111
+ phone_number?: string | undefined;
11112
+ phone_verified?: boolean | undefined;
11113
+ family_name?: string | undefined;
11114
+ profileData?: string | undefined;
11115
+ address?: {
11116
+ formatted?: string | undefined;
11117
+ street_address?: string | undefined;
11118
+ locality?: string | undefined;
11119
+ region?: string | undefined;
11120
+ postal_code?: string | undefined;
11121
+ country?: string | undefined;
11122
+ } | undefined;
11123
+ nickname?: string | undefined;
11124
+ picture?: string | undefined;
11125
+ locale?: string | undefined;
11126
+ linked_to?: string | undefined;
11127
+ app_metadata?: any;
11128
+ user_metadata?: any;
11129
+ middle_name?: string | undefined;
11130
+ preferred_username?: string | undefined;
11131
+ profile?: string | undefined;
11132
+ website?: string | undefined;
11133
+ gender?: string | undefined;
11134
+ birthdate?: string | undefined;
11135
+ zoneinfo?: string | undefined;
11136
+ verify_email?: boolean | undefined;
11137
+ last_ip?: string | undefined;
11138
+ last_login?: string | undefined;
11139
+ identities?: {
11140
+ connection: string;
11141
+ user_id: string;
11142
+ provider: string;
11143
+ isSocial: boolean;
11144
+ email?: string | undefined;
11145
+ email_verified?: boolean | undefined;
11146
+ phone_number?: string | undefined;
11147
+ phone_verified?: boolean | undefined;
11148
+ username?: string | undefined;
11149
+ access_token?: string | undefined;
11150
+ access_token_secret?: string | undefined;
11151
+ refresh_token?: string | undefined;
11152
+ profileData?: {
11153
+ [x: string]: any;
11154
+ email?: string | undefined;
11155
+ email_verified?: boolean | undefined;
11156
+ name?: string | undefined;
11157
+ username?: string | undefined;
11158
+ given_name?: string | undefined;
11159
+ phone_number?: string | undefined;
11160
+ phone_verified?: boolean | undefined;
11161
+ family_name?: string | undefined;
11162
+ } | undefined;
11163
+ }[] | undefined;
11164
+ }[];
11165
+ next?: string | undefined;
11097
11166
  };
11098
11167
  outputFormat: "json";
11099
11168
  status: 200;
@@ -11672,7 +11741,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11672
11741
  };
11673
11742
  };
11674
11743
  output: {
11675
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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";
11744
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
11676
11745
  date: string;
11677
11746
  isMobile: boolean;
11678
11747
  log_id: string;
@@ -11711,7 +11780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11711
11780
  limit: number;
11712
11781
  length: number;
11713
11782
  logs: {
11714
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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";
11783
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
11715
11784
  date: string;
11716
11785
  isMobile: boolean;
11717
11786
  log_id: string;
@@ -12030,7 +12099,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12030
12099
  };
12031
12100
  } & {
12032
12101
  json: {
12033
- 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";
12102
+ 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";
12034
12103
  body: string;
12035
12104
  from: string;
12036
12105
  subject: string;
@@ -12051,7 +12120,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12051
12120
  };
12052
12121
  } & {
12053
12122
  json: {
12054
- 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";
12123
+ 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";
12055
12124
  body: string;
12056
12125
  from: string;
12057
12126
  subject: string;
@@ -12063,7 +12132,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12063
12132
  };
12064
12133
  };
12065
12134
  output: {
12066
- 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";
12135
+ 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";
12067
12136
  body: string;
12068
12137
  from: string;
12069
12138
  subject: string;
@@ -12086,7 +12155,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12086
12155
  };
12087
12156
  };
12088
12157
  output: {
12089
- 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";
12158
+ 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";
12090
12159
  body: string;
12091
12160
  subject: string;
12092
12161
  }[];
@@ -12099,7 +12168,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12099
12168
  $get: {
12100
12169
  input: {
12101
12170
  param: {
12102
- 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";
12171
+ 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";
12103
12172
  };
12104
12173
  } & {
12105
12174
  header: {
@@ -12112,7 +12181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12112
12181
  } | {
12113
12182
  input: {
12114
12183
  param: {
12115
- 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";
12184
+ 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";
12116
12185
  };
12117
12186
  } & {
12118
12187
  header: {
@@ -12120,7 +12189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12120
12189
  };
12121
12190
  };
12122
12191
  output: {
12123
- 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";
12192
+ 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";
12124
12193
  body: string;
12125
12194
  from: string;
12126
12195
  subject: string;
@@ -12139,7 +12208,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12139
12208
  $put: {
12140
12209
  input: {
12141
12210
  param: {
12142
- 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";
12211
+ 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";
12143
12212
  };
12144
12213
  } & {
12145
12214
  header: {
@@ -12147,7 +12216,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12147
12216
  };
12148
12217
  } & {
12149
12218
  json: {
12150
- 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";
12219
+ 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";
12151
12220
  body: string;
12152
12221
  subject: string;
12153
12222
  syntax?: "liquid" | undefined;
@@ -12159,7 +12228,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12159
12228
  };
12160
12229
  };
12161
12230
  output: {
12162
- 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";
12231
+ 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";
12163
12232
  body: string;
12164
12233
  from: string;
12165
12234
  subject: string;
@@ -12178,7 +12247,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12178
12247
  $patch: {
12179
12248
  input: {
12180
12249
  param: {
12181
- 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";
12250
+ 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";
12182
12251
  };
12183
12252
  } & {
12184
12253
  header: {
@@ -12186,7 +12255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12186
12255
  };
12187
12256
  } & {
12188
12257
  json: {
12189
- 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;
12258
+ 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;
12190
12259
  body?: string | undefined;
12191
12260
  from?: string | undefined;
12192
12261
  subject?: string | undefined;
@@ -12203,7 +12272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12203
12272
  } | {
12204
12273
  input: {
12205
12274
  param: {
12206
- 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";
12275
+ 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";
12207
12276
  };
12208
12277
  } & {
12209
12278
  header: {
@@ -12211,7 +12280,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12211
12280
  };
12212
12281
  } & {
12213
12282
  json: {
12214
- 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;
12283
+ 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;
12215
12284
  body?: string | undefined;
12216
12285
  from?: string | undefined;
12217
12286
  subject?: string | undefined;
@@ -12223,7 +12292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12223
12292
  };
12224
12293
  };
12225
12294
  output: {
12226
- 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
+ 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";
12227
12296
  body: string;
12228
12297
  from: string;
12229
12298
  subject: string;
@@ -12242,7 +12311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12242
12311
  $delete: {
12243
12312
  input: {
12244
12313
  param: {
12245
- 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";
12314
+ 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";
12246
12315
  };
12247
12316
  } & {
12248
12317
  header: {
@@ -12255,7 +12324,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12255
12324
  } | {
12256
12325
  input: {
12257
12326
  param: {
12258
- 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";
12327
+ 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";
12259
12328
  };
12260
12329
  } & {
12261
12330
  header: {
@@ -12272,7 +12341,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12272
12341
  $post: {
12273
12342
  input: {
12274
12343
  param: {
12275
- 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";
12344
+ 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";
12276
12345
  };
12277
12346
  } & {
12278
12347
  header: {
@@ -13224,7 +13293,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13224
13293
  } & {
13225
13294
  json: {
13226
13295
  body?: string | undefined;
13227
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
13296
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
13228
13297
  branding?: {
13229
13298
  colors?: {
13230
13299
  primary: string;