authhero 8.9.2 → 8.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 (42) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +97 -97
  3. package/dist/authhero.d.ts +299 -209
  4. package/dist/authhero.mjs +8850 -8686
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  9. package/dist/types/index.d.ts +224 -207
  10. package/dist/types/routes/auth-api/index.d.ts +18 -18
  11. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  14. package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +12 -12
  17. package/dist/types/routes/management-api/clients.d.ts +9 -9
  18. package/dist/types/routes/management-api/connections.d.ts +1 -1
  19. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  20. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  21. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  22. package/dist/types/routes/management-api/index.d.ts +198 -182
  23. package/dist/types/routes/management-api/logs.d.ts +3 -3
  24. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  25. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  26. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  27. package/dist/types/routes/management-api/tenant-export-import.d.ts +16 -0
  28. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  29. package/dist/types/routes/management-api/themes.d.ts +6 -6
  30. package/dist/types/routes/management-api/users.d.ts +2 -2
  31. package/dist/types/routes/proxy-control-plane/kv-publish.d.ts +75 -0
  32. package/dist/types/routes/proxy-control-plane/kv-publish.test.d.ts +1 -0
  33. package/dist/types/routes/universal-login/common.d.ts +2 -2
  34. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  35. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  36. package/dist/types/routes/universal-login/index.d.ts +2 -2
  37. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  39. package/dist/types/strategies/microsoft-entra.d.ts +14 -0
  40. package/dist/types/strategies/waad.d.ts +14 -0
  41. package/dist/types/types/IdToken.d.ts +4 -4
  42. package/package.json +5 -5
@@ -26,6 +26,7 @@ export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/
26
26
  export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
27
27
  export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
28
28
  export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
29
+ export { wrapProxyAdaptersWithKvPublish, backfillProxyHostsToKv, type KvPublishOptions, type WrappedProxyAdapters, type BackfillProxyHostsOptions, type BackfillResult, } from "./routes/proxy-control-plane/kv-publish";
29
30
  export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, type VerifyControlPlaneTokenOptions, type VerifyControlPlaneTokenResult, } from "./routes/proxy-control-plane/verify";
30
31
  export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
31
32
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
@@ -58,8 +59,8 @@ export declare function init(config: AuthHeroConfig): {
58
59
  $get: {
59
60
  input: {
60
61
  query: {
61
- include_password_hashes?: "false" | "true" | undefined;
62
- gzip?: "false" | "true" | undefined;
62
+ include_password_hashes?: "true" | "false" | undefined;
63
+ gzip?: "true" | "false" | undefined;
63
64
  };
64
65
  } & {
65
66
  header: {
@@ -69,6 +70,22 @@ export declare function init(config: AuthHeroConfig): {
69
70
  output: Response;
70
71
  outputFormat: "json";
71
72
  status: import("hono/utils/http-status").StatusCode;
73
+ } | {
74
+ input: {
75
+ query: {
76
+ include_password_hashes?: "true" | "false" | undefined;
77
+ gzip?: "true" | "false" | undefined;
78
+ };
79
+ } & {
80
+ header: {
81
+ "tenant-id"?: string | undefined;
82
+ };
83
+ };
84
+ output: {
85
+ message: string;
86
+ };
87
+ outputFormat: "json";
88
+ status: 500;
72
89
  };
73
90
  };
74
91
  } & {
@@ -76,7 +93,7 @@ export declare function init(config: AuthHeroConfig): {
76
93
  $post: {
77
94
  input: {
78
95
  query: {
79
- include_password_hashes?: "false" | "true" | undefined;
96
+ include_password_hashes?: "true" | "false" | undefined;
80
97
  };
81
98
  } & {
82
99
  header: {
@@ -130,7 +147,7 @@ export declare function init(config: AuthHeroConfig): {
130
147
  };
131
148
  } & {
132
149
  json: {
133
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
150
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
134
151
  phone_number?: string | undefined;
135
152
  totp_secret?: string | undefined;
136
153
  credential_id?: string | undefined;
@@ -270,7 +287,7 @@ export declare function init(config: AuthHeroConfig): {
270
287
  };
271
288
  };
272
289
  output: {
273
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
290
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
274
291
  enabled: boolean;
275
292
  trial_expired?: boolean | undefined;
276
293
  }[];
@@ -425,7 +442,7 @@ export declare function init(config: AuthHeroConfig): {
425
442
  $get: {
426
443
  input: {
427
444
  param: {
428
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
445
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
429
446
  };
430
447
  } & {
431
448
  header: {
@@ -433,7 +450,7 @@ export declare function init(config: AuthHeroConfig): {
433
450
  };
434
451
  };
435
452
  output: {
436
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
453
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
437
454
  enabled: boolean;
438
455
  trial_expired?: boolean | undefined;
439
456
  };
@@ -446,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
446
463
  $put: {
447
464
  input: {
448
465
  param: {
449
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
466
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
450
467
  };
451
468
  } & {
452
469
  header: {
@@ -458,7 +475,7 @@ export declare function init(config: AuthHeroConfig): {
458
475
  };
459
476
  };
460
477
  output: {
461
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
478
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
462
479
  enabled: boolean;
463
480
  trial_expired?: boolean | undefined;
464
481
  };
@@ -1203,9 +1220,9 @@ export declare function init(config: AuthHeroConfig): {
1203
1220
  invitee: {
1204
1221
  email?: string | undefined;
1205
1222
  };
1223
+ id?: string | undefined;
1206
1224
  app_metadata?: Record<string, any> | undefined;
1207
1225
  user_metadata?: Record<string, any> | undefined;
1208
- id?: string | undefined;
1209
1226
  connection_id?: string | undefined;
1210
1227
  roles?: string[] | undefined;
1211
1228
  ttl_sec?: number | undefined;
@@ -1391,8 +1408,8 @@ export declare function init(config: AuthHeroConfig): {
1391
1408
  };
1392
1409
  } & {
1393
1410
  json: {
1394
- assign_membership_on_login?: boolean | undefined;
1395
1411
  show_as_button?: boolean | undefined;
1412
+ assign_membership_on_login?: boolean | undefined;
1396
1413
  is_signup_enabled?: boolean | undefined;
1397
1414
  };
1398
1415
  };
@@ -2058,7 +2075,7 @@ export declare function init(config: AuthHeroConfig): {
2058
2075
  type: "REDIRECT";
2059
2076
  action: "REDIRECT_USER";
2060
2077
  params: {
2061
- target: "custom" | "account" | "change-email";
2078
+ target: "custom" | "change-email" | "account";
2062
2079
  custom_url?: string | undefined;
2063
2080
  };
2064
2081
  alias?: string | undefined;
@@ -2111,7 +2128,7 @@ export declare function init(config: AuthHeroConfig): {
2111
2128
  type: "REDIRECT";
2112
2129
  action: "REDIRECT_USER";
2113
2130
  params: {
2114
- target: "custom" | "account" | "change-email";
2131
+ target: "custom" | "change-email" | "account";
2115
2132
  custom_url?: string | undefined;
2116
2133
  };
2117
2134
  alias?: string | undefined;
@@ -2179,7 +2196,7 @@ export declare function init(config: AuthHeroConfig): {
2179
2196
  type: "REDIRECT";
2180
2197
  action: "REDIRECT_USER";
2181
2198
  params: {
2182
- target: "custom" | "account" | "change-email";
2199
+ target: "custom" | "change-email" | "account";
2183
2200
  custom_url?: string | undefined;
2184
2201
  };
2185
2202
  alias?: string | undefined;
@@ -2260,7 +2277,7 @@ export declare function init(config: AuthHeroConfig): {
2260
2277
  type: "REDIRECT";
2261
2278
  action: "REDIRECT_USER";
2262
2279
  params: {
2263
- target: "custom" | "account" | "change-email";
2280
+ target: "custom" | "change-email" | "account";
2264
2281
  custom_url?: string | undefined;
2265
2282
  };
2266
2283
  alias?: string | undefined;
@@ -2308,7 +2325,7 @@ export declare function init(config: AuthHeroConfig): {
2308
2325
  type: "REDIRECT";
2309
2326
  action: "REDIRECT_USER";
2310
2327
  params: {
2311
- target: "custom" | "account" | "change-email";
2328
+ target: "custom" | "change-email" | "account";
2312
2329
  custom_url?: string | undefined;
2313
2330
  };
2314
2331
  alias?: string | undefined;
@@ -2368,7 +2385,7 @@ export declare function init(config: AuthHeroConfig): {
2368
2385
  type: "REDIRECT";
2369
2386
  action: "REDIRECT_USER";
2370
2387
  params: {
2371
- target: "custom" | "account" | "change-email";
2388
+ target: "custom" | "change-email" | "account";
2372
2389
  custom_url?: string | undefined;
2373
2390
  };
2374
2391
  alias?: string | undefined;
@@ -2416,7 +2433,7 @@ export declare function init(config: AuthHeroConfig): {
2416
2433
  type: "REDIRECT";
2417
2434
  action: "REDIRECT_USER";
2418
2435
  params: {
2419
- target: "custom" | "account" | "change-email";
2436
+ target: "custom" | "change-email" | "account";
2420
2437
  custom_url?: string | undefined;
2421
2438
  };
2422
2439
  alias?: string | undefined;
@@ -2634,7 +2651,7 @@ export declare function init(config: AuthHeroConfig): {
2634
2651
  hint?: string | undefined;
2635
2652
  messages?: {
2636
2653
  text: string;
2637
- type: "error" | "success" | "info" | "warning";
2654
+ type: "success" | "error" | "info" | "warning";
2638
2655
  id?: number | undefined;
2639
2656
  }[] | undefined;
2640
2657
  required?: boolean | undefined;
@@ -2652,7 +2669,7 @@ export declare function init(config: AuthHeroConfig): {
2652
2669
  hint?: string | undefined;
2653
2670
  messages?: {
2654
2671
  text: string;
2655
- type: "error" | "success" | "info" | "warning";
2672
+ type: "success" | "error" | "info" | "warning";
2656
2673
  id?: number | undefined;
2657
2674
  }[] | undefined;
2658
2675
  required?: boolean | undefined;
@@ -2676,7 +2693,7 @@ export declare function init(config: AuthHeroConfig): {
2676
2693
  hint?: string | undefined;
2677
2694
  messages?: {
2678
2695
  text: string;
2679
- type: "error" | "success" | "info" | "warning";
2696
+ type: "success" | "error" | "info" | "warning";
2680
2697
  id?: number | undefined;
2681
2698
  }[] | undefined;
2682
2699
  required?: boolean | undefined;
@@ -2700,7 +2717,7 @@ export declare function init(config: AuthHeroConfig): {
2700
2717
  hint?: string | undefined;
2701
2718
  messages?: {
2702
2719
  text: string;
2703
- type: "error" | "success" | "info" | "warning";
2720
+ type: "success" | "error" | "info" | "warning";
2704
2721
  id?: number | undefined;
2705
2722
  }[] | undefined;
2706
2723
  required?: boolean | undefined;
@@ -2724,7 +2741,7 @@ export declare function init(config: AuthHeroConfig): {
2724
2741
  hint?: string | undefined;
2725
2742
  messages?: {
2726
2743
  text: string;
2727
- type: "error" | "success" | "info" | "warning";
2744
+ type: "success" | "error" | "info" | "warning";
2728
2745
  id?: number | undefined;
2729
2746
  }[] | undefined;
2730
2747
  required?: boolean | undefined;
@@ -2753,7 +2770,7 @@ export declare function init(config: AuthHeroConfig): {
2753
2770
  hint?: string | undefined;
2754
2771
  messages?: {
2755
2772
  text: string;
2756
- type: "error" | "success" | "info" | "warning";
2773
+ type: "success" | "error" | "info" | "warning";
2757
2774
  id?: number | undefined;
2758
2775
  }[] | undefined;
2759
2776
  required?: boolean | undefined;
@@ -2768,7 +2785,7 @@ export declare function init(config: AuthHeroConfig): {
2768
2785
  hint?: string | undefined;
2769
2786
  messages?: {
2770
2787
  text: string;
2771
- type: "error" | "success" | "info" | "warning";
2788
+ type: "success" | "error" | "info" | "warning";
2772
2789
  id?: number | undefined;
2773
2790
  }[] | undefined;
2774
2791
  required?: boolean | undefined;
@@ -2789,7 +2806,7 @@ export declare function init(config: AuthHeroConfig): {
2789
2806
  hint?: string | undefined;
2790
2807
  messages?: {
2791
2808
  text: string;
2792
- type: "error" | "success" | "info" | "warning";
2809
+ type: "success" | "error" | "info" | "warning";
2793
2810
  id?: number | undefined;
2794
2811
  }[] | undefined;
2795
2812
  required?: boolean | undefined;
@@ -2814,7 +2831,7 @@ export declare function init(config: AuthHeroConfig): {
2814
2831
  hint?: string | undefined;
2815
2832
  messages?: {
2816
2833
  text: string;
2817
- type: "error" | "success" | "info" | "warning";
2834
+ type: "success" | "error" | "info" | "warning";
2818
2835
  id?: number | undefined;
2819
2836
  }[] | undefined;
2820
2837
  required?: boolean | undefined;
@@ -2833,7 +2850,7 @@ export declare function init(config: AuthHeroConfig): {
2833
2850
  hint?: string | undefined;
2834
2851
  messages?: {
2835
2852
  text: string;
2836
- type: "error" | "success" | "info" | "warning";
2853
+ type: "success" | "error" | "info" | "warning";
2837
2854
  id?: number | undefined;
2838
2855
  }[] | undefined;
2839
2856
  required?: boolean | undefined;
@@ -2853,7 +2870,7 @@ export declare function init(config: AuthHeroConfig): {
2853
2870
  hint?: string | undefined;
2854
2871
  messages?: {
2855
2872
  text: string;
2856
- type: "error" | "success" | "info" | "warning";
2873
+ type: "success" | "error" | "info" | "warning";
2857
2874
  id?: number | undefined;
2858
2875
  }[] | undefined;
2859
2876
  required?: boolean | undefined;
@@ -2872,7 +2889,7 @@ export declare function init(config: AuthHeroConfig): {
2872
2889
  hint?: string | undefined;
2873
2890
  messages?: {
2874
2891
  text: string;
2875
- type: "error" | "success" | "info" | "warning";
2892
+ type: "success" | "error" | "info" | "warning";
2876
2893
  id?: number | undefined;
2877
2894
  }[] | undefined;
2878
2895
  required?: boolean | undefined;
@@ -2894,7 +2911,7 @@ export declare function init(config: AuthHeroConfig): {
2894
2911
  hint?: string | undefined;
2895
2912
  messages?: {
2896
2913
  text: string;
2897
- type: "error" | "success" | "info" | "warning";
2914
+ type: "success" | "error" | "info" | "warning";
2898
2915
  id?: number | undefined;
2899
2916
  }[] | undefined;
2900
2917
  required?: boolean | undefined;
@@ -2916,7 +2933,7 @@ export declare function init(config: AuthHeroConfig): {
2916
2933
  hint?: string | undefined;
2917
2934
  messages?: {
2918
2935
  text: string;
2919
- type: "error" | "success" | "info" | "warning";
2936
+ type: "success" | "error" | "info" | "warning";
2920
2937
  id?: number | undefined;
2921
2938
  }[] | undefined;
2922
2939
  required?: boolean | undefined;
@@ -2935,7 +2952,7 @@ export declare function init(config: AuthHeroConfig): {
2935
2952
  hint?: string | undefined;
2936
2953
  messages?: {
2937
2954
  text: string;
2938
- type: "error" | "success" | "info" | "warning";
2955
+ type: "success" | "error" | "info" | "warning";
2939
2956
  id?: number | undefined;
2940
2957
  }[] | undefined;
2941
2958
  required?: boolean | undefined;
@@ -2960,7 +2977,7 @@ export declare function init(config: AuthHeroConfig): {
2960
2977
  hint?: string | undefined;
2961
2978
  messages?: {
2962
2979
  text: string;
2963
- type: "error" | "success" | "info" | "warning";
2980
+ type: "success" | "error" | "info" | "warning";
2964
2981
  id?: number | undefined;
2965
2982
  }[] | undefined;
2966
2983
  required?: boolean | undefined;
@@ -2981,7 +2998,7 @@ export declare function init(config: AuthHeroConfig): {
2981
2998
  hint?: string | undefined;
2982
2999
  messages?: {
2983
3000
  text: string;
2984
- type: "error" | "success" | "info" | "warning";
3001
+ type: "success" | "error" | "info" | "warning";
2985
3002
  id?: number | undefined;
2986
3003
  }[] | undefined;
2987
3004
  required?: boolean | undefined;
@@ -3002,7 +3019,7 @@ export declare function init(config: AuthHeroConfig): {
3002
3019
  hint?: string | undefined;
3003
3020
  messages?: {
3004
3021
  text: string;
3005
- type: "error" | "success" | "info" | "warning";
3022
+ type: "success" | "error" | "info" | "warning";
3006
3023
  id?: number | undefined;
3007
3024
  }[] | undefined;
3008
3025
  required?: boolean | undefined;
@@ -3235,7 +3252,7 @@ export declare function init(config: AuthHeroConfig): {
3235
3252
  hint?: string | undefined;
3236
3253
  messages?: {
3237
3254
  text: string;
3238
- type: "error" | "success" | "info" | "warning";
3255
+ type: "success" | "error" | "info" | "warning";
3239
3256
  id?: number | undefined;
3240
3257
  }[] | undefined;
3241
3258
  required?: boolean | undefined;
@@ -3253,7 +3270,7 @@ export declare function init(config: AuthHeroConfig): {
3253
3270
  hint?: string | undefined;
3254
3271
  messages?: {
3255
3272
  text: string;
3256
- type: "error" | "success" | "info" | "warning";
3273
+ type: "success" | "error" | "info" | "warning";
3257
3274
  id?: number | undefined;
3258
3275
  }[] | undefined;
3259
3276
  required?: boolean | undefined;
@@ -3277,7 +3294,7 @@ export declare function init(config: AuthHeroConfig): {
3277
3294
  hint?: string | undefined;
3278
3295
  messages?: {
3279
3296
  text: string;
3280
- type: "error" | "success" | "info" | "warning";
3297
+ type: "success" | "error" | "info" | "warning";
3281
3298
  id?: number | undefined;
3282
3299
  }[] | undefined;
3283
3300
  required?: boolean | undefined;
@@ -3301,7 +3318,7 @@ export declare function init(config: AuthHeroConfig): {
3301
3318
  hint?: string | undefined;
3302
3319
  messages?: {
3303
3320
  text: string;
3304
- type: "error" | "success" | "info" | "warning";
3321
+ type: "success" | "error" | "info" | "warning";
3305
3322
  id?: number | undefined;
3306
3323
  }[] | undefined;
3307
3324
  required?: boolean | undefined;
@@ -3325,7 +3342,7 @@ export declare function init(config: AuthHeroConfig): {
3325
3342
  hint?: string | undefined;
3326
3343
  messages?: {
3327
3344
  text: string;
3328
- type: "error" | "success" | "info" | "warning";
3345
+ type: "success" | "error" | "info" | "warning";
3329
3346
  id?: number | undefined;
3330
3347
  }[] | undefined;
3331
3348
  required?: boolean | undefined;
@@ -3354,7 +3371,7 @@ export declare function init(config: AuthHeroConfig): {
3354
3371
  hint?: string | undefined;
3355
3372
  messages?: {
3356
3373
  text: string;
3357
- type: "error" | "success" | "info" | "warning";
3374
+ type: "success" | "error" | "info" | "warning";
3358
3375
  id?: number | undefined;
3359
3376
  }[] | undefined;
3360
3377
  required?: boolean | undefined;
@@ -3369,7 +3386,7 @@ export declare function init(config: AuthHeroConfig): {
3369
3386
  hint?: string | undefined;
3370
3387
  messages?: {
3371
3388
  text: string;
3372
- type: "error" | "success" | "info" | "warning";
3389
+ type: "success" | "error" | "info" | "warning";
3373
3390
  id?: number | undefined;
3374
3391
  }[] | undefined;
3375
3392
  required?: boolean | undefined;
@@ -3390,7 +3407,7 @@ export declare function init(config: AuthHeroConfig): {
3390
3407
  hint?: string | undefined;
3391
3408
  messages?: {
3392
3409
  text: string;
3393
- type: "error" | "success" | "info" | "warning";
3410
+ type: "success" | "error" | "info" | "warning";
3394
3411
  id?: number | undefined;
3395
3412
  }[] | undefined;
3396
3413
  required?: boolean | undefined;
@@ -3415,7 +3432,7 @@ export declare function init(config: AuthHeroConfig): {
3415
3432
  hint?: string | undefined;
3416
3433
  messages?: {
3417
3434
  text: string;
3418
- type: "error" | "success" | "info" | "warning";
3435
+ type: "success" | "error" | "info" | "warning";
3419
3436
  id?: number | undefined;
3420
3437
  }[] | undefined;
3421
3438
  required?: boolean | undefined;
@@ -3434,7 +3451,7 @@ export declare function init(config: AuthHeroConfig): {
3434
3451
  hint?: string | undefined;
3435
3452
  messages?: {
3436
3453
  text: string;
3437
- type: "error" | "success" | "info" | "warning";
3454
+ type: "success" | "error" | "info" | "warning";
3438
3455
  id?: number | undefined;
3439
3456
  }[] | undefined;
3440
3457
  required?: boolean | undefined;
@@ -3454,7 +3471,7 @@ export declare function init(config: AuthHeroConfig): {
3454
3471
  hint?: string | undefined;
3455
3472
  messages?: {
3456
3473
  text: string;
3457
- type: "error" | "success" | "info" | "warning";
3474
+ type: "success" | "error" | "info" | "warning";
3458
3475
  id?: number | undefined;
3459
3476
  }[] | undefined;
3460
3477
  required?: boolean | undefined;
@@ -3473,7 +3490,7 @@ export declare function init(config: AuthHeroConfig): {
3473
3490
  hint?: string | undefined;
3474
3491
  messages?: {
3475
3492
  text: string;
3476
- type: "error" | "success" | "info" | "warning";
3493
+ type: "success" | "error" | "info" | "warning";
3477
3494
  id?: number | undefined;
3478
3495
  }[] | undefined;
3479
3496
  required?: boolean | undefined;
@@ -3495,7 +3512,7 @@ export declare function init(config: AuthHeroConfig): {
3495
3512
  hint?: string | undefined;
3496
3513
  messages?: {
3497
3514
  text: string;
3498
- type: "error" | "success" | "info" | "warning";
3515
+ type: "success" | "error" | "info" | "warning";
3499
3516
  id?: number | undefined;
3500
3517
  }[] | undefined;
3501
3518
  required?: boolean | undefined;
@@ -3517,7 +3534,7 @@ export declare function init(config: AuthHeroConfig): {
3517
3534
  hint?: string | undefined;
3518
3535
  messages?: {
3519
3536
  text: string;
3520
- type: "error" | "success" | "info" | "warning";
3537
+ type: "success" | "error" | "info" | "warning";
3521
3538
  id?: number | undefined;
3522
3539
  }[] | undefined;
3523
3540
  required?: boolean | undefined;
@@ -3536,7 +3553,7 @@ export declare function init(config: AuthHeroConfig): {
3536
3553
  hint?: string | undefined;
3537
3554
  messages?: {
3538
3555
  text: string;
3539
- type: "error" | "success" | "info" | "warning";
3556
+ type: "success" | "error" | "info" | "warning";
3540
3557
  id?: number | undefined;
3541
3558
  }[] | undefined;
3542
3559
  required?: boolean | undefined;
@@ -3561,7 +3578,7 @@ export declare function init(config: AuthHeroConfig): {
3561
3578
  hint?: string | undefined;
3562
3579
  messages?: {
3563
3580
  text: string;
3564
- type: "error" | "success" | "info" | "warning";
3581
+ type: "success" | "error" | "info" | "warning";
3565
3582
  id?: number | undefined;
3566
3583
  }[] | undefined;
3567
3584
  required?: boolean | undefined;
@@ -3582,7 +3599,7 @@ export declare function init(config: AuthHeroConfig): {
3582
3599
  hint?: string | undefined;
3583
3600
  messages?: {
3584
3601
  text: string;
3585
- type: "error" | "success" | "info" | "warning";
3602
+ type: "success" | "error" | "info" | "warning";
3586
3603
  id?: number | undefined;
3587
3604
  }[] | undefined;
3588
3605
  required?: boolean | undefined;
@@ -3603,7 +3620,7 @@ export declare function init(config: AuthHeroConfig): {
3603
3620
  hint?: string | undefined;
3604
3621
  messages?: {
3605
3622
  text: string;
3606
- type: "error" | "success" | "info" | "warning";
3623
+ type: "success" | "error" | "info" | "warning";
3607
3624
  id?: number | undefined;
3608
3625
  }[] | undefined;
3609
3626
  required?: boolean | undefined;
@@ -3851,7 +3868,7 @@ export declare function init(config: AuthHeroConfig): {
3851
3868
  hint?: string | undefined;
3852
3869
  messages?: {
3853
3870
  text: string;
3854
- type: "error" | "success" | "info" | "warning";
3871
+ type: "success" | "error" | "info" | "warning";
3855
3872
  id?: number | undefined;
3856
3873
  }[] | undefined;
3857
3874
  required?: boolean | undefined;
@@ -3869,7 +3886,7 @@ export declare function init(config: AuthHeroConfig): {
3869
3886
  hint?: string | undefined;
3870
3887
  messages?: {
3871
3888
  text: string;
3872
- type: "error" | "success" | "info" | "warning";
3889
+ type: "success" | "error" | "info" | "warning";
3873
3890
  id?: number | undefined;
3874
3891
  }[] | undefined;
3875
3892
  required?: boolean | undefined;
@@ -3893,7 +3910,7 @@ export declare function init(config: AuthHeroConfig): {
3893
3910
  hint?: string | undefined;
3894
3911
  messages?: {
3895
3912
  text: string;
3896
- type: "error" | "success" | "info" | "warning";
3913
+ type: "success" | "error" | "info" | "warning";
3897
3914
  id?: number | undefined;
3898
3915
  }[] | undefined;
3899
3916
  required?: boolean | undefined;
@@ -3917,7 +3934,7 @@ export declare function init(config: AuthHeroConfig): {
3917
3934
  hint?: string | undefined;
3918
3935
  messages?: {
3919
3936
  text: string;
3920
- type: "error" | "success" | "info" | "warning";
3937
+ type: "success" | "error" | "info" | "warning";
3921
3938
  id?: number | undefined;
3922
3939
  }[] | undefined;
3923
3940
  required?: boolean | undefined;
@@ -3941,7 +3958,7 @@ export declare function init(config: AuthHeroConfig): {
3941
3958
  hint?: string | undefined;
3942
3959
  messages?: {
3943
3960
  text: string;
3944
- type: "error" | "success" | "info" | "warning";
3961
+ type: "success" | "error" | "info" | "warning";
3945
3962
  id?: number | undefined;
3946
3963
  }[] | undefined;
3947
3964
  required?: boolean | undefined;
@@ -3970,7 +3987,7 @@ export declare function init(config: AuthHeroConfig): {
3970
3987
  hint?: string | undefined;
3971
3988
  messages?: {
3972
3989
  text: string;
3973
- type: "error" | "success" | "info" | "warning";
3990
+ type: "success" | "error" | "info" | "warning";
3974
3991
  id?: number | undefined;
3975
3992
  }[] | undefined;
3976
3993
  required?: boolean | undefined;
@@ -3985,7 +4002,7 @@ export declare function init(config: AuthHeroConfig): {
3985
4002
  hint?: string | undefined;
3986
4003
  messages?: {
3987
4004
  text: string;
3988
- type: "error" | "success" | "info" | "warning";
4005
+ type: "success" | "error" | "info" | "warning";
3989
4006
  id?: number | undefined;
3990
4007
  }[] | undefined;
3991
4008
  required?: boolean | undefined;
@@ -4006,7 +4023,7 @@ export declare function init(config: AuthHeroConfig): {
4006
4023
  hint?: string | undefined;
4007
4024
  messages?: {
4008
4025
  text: string;
4009
- type: "error" | "success" | "info" | "warning";
4026
+ type: "success" | "error" | "info" | "warning";
4010
4027
  id?: number | undefined;
4011
4028
  }[] | undefined;
4012
4029
  required?: boolean | undefined;
@@ -4031,7 +4048,7 @@ export declare function init(config: AuthHeroConfig): {
4031
4048
  hint?: string | undefined;
4032
4049
  messages?: {
4033
4050
  text: string;
4034
- type: "error" | "success" | "info" | "warning";
4051
+ type: "success" | "error" | "info" | "warning";
4035
4052
  id?: number | undefined;
4036
4053
  }[] | undefined;
4037
4054
  required?: boolean | undefined;
@@ -4050,7 +4067,7 @@ export declare function init(config: AuthHeroConfig): {
4050
4067
  hint?: string | undefined;
4051
4068
  messages?: {
4052
4069
  text: string;
4053
- type: "error" | "success" | "info" | "warning";
4070
+ type: "success" | "error" | "info" | "warning";
4054
4071
  id?: number | undefined;
4055
4072
  }[] | undefined;
4056
4073
  required?: boolean | undefined;
@@ -4070,7 +4087,7 @@ export declare function init(config: AuthHeroConfig): {
4070
4087
  hint?: string | undefined;
4071
4088
  messages?: {
4072
4089
  text: string;
4073
- type: "error" | "success" | "info" | "warning";
4090
+ type: "success" | "error" | "info" | "warning";
4074
4091
  id?: number | undefined;
4075
4092
  }[] | undefined;
4076
4093
  required?: boolean | undefined;
@@ -4089,7 +4106,7 @@ export declare function init(config: AuthHeroConfig): {
4089
4106
  hint?: string | undefined;
4090
4107
  messages?: {
4091
4108
  text: string;
4092
- type: "error" | "success" | "info" | "warning";
4109
+ type: "success" | "error" | "info" | "warning";
4093
4110
  id?: number | undefined;
4094
4111
  }[] | undefined;
4095
4112
  required?: boolean | undefined;
@@ -4111,7 +4128,7 @@ export declare function init(config: AuthHeroConfig): {
4111
4128
  hint?: string | undefined;
4112
4129
  messages?: {
4113
4130
  text: string;
4114
- type: "error" | "success" | "info" | "warning";
4131
+ type: "success" | "error" | "info" | "warning";
4115
4132
  id?: number | undefined;
4116
4133
  }[] | undefined;
4117
4134
  required?: boolean | undefined;
@@ -4133,7 +4150,7 @@ export declare function init(config: AuthHeroConfig): {
4133
4150
  hint?: string | undefined;
4134
4151
  messages?: {
4135
4152
  text: string;
4136
- type: "error" | "success" | "info" | "warning";
4153
+ type: "success" | "error" | "info" | "warning";
4137
4154
  id?: number | undefined;
4138
4155
  }[] | undefined;
4139
4156
  required?: boolean | undefined;
@@ -4152,7 +4169,7 @@ export declare function init(config: AuthHeroConfig): {
4152
4169
  hint?: string | undefined;
4153
4170
  messages?: {
4154
4171
  text: string;
4155
- type: "error" | "success" | "info" | "warning";
4172
+ type: "success" | "error" | "info" | "warning";
4156
4173
  id?: number | undefined;
4157
4174
  }[] | undefined;
4158
4175
  required?: boolean | undefined;
@@ -4177,7 +4194,7 @@ export declare function init(config: AuthHeroConfig): {
4177
4194
  hint?: string | undefined;
4178
4195
  messages?: {
4179
4196
  text: string;
4180
- type: "error" | "success" | "info" | "warning";
4197
+ type: "success" | "error" | "info" | "warning";
4181
4198
  id?: number | undefined;
4182
4199
  }[] | undefined;
4183
4200
  required?: boolean | undefined;
@@ -4198,7 +4215,7 @@ export declare function init(config: AuthHeroConfig): {
4198
4215
  hint?: string | undefined;
4199
4216
  messages?: {
4200
4217
  text: string;
4201
- type: "error" | "success" | "info" | "warning";
4218
+ type: "success" | "error" | "info" | "warning";
4202
4219
  id?: number | undefined;
4203
4220
  }[] | undefined;
4204
4221
  required?: boolean | undefined;
@@ -4219,7 +4236,7 @@ export declare function init(config: AuthHeroConfig): {
4219
4236
  hint?: string | undefined;
4220
4237
  messages?: {
4221
4238
  text: string;
4222
- type: "error" | "success" | "info" | "warning";
4239
+ type: "success" | "error" | "info" | "warning";
4223
4240
  id?: number | undefined;
4224
4241
  }[] | undefined;
4225
4242
  required?: boolean | undefined;
@@ -4473,7 +4490,7 @@ export declare function init(config: AuthHeroConfig): {
4473
4490
  hint?: string | undefined;
4474
4491
  messages?: {
4475
4492
  text: string;
4476
- type: "error" | "success" | "info" | "warning";
4493
+ type: "success" | "error" | "info" | "warning";
4477
4494
  id?: number | undefined;
4478
4495
  }[] | undefined;
4479
4496
  required?: boolean | undefined;
@@ -4491,7 +4508,7 @@ export declare function init(config: AuthHeroConfig): {
4491
4508
  hint?: string | undefined;
4492
4509
  messages?: {
4493
4510
  text: string;
4494
- type: "error" | "success" | "info" | "warning";
4511
+ type: "success" | "error" | "info" | "warning";
4495
4512
  id?: number | undefined;
4496
4513
  }[] | undefined;
4497
4514
  required?: boolean | undefined;
@@ -4515,7 +4532,7 @@ export declare function init(config: AuthHeroConfig): {
4515
4532
  hint?: string | undefined;
4516
4533
  messages?: {
4517
4534
  text: string;
4518
- type: "error" | "success" | "info" | "warning";
4535
+ type: "success" | "error" | "info" | "warning";
4519
4536
  id?: number | undefined;
4520
4537
  }[] | undefined;
4521
4538
  required?: boolean | undefined;
@@ -4539,7 +4556,7 @@ export declare function init(config: AuthHeroConfig): {
4539
4556
  hint?: string | undefined;
4540
4557
  messages?: {
4541
4558
  text: string;
4542
- type: "error" | "success" | "info" | "warning";
4559
+ type: "success" | "error" | "info" | "warning";
4543
4560
  id?: number | undefined;
4544
4561
  }[] | undefined;
4545
4562
  required?: boolean | undefined;
@@ -4563,7 +4580,7 @@ export declare function init(config: AuthHeroConfig): {
4563
4580
  hint?: string | undefined;
4564
4581
  messages?: {
4565
4582
  text: string;
4566
- type: "error" | "success" | "info" | "warning";
4583
+ type: "success" | "error" | "info" | "warning";
4567
4584
  id?: number | undefined;
4568
4585
  }[] | undefined;
4569
4586
  required?: boolean | undefined;
@@ -4588,7 +4605,7 @@ export declare function init(config: AuthHeroConfig): {
4588
4605
  hint?: string | undefined;
4589
4606
  messages?: {
4590
4607
  text: string;
4591
- type: "error" | "success" | "info" | "warning";
4608
+ type: "success" | "error" | "info" | "warning";
4592
4609
  id?: number | undefined;
4593
4610
  }[] | undefined;
4594
4611
  required?: boolean | undefined;
@@ -4603,7 +4620,7 @@ export declare function init(config: AuthHeroConfig): {
4603
4620
  hint?: string | undefined;
4604
4621
  messages?: {
4605
4622
  text: string;
4606
- type: "error" | "success" | "info" | "warning";
4623
+ type: "success" | "error" | "info" | "warning";
4607
4624
  id?: number | undefined;
4608
4625
  }[] | undefined;
4609
4626
  required?: boolean | undefined;
@@ -4624,7 +4641,7 @@ export declare function init(config: AuthHeroConfig): {
4624
4641
  hint?: string | undefined;
4625
4642
  messages?: {
4626
4643
  text: string;
4627
- type: "error" | "success" | "info" | "warning";
4644
+ type: "success" | "error" | "info" | "warning";
4628
4645
  id?: number | undefined;
4629
4646
  }[] | undefined;
4630
4647
  required?: boolean | undefined;
@@ -4649,7 +4666,7 @@ export declare function init(config: AuthHeroConfig): {
4649
4666
  hint?: string | undefined;
4650
4667
  messages?: {
4651
4668
  text: string;
4652
- type: "error" | "success" | "info" | "warning";
4669
+ type: "success" | "error" | "info" | "warning";
4653
4670
  id?: number | undefined;
4654
4671
  }[] | undefined;
4655
4672
  required?: boolean | undefined;
@@ -4668,7 +4685,7 @@ export declare function init(config: AuthHeroConfig): {
4668
4685
  hint?: string | undefined;
4669
4686
  messages?: {
4670
4687
  text: string;
4671
- type: "error" | "success" | "info" | "warning";
4688
+ type: "success" | "error" | "info" | "warning";
4672
4689
  id?: number | undefined;
4673
4690
  }[] | undefined;
4674
4691
  required?: boolean | undefined;
@@ -4688,7 +4705,7 @@ export declare function init(config: AuthHeroConfig): {
4688
4705
  hint?: string | undefined;
4689
4706
  messages?: {
4690
4707
  text: string;
4691
- type: "error" | "success" | "info" | "warning";
4708
+ type: "success" | "error" | "info" | "warning";
4692
4709
  id?: number | undefined;
4693
4710
  }[] | undefined;
4694
4711
  required?: boolean | undefined;
@@ -4707,7 +4724,7 @@ export declare function init(config: AuthHeroConfig): {
4707
4724
  hint?: string | undefined;
4708
4725
  messages?: {
4709
4726
  text: string;
4710
- type: "error" | "success" | "info" | "warning";
4727
+ type: "success" | "error" | "info" | "warning";
4711
4728
  id?: number | undefined;
4712
4729
  }[] | undefined;
4713
4730
  required?: boolean | undefined;
@@ -4729,7 +4746,7 @@ export declare function init(config: AuthHeroConfig): {
4729
4746
  hint?: string | undefined;
4730
4747
  messages?: {
4731
4748
  text: string;
4732
- type: "error" | "success" | "info" | "warning";
4749
+ type: "success" | "error" | "info" | "warning";
4733
4750
  id?: number | undefined;
4734
4751
  }[] | undefined;
4735
4752
  required?: boolean | undefined;
@@ -4751,7 +4768,7 @@ export declare function init(config: AuthHeroConfig): {
4751
4768
  hint?: string | undefined;
4752
4769
  messages?: {
4753
4770
  text: string;
4754
- type: "error" | "success" | "info" | "warning";
4771
+ type: "success" | "error" | "info" | "warning";
4755
4772
  id?: number | undefined;
4756
4773
  }[] | undefined;
4757
4774
  required?: boolean | undefined;
@@ -4770,7 +4787,7 @@ export declare function init(config: AuthHeroConfig): {
4770
4787
  hint?: string | undefined;
4771
4788
  messages?: {
4772
4789
  text: string;
4773
- type: "error" | "success" | "info" | "warning";
4790
+ type: "success" | "error" | "info" | "warning";
4774
4791
  id?: number | undefined;
4775
4792
  }[] | undefined;
4776
4793
  required?: boolean | undefined;
@@ -4795,7 +4812,7 @@ export declare function init(config: AuthHeroConfig): {
4795
4812
  hint?: string | undefined;
4796
4813
  messages?: {
4797
4814
  text: string;
4798
- type: "error" | "success" | "info" | "warning";
4815
+ type: "success" | "error" | "info" | "warning";
4799
4816
  id?: number | undefined;
4800
4817
  }[] | undefined;
4801
4818
  required?: boolean | undefined;
@@ -4816,7 +4833,7 @@ export declare function init(config: AuthHeroConfig): {
4816
4833
  hint?: string | undefined;
4817
4834
  messages?: {
4818
4835
  text: string;
4819
- type: "error" | "success" | "info" | "warning";
4836
+ type: "success" | "error" | "info" | "warning";
4820
4837
  id?: number | undefined;
4821
4838
  }[] | undefined;
4822
4839
  required?: boolean | undefined;
@@ -4837,7 +4854,7 @@ export declare function init(config: AuthHeroConfig): {
4837
4854
  hint?: string | undefined;
4838
4855
  messages?: {
4839
4856
  text: string;
4840
- type: "error" | "success" | "info" | "warning";
4857
+ type: "success" | "error" | "info" | "warning";
4841
4858
  id?: number | undefined;
4842
4859
  }[] | undefined;
4843
4860
  required?: boolean | undefined;
@@ -5068,7 +5085,7 @@ export declare function init(config: AuthHeroConfig): {
5068
5085
  hint?: string | undefined;
5069
5086
  messages?: {
5070
5087
  text: string;
5071
- type: "error" | "success" | "info" | "warning";
5088
+ type: "success" | "error" | "info" | "warning";
5072
5089
  id?: number | undefined;
5073
5090
  }[] | undefined;
5074
5091
  required?: boolean | undefined;
@@ -5086,7 +5103,7 @@ export declare function init(config: AuthHeroConfig): {
5086
5103
  hint?: string | undefined;
5087
5104
  messages?: {
5088
5105
  text: string;
5089
- type: "error" | "success" | "info" | "warning";
5106
+ type: "success" | "error" | "info" | "warning";
5090
5107
  id?: number | undefined;
5091
5108
  }[] | undefined;
5092
5109
  required?: boolean | undefined;
@@ -5110,7 +5127,7 @@ export declare function init(config: AuthHeroConfig): {
5110
5127
  hint?: string | undefined;
5111
5128
  messages?: {
5112
5129
  text: string;
5113
- type: "error" | "success" | "info" | "warning";
5130
+ type: "success" | "error" | "info" | "warning";
5114
5131
  id?: number | undefined;
5115
5132
  }[] | undefined;
5116
5133
  required?: boolean | undefined;
@@ -5134,7 +5151,7 @@ export declare function init(config: AuthHeroConfig): {
5134
5151
  hint?: string | undefined;
5135
5152
  messages?: {
5136
5153
  text: string;
5137
- type: "error" | "success" | "info" | "warning";
5154
+ type: "success" | "error" | "info" | "warning";
5138
5155
  id?: number | undefined;
5139
5156
  }[] | undefined;
5140
5157
  required?: boolean | undefined;
@@ -5158,7 +5175,7 @@ export declare function init(config: AuthHeroConfig): {
5158
5175
  hint?: string | undefined;
5159
5176
  messages?: {
5160
5177
  text: string;
5161
- type: "error" | "success" | "info" | "warning";
5178
+ type: "success" | "error" | "info" | "warning";
5162
5179
  id?: number | undefined;
5163
5180
  }[] | undefined;
5164
5181
  required?: boolean | undefined;
@@ -5187,7 +5204,7 @@ export declare function init(config: AuthHeroConfig): {
5187
5204
  hint?: string | undefined;
5188
5205
  messages?: {
5189
5206
  text: string;
5190
- type: "error" | "success" | "info" | "warning";
5207
+ type: "success" | "error" | "info" | "warning";
5191
5208
  id?: number | undefined;
5192
5209
  }[] | undefined;
5193
5210
  required?: boolean | undefined;
@@ -5202,7 +5219,7 @@ export declare function init(config: AuthHeroConfig): {
5202
5219
  hint?: string | undefined;
5203
5220
  messages?: {
5204
5221
  text: string;
5205
- type: "error" | "success" | "info" | "warning";
5222
+ type: "success" | "error" | "info" | "warning";
5206
5223
  id?: number | undefined;
5207
5224
  }[] | undefined;
5208
5225
  required?: boolean | undefined;
@@ -5223,7 +5240,7 @@ export declare function init(config: AuthHeroConfig): {
5223
5240
  hint?: string | undefined;
5224
5241
  messages?: {
5225
5242
  text: string;
5226
- type: "error" | "success" | "info" | "warning";
5243
+ type: "success" | "error" | "info" | "warning";
5227
5244
  id?: number | undefined;
5228
5245
  }[] | undefined;
5229
5246
  required?: boolean | undefined;
@@ -5248,7 +5265,7 @@ export declare function init(config: AuthHeroConfig): {
5248
5265
  hint?: string | undefined;
5249
5266
  messages?: {
5250
5267
  text: string;
5251
- type: "error" | "success" | "info" | "warning";
5268
+ type: "success" | "error" | "info" | "warning";
5252
5269
  id?: number | undefined;
5253
5270
  }[] | undefined;
5254
5271
  required?: boolean | undefined;
@@ -5267,7 +5284,7 @@ export declare function init(config: AuthHeroConfig): {
5267
5284
  hint?: string | undefined;
5268
5285
  messages?: {
5269
5286
  text: string;
5270
- type: "error" | "success" | "info" | "warning";
5287
+ type: "success" | "error" | "info" | "warning";
5271
5288
  id?: number | undefined;
5272
5289
  }[] | undefined;
5273
5290
  required?: boolean | undefined;
@@ -5287,7 +5304,7 @@ export declare function init(config: AuthHeroConfig): {
5287
5304
  hint?: string | undefined;
5288
5305
  messages?: {
5289
5306
  text: string;
5290
- type: "error" | "success" | "info" | "warning";
5307
+ type: "success" | "error" | "info" | "warning";
5291
5308
  id?: number | undefined;
5292
5309
  }[] | undefined;
5293
5310
  required?: boolean | undefined;
@@ -5306,7 +5323,7 @@ export declare function init(config: AuthHeroConfig): {
5306
5323
  hint?: string | undefined;
5307
5324
  messages?: {
5308
5325
  text: string;
5309
- type: "error" | "success" | "info" | "warning";
5326
+ type: "success" | "error" | "info" | "warning";
5310
5327
  id?: number | undefined;
5311
5328
  }[] | undefined;
5312
5329
  required?: boolean | undefined;
@@ -5328,7 +5345,7 @@ export declare function init(config: AuthHeroConfig): {
5328
5345
  hint?: string | undefined;
5329
5346
  messages?: {
5330
5347
  text: string;
5331
- type: "error" | "success" | "info" | "warning";
5348
+ type: "success" | "error" | "info" | "warning";
5332
5349
  id?: number | undefined;
5333
5350
  }[] | undefined;
5334
5351
  required?: boolean | undefined;
@@ -5350,7 +5367,7 @@ export declare function init(config: AuthHeroConfig): {
5350
5367
  hint?: string | undefined;
5351
5368
  messages?: {
5352
5369
  text: string;
5353
- type: "error" | "success" | "info" | "warning";
5370
+ type: "success" | "error" | "info" | "warning";
5354
5371
  id?: number | undefined;
5355
5372
  }[] | undefined;
5356
5373
  required?: boolean | undefined;
@@ -5369,7 +5386,7 @@ export declare function init(config: AuthHeroConfig): {
5369
5386
  hint?: string | undefined;
5370
5387
  messages?: {
5371
5388
  text: string;
5372
- type: "error" | "success" | "info" | "warning";
5389
+ type: "success" | "error" | "info" | "warning";
5373
5390
  id?: number | undefined;
5374
5391
  }[] | undefined;
5375
5392
  required?: boolean | undefined;
@@ -5394,7 +5411,7 @@ export declare function init(config: AuthHeroConfig): {
5394
5411
  hint?: string | undefined;
5395
5412
  messages?: {
5396
5413
  text: string;
5397
- type: "error" | "success" | "info" | "warning";
5414
+ type: "success" | "error" | "info" | "warning";
5398
5415
  id?: number | undefined;
5399
5416
  }[] | undefined;
5400
5417
  required?: boolean | undefined;
@@ -5415,7 +5432,7 @@ export declare function init(config: AuthHeroConfig): {
5415
5432
  hint?: string | undefined;
5416
5433
  messages?: {
5417
5434
  text: string;
5418
- type: "error" | "success" | "info" | "warning";
5435
+ type: "success" | "error" | "info" | "warning";
5419
5436
  id?: number | undefined;
5420
5437
  }[] | undefined;
5421
5438
  required?: boolean | undefined;
@@ -5436,7 +5453,7 @@ export declare function init(config: AuthHeroConfig): {
5436
5453
  hint?: string | undefined;
5437
5454
  messages?: {
5438
5455
  text: string;
5439
- type: "error" | "success" | "info" | "warning";
5456
+ type: "success" | "error" | "info" | "warning";
5440
5457
  id?: number | undefined;
5441
5458
  }[] | undefined;
5442
5459
  required?: boolean | undefined;
@@ -5669,7 +5686,7 @@ export declare function init(config: AuthHeroConfig): {
5669
5686
  hint?: string | undefined;
5670
5687
  messages?: {
5671
5688
  text: string;
5672
- type: "error" | "success" | "info" | "warning";
5689
+ type: "success" | "error" | "info" | "warning";
5673
5690
  id?: number | undefined;
5674
5691
  }[] | undefined;
5675
5692
  required?: boolean | undefined;
@@ -5687,7 +5704,7 @@ export declare function init(config: AuthHeroConfig): {
5687
5704
  hint?: string | undefined;
5688
5705
  messages?: {
5689
5706
  text: string;
5690
- type: "error" | "success" | "info" | "warning";
5707
+ type: "success" | "error" | "info" | "warning";
5691
5708
  id?: number | undefined;
5692
5709
  }[] | undefined;
5693
5710
  required?: boolean | undefined;
@@ -5711,7 +5728,7 @@ export declare function init(config: AuthHeroConfig): {
5711
5728
  hint?: string | undefined;
5712
5729
  messages?: {
5713
5730
  text: string;
5714
- type: "error" | "success" | "info" | "warning";
5731
+ type: "success" | "error" | "info" | "warning";
5715
5732
  id?: number | undefined;
5716
5733
  }[] | undefined;
5717
5734
  required?: boolean | undefined;
@@ -5735,7 +5752,7 @@ export declare function init(config: AuthHeroConfig): {
5735
5752
  hint?: string | undefined;
5736
5753
  messages?: {
5737
5754
  text: string;
5738
- type: "error" | "success" | "info" | "warning";
5755
+ type: "success" | "error" | "info" | "warning";
5739
5756
  id?: number | undefined;
5740
5757
  }[] | undefined;
5741
5758
  required?: boolean | undefined;
@@ -5759,7 +5776,7 @@ export declare function init(config: AuthHeroConfig): {
5759
5776
  hint?: string | undefined;
5760
5777
  messages?: {
5761
5778
  text: string;
5762
- type: "error" | "success" | "info" | "warning";
5779
+ type: "success" | "error" | "info" | "warning";
5763
5780
  id?: number | undefined;
5764
5781
  }[] | undefined;
5765
5782
  required?: boolean | undefined;
@@ -5784,7 +5801,7 @@ export declare function init(config: AuthHeroConfig): {
5784
5801
  hint?: string | undefined;
5785
5802
  messages?: {
5786
5803
  text: string;
5787
- type: "error" | "success" | "info" | "warning";
5804
+ type: "success" | "error" | "info" | "warning";
5788
5805
  id?: number | undefined;
5789
5806
  }[] | undefined;
5790
5807
  required?: boolean | undefined;
@@ -5799,7 +5816,7 @@ export declare function init(config: AuthHeroConfig): {
5799
5816
  hint?: string | undefined;
5800
5817
  messages?: {
5801
5818
  text: string;
5802
- type: "error" | "success" | "info" | "warning";
5819
+ type: "success" | "error" | "info" | "warning";
5803
5820
  id?: number | undefined;
5804
5821
  }[] | undefined;
5805
5822
  required?: boolean | undefined;
@@ -5820,7 +5837,7 @@ export declare function init(config: AuthHeroConfig): {
5820
5837
  hint?: string | undefined;
5821
5838
  messages?: {
5822
5839
  text: string;
5823
- type: "error" | "success" | "info" | "warning";
5840
+ type: "success" | "error" | "info" | "warning";
5824
5841
  id?: number | undefined;
5825
5842
  }[] | undefined;
5826
5843
  required?: boolean | undefined;
@@ -5845,7 +5862,7 @@ export declare function init(config: AuthHeroConfig): {
5845
5862
  hint?: string | undefined;
5846
5863
  messages?: {
5847
5864
  text: string;
5848
- type: "error" | "success" | "info" | "warning";
5865
+ type: "success" | "error" | "info" | "warning";
5849
5866
  id?: number | undefined;
5850
5867
  }[] | undefined;
5851
5868
  required?: boolean | undefined;
@@ -5864,7 +5881,7 @@ export declare function init(config: AuthHeroConfig): {
5864
5881
  hint?: string | undefined;
5865
5882
  messages?: {
5866
5883
  text: string;
5867
- type: "error" | "success" | "info" | "warning";
5884
+ type: "success" | "error" | "info" | "warning";
5868
5885
  id?: number | undefined;
5869
5886
  }[] | undefined;
5870
5887
  required?: boolean | undefined;
@@ -5884,7 +5901,7 @@ export declare function init(config: AuthHeroConfig): {
5884
5901
  hint?: string | undefined;
5885
5902
  messages?: {
5886
5903
  text: string;
5887
- type: "error" | "success" | "info" | "warning";
5904
+ type: "success" | "error" | "info" | "warning";
5888
5905
  id?: number | undefined;
5889
5906
  }[] | undefined;
5890
5907
  required?: boolean | undefined;
@@ -5903,7 +5920,7 @@ export declare function init(config: AuthHeroConfig): {
5903
5920
  hint?: string | undefined;
5904
5921
  messages?: {
5905
5922
  text: string;
5906
- type: "error" | "success" | "info" | "warning";
5923
+ type: "success" | "error" | "info" | "warning";
5907
5924
  id?: number | undefined;
5908
5925
  }[] | undefined;
5909
5926
  required?: boolean | undefined;
@@ -5925,7 +5942,7 @@ export declare function init(config: AuthHeroConfig): {
5925
5942
  hint?: string | undefined;
5926
5943
  messages?: {
5927
5944
  text: string;
5928
- type: "error" | "success" | "info" | "warning";
5945
+ type: "success" | "error" | "info" | "warning";
5929
5946
  id?: number | undefined;
5930
5947
  }[] | undefined;
5931
5948
  required?: boolean | undefined;
@@ -5947,7 +5964,7 @@ export declare function init(config: AuthHeroConfig): {
5947
5964
  hint?: string | undefined;
5948
5965
  messages?: {
5949
5966
  text: string;
5950
- type: "error" | "success" | "info" | "warning";
5967
+ type: "success" | "error" | "info" | "warning";
5951
5968
  id?: number | undefined;
5952
5969
  }[] | undefined;
5953
5970
  required?: boolean | undefined;
@@ -5966,7 +5983,7 @@ export declare function init(config: AuthHeroConfig): {
5966
5983
  hint?: string | undefined;
5967
5984
  messages?: {
5968
5985
  text: string;
5969
- type: "error" | "success" | "info" | "warning";
5986
+ type: "success" | "error" | "info" | "warning";
5970
5987
  id?: number | undefined;
5971
5988
  }[] | undefined;
5972
5989
  required?: boolean | undefined;
@@ -5991,7 +6008,7 @@ export declare function init(config: AuthHeroConfig): {
5991
6008
  hint?: string | undefined;
5992
6009
  messages?: {
5993
6010
  text: string;
5994
- type: "error" | "success" | "info" | "warning";
6011
+ type: "success" | "error" | "info" | "warning";
5995
6012
  id?: number | undefined;
5996
6013
  }[] | undefined;
5997
6014
  required?: boolean | undefined;
@@ -6012,7 +6029,7 @@ export declare function init(config: AuthHeroConfig): {
6012
6029
  hint?: string | undefined;
6013
6030
  messages?: {
6014
6031
  text: string;
6015
- type: "error" | "success" | "info" | "warning";
6032
+ type: "success" | "error" | "info" | "warning";
6016
6033
  id?: number | undefined;
6017
6034
  }[] | undefined;
6018
6035
  required?: boolean | undefined;
@@ -6033,7 +6050,7 @@ export declare function init(config: AuthHeroConfig): {
6033
6050
  hint?: string | undefined;
6034
6051
  messages?: {
6035
6052
  text: string;
6036
- type: "error" | "success" | "info" | "warning";
6053
+ type: "success" | "error" | "info" | "warning";
6037
6054
  id?: number | undefined;
6038
6055
  }[] | undefined;
6039
6056
  required?: boolean | undefined;
@@ -6264,7 +6281,7 @@ export declare function init(config: AuthHeroConfig): {
6264
6281
  hint?: string | undefined;
6265
6282
  messages?: {
6266
6283
  text: string;
6267
- type: "error" | "success" | "info" | "warning";
6284
+ type: "success" | "error" | "info" | "warning";
6268
6285
  id?: number | undefined;
6269
6286
  }[] | undefined;
6270
6287
  required?: boolean | undefined;
@@ -6282,7 +6299,7 @@ export declare function init(config: AuthHeroConfig): {
6282
6299
  hint?: string | undefined;
6283
6300
  messages?: {
6284
6301
  text: string;
6285
- type: "error" | "success" | "info" | "warning";
6302
+ type: "success" | "error" | "info" | "warning";
6286
6303
  id?: number | undefined;
6287
6304
  }[] | undefined;
6288
6305
  required?: boolean | undefined;
@@ -6306,7 +6323,7 @@ export declare function init(config: AuthHeroConfig): {
6306
6323
  hint?: string | undefined;
6307
6324
  messages?: {
6308
6325
  text: string;
6309
- type: "error" | "success" | "info" | "warning";
6326
+ type: "success" | "error" | "info" | "warning";
6310
6327
  id?: number | undefined;
6311
6328
  }[] | undefined;
6312
6329
  required?: boolean | undefined;
@@ -6330,7 +6347,7 @@ export declare function init(config: AuthHeroConfig): {
6330
6347
  hint?: string | undefined;
6331
6348
  messages?: {
6332
6349
  text: string;
6333
- type: "error" | "success" | "info" | "warning";
6350
+ type: "success" | "error" | "info" | "warning";
6334
6351
  id?: number | undefined;
6335
6352
  }[] | undefined;
6336
6353
  required?: boolean | undefined;
@@ -6354,7 +6371,7 @@ export declare function init(config: AuthHeroConfig): {
6354
6371
  hint?: string | undefined;
6355
6372
  messages?: {
6356
6373
  text: string;
6357
- type: "error" | "success" | "info" | "warning";
6374
+ type: "success" | "error" | "info" | "warning";
6358
6375
  id?: number | undefined;
6359
6376
  }[] | undefined;
6360
6377
  required?: boolean | undefined;
@@ -6383,7 +6400,7 @@ export declare function init(config: AuthHeroConfig): {
6383
6400
  hint?: string | undefined;
6384
6401
  messages?: {
6385
6402
  text: string;
6386
- type: "error" | "success" | "info" | "warning";
6403
+ type: "success" | "error" | "info" | "warning";
6387
6404
  id?: number | undefined;
6388
6405
  }[] | undefined;
6389
6406
  required?: boolean | undefined;
@@ -6398,7 +6415,7 @@ export declare function init(config: AuthHeroConfig): {
6398
6415
  hint?: string | undefined;
6399
6416
  messages?: {
6400
6417
  text: string;
6401
- type: "error" | "success" | "info" | "warning";
6418
+ type: "success" | "error" | "info" | "warning";
6402
6419
  id?: number | undefined;
6403
6420
  }[] | undefined;
6404
6421
  required?: boolean | undefined;
@@ -6419,7 +6436,7 @@ export declare function init(config: AuthHeroConfig): {
6419
6436
  hint?: string | undefined;
6420
6437
  messages?: {
6421
6438
  text: string;
6422
- type: "error" | "success" | "info" | "warning";
6439
+ type: "success" | "error" | "info" | "warning";
6423
6440
  id?: number | undefined;
6424
6441
  }[] | undefined;
6425
6442
  required?: boolean | undefined;
@@ -6444,7 +6461,7 @@ export declare function init(config: AuthHeroConfig): {
6444
6461
  hint?: string | undefined;
6445
6462
  messages?: {
6446
6463
  text: string;
6447
- type: "error" | "success" | "info" | "warning";
6464
+ type: "success" | "error" | "info" | "warning";
6448
6465
  id?: number | undefined;
6449
6466
  }[] | undefined;
6450
6467
  required?: boolean | undefined;
@@ -6463,7 +6480,7 @@ export declare function init(config: AuthHeroConfig): {
6463
6480
  hint?: string | undefined;
6464
6481
  messages?: {
6465
6482
  text: string;
6466
- type: "error" | "success" | "info" | "warning";
6483
+ type: "success" | "error" | "info" | "warning";
6467
6484
  id?: number | undefined;
6468
6485
  }[] | undefined;
6469
6486
  required?: boolean | undefined;
@@ -6483,7 +6500,7 @@ export declare function init(config: AuthHeroConfig): {
6483
6500
  hint?: string | undefined;
6484
6501
  messages?: {
6485
6502
  text: string;
6486
- type: "error" | "success" | "info" | "warning";
6503
+ type: "success" | "error" | "info" | "warning";
6487
6504
  id?: number | undefined;
6488
6505
  }[] | undefined;
6489
6506
  required?: boolean | undefined;
@@ -6502,7 +6519,7 @@ export declare function init(config: AuthHeroConfig): {
6502
6519
  hint?: string | undefined;
6503
6520
  messages?: {
6504
6521
  text: string;
6505
- type: "error" | "success" | "info" | "warning";
6522
+ type: "success" | "error" | "info" | "warning";
6506
6523
  id?: number | undefined;
6507
6524
  }[] | undefined;
6508
6525
  required?: boolean | undefined;
@@ -6524,7 +6541,7 @@ export declare function init(config: AuthHeroConfig): {
6524
6541
  hint?: string | undefined;
6525
6542
  messages?: {
6526
6543
  text: string;
6527
- type: "error" | "success" | "info" | "warning";
6544
+ type: "success" | "error" | "info" | "warning";
6528
6545
  id?: number | undefined;
6529
6546
  }[] | undefined;
6530
6547
  required?: boolean | undefined;
@@ -6546,7 +6563,7 @@ export declare function init(config: AuthHeroConfig): {
6546
6563
  hint?: string | undefined;
6547
6564
  messages?: {
6548
6565
  text: string;
6549
- type: "error" | "success" | "info" | "warning";
6566
+ type: "success" | "error" | "info" | "warning";
6550
6567
  id?: number | undefined;
6551
6568
  }[] | undefined;
6552
6569
  required?: boolean | undefined;
@@ -6565,7 +6582,7 @@ export declare function init(config: AuthHeroConfig): {
6565
6582
  hint?: string | undefined;
6566
6583
  messages?: {
6567
6584
  text: string;
6568
- type: "error" | "success" | "info" | "warning";
6585
+ type: "success" | "error" | "info" | "warning";
6569
6586
  id?: number | undefined;
6570
6587
  }[] | undefined;
6571
6588
  required?: boolean | undefined;
@@ -6590,7 +6607,7 @@ export declare function init(config: AuthHeroConfig): {
6590
6607
  hint?: string | undefined;
6591
6608
  messages?: {
6592
6609
  text: string;
6593
- type: "error" | "success" | "info" | "warning";
6610
+ type: "success" | "error" | "info" | "warning";
6594
6611
  id?: number | undefined;
6595
6612
  }[] | undefined;
6596
6613
  required?: boolean | undefined;
@@ -6611,7 +6628,7 @@ export declare function init(config: AuthHeroConfig): {
6611
6628
  hint?: string | undefined;
6612
6629
  messages?: {
6613
6630
  text: string;
6614
- type: "error" | "success" | "info" | "warning";
6631
+ type: "success" | "error" | "info" | "warning";
6615
6632
  id?: number | undefined;
6616
6633
  }[] | undefined;
6617
6634
  required?: boolean | undefined;
@@ -6632,7 +6649,7 @@ export declare function init(config: AuthHeroConfig): {
6632
6649
  hint?: string | undefined;
6633
6650
  messages?: {
6634
6651
  text: string;
6635
- type: "error" | "success" | "info" | "warning";
6652
+ type: "success" | "error" | "info" | "warning";
6636
6653
  id?: number | undefined;
6637
6654
  }[] | undefined;
6638
6655
  required?: boolean | undefined;
@@ -6862,7 +6879,7 @@ export declare function init(config: AuthHeroConfig): {
6862
6879
  };
6863
6880
  };
6864
6881
  output: {
6865
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6882
+ prompt: "signup" | "status" | "organizations" | "mfa" | "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";
6866
6883
  language: string;
6867
6884
  }[];
6868
6885
  outputFormat: "json";
@@ -6900,7 +6917,7 @@ export declare function init(config: AuthHeroConfig): {
6900
6917
  $get: {
6901
6918
  input: {
6902
6919
  param: {
6903
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6920
+ prompt: "signup" | "status" | "organizations" | "mfa" | "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";
6904
6921
  language: string;
6905
6922
  };
6906
6923
  } & {
@@ -6922,7 +6939,7 @@ export declare function init(config: AuthHeroConfig): {
6922
6939
  $put: {
6923
6940
  input: {
6924
6941
  param: {
6925
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6942
+ prompt: "signup" | "status" | "organizations" | "mfa" | "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";
6926
6943
  language: string;
6927
6944
  };
6928
6945
  } & {
@@ -6946,7 +6963,7 @@ export declare function init(config: AuthHeroConfig): {
6946
6963
  $delete: {
6947
6964
  input: {
6948
6965
  param: {
6949
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6966
+ prompt: "signup" | "status" | "organizations" | "mfa" | "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";
6950
6967
  language: string;
6951
6968
  };
6952
6969
  } & {
@@ -7808,7 +7825,7 @@ export declare function init(config: AuthHeroConfig): {
7808
7825
  };
7809
7826
  } | {
7810
7827
  mode: "inline";
7811
- status: "error" | "success";
7828
+ status: "success" | "error";
7812
7829
  connection_id: string;
7813
7830
  connection_name: string;
7814
7831
  strategy: string;
@@ -9095,7 +9112,7 @@ export declare function init(config: AuthHeroConfig): {
9095
9112
  };
9096
9113
  };
9097
9114
  output: {
9098
- type: "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9115
+ type: "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" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9099
9116
  date: string;
9100
9117
  isMobile: boolean;
9101
9118
  log_id: string;
@@ -9134,7 +9151,7 @@ export declare function init(config: AuthHeroConfig): {
9134
9151
  limit: number;
9135
9152
  length: number;
9136
9153
  logs: {
9137
- type: "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9154
+ type: "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" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9138
9155
  date: string;
9139
9156
  isMobile: boolean;
9140
9157
  log_id: string;
@@ -9188,7 +9205,7 @@ export declare function init(config: AuthHeroConfig): {
9188
9205
  };
9189
9206
  };
9190
9207
  output: {
9191
- type: "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9208
+ type: "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" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9192
9209
  date: string;
9193
9210
  isMobile: boolean;
9194
9211
  log_id: string;
@@ -9576,7 +9593,7 @@ export declare function init(config: AuthHeroConfig): {
9576
9593
  addons?: {
9577
9594
  [x: string]: any;
9578
9595
  } | undefined;
9579
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9596
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9580
9597
  client_metadata?: {
9581
9598
  [x: string]: string;
9582
9599
  } | undefined;
@@ -9672,7 +9689,7 @@ export declare function init(config: AuthHeroConfig): {
9672
9689
  addons?: {
9673
9690
  [x: string]: any;
9674
9691
  } | undefined;
9675
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9692
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9676
9693
  client_metadata?: {
9677
9694
  [x: string]: string;
9678
9695
  } | undefined;
@@ -9783,7 +9800,7 @@ export declare function init(config: AuthHeroConfig): {
9783
9800
  addons?: {
9784
9801
  [x: string]: any;
9785
9802
  } | undefined;
9786
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9803
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9787
9804
  client_metadata?: {
9788
9805
  [x: string]: string;
9789
9806
  } | undefined;
@@ -9893,7 +9910,7 @@ export declare function init(config: AuthHeroConfig): {
9893
9910
  custom_login_page_preview?: string | undefined;
9894
9911
  form_template?: string | undefined;
9895
9912
  addons?: Record<string, any> | undefined;
9896
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9913
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9897
9914
  client_metadata?: Record<string, string> | undefined;
9898
9915
  hide_sign_up_disabled_error?: boolean | undefined;
9899
9916
  mobile?: Record<string, any> | undefined;
@@ -9973,7 +9990,7 @@ export declare function init(config: AuthHeroConfig): {
9973
9990
  addons?: {
9974
9991
  [x: string]: any;
9975
9992
  } | undefined;
9976
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9993
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9977
9994
  client_metadata?: {
9978
9995
  [x: string]: string;
9979
9996
  } | undefined;
@@ -10062,7 +10079,7 @@ export declare function init(config: AuthHeroConfig): {
10062
10079
  custom_login_page_preview?: string | undefined;
10063
10080
  form_template?: string | undefined;
10064
10081
  addons?: Record<string, any> | undefined;
10065
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10082
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10066
10083
  client_metadata?: Record<string, string> | undefined;
10067
10084
  hide_sign_up_disabled_error?: boolean | undefined;
10068
10085
  mobile?: Record<string, any> | undefined;
@@ -10142,7 +10159,7 @@ export declare function init(config: AuthHeroConfig): {
10142
10159
  addons?: {
10143
10160
  [x: string]: any;
10144
10161
  } | undefined;
10145
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10162
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10146
10163
  client_metadata?: {
10147
10164
  [x: string]: string;
10148
10165
  } | undefined;
@@ -11406,7 +11423,7 @@ export declare function init(config: AuthHeroConfig): {
11406
11423
  };
11407
11424
  };
11408
11425
  output: {
11409
- type: "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11426
+ type: "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" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11410
11427
  date: string;
11411
11428
  isMobile: boolean;
11412
11429
  log_id: string;
@@ -11445,7 +11462,7 @@ export declare function init(config: AuthHeroConfig): {
11445
11462
  limit: number;
11446
11463
  length: number;
11447
11464
  logs: {
11448
- type: "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11465
+ type: "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" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11449
11466
  date: string;
11450
11467
  isMobile: boolean;
11451
11468
  log_id: string;
@@ -11760,7 +11777,7 @@ export declare function init(config: AuthHeroConfig): {
11760
11777
  };
11761
11778
  } & {
11762
11779
  json: {
11763
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11780
+ 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";
11764
11781
  body: string;
11765
11782
  from: string;
11766
11783
  subject: string;
@@ -11781,7 +11798,7 @@ export declare function init(config: AuthHeroConfig): {
11781
11798
  };
11782
11799
  } & {
11783
11800
  json: {
11784
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11801
+ 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";
11785
11802
  body: string;
11786
11803
  from: string;
11787
11804
  subject: string;
@@ -11793,7 +11810,7 @@ export declare function init(config: AuthHeroConfig): {
11793
11810
  };
11794
11811
  };
11795
11812
  output: {
11796
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11813
+ 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";
11797
11814
  body: string;
11798
11815
  from: string;
11799
11816
  subject: string;
@@ -11816,7 +11833,7 @@ export declare function init(config: AuthHeroConfig): {
11816
11833
  };
11817
11834
  };
11818
11835
  output: {
11819
- name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11836
+ 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";
11820
11837
  body: string;
11821
11838
  subject: string;
11822
11839
  }[];
@@ -11829,7 +11846,7 @@ export declare function init(config: AuthHeroConfig): {
11829
11846
  $get: {
11830
11847
  input: {
11831
11848
  param: {
11832
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11849
+ 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";
11833
11850
  };
11834
11851
  } & {
11835
11852
  header: {
@@ -11842,7 +11859,7 @@ export declare function init(config: AuthHeroConfig): {
11842
11859
  } | {
11843
11860
  input: {
11844
11861
  param: {
11845
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11862
+ 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";
11846
11863
  };
11847
11864
  } & {
11848
11865
  header: {
@@ -11850,7 +11867,7 @@ export declare function init(config: AuthHeroConfig): {
11850
11867
  };
11851
11868
  };
11852
11869
  output: {
11853
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11870
+ 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";
11854
11871
  body: string;
11855
11872
  from: string;
11856
11873
  subject: string;
@@ -11869,7 +11886,7 @@ export declare function init(config: AuthHeroConfig): {
11869
11886
  $put: {
11870
11887
  input: {
11871
11888
  param: {
11872
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11889
+ 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";
11873
11890
  };
11874
11891
  } & {
11875
11892
  header: {
@@ -11877,7 +11894,7 @@ export declare function init(config: AuthHeroConfig): {
11877
11894
  };
11878
11895
  } & {
11879
11896
  json: {
11880
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11897
+ 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";
11881
11898
  body: string;
11882
11899
  subject: string;
11883
11900
  syntax?: "liquid" | undefined;
@@ -11889,7 +11906,7 @@ export declare function init(config: AuthHeroConfig): {
11889
11906
  };
11890
11907
  };
11891
11908
  output: {
11892
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11909
+ 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";
11893
11910
  body: string;
11894
11911
  from: string;
11895
11912
  subject: string;
@@ -11908,7 +11925,7 @@ export declare function init(config: AuthHeroConfig): {
11908
11925
  $patch: {
11909
11926
  input: {
11910
11927
  param: {
11911
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11928
+ 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";
11912
11929
  };
11913
11930
  } & {
11914
11931
  header: {
@@ -11916,7 +11933,7 @@ export declare function init(config: AuthHeroConfig): {
11916
11933
  };
11917
11934
  } & {
11918
11935
  json: {
11919
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11936
+ 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;
11920
11937
  body?: string | undefined;
11921
11938
  from?: string | undefined;
11922
11939
  subject?: string | undefined;
@@ -11933,7 +11950,7 @@ export declare function init(config: AuthHeroConfig): {
11933
11950
  } | {
11934
11951
  input: {
11935
11952
  param: {
11936
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11953
+ 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";
11937
11954
  };
11938
11955
  } & {
11939
11956
  header: {
@@ -11941,7 +11958,7 @@ export declare function init(config: AuthHeroConfig): {
11941
11958
  };
11942
11959
  } & {
11943
11960
  json: {
11944
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11961
+ 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;
11945
11962
  body?: string | undefined;
11946
11963
  from?: string | undefined;
11947
11964
  subject?: string | undefined;
@@ -11953,7 +11970,7 @@ export declare function init(config: AuthHeroConfig): {
11953
11970
  };
11954
11971
  };
11955
11972
  output: {
11956
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11973
+ 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";
11957
11974
  body: string;
11958
11975
  from: string;
11959
11976
  subject: string;
@@ -11972,7 +11989,7 @@ export declare function init(config: AuthHeroConfig): {
11972
11989
  $delete: {
11973
11990
  input: {
11974
11991
  param: {
11975
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11992
+ 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";
11976
11993
  };
11977
11994
  } & {
11978
11995
  header: {
@@ -11985,7 +12002,7 @@ export declare function init(config: AuthHeroConfig): {
11985
12002
  } | {
11986
12003
  input: {
11987
12004
  param: {
11988
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12005
+ 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";
11989
12006
  };
11990
12007
  } & {
11991
12008
  header: {
@@ -12002,7 +12019,7 @@ export declare function init(config: AuthHeroConfig): {
12002
12019
  $post: {
12003
12020
  input: {
12004
12021
  param: {
12005
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12022
+ 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";
12006
12023
  };
12007
12024
  } & {
12008
12025
  header: {
@@ -12954,7 +12971,7 @@ export declare function init(config: AuthHeroConfig): {
12954
12971
  } & {
12955
12972
  json: {
12956
12973
  body?: string | undefined;
12957
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
12974
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
12958
12975
  branding?: {
12959
12976
  colors?: {
12960
12977
  primary: string;
@@ -13245,7 +13262,7 @@ export declare function init(config: AuthHeroConfig): {
13245
13262
  logs: {
13246
13263
  action_name: string;
13247
13264
  lines: {
13248
- level: "error" | "log" | "info" | "warn" | "debug";
13265
+ level: "log" | "error" | "info" | "warn" | "debug";
13249
13266
  message: string;
13250
13267
  }[];
13251
13268
  }[];
@@ -13912,7 +13929,7 @@ export declare function init(config: AuthHeroConfig): {
13912
13929
  args: import("hono/utils/types").JSONValue[];
13913
13930
  }[];
13914
13931
  logs: {
13915
- level: "error" | "log" | "info" | "warn" | "debug";
13932
+ level: "log" | "error" | "info" | "warn" | "debug";
13916
13933
  message: string;
13917
13934
  }[];
13918
13935
  error?: string | undefined;
@@ -14223,7 +14240,7 @@ export declare function init(config: AuthHeroConfig): {
14223
14240
  scope?: string | undefined;
14224
14241
  grant_types?: string[] | undefined;
14225
14242
  response_types?: string[] | undefined;
14226
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14243
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14227
14244
  jwks_uri?: string | undefined;
14228
14245
  jwks?: Record<string, unknown> | undefined;
14229
14246
  software_id?: string | undefined;
@@ -14312,7 +14329,7 @@ export declare function init(config: AuthHeroConfig): {
14312
14329
  scope?: string | undefined;
14313
14330
  grant_types?: string[] | undefined;
14314
14331
  response_types?: string[] | undefined;
14315
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14332
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14316
14333
  jwks_uri?: string | undefined;
14317
14334
  jwks?: Record<string, unknown> | undefined;
14318
14335
  software_id?: string | undefined;
@@ -14369,7 +14386,7 @@ export declare function init(config: AuthHeroConfig): {
14369
14386
  client_id: string;
14370
14387
  redirect_url?: string | undefined;
14371
14388
  login_hint?: string | undefined;
14372
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
14389
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14373
14390
  };
14374
14391
  };
14375
14392
  output: {};
@@ -14381,7 +14398,7 @@ export declare function init(config: AuthHeroConfig): {
14381
14398
  client_id: string;
14382
14399
  redirect_url?: string | undefined;
14383
14400
  login_hint?: string | undefined;
14384
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
14401
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14385
14402
  };
14386
14403
  };
14387
14404
  output: {
@@ -14658,19 +14675,19 @@ export declare function init(config: AuthHeroConfig): {
14658
14675
  email: string;
14659
14676
  send: "code" | "link";
14660
14677
  authParams: {
14661
- username?: string | undefined;
14662
- audience?: string | undefined;
14663
- scope?: string | undefined;
14664
- state?: string | undefined;
14665
14678
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14666
14679
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14667
- code_challenge?: string | undefined;
14668
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14669
- redirect_uri?: string | undefined;
14680
+ scope?: string | undefined;
14681
+ username?: string | undefined;
14670
14682
  nonce?: string | undefined;
14683
+ state?: string | undefined;
14671
14684
  act_as?: string | undefined;
14685
+ redirect_uri?: string | undefined;
14686
+ audience?: string | undefined;
14672
14687
  organization?: string | undefined;
14673
14688
  prompt?: string | undefined;
14689
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14690
+ code_challenge?: string | undefined;
14674
14691
  ui_locales?: string | undefined;
14675
14692
  max_age?: number | undefined;
14676
14693
  acr_values?: string | undefined;
@@ -14694,19 +14711,19 @@ export declare function init(config: AuthHeroConfig): {
14694
14711
  phone_number: string;
14695
14712
  send: "code" | "link";
14696
14713
  authParams: {
14697
- username?: string | undefined;
14698
- audience?: string | undefined;
14699
- scope?: string | undefined;
14700
- state?: string | undefined;
14701
14714
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14702
14715
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14703
- code_challenge?: string | undefined;
14704
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14705
- redirect_uri?: string | undefined;
14716
+ scope?: string | undefined;
14717
+ username?: string | undefined;
14706
14718
  nonce?: string | undefined;
14719
+ state?: string | undefined;
14707
14720
  act_as?: string | undefined;
14721
+ redirect_uri?: string | undefined;
14722
+ audience?: string | undefined;
14708
14723
  organization?: string | undefined;
14709
14724
  prompt?: string | undefined;
14725
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14726
+ code_challenge?: string | undefined;
14710
14727
  ui_locales?: string | undefined;
14711
14728
  max_age?: number | undefined;
14712
14729
  acr_values?: string | undefined;
@@ -16234,7 +16251,7 @@ export declare function init(config: AuthHeroConfig): {
16234
16251
  } & {
16235
16252
  form: {
16236
16253
  username: string;
16237
- login_selection?: "password" | "code" | undefined;
16254
+ login_selection?: "code" | "password" | undefined;
16238
16255
  };
16239
16256
  };
16240
16257
  output: {};
@@ -16248,7 +16265,7 @@ export declare function init(config: AuthHeroConfig): {
16248
16265
  } & {
16249
16266
  form: {
16250
16267
  username: string;
16251
- login_selection?: "password" | "code" | undefined;
16268
+ login_selection?: "code" | "password" | undefined;
16252
16269
  };
16253
16270
  };
16254
16271
  output: {};
@@ -16613,7 +16630,7 @@ export declare function init(config: AuthHeroConfig): {
16613
16630
  $get: {
16614
16631
  input: {
16615
16632
  param: {
16616
- screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16633
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16617
16634
  };
16618
16635
  } & {
16619
16636
  query: {
@@ -16629,7 +16646,7 @@ export declare function init(config: AuthHeroConfig): {
16629
16646
  } | {
16630
16647
  input: {
16631
16648
  param: {
16632
- screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16649
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16633
16650
  };
16634
16651
  } & {
16635
16652
  query: {
@@ -16645,7 +16662,7 @@ export declare function init(config: AuthHeroConfig): {
16645
16662
  } | {
16646
16663
  input: {
16647
16664
  param: {
16648
- screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16665
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16649
16666
  };
16650
16667
  } & {
16651
16668
  query: {
@@ -16665,7 +16682,7 @@ export declare function init(config: AuthHeroConfig): {
16665
16682
  $post: {
16666
16683
  input: {
16667
16684
  param: {
16668
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16685
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16669
16686
  };
16670
16687
  } & {
16671
16688
  query: {
@@ -16683,7 +16700,7 @@ export declare function init(config: AuthHeroConfig): {
16683
16700
  } | {
16684
16701
  input: {
16685
16702
  param: {
16686
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16703
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16687
16704
  };
16688
16705
  } & {
16689
16706
  query: {