authhero 9.10.0 → 9.11.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 (31) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +146 -146
  3. package/dist/authhero.d.ts +341 -119
  4. package/dist/authhero.mjs +15107 -14199
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  7. package/dist/types/helpers/reserved-claims.d.ts +2 -2
  8. package/dist/types/helpers/run-retention.d.ts +5 -0
  9. package/dist/types/helpers/users-import/map.d.ts +128 -0
  10. package/dist/types/helpers/users-import/process.d.ts +95 -0
  11. package/dist/types/helpers/users-import-cleanup.d.ts +26 -0
  12. package/dist/types/index.d.ts +238 -115
  13. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  14. package/dist/types/routes/management-api/branding.d.ts +9 -9
  15. package/dist/types/routes/management-api/client-grants.d.ts +9 -9
  16. package/dist/types/routes/management-api/failed-events.d.ts +2 -2
  17. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  18. package/dist/types/routes/management-api/index.d.ts +194 -75
  19. package/dist/types/routes/management-api/jobs.d.ts +133 -0
  20. package/dist/types/routes/management-api/logs.d.ts +4 -4
  21. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  22. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  23. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  24. package/dist/types/routes/management-api/tenant-operations.d.ts +33 -9
  25. package/dist/types/routes/management-api/users.d.ts +2 -2
  26. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  27. package/dist/types/state-machines/login-session.d.ts +1 -1
  28. package/dist/types/types/AuthHeroConfig.d.ts +13 -0
  29. package/dist/types/types/Bindings.d.ts +2 -0
  30. package/dist/types/types/auth0/UserImport.d.ts +317 -0
  31. package/package.json +6 -6
@@ -4,6 +4,125 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4
4
  Bindings: Bindings;
5
5
  Variables: Variables;
6
6
  }, import("hono/types").MergeSchemaPath<{
7
+ "/users-imports": {
8
+ $post: {
9
+ input: {
10
+ header: {
11
+ "tenant-id"?: string | undefined;
12
+ };
13
+ } & {
14
+ form: {
15
+ users: any;
16
+ connection_id: string;
17
+ upsert?: string | boolean | undefined;
18
+ external_id?: string | undefined;
19
+ send_completion_email?: string | boolean | undefined;
20
+ };
21
+ };
22
+ output: {
23
+ id: string;
24
+ type: string;
25
+ status: "pending" | "failed" | "completed";
26
+ created_at?: string | undefined;
27
+ connection_id?: string | undefined;
28
+ external_id?: string | undefined;
29
+ percentage_done?: number | undefined;
30
+ time_left_seconds?: number | undefined;
31
+ status_details?: string | undefined;
32
+ summary?: {
33
+ failed: number;
34
+ updated: number;
35
+ inserted: number;
36
+ total: number;
37
+ } | undefined;
38
+ };
39
+ outputFormat: "json";
40
+ status: 202;
41
+ };
42
+ };
43
+ } & {
44
+ "/:id": {
45
+ $get: {
46
+ input: {
47
+ param: {
48
+ id: string;
49
+ };
50
+ } & {
51
+ header: {
52
+ "tenant-id"?: string | undefined;
53
+ };
54
+ };
55
+ output: {
56
+ id: string;
57
+ type: string;
58
+ status: "pending" | "failed" | "completed";
59
+ created_at?: string | undefined;
60
+ connection_id?: string | undefined;
61
+ external_id?: string | undefined;
62
+ percentage_done?: number | undefined;
63
+ time_left_seconds?: number | undefined;
64
+ status_details?: string | undefined;
65
+ summary?: {
66
+ failed: number;
67
+ updated: number;
68
+ inserted: number;
69
+ total: number;
70
+ } | undefined;
71
+ };
72
+ outputFormat: "json";
73
+ status: 200;
74
+ };
75
+ };
76
+ } & {
77
+ "/:id/errors": {
78
+ $get: {
79
+ input: {
80
+ param: {
81
+ id: string;
82
+ };
83
+ } & {
84
+ query: {
85
+ page?: unknown;
86
+ per_page?: unknown;
87
+ };
88
+ } & {
89
+ header: {
90
+ "tenant-id"?: string | undefined;
91
+ };
92
+ };
93
+ output: {};
94
+ outputFormat: string;
95
+ status: 204;
96
+ } | {
97
+ input: {
98
+ param: {
99
+ id: string;
100
+ };
101
+ } & {
102
+ query: {
103
+ page?: unknown;
104
+ per_page?: unknown;
105
+ };
106
+ } & {
107
+ header: {
108
+ "tenant-id"?: string | undefined;
109
+ };
110
+ };
111
+ output: {
112
+ user: {
113
+ [x: string]: import("hono/utils/types").JSONValue;
114
+ };
115
+ errors: {
116
+ code: string;
117
+ message: string;
118
+ path?: string | undefined;
119
+ }[];
120
+ }[];
121
+ outputFormat: "json";
122
+ status: 200;
123
+ };
124
+ };
125
+ }, "/jobs"> & import("hono/types").MergeSchemaPath<{
7
126
  "/export": {
8
127
  $get: {
9
128
  input: {
@@ -96,7 +215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
96
215
  };
97
216
  } & {
98
217
  json: {
99
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
218
+ type: "email" | "totp" | "phone" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform";
100
219
  phone_number?: string | undefined;
101
220
  totp_secret?: string | undefined;
102
221
  credential_id?: string | undefined;
@@ -236,7 +355,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
236
355
  };
237
356
  };
238
357
  output: {
239
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
358
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
240
359
  enabled: boolean;
241
360
  trial_expired?: boolean | undefined;
242
361
  }[];
@@ -391,7 +510,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
391
510
  $get: {
392
511
  input: {
393
512
  param: {
394
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
513
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
395
514
  };
396
515
  } & {
397
516
  header: {
@@ -399,7 +518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
399
518
  };
400
519
  };
401
520
  output: {
402
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
521
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
403
522
  enabled: boolean;
404
523
  trial_expired?: boolean | undefined;
405
524
  };
@@ -412,7 +531,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
412
531
  $put: {
413
532
  input: {
414
533
  param: {
415
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
534
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
416
535
  };
417
536
  } & {
418
537
  header: {
@@ -424,7 +543,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
424
543
  };
425
544
  };
426
545
  output: {
427
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
546
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
428
547
  enabled: boolean;
429
548
  trial_expired?: boolean | undefined;
430
549
  };
@@ -1203,9 +1322,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1203
1322
  email?: string | undefined;
1204
1323
  };
1205
1324
  id?: string | undefined;
1206
- connection_id?: string | undefined;
1207
1325
  app_metadata?: Record<string, any> | undefined;
1208
1326
  user_metadata?: Record<string, any> | undefined;
1327
+ connection_id?: string | undefined;
1209
1328
  roles?: string[] | undefined;
1210
1329
  ttl_sec?: number | undefined;
1211
1330
  send_invitation_email?: boolean | undefined;
@@ -1391,8 +1510,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1391
1510
  };
1392
1511
  } & {
1393
1512
  json: {
1394
- assign_membership_on_login?: boolean | undefined;
1395
1513
  show_as_button?: boolean | undefined;
1514
+ assign_membership_on_login?: boolean | undefined;
1396
1515
  is_signup_enabled?: boolean | undefined;
1397
1516
  };
1398
1517
  };
@@ -1963,9 +2082,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1963
2082
  };
1964
2083
  } & {
1965
2084
  query: {
1966
- from?: string | undefined;
1967
2085
  page?: string | undefined;
1968
2086
  include_totals?: string | undefined;
2087
+ from?: string | undefined;
1969
2088
  per_page?: string | undefined;
1970
2089
  take?: string | undefined;
1971
2090
  };
@@ -7035,7 +7154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7035
7154
  };
7036
7155
  };
7037
7156
  output: {
7038
- prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7157
+ prompt: "status" | "signup" | "login" | "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";
7039
7158
  language: string;
7040
7159
  }[];
7041
7160
  outputFormat: "json";
@@ -7073,7 +7192,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7073
7192
  $get: {
7074
7193
  input: {
7075
7194
  param: {
7076
- prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7195
+ prompt: "status" | "signup" | "login" | "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";
7077
7196
  language: string;
7078
7197
  };
7079
7198
  } & {
@@ -7095,7 +7214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7095
7214
  $put: {
7096
7215
  input: {
7097
7216
  param: {
7098
- prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7217
+ prompt: "status" | "signup" | "login" | "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";
7099
7218
  language: string;
7100
7219
  };
7101
7220
  } & {
@@ -7119,7 +7238,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7119
7238
  $delete: {
7120
7239
  input: {
7121
7240
  param: {
7122
- prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7241
+ prompt: "status" | "signup" | "login" | "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";
7123
7242
  language: string;
7124
7243
  };
7125
7244
  } & {
@@ -8729,9 +8848,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8729
8848
  tenant_id: string;
8730
8849
  event_type: string;
8731
8850
  log_type: string;
8732
- category: "user_action" | "admin_action" | "system" | "api";
8851
+ category: "system" | "user_action" | "admin_action" | "api";
8733
8852
  actor: {
8734
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8853
+ type: "user" | "system" | "client_credentials" | "admin" | "api_key";
8735
8854
  id?: string | undefined;
8736
8855
  email?: string | undefined;
8737
8856
  org_id?: string | undefined;
@@ -9232,7 +9351,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9232
9351
  [x: string]: import("hono/utils/types").JSONValue;
9233
9352
  };
9234
9353
  id: string;
9235
- status: "suspended" | "active" | "paused";
9354
+ status: "active" | "suspended" | "paused";
9236
9355
  filters?: {
9237
9356
  type: string;
9238
9357
  name: string;
@@ -9264,7 +9383,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9264
9383
  [x: string]: import("hono/utils/types").JSONValue;
9265
9384
  };
9266
9385
  id: string;
9267
- status: "suspended" | "active" | "paused";
9386
+ status: "active" | "suspended" | "paused";
9268
9387
  filters?: {
9269
9388
  type: string;
9270
9389
  name: string;
@@ -9289,7 +9408,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9289
9408
  name: string;
9290
9409
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
9291
9410
  sink: Record<string, unknown>;
9292
- status?: "suspended" | "active" | "paused" | undefined;
9411
+ status?: "active" | "suspended" | "paused" | undefined;
9293
9412
  filters?: {
9294
9413
  type: string;
9295
9414
  name: string;
@@ -9304,7 +9423,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9304
9423
  [x: string]: import("hono/utils/types").JSONValue;
9305
9424
  };
9306
9425
  id: string;
9307
- status: "suspended" | "active" | "paused";
9426
+ status: "active" | "suspended" | "paused";
9308
9427
  filters?: {
9309
9428
  type: string;
9310
9429
  name: string;
@@ -9339,7 +9458,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9339
9458
  }[] | undefined;
9340
9459
  isPriority?: boolean | undefined;
9341
9460
  id?: string | undefined;
9342
- status?: "suspended" | "active" | "paused" | undefined;
9461
+ status?: "active" | "suspended" | "paused" | undefined;
9343
9462
  created_at?: string | undefined;
9344
9463
  updated_at?: string | undefined;
9345
9464
  };
@@ -9351,7 +9470,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9351
9470
  [x: string]: import("hono/utils/types").JSONValue;
9352
9471
  };
9353
9472
  id: string;
9354
- status: "suspended" | "active" | "paused";
9473
+ status: "active" | "suspended" | "paused";
9355
9474
  filters?: {
9356
9475
  type: string;
9357
9476
  name: string;
@@ -9402,7 +9521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9402
9521
  };
9403
9522
  };
9404
9523
  output: {
9405
- type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9524
+ type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9406
9525
  date: string;
9407
9526
  isMobile: boolean;
9408
9527
  log_id: string;
@@ -9441,7 +9560,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9441
9560
  limit: number;
9442
9561
  length: number;
9443
9562
  logs: {
9444
- type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9563
+ type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9445
9564
  date: string;
9446
9565
  isMobile: boolean;
9447
9566
  log_id: string;
@@ -9480,7 +9599,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9480
9599
  next?: string | undefined;
9481
9600
  } | {
9482
9601
  logs: {
9483
- type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9602
+ type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9484
9603
  date: string;
9485
9604
  isMobile: boolean;
9486
9605
  log_id: string;
@@ -9534,7 +9653,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9534
9653
  };
9535
9654
  };
9536
9655
  output: {
9537
- type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9656
+ type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9538
9657
  date: string;
9539
9658
  isMobile: boolean;
9540
9659
  log_id: string;
@@ -9945,7 +10064,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9945
10064
  addons?: {
9946
10065
  [x: string]: any;
9947
10066
  } | undefined;
9948
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10067
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9949
10068
  client_metadata?: {
9950
10069
  [x: string]: string;
9951
10070
  } | undefined;
@@ -10047,7 +10166,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10047
10166
  addons?: {
10048
10167
  [x: string]: any;
10049
10168
  } | undefined;
10050
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10169
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10051
10170
  client_metadata?: {
10052
10171
  [x: string]: string;
10053
10172
  } | undefined;
@@ -10149,7 +10268,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10149
10268
  addons?: {
10150
10269
  [x: string]: any;
10151
10270
  } | undefined;
10152
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10271
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10153
10272
  client_metadata?: {
10154
10273
  [x: string]: string;
10155
10274
  } | undefined;
@@ -10266,7 +10385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10266
10385
  addons?: {
10267
10386
  [x: string]: any;
10268
10387
  } | undefined;
10269
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10388
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10270
10389
  client_metadata?: {
10271
10390
  [x: string]: string;
10272
10391
  } | undefined;
@@ -10384,7 +10503,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10384
10503
  custom_login_page_preview?: string | undefined;
10385
10504
  form_template?: string | undefined;
10386
10505
  addons?: Record<string, any> | undefined;
10387
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10506
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10388
10507
  client_metadata?: Record<string, string> | undefined;
10389
10508
  hide_sign_up_disabled_error?: boolean | undefined;
10390
10509
  mobile?: Record<string, any> | undefined;
@@ -10470,7 +10589,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10470
10589
  addons?: {
10471
10590
  [x: string]: any;
10472
10591
  } | undefined;
10473
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10592
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10474
10593
  client_metadata?: {
10475
10594
  [x: string]: string;
10476
10595
  } | undefined;
@@ -10567,7 +10686,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10567
10686
  custom_login_page_preview?: string | undefined;
10568
10687
  form_template?: string | undefined;
10569
10688
  addons?: Record<string, any> | undefined;
10570
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10689
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10571
10690
  client_metadata?: Record<string, string> | undefined;
10572
10691
  hide_sign_up_disabled_error?: boolean | undefined;
10573
10692
  mobile?: Record<string, any> | undefined;
@@ -10653,7 +10772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10653
10772
  addons?: {
10654
10773
  [x: string]: any;
10655
10774
  } | undefined;
10656
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10775
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10657
10776
  client_metadata?: {
10658
10777
  [x: string]: string;
10659
10778
  } | undefined;
@@ -11118,8 +11237,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11118
11237
  cert: string;
11119
11238
  fingerprint: string;
11120
11239
  thumbprint: string;
11121
- tenant_id?: string | undefined;
11122
11240
  connection?: string | undefined;
11241
+ tenant_id?: string | undefined;
11123
11242
  next?: boolean | undefined;
11124
11243
  revoked_at?: string | undefined;
11125
11244
  current?: boolean | undefined;
@@ -11157,8 +11276,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11157
11276
  cert: string;
11158
11277
  fingerprint: string;
11159
11278
  thumbprint: string;
11160
- tenant_id?: string | undefined;
11161
11279
  connection?: string | undefined;
11280
+ tenant_id?: string | undefined;
11162
11281
  next?: boolean | undefined;
11163
11282
  revoked_at?: string | undefined;
11164
11283
  current?: boolean | undefined;
@@ -11195,8 +11314,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11195
11314
  cert: string;
11196
11315
  fingerprint: string;
11197
11316
  thumbprint: string;
11198
- tenant_id?: string | undefined;
11199
11317
  connection?: string | undefined;
11318
+ tenant_id?: string | undefined;
11200
11319
  next?: boolean | undefined;
11201
11320
  revoked_at?: string | undefined;
11202
11321
  current?: boolean | undefined;
@@ -11235,8 +11354,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11235
11354
  cert: string;
11236
11355
  fingerprint: string;
11237
11356
  thumbprint: string;
11238
- tenant_id?: string | undefined;
11239
11357
  connection?: string | undefined;
11358
+ tenant_id?: string | undefined;
11240
11359
  next?: boolean | undefined;
11241
11360
  revoked_at?: string | undefined;
11242
11361
  current?: boolean | undefined;
@@ -12089,9 +12208,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12089
12208
  };
12090
12209
  output: {
12091
12210
  id: string;
12211
+ user_id: string;
12092
12212
  created_at: string;
12093
12213
  client_id: string;
12094
- user_id: string;
12095
12214
  rotating: boolean;
12096
12215
  device: {
12097
12216
  initial_user_agent: string;
@@ -12120,9 +12239,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12120
12239
  }[] | {
12121
12240
  tokens: {
12122
12241
  id: string;
12242
+ user_id: string;
12123
12243
  created_at: string;
12124
12244
  client_id: string;
12125
- user_id: string;
12126
12245
  rotating: boolean;
12127
12246
  device: {
12128
12247
  initial_user_agent: string;
@@ -12156,9 +12275,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12156
12275
  length: number;
12157
12276
  tokens: {
12158
12277
  id: string;
12278
+ user_id: string;
12159
12279
  created_at: string;
12160
12280
  client_id: string;
12161
- user_id: string;
12162
12281
  rotating: boolean;
12163
12282
  device: {
12164
12283
  initial_user_agent: string;
@@ -12234,7 +12353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12234
12353
  };
12235
12354
  };
12236
12355
  output: {
12237
- type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12356
+ type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12238
12357
  date: string;
12239
12358
  isMobile: boolean;
12240
12359
  log_id: string;
@@ -12273,7 +12392,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12273
12392
  limit: number;
12274
12393
  length: number;
12275
12394
  logs: {
12276
- type: "fn" | "cs" | "fi" | "sv" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12395
+ type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12277
12396
  date: string;
12278
12397
  isMobile: boolean;
12279
12398
  log_id: string;
@@ -12592,7 +12711,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12592
12711
  };
12593
12712
  } & {
12594
12713
  json: {
12595
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12714
+ 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";
12596
12715
  body: string;
12597
12716
  from: string;
12598
12717
  subject: string;
@@ -12613,7 +12732,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12613
12732
  };
12614
12733
  } & {
12615
12734
  json: {
12616
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12735
+ 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";
12617
12736
  body: string;
12618
12737
  from: string;
12619
12738
  subject: string;
@@ -12625,7 +12744,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12625
12744
  };
12626
12745
  };
12627
12746
  output: {
12628
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12747
+ 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";
12629
12748
  body: string;
12630
12749
  from: string;
12631
12750
  subject: string;
@@ -12648,7 +12767,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12648
12767
  };
12649
12768
  };
12650
12769
  output: {
12651
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12770
+ 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";
12652
12771
  body: string;
12653
12772
  subject: string;
12654
12773
  }[];
@@ -12661,7 +12780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12661
12780
  $get: {
12662
12781
  input: {
12663
12782
  param: {
12664
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12783
+ 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";
12665
12784
  };
12666
12785
  } & {
12667
12786
  header: {
@@ -12674,7 +12793,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12674
12793
  } | {
12675
12794
  input: {
12676
12795
  param: {
12677
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12796
+ 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";
12678
12797
  };
12679
12798
  } & {
12680
12799
  header: {
@@ -12682,7 +12801,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12682
12801
  };
12683
12802
  };
12684
12803
  output: {
12685
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12804
+ 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";
12686
12805
  body: string;
12687
12806
  from: string;
12688
12807
  subject: string;
@@ -12701,7 +12820,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12701
12820
  $put: {
12702
12821
  input: {
12703
12822
  param: {
12704
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12823
+ 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";
12705
12824
  };
12706
12825
  } & {
12707
12826
  header: {
@@ -12709,7 +12828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12709
12828
  };
12710
12829
  } & {
12711
12830
  json: {
12712
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12831
+ 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";
12713
12832
  body: string;
12714
12833
  subject: string;
12715
12834
  syntax?: "liquid" | undefined;
@@ -12721,7 +12840,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12721
12840
  };
12722
12841
  };
12723
12842
  output: {
12724
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12843
+ 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";
12725
12844
  body: string;
12726
12845
  from: string;
12727
12846
  subject: string;
@@ -12740,7 +12859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12740
12859
  $patch: {
12741
12860
  input: {
12742
12861
  param: {
12743
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12862
+ 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";
12744
12863
  };
12745
12864
  } & {
12746
12865
  header: {
@@ -12748,7 +12867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12748
12867
  };
12749
12868
  } & {
12750
12869
  json: {
12751
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12870
+ 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;
12752
12871
  body?: string | undefined;
12753
12872
  from?: string | undefined;
12754
12873
  subject?: string | undefined;
@@ -12765,7 +12884,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12765
12884
  } | {
12766
12885
  input: {
12767
12886
  param: {
12768
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12887
+ 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";
12769
12888
  };
12770
12889
  } & {
12771
12890
  header: {
@@ -12773,7 +12892,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12773
12892
  };
12774
12893
  } & {
12775
12894
  json: {
12776
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12895
+ 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;
12777
12896
  body?: string | undefined;
12778
12897
  from?: string | undefined;
12779
12898
  subject?: string | undefined;
@@ -12785,7 +12904,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12785
12904
  };
12786
12905
  };
12787
12906
  output: {
12788
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12907
+ 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";
12789
12908
  body: string;
12790
12909
  from: string;
12791
12910
  subject: string;
@@ -12804,7 +12923,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12804
12923
  $delete: {
12805
12924
  input: {
12806
12925
  param: {
12807
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12926
+ 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";
12808
12927
  };
12809
12928
  } & {
12810
12929
  header: {
@@ -12817,7 +12936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12817
12936
  } | {
12818
12937
  input: {
12819
12938
  param: {
12820
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12939
+ 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";
12821
12940
  };
12822
12941
  } & {
12823
12942
  header: {
@@ -12834,7 +12953,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12834
12953
  $post: {
12835
12954
  input: {
12836
12955
  param: {
12837
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12956
+ 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";
12838
12957
  };
12839
12958
  } & {
12840
12959
  header: {
@@ -13117,7 +13236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13117
13236
  type: "auth0_managed_certs" | "self_managed_certs";
13118
13237
  custom_domain_id: string;
13119
13238
  primary: boolean;
13120
- status: "pending" | "ready" | "disabled" | "pending_verification";
13239
+ status: "pending" | "disabled" | "ready" | "pending_verification";
13121
13240
  verification_method?: "txt" | undefined;
13122
13241
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13123
13242
  domain_metadata?: {
@@ -13158,7 +13277,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13158
13277
  type: "auth0_managed_certs" | "self_managed_certs";
13159
13278
  custom_domain_id: string;
13160
13279
  primary: boolean;
13161
- status: "pending" | "ready" | "disabled" | "pending_verification";
13280
+ status: "pending" | "disabled" | "ready" | "pending_verification";
13162
13281
  verification_method?: "txt" | undefined;
13163
13282
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13164
13283
  domain_metadata?: {
@@ -13222,7 +13341,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13222
13341
  type: "auth0_managed_certs" | "self_managed_certs";
13223
13342
  custom_domain_id: string;
13224
13343
  primary: boolean;
13225
- status: "pending" | "ready" | "disabled" | "pending_verification";
13344
+ status: "pending" | "disabled" | "ready" | "pending_verification";
13226
13345
  verification_method?: "txt" | undefined;
13227
13346
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13228
13347
  domain_metadata?: {
@@ -13269,7 +13388,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13269
13388
  type: "auth0_managed_certs" | "self_managed_certs";
13270
13389
  custom_domain_id: string;
13271
13390
  primary: boolean;
13272
- status: "pending" | "ready" | "disabled" | "pending_verification";
13391
+ status: "pending" | "disabled" | "ready" | "pending_verification";
13273
13392
  verification_method?: "txt" | undefined;
13274
13393
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13275
13394
  domain_metadata?: {
@@ -13315,7 +13434,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13315
13434
  type: "auth0_managed_certs" | "self_managed_certs";
13316
13435
  custom_domain_id: string;
13317
13436
  primary: boolean;
13318
- status: "pending" | "ready" | "disabled" | "pending_verification";
13437
+ status: "pending" | "disabled" | "ready" | "pending_verification";
13319
13438
  verification_method?: "txt" | undefined;
13320
13439
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13321
13440
  domain_metadata?: {
@@ -13356,7 +13475,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13356
13475
  type: "auth0_managed_certs" | "self_managed_certs";
13357
13476
  custom_domain_id: string;
13358
13477
  primary: boolean;
13359
- status: "pending" | "ready" | "disabled" | "pending_verification";
13478
+ status: "pending" | "disabled" | "ready" | "pending_verification";
13360
13479
  verification_method?: "txt" | undefined;
13361
13480
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13362
13481
  domain_metadata?: {
@@ -13455,12 +13574,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13455
13574
  background_color: string;
13456
13575
  background_image_url: string;
13457
13576
  page_layout: "center" | "left" | "right";
13458
- logo_placement?: "widget" | "none" | "chip" | undefined;
13577
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13459
13578
  };
13460
13579
  widget: {
13461
13580
  header_text_alignment: "center" | "left" | "right";
13462
13581
  logo_height: number;
13463
- logo_position: "center" | "left" | "right" | "none";
13582
+ logo_position: "none" | "center" | "left" | "right";
13464
13583
  logo_url: string;
13465
13584
  social_buttons_layout: "bottom" | "top";
13466
13585
  };
@@ -13545,12 +13664,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13545
13664
  background_color: string;
13546
13665
  background_image_url: string;
13547
13666
  page_layout: "center" | "left" | "right";
13548
- logo_placement?: "widget" | "none" | "chip" | undefined;
13667
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13549
13668
  };
13550
13669
  widget: {
13551
13670
  header_text_alignment: "center" | "left" | "right";
13552
13671
  logo_height: number;
13553
- logo_position: "center" | "left" | "right" | "none";
13672
+ logo_position: "none" | "center" | "left" | "right";
13554
13673
  logo_url: string;
13555
13674
  social_buttons_layout: "bottom" | "top";
13556
13675
  };
@@ -13624,12 +13743,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13624
13743
  background_color: string;
13625
13744
  background_image_url: string;
13626
13745
  page_layout: "center" | "left" | "right";
13627
- logo_placement?: "widget" | "none" | "chip" | undefined;
13746
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13628
13747
  };
13629
13748
  widget: {
13630
13749
  header_text_alignment: "center" | "left" | "right";
13631
13750
  logo_height: number;
13632
- logo_position: "center" | "left" | "right" | "none";
13751
+ logo_position: "none" | "center" | "left" | "right";
13633
13752
  logo_url: string;
13634
13753
  social_buttons_layout: "bottom" | "top";
13635
13754
  };
@@ -13786,7 +13905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13786
13905
  } & {
13787
13906
  json: {
13788
13907
  body?: string | undefined;
13789
- screen?: "password" | "login" | "identifier" | "signup" | undefined;
13908
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
13790
13909
  branding?: {
13791
13910
  colors?: {
13792
13911
  primary: string;
@@ -13872,12 +13991,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13872
13991
  background_color: string;
13873
13992
  background_image_url: string;
13874
13993
  page_layout: "center" | "left" | "right";
13875
- logo_placement?: "widget" | "none" | "chip" | undefined;
13994
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13876
13995
  } | undefined;
13877
13996
  widget?: {
13878
13997
  header_text_alignment: "center" | "left" | "right";
13879
13998
  logo_height: number;
13880
- logo_position: "center" | "left" | "right" | "none";
13999
+ logo_position: "none" | "center" | "left" | "right";
13881
14000
  logo_url: string;
13882
14001
  social_buttons_layout: "bottom" | "top";
13883
14002
  } | undefined;