authhero 5.18.0 → 5.20.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 (62) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +2729 -128
  3. package/dist/authhero.d.ts +602 -230
  4. package/dist/authhero.mjs +10757 -9901
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/common.d.ts +8 -0
  8. package/dist/types/authentication-flows/passwordless.d.ts +1 -1
  9. package/dist/types/authentication-flows/token-exchange.d.ts +19 -0
  10. package/dist/types/emails/defaults/BlockedAccount.d.ts +1 -0
  11. package/dist/types/emails/defaults/ChangePassword.d.ts +6 -0
  12. package/dist/types/emails/defaults/EnrollmentEmail.d.ts +1 -0
  13. package/dist/types/emails/defaults/MfaOobCode.d.ts +1 -0
  14. package/dist/types/emails/defaults/PasswordReset.d.ts +5 -0
  15. package/dist/types/emails/defaults/StolenCredentials.d.ts +1 -0
  16. package/dist/types/emails/index.d.ts +21 -1
  17. package/dist/types/helpers/consent.d.ts +31 -0
  18. package/dist/types/helpers/control-plane-sync-events.d.ts +67 -0
  19. package/dist/types/helpers/default-destinations.d.ts +11 -0
  20. package/dist/types/helpers/outbox-destinations/control-plane-sync.d.ts +35 -0
  21. package/dist/types/helpers/outbox-destinations/logs.d.ts +2 -0
  22. package/dist/types/helpers/scopes-permissions.d.ts +1 -1
  23. package/dist/types/index.d.ts +471 -227
  24. package/dist/types/routes/auth-api/index.d.ts +117 -7
  25. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  26. package/dist/types/routes/auth-api/token.d.ts +110 -0
  27. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  28. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  29. package/dist/types/routes/management-api/actions.d.ts +4 -4
  30. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  31. package/dist/types/routes/management-api/branding.d.ts +9 -9
  32. package/dist/types/routes/management-api/clients.d.ts +2 -2
  33. package/dist/types/routes/management-api/connections.d.ts +6 -6
  34. package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
  35. package/dist/types/routes/management-api/email-templates.d.ts +88 -31
  36. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  37. package/dist/types/routes/management-api/forms.d.ts +126 -126
  38. package/dist/types/routes/management-api/grants.d.ts +80 -0
  39. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  40. package/dist/types/routes/management-api/index.d.ts +343 -212
  41. package/dist/types/routes/management-api/logs.d.ts +3 -3
  42. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  43. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  44. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  45. package/dist/types/routes/management-api/proxy-routes.d.ts +1 -0
  46. package/dist/types/routes/management-api/themes.d.ts +6 -6
  47. package/dist/types/routes/management-api/users.d.ts +2 -2
  48. package/dist/types/routes/proxy-control-plane/index.d.ts +34 -1
  49. package/dist/types/routes/universal-login/common.d.ts +8 -8
  50. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  51. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  52. package/dist/types/routes/universal-login/index.d.ts +2 -2
  53. package/dist/types/routes/universal-login/screens/consent.d.ts +9 -0
  54. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  55. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  56. package/dist/types/state-machines/login-session.d.ts +12 -1
  57. package/dist/types/types/AuthHeroConfig.d.ts +26 -0
  58. package/dist/types/types/GrantFlowResult.d.ts +8 -0
  59. package/dist/types/types/IdToken.d.ts +1 -1
  60. package/dist/types/utils/jwks.d.ts +2 -2
  61. package/dist/types/utils/jwt.d.ts +4 -0
  62. package/package.json +5 -5
@@ -22,6 +22,9 @@ export type { RunOutboxRelayConfig } from "./helpers/run-outbox-relay";
22
22
  export { LogsDestination } from "./helpers/outbox-destinations/logs";
23
23
  export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToken, } from "./helpers/outbox-destinations/webhooks";
24
24
  export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/registration-finalizer";
25
+ export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
26
+ export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
27
+ export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
25
28
  export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
26
29
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
27
30
  export type { SeedOptions, SeedResult } from "./seed";
@@ -80,7 +83,7 @@ export declare function init(config: AuthHeroConfig): {
80
83
  };
81
84
  } & {
82
85
  json: {
83
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
86
+ type: "push" | "email" | "phone" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
84
87
  phone_number?: string | undefined;
85
88
  totp_secret?: string | undefined;
86
89
  credential_id?: string | undefined;
@@ -220,7 +223,7 @@ export declare function init(config: AuthHeroConfig): {
220
223
  };
221
224
  };
222
225
  output: {
223
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
226
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
224
227
  enabled: boolean;
225
228
  trial_expired?: boolean | undefined;
226
229
  }[];
@@ -375,7 +378,7 @@ export declare function init(config: AuthHeroConfig): {
375
378
  $get: {
376
379
  input: {
377
380
  param: {
378
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
381
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
379
382
  };
380
383
  } & {
381
384
  header: {
@@ -383,7 +386,7 @@ export declare function init(config: AuthHeroConfig): {
383
386
  };
384
387
  };
385
388
  output: {
386
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
389
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
387
390
  enabled: boolean;
388
391
  trial_expired?: boolean | undefined;
389
392
  };
@@ -396,7 +399,7 @@ export declare function init(config: AuthHeroConfig): {
396
399
  $put: {
397
400
  input: {
398
401
  param: {
399
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
402
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
400
403
  };
401
404
  } & {
402
405
  header: {
@@ -408,7 +411,7 @@ export declare function init(config: AuthHeroConfig): {
408
411
  };
409
412
  };
410
413
  output: {
411
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
414
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
412
415
  enabled: boolean;
413
416
  trial_expired?: boolean | undefined;
414
417
  };
@@ -1153,9 +1156,9 @@ export declare function init(config: AuthHeroConfig): {
1153
1156
  invitee: {
1154
1157
  email?: string | undefined;
1155
1158
  };
1156
- id?: string | undefined;
1157
1159
  app_metadata?: Record<string, any> | undefined;
1158
1160
  user_metadata?: Record<string, any> | undefined;
1161
+ id?: string | undefined;
1159
1162
  connection_id?: string | undefined;
1160
1163
  roles?: string[] | undefined;
1161
1164
  ttl_sec?: number | undefined;
@@ -1341,8 +1344,8 @@ export declare function init(config: AuthHeroConfig): {
1341
1344
  };
1342
1345
  } & {
1343
1346
  json: {
1344
- assign_membership_on_login?: boolean | undefined;
1345
1347
  show_as_button?: boolean | undefined;
1348
+ assign_membership_on_login?: boolean | undefined;
1346
1349
  is_signup_enabled?: boolean | undefined;
1347
1350
  };
1348
1351
  };
@@ -2584,7 +2587,7 @@ export declare function init(config: AuthHeroConfig): {
2584
2587
  hint?: string | undefined;
2585
2588
  messages?: {
2586
2589
  text: string;
2587
- type: "error" | "success" | "info" | "warning";
2590
+ type: "success" | "error" | "info" | "warning";
2588
2591
  id?: number | undefined;
2589
2592
  }[] | undefined;
2590
2593
  required?: boolean | undefined;
@@ -2602,7 +2605,7 @@ export declare function init(config: AuthHeroConfig): {
2602
2605
  hint?: string | undefined;
2603
2606
  messages?: {
2604
2607
  text: string;
2605
- type: "error" | "success" | "info" | "warning";
2608
+ type: "success" | "error" | "info" | "warning";
2606
2609
  id?: number | undefined;
2607
2610
  }[] | undefined;
2608
2611
  required?: boolean | undefined;
@@ -2626,7 +2629,7 @@ export declare function init(config: AuthHeroConfig): {
2626
2629
  hint?: string | undefined;
2627
2630
  messages?: {
2628
2631
  text: string;
2629
- type: "error" | "success" | "info" | "warning";
2632
+ type: "success" | "error" | "info" | "warning";
2630
2633
  id?: number | undefined;
2631
2634
  }[] | undefined;
2632
2635
  required?: boolean | undefined;
@@ -2636,7 +2639,7 @@ export declare function init(config: AuthHeroConfig): {
2636
2639
  value: string;
2637
2640
  label: string;
2638
2641
  }[] | undefined;
2639
- display?: "radio" | "checkbox" | undefined;
2642
+ display?: "checkbox" | "radio" | undefined;
2640
2643
  multiple?: boolean | undefined;
2641
2644
  default_value?: string | string[] | undefined;
2642
2645
  } | undefined;
@@ -2650,7 +2653,7 @@ export declare function init(config: AuthHeroConfig): {
2650
2653
  hint?: string | undefined;
2651
2654
  messages?: {
2652
2655
  text: string;
2653
- type: "error" | "success" | "info" | "warning";
2656
+ type: "success" | "error" | "info" | "warning";
2654
2657
  id?: number | undefined;
2655
2658
  }[] | undefined;
2656
2659
  required?: boolean | undefined;
@@ -2679,7 +2682,7 @@ export declare function init(config: AuthHeroConfig): {
2679
2682
  hint?: string | undefined;
2680
2683
  messages?: {
2681
2684
  text: string;
2682
- type: "error" | "success" | "info" | "warning";
2685
+ type: "success" | "error" | "info" | "warning";
2683
2686
  id?: number | undefined;
2684
2687
  }[] | undefined;
2685
2688
  required?: boolean | undefined;
@@ -2694,7 +2697,7 @@ export declare function init(config: AuthHeroConfig): {
2694
2697
  hint?: string | undefined;
2695
2698
  messages?: {
2696
2699
  text: string;
2697
- type: "error" | "success" | "info" | "warning";
2700
+ type: "success" | "error" | "info" | "warning";
2698
2701
  id?: number | undefined;
2699
2702
  }[] | undefined;
2700
2703
  required?: boolean | undefined;
@@ -2715,7 +2718,7 @@ export declare function init(config: AuthHeroConfig): {
2715
2718
  hint?: string | undefined;
2716
2719
  messages?: {
2717
2720
  text: string;
2718
- type: "error" | "success" | "info" | "warning";
2721
+ type: "success" | "error" | "info" | "warning";
2719
2722
  id?: number | undefined;
2720
2723
  }[] | undefined;
2721
2724
  required?: boolean | undefined;
@@ -2740,7 +2743,7 @@ export declare function init(config: AuthHeroConfig): {
2740
2743
  hint?: string | undefined;
2741
2744
  messages?: {
2742
2745
  text: string;
2743
- type: "error" | "success" | "info" | "warning";
2746
+ type: "success" | "error" | "info" | "warning";
2744
2747
  id?: number | undefined;
2745
2748
  }[] | undefined;
2746
2749
  required?: boolean | undefined;
@@ -2759,7 +2762,7 @@ export declare function init(config: AuthHeroConfig): {
2759
2762
  hint?: string | undefined;
2760
2763
  messages?: {
2761
2764
  text: string;
2762
- type: "error" | "success" | "info" | "warning";
2765
+ type: "success" | "error" | "info" | "warning";
2763
2766
  id?: number | undefined;
2764
2767
  }[] | undefined;
2765
2768
  required?: boolean | undefined;
@@ -2779,7 +2782,7 @@ export declare function init(config: AuthHeroConfig): {
2779
2782
  hint?: string | undefined;
2780
2783
  messages?: {
2781
2784
  text: string;
2782
- type: "error" | "success" | "info" | "warning";
2785
+ type: "success" | "error" | "info" | "warning";
2783
2786
  id?: number | undefined;
2784
2787
  }[] | undefined;
2785
2788
  required?: boolean | undefined;
@@ -2798,7 +2801,7 @@ export declare function init(config: AuthHeroConfig): {
2798
2801
  hint?: string | undefined;
2799
2802
  messages?: {
2800
2803
  text: string;
2801
- type: "error" | "success" | "info" | "warning";
2804
+ type: "success" | "error" | "info" | "warning";
2802
2805
  id?: number | undefined;
2803
2806
  }[] | undefined;
2804
2807
  required?: boolean | undefined;
@@ -2820,7 +2823,7 @@ export declare function init(config: AuthHeroConfig): {
2820
2823
  hint?: string | undefined;
2821
2824
  messages?: {
2822
2825
  text: string;
2823
- type: "error" | "success" | "info" | "warning";
2826
+ type: "success" | "error" | "info" | "warning";
2824
2827
  id?: number | undefined;
2825
2828
  }[] | undefined;
2826
2829
  required?: boolean | undefined;
@@ -2842,7 +2845,7 @@ export declare function init(config: AuthHeroConfig): {
2842
2845
  hint?: string | undefined;
2843
2846
  messages?: {
2844
2847
  text: string;
2845
- type: "error" | "success" | "info" | "warning";
2848
+ type: "success" | "error" | "info" | "warning";
2846
2849
  id?: number | undefined;
2847
2850
  }[] | undefined;
2848
2851
  required?: boolean | undefined;
@@ -2861,7 +2864,7 @@ export declare function init(config: AuthHeroConfig): {
2861
2864
  hint?: string | undefined;
2862
2865
  messages?: {
2863
2866
  text: string;
2864
- type: "error" | "success" | "info" | "warning";
2867
+ type: "success" | "error" | "info" | "warning";
2865
2868
  id?: number | undefined;
2866
2869
  }[] | undefined;
2867
2870
  required?: boolean | undefined;
@@ -2886,7 +2889,7 @@ export declare function init(config: AuthHeroConfig): {
2886
2889
  hint?: string | undefined;
2887
2890
  messages?: {
2888
2891
  text: string;
2889
- type: "error" | "success" | "info" | "warning";
2892
+ type: "success" | "error" | "info" | "warning";
2890
2893
  id?: number | undefined;
2891
2894
  }[] | undefined;
2892
2895
  required?: boolean | undefined;
@@ -2907,7 +2910,7 @@ export declare function init(config: AuthHeroConfig): {
2907
2910
  hint?: string | undefined;
2908
2911
  messages?: {
2909
2912
  text: string;
2910
- type: "error" | "success" | "info" | "warning";
2913
+ type: "success" | "error" | "info" | "warning";
2911
2914
  id?: number | undefined;
2912
2915
  }[] | undefined;
2913
2916
  required?: boolean | undefined;
@@ -2928,7 +2931,7 @@ export declare function init(config: AuthHeroConfig): {
2928
2931
  hint?: string | undefined;
2929
2932
  messages?: {
2930
2933
  text: string;
2931
- type: "error" | "success" | "info" | "warning";
2934
+ type: "success" | "error" | "info" | "warning";
2932
2935
  id?: number | undefined;
2933
2936
  }[] | undefined;
2934
2937
  required?: boolean | undefined;
@@ -3161,7 +3164,7 @@ export declare function init(config: AuthHeroConfig): {
3161
3164
  hint?: string | undefined;
3162
3165
  messages?: {
3163
3166
  text: string;
3164
- type: "error" | "success" | "info" | "warning";
3167
+ type: "success" | "error" | "info" | "warning";
3165
3168
  id?: number | undefined;
3166
3169
  }[] | undefined;
3167
3170
  required?: boolean | undefined;
@@ -3179,7 +3182,7 @@ export declare function init(config: AuthHeroConfig): {
3179
3182
  hint?: string | undefined;
3180
3183
  messages?: {
3181
3184
  text: string;
3182
- type: "error" | "success" | "info" | "warning";
3185
+ type: "success" | "error" | "info" | "warning";
3183
3186
  id?: number | undefined;
3184
3187
  }[] | undefined;
3185
3188
  required?: boolean | undefined;
@@ -3203,7 +3206,7 @@ export declare function init(config: AuthHeroConfig): {
3203
3206
  hint?: string | undefined;
3204
3207
  messages?: {
3205
3208
  text: string;
3206
- type: "error" | "success" | "info" | "warning";
3209
+ type: "success" | "error" | "info" | "warning";
3207
3210
  id?: number | undefined;
3208
3211
  }[] | undefined;
3209
3212
  required?: boolean | undefined;
@@ -3213,7 +3216,7 @@ export declare function init(config: AuthHeroConfig): {
3213
3216
  value: string;
3214
3217
  label: string;
3215
3218
  }[] | undefined;
3216
- display?: "radio" | "checkbox" | undefined;
3219
+ display?: "checkbox" | "radio" | undefined;
3217
3220
  multiple?: boolean | undefined;
3218
3221
  default_value?: string | string[] | undefined;
3219
3222
  } | undefined;
@@ -3227,7 +3230,7 @@ export declare function init(config: AuthHeroConfig): {
3227
3230
  hint?: string | undefined;
3228
3231
  messages?: {
3229
3232
  text: string;
3230
- type: "error" | "success" | "info" | "warning";
3233
+ type: "success" | "error" | "info" | "warning";
3231
3234
  id?: number | undefined;
3232
3235
  }[] | undefined;
3233
3236
  required?: boolean | undefined;
@@ -3256,7 +3259,7 @@ export declare function init(config: AuthHeroConfig): {
3256
3259
  hint?: string | undefined;
3257
3260
  messages?: {
3258
3261
  text: string;
3259
- type: "error" | "success" | "info" | "warning";
3262
+ type: "success" | "error" | "info" | "warning";
3260
3263
  id?: number | undefined;
3261
3264
  }[] | undefined;
3262
3265
  required?: boolean | undefined;
@@ -3271,7 +3274,7 @@ export declare function init(config: AuthHeroConfig): {
3271
3274
  hint?: string | undefined;
3272
3275
  messages?: {
3273
3276
  text: string;
3274
- type: "error" | "success" | "info" | "warning";
3277
+ type: "success" | "error" | "info" | "warning";
3275
3278
  id?: number | undefined;
3276
3279
  }[] | undefined;
3277
3280
  required?: boolean | undefined;
@@ -3292,7 +3295,7 @@ export declare function init(config: AuthHeroConfig): {
3292
3295
  hint?: string | undefined;
3293
3296
  messages?: {
3294
3297
  text: string;
3295
- type: "error" | "success" | "info" | "warning";
3298
+ type: "success" | "error" | "info" | "warning";
3296
3299
  id?: number | undefined;
3297
3300
  }[] | undefined;
3298
3301
  required?: boolean | undefined;
@@ -3317,7 +3320,7 @@ export declare function init(config: AuthHeroConfig): {
3317
3320
  hint?: string | undefined;
3318
3321
  messages?: {
3319
3322
  text: string;
3320
- type: "error" | "success" | "info" | "warning";
3323
+ type: "success" | "error" | "info" | "warning";
3321
3324
  id?: number | undefined;
3322
3325
  }[] | undefined;
3323
3326
  required?: boolean | undefined;
@@ -3336,7 +3339,7 @@ export declare function init(config: AuthHeroConfig): {
3336
3339
  hint?: string | undefined;
3337
3340
  messages?: {
3338
3341
  text: string;
3339
- type: "error" | "success" | "info" | "warning";
3342
+ type: "success" | "error" | "info" | "warning";
3340
3343
  id?: number | undefined;
3341
3344
  }[] | undefined;
3342
3345
  required?: boolean | undefined;
@@ -3356,7 +3359,7 @@ export declare function init(config: AuthHeroConfig): {
3356
3359
  hint?: string | undefined;
3357
3360
  messages?: {
3358
3361
  text: string;
3359
- type: "error" | "success" | "info" | "warning";
3362
+ type: "success" | "error" | "info" | "warning";
3360
3363
  id?: number | undefined;
3361
3364
  }[] | undefined;
3362
3365
  required?: boolean | undefined;
@@ -3375,7 +3378,7 @@ export declare function init(config: AuthHeroConfig): {
3375
3378
  hint?: string | undefined;
3376
3379
  messages?: {
3377
3380
  text: string;
3378
- type: "error" | "success" | "info" | "warning";
3381
+ type: "success" | "error" | "info" | "warning";
3379
3382
  id?: number | undefined;
3380
3383
  }[] | undefined;
3381
3384
  required?: boolean | undefined;
@@ -3397,7 +3400,7 @@ export declare function init(config: AuthHeroConfig): {
3397
3400
  hint?: string | undefined;
3398
3401
  messages?: {
3399
3402
  text: string;
3400
- type: "error" | "success" | "info" | "warning";
3403
+ type: "success" | "error" | "info" | "warning";
3401
3404
  id?: number | undefined;
3402
3405
  }[] | undefined;
3403
3406
  required?: boolean | undefined;
@@ -3419,7 +3422,7 @@ export declare function init(config: AuthHeroConfig): {
3419
3422
  hint?: string | undefined;
3420
3423
  messages?: {
3421
3424
  text: string;
3422
- type: "error" | "success" | "info" | "warning";
3425
+ type: "success" | "error" | "info" | "warning";
3423
3426
  id?: number | undefined;
3424
3427
  }[] | undefined;
3425
3428
  required?: boolean | undefined;
@@ -3438,7 +3441,7 @@ export declare function init(config: AuthHeroConfig): {
3438
3441
  hint?: string | undefined;
3439
3442
  messages?: {
3440
3443
  text: string;
3441
- type: "error" | "success" | "info" | "warning";
3444
+ type: "success" | "error" | "info" | "warning";
3442
3445
  id?: number | undefined;
3443
3446
  }[] | undefined;
3444
3447
  required?: boolean | undefined;
@@ -3463,7 +3466,7 @@ export declare function init(config: AuthHeroConfig): {
3463
3466
  hint?: string | undefined;
3464
3467
  messages?: {
3465
3468
  text: string;
3466
- type: "error" | "success" | "info" | "warning";
3469
+ type: "success" | "error" | "info" | "warning";
3467
3470
  id?: number | undefined;
3468
3471
  }[] | undefined;
3469
3472
  required?: boolean | undefined;
@@ -3484,7 +3487,7 @@ export declare function init(config: AuthHeroConfig): {
3484
3487
  hint?: string | undefined;
3485
3488
  messages?: {
3486
3489
  text: string;
3487
- type: "error" | "success" | "info" | "warning";
3490
+ type: "success" | "error" | "info" | "warning";
3488
3491
  id?: number | undefined;
3489
3492
  }[] | undefined;
3490
3493
  required?: boolean | undefined;
@@ -3505,7 +3508,7 @@ export declare function init(config: AuthHeroConfig): {
3505
3508
  hint?: string | undefined;
3506
3509
  messages?: {
3507
3510
  text: string;
3508
- type: "error" | "success" | "info" | "warning";
3511
+ type: "success" | "error" | "info" | "warning";
3509
3512
  id?: number | undefined;
3510
3513
  }[] | undefined;
3511
3514
  required?: boolean | undefined;
@@ -3753,7 +3756,7 @@ export declare function init(config: AuthHeroConfig): {
3753
3756
  hint?: string | undefined;
3754
3757
  messages?: {
3755
3758
  text: string;
3756
- type: "error" | "success" | "info" | "warning";
3759
+ type: "success" | "error" | "info" | "warning";
3757
3760
  id?: number | undefined;
3758
3761
  }[] | undefined;
3759
3762
  required?: boolean | undefined;
@@ -3771,7 +3774,7 @@ export declare function init(config: AuthHeroConfig): {
3771
3774
  hint?: string | undefined;
3772
3775
  messages?: {
3773
3776
  text: string;
3774
- type: "error" | "success" | "info" | "warning";
3777
+ type: "success" | "error" | "info" | "warning";
3775
3778
  id?: number | undefined;
3776
3779
  }[] | undefined;
3777
3780
  required?: boolean | undefined;
@@ -3795,7 +3798,7 @@ export declare function init(config: AuthHeroConfig): {
3795
3798
  hint?: string | undefined;
3796
3799
  messages?: {
3797
3800
  text: string;
3798
- type: "error" | "success" | "info" | "warning";
3801
+ type: "success" | "error" | "info" | "warning";
3799
3802
  id?: number | undefined;
3800
3803
  }[] | undefined;
3801
3804
  required?: boolean | undefined;
@@ -3805,7 +3808,7 @@ export declare function init(config: AuthHeroConfig): {
3805
3808
  value: string;
3806
3809
  label: string;
3807
3810
  }[] | undefined;
3808
- display?: "radio" | "checkbox" | undefined;
3811
+ display?: "checkbox" | "radio" | undefined;
3809
3812
  multiple?: boolean | undefined;
3810
3813
  default_value?: string | string[] | undefined;
3811
3814
  } | undefined;
@@ -3819,7 +3822,7 @@ export declare function init(config: AuthHeroConfig): {
3819
3822
  hint?: string | undefined;
3820
3823
  messages?: {
3821
3824
  text: string;
3822
- type: "error" | "success" | "info" | "warning";
3825
+ type: "success" | "error" | "info" | "warning";
3823
3826
  id?: number | undefined;
3824
3827
  }[] | undefined;
3825
3828
  required?: boolean | undefined;
@@ -3848,7 +3851,7 @@ export declare function init(config: AuthHeroConfig): {
3848
3851
  hint?: string | undefined;
3849
3852
  messages?: {
3850
3853
  text: string;
3851
- type: "error" | "success" | "info" | "warning";
3854
+ type: "success" | "error" | "info" | "warning";
3852
3855
  id?: number | undefined;
3853
3856
  }[] | undefined;
3854
3857
  required?: boolean | undefined;
@@ -3863,7 +3866,7 @@ export declare function init(config: AuthHeroConfig): {
3863
3866
  hint?: string | undefined;
3864
3867
  messages?: {
3865
3868
  text: string;
3866
- type: "error" | "success" | "info" | "warning";
3869
+ type: "success" | "error" | "info" | "warning";
3867
3870
  id?: number | undefined;
3868
3871
  }[] | undefined;
3869
3872
  required?: boolean | undefined;
@@ -3884,7 +3887,7 @@ export declare function init(config: AuthHeroConfig): {
3884
3887
  hint?: string | undefined;
3885
3888
  messages?: {
3886
3889
  text: string;
3887
- type: "error" | "success" | "info" | "warning";
3890
+ type: "success" | "error" | "info" | "warning";
3888
3891
  id?: number | undefined;
3889
3892
  }[] | undefined;
3890
3893
  required?: boolean | undefined;
@@ -3909,7 +3912,7 @@ export declare function init(config: AuthHeroConfig): {
3909
3912
  hint?: string | undefined;
3910
3913
  messages?: {
3911
3914
  text: string;
3912
- type: "error" | "success" | "info" | "warning";
3915
+ type: "success" | "error" | "info" | "warning";
3913
3916
  id?: number | undefined;
3914
3917
  }[] | undefined;
3915
3918
  required?: boolean | undefined;
@@ -3928,7 +3931,7 @@ export declare function init(config: AuthHeroConfig): {
3928
3931
  hint?: string | undefined;
3929
3932
  messages?: {
3930
3933
  text: string;
3931
- type: "error" | "success" | "info" | "warning";
3934
+ type: "success" | "error" | "info" | "warning";
3932
3935
  id?: number | undefined;
3933
3936
  }[] | undefined;
3934
3937
  required?: boolean | undefined;
@@ -3948,7 +3951,7 @@ export declare function init(config: AuthHeroConfig): {
3948
3951
  hint?: string | undefined;
3949
3952
  messages?: {
3950
3953
  text: string;
3951
- type: "error" | "success" | "info" | "warning";
3954
+ type: "success" | "error" | "info" | "warning";
3952
3955
  id?: number | undefined;
3953
3956
  }[] | undefined;
3954
3957
  required?: boolean | undefined;
@@ -3967,7 +3970,7 @@ export declare function init(config: AuthHeroConfig): {
3967
3970
  hint?: string | undefined;
3968
3971
  messages?: {
3969
3972
  text: string;
3970
- type: "error" | "success" | "info" | "warning";
3973
+ type: "success" | "error" | "info" | "warning";
3971
3974
  id?: number | undefined;
3972
3975
  }[] | undefined;
3973
3976
  required?: boolean | undefined;
@@ -3989,7 +3992,7 @@ export declare function init(config: AuthHeroConfig): {
3989
3992
  hint?: string | undefined;
3990
3993
  messages?: {
3991
3994
  text: string;
3992
- type: "error" | "success" | "info" | "warning";
3995
+ type: "success" | "error" | "info" | "warning";
3993
3996
  id?: number | undefined;
3994
3997
  }[] | undefined;
3995
3998
  required?: boolean | undefined;
@@ -4011,7 +4014,7 @@ export declare function init(config: AuthHeroConfig): {
4011
4014
  hint?: string | undefined;
4012
4015
  messages?: {
4013
4016
  text: string;
4014
- type: "error" | "success" | "info" | "warning";
4017
+ type: "success" | "error" | "info" | "warning";
4015
4018
  id?: number | undefined;
4016
4019
  }[] | undefined;
4017
4020
  required?: boolean | undefined;
@@ -4030,7 +4033,7 @@ export declare function init(config: AuthHeroConfig): {
4030
4033
  hint?: string | undefined;
4031
4034
  messages?: {
4032
4035
  text: string;
4033
- type: "error" | "success" | "info" | "warning";
4036
+ type: "success" | "error" | "info" | "warning";
4034
4037
  id?: number | undefined;
4035
4038
  }[] | undefined;
4036
4039
  required?: boolean | undefined;
@@ -4055,7 +4058,7 @@ export declare function init(config: AuthHeroConfig): {
4055
4058
  hint?: string | undefined;
4056
4059
  messages?: {
4057
4060
  text: string;
4058
- type: "error" | "success" | "info" | "warning";
4061
+ type: "success" | "error" | "info" | "warning";
4059
4062
  id?: number | undefined;
4060
4063
  }[] | undefined;
4061
4064
  required?: boolean | undefined;
@@ -4076,7 +4079,7 @@ export declare function init(config: AuthHeroConfig): {
4076
4079
  hint?: string | undefined;
4077
4080
  messages?: {
4078
4081
  text: string;
4079
- type: "error" | "success" | "info" | "warning";
4082
+ type: "success" | "error" | "info" | "warning";
4080
4083
  id?: number | undefined;
4081
4084
  }[] | undefined;
4082
4085
  required?: boolean | undefined;
@@ -4097,7 +4100,7 @@ export declare function init(config: AuthHeroConfig): {
4097
4100
  hint?: string | undefined;
4098
4101
  messages?: {
4099
4102
  text: string;
4100
- type: "error" | "success" | "info" | "warning";
4103
+ type: "success" | "error" | "info" | "warning";
4101
4104
  id?: number | undefined;
4102
4105
  }[] | undefined;
4103
4106
  required?: boolean | undefined;
@@ -4351,7 +4354,7 @@ export declare function init(config: AuthHeroConfig): {
4351
4354
  hint?: string | undefined;
4352
4355
  messages?: {
4353
4356
  text: string;
4354
- type: "error" | "success" | "info" | "warning";
4357
+ type: "success" | "error" | "info" | "warning";
4355
4358
  id?: number | undefined;
4356
4359
  }[] | undefined;
4357
4360
  required?: boolean | undefined;
@@ -4369,7 +4372,7 @@ export declare function init(config: AuthHeroConfig): {
4369
4372
  hint?: string | undefined;
4370
4373
  messages?: {
4371
4374
  text: string;
4372
- type: "error" | "success" | "info" | "warning";
4375
+ type: "success" | "error" | "info" | "warning";
4373
4376
  id?: number | undefined;
4374
4377
  }[] | undefined;
4375
4378
  required?: boolean | undefined;
@@ -4393,7 +4396,7 @@ export declare function init(config: AuthHeroConfig): {
4393
4396
  hint?: string | undefined;
4394
4397
  messages?: {
4395
4398
  text: string;
4396
- type: "error" | "success" | "info" | "warning";
4399
+ type: "success" | "error" | "info" | "warning";
4397
4400
  id?: number | undefined;
4398
4401
  }[] | undefined;
4399
4402
  required?: boolean | undefined;
@@ -4403,7 +4406,7 @@ export declare function init(config: AuthHeroConfig): {
4403
4406
  value: string;
4404
4407
  label: string;
4405
4408
  }[] | undefined;
4406
- display?: "radio" | "checkbox" | undefined;
4409
+ display?: "checkbox" | "radio" | undefined;
4407
4410
  multiple?: boolean | undefined;
4408
4411
  default_value?: string | string[] | undefined;
4409
4412
  } | undefined;
@@ -4417,7 +4420,7 @@ export declare function init(config: AuthHeroConfig): {
4417
4420
  hint?: string | undefined;
4418
4421
  messages?: {
4419
4422
  text: string;
4420
- type: "error" | "success" | "info" | "warning";
4423
+ type: "success" | "error" | "info" | "warning";
4421
4424
  id?: number | undefined;
4422
4425
  }[] | undefined;
4423
4426
  required?: boolean | undefined;
@@ -4442,7 +4445,7 @@ export declare function init(config: AuthHeroConfig): {
4442
4445
  hint?: string | undefined;
4443
4446
  messages?: {
4444
4447
  text: string;
4445
- type: "error" | "success" | "info" | "warning";
4448
+ type: "success" | "error" | "info" | "warning";
4446
4449
  id?: number | undefined;
4447
4450
  }[] | undefined;
4448
4451
  required?: boolean | undefined;
@@ -4457,7 +4460,7 @@ export declare function init(config: AuthHeroConfig): {
4457
4460
  hint?: string | undefined;
4458
4461
  messages?: {
4459
4462
  text: string;
4460
- type: "error" | "success" | "info" | "warning";
4463
+ type: "success" | "error" | "info" | "warning";
4461
4464
  id?: number | undefined;
4462
4465
  }[] | undefined;
4463
4466
  required?: boolean | undefined;
@@ -4478,7 +4481,7 @@ export declare function init(config: AuthHeroConfig): {
4478
4481
  hint?: string | undefined;
4479
4482
  messages?: {
4480
4483
  text: string;
4481
- type: "error" | "success" | "info" | "warning";
4484
+ type: "success" | "error" | "info" | "warning";
4482
4485
  id?: number | undefined;
4483
4486
  }[] | undefined;
4484
4487
  required?: boolean | undefined;
@@ -4503,7 +4506,7 @@ export declare function init(config: AuthHeroConfig): {
4503
4506
  hint?: string | undefined;
4504
4507
  messages?: {
4505
4508
  text: string;
4506
- type: "error" | "success" | "info" | "warning";
4509
+ type: "success" | "error" | "info" | "warning";
4507
4510
  id?: number | undefined;
4508
4511
  }[] | undefined;
4509
4512
  required?: boolean | undefined;
@@ -4522,7 +4525,7 @@ export declare function init(config: AuthHeroConfig): {
4522
4525
  hint?: string | undefined;
4523
4526
  messages?: {
4524
4527
  text: string;
4525
- type: "error" | "success" | "info" | "warning";
4528
+ type: "success" | "error" | "info" | "warning";
4526
4529
  id?: number | undefined;
4527
4530
  }[] | undefined;
4528
4531
  required?: boolean | undefined;
@@ -4542,7 +4545,7 @@ export declare function init(config: AuthHeroConfig): {
4542
4545
  hint?: string | undefined;
4543
4546
  messages?: {
4544
4547
  text: string;
4545
- type: "error" | "success" | "info" | "warning";
4548
+ type: "success" | "error" | "info" | "warning";
4546
4549
  id?: number | undefined;
4547
4550
  }[] | undefined;
4548
4551
  required?: boolean | undefined;
@@ -4561,7 +4564,7 @@ export declare function init(config: AuthHeroConfig): {
4561
4564
  hint?: string | undefined;
4562
4565
  messages?: {
4563
4566
  text: string;
4564
- type: "error" | "success" | "info" | "warning";
4567
+ type: "success" | "error" | "info" | "warning";
4565
4568
  id?: number | undefined;
4566
4569
  }[] | undefined;
4567
4570
  required?: boolean | undefined;
@@ -4583,7 +4586,7 @@ export declare function init(config: AuthHeroConfig): {
4583
4586
  hint?: string | undefined;
4584
4587
  messages?: {
4585
4588
  text: string;
4586
- type: "error" | "success" | "info" | "warning";
4589
+ type: "success" | "error" | "info" | "warning";
4587
4590
  id?: number | undefined;
4588
4591
  }[] | undefined;
4589
4592
  required?: boolean | undefined;
@@ -4605,7 +4608,7 @@ export declare function init(config: AuthHeroConfig): {
4605
4608
  hint?: string | undefined;
4606
4609
  messages?: {
4607
4610
  text: string;
4608
- type: "error" | "success" | "info" | "warning";
4611
+ type: "success" | "error" | "info" | "warning";
4609
4612
  id?: number | undefined;
4610
4613
  }[] | undefined;
4611
4614
  required?: boolean | undefined;
@@ -4624,7 +4627,7 @@ export declare function init(config: AuthHeroConfig): {
4624
4627
  hint?: string | undefined;
4625
4628
  messages?: {
4626
4629
  text: string;
4627
- type: "error" | "success" | "info" | "warning";
4630
+ type: "success" | "error" | "info" | "warning";
4628
4631
  id?: number | undefined;
4629
4632
  }[] | undefined;
4630
4633
  required?: boolean | undefined;
@@ -4649,7 +4652,7 @@ export declare function init(config: AuthHeroConfig): {
4649
4652
  hint?: string | undefined;
4650
4653
  messages?: {
4651
4654
  text: string;
4652
- type: "error" | "success" | "info" | "warning";
4655
+ type: "success" | "error" | "info" | "warning";
4653
4656
  id?: number | undefined;
4654
4657
  }[] | undefined;
4655
4658
  required?: boolean | undefined;
@@ -4670,7 +4673,7 @@ export declare function init(config: AuthHeroConfig): {
4670
4673
  hint?: string | undefined;
4671
4674
  messages?: {
4672
4675
  text: string;
4673
- type: "error" | "success" | "info" | "warning";
4676
+ type: "success" | "error" | "info" | "warning";
4674
4677
  id?: number | undefined;
4675
4678
  }[] | undefined;
4676
4679
  required?: boolean | undefined;
@@ -4691,7 +4694,7 @@ export declare function init(config: AuthHeroConfig): {
4691
4694
  hint?: string | undefined;
4692
4695
  messages?: {
4693
4696
  text: string;
4694
- type: "error" | "success" | "info" | "warning";
4697
+ type: "success" | "error" | "info" | "warning";
4695
4698
  id?: number | undefined;
4696
4699
  }[] | undefined;
4697
4700
  required?: boolean | undefined;
@@ -4922,7 +4925,7 @@ export declare function init(config: AuthHeroConfig): {
4922
4925
  hint?: string | undefined;
4923
4926
  messages?: {
4924
4927
  text: string;
4925
- type: "error" | "success" | "info" | "warning";
4928
+ type: "success" | "error" | "info" | "warning";
4926
4929
  id?: number | undefined;
4927
4930
  }[] | undefined;
4928
4931
  required?: boolean | undefined;
@@ -4940,7 +4943,7 @@ export declare function init(config: AuthHeroConfig): {
4940
4943
  hint?: string | undefined;
4941
4944
  messages?: {
4942
4945
  text: string;
4943
- type: "error" | "success" | "info" | "warning";
4946
+ type: "success" | "error" | "info" | "warning";
4944
4947
  id?: number | undefined;
4945
4948
  }[] | undefined;
4946
4949
  required?: boolean | undefined;
@@ -4964,7 +4967,7 @@ export declare function init(config: AuthHeroConfig): {
4964
4967
  hint?: string | undefined;
4965
4968
  messages?: {
4966
4969
  text: string;
4967
- type: "error" | "success" | "info" | "warning";
4970
+ type: "success" | "error" | "info" | "warning";
4968
4971
  id?: number | undefined;
4969
4972
  }[] | undefined;
4970
4973
  required?: boolean | undefined;
@@ -4974,7 +4977,7 @@ export declare function init(config: AuthHeroConfig): {
4974
4977
  value: string;
4975
4978
  label: string;
4976
4979
  }[] | undefined;
4977
- display?: "radio" | "checkbox" | undefined;
4980
+ display?: "checkbox" | "radio" | undefined;
4978
4981
  multiple?: boolean | undefined;
4979
4982
  default_value?: string | string[] | undefined;
4980
4983
  } | undefined;
@@ -4988,7 +4991,7 @@ export declare function init(config: AuthHeroConfig): {
4988
4991
  hint?: string | undefined;
4989
4992
  messages?: {
4990
4993
  text: string;
4991
- type: "error" | "success" | "info" | "warning";
4994
+ type: "success" | "error" | "info" | "warning";
4992
4995
  id?: number | undefined;
4993
4996
  }[] | undefined;
4994
4997
  required?: boolean | undefined;
@@ -5017,7 +5020,7 @@ export declare function init(config: AuthHeroConfig): {
5017
5020
  hint?: string | undefined;
5018
5021
  messages?: {
5019
5022
  text: string;
5020
- type: "error" | "success" | "info" | "warning";
5023
+ type: "success" | "error" | "info" | "warning";
5021
5024
  id?: number | undefined;
5022
5025
  }[] | undefined;
5023
5026
  required?: boolean | undefined;
@@ -5032,7 +5035,7 @@ export declare function init(config: AuthHeroConfig): {
5032
5035
  hint?: string | undefined;
5033
5036
  messages?: {
5034
5037
  text: string;
5035
- type: "error" | "success" | "info" | "warning";
5038
+ type: "success" | "error" | "info" | "warning";
5036
5039
  id?: number | undefined;
5037
5040
  }[] | undefined;
5038
5041
  required?: boolean | undefined;
@@ -5053,7 +5056,7 @@ export declare function init(config: AuthHeroConfig): {
5053
5056
  hint?: string | undefined;
5054
5057
  messages?: {
5055
5058
  text: string;
5056
- type: "error" | "success" | "info" | "warning";
5059
+ type: "success" | "error" | "info" | "warning";
5057
5060
  id?: number | undefined;
5058
5061
  }[] | undefined;
5059
5062
  required?: boolean | undefined;
@@ -5078,7 +5081,7 @@ export declare function init(config: AuthHeroConfig): {
5078
5081
  hint?: string | undefined;
5079
5082
  messages?: {
5080
5083
  text: string;
5081
- type: "error" | "success" | "info" | "warning";
5084
+ type: "success" | "error" | "info" | "warning";
5082
5085
  id?: number | undefined;
5083
5086
  }[] | undefined;
5084
5087
  required?: boolean | undefined;
@@ -5097,7 +5100,7 @@ export declare function init(config: AuthHeroConfig): {
5097
5100
  hint?: string | undefined;
5098
5101
  messages?: {
5099
5102
  text: string;
5100
- type: "error" | "success" | "info" | "warning";
5103
+ type: "success" | "error" | "info" | "warning";
5101
5104
  id?: number | undefined;
5102
5105
  }[] | undefined;
5103
5106
  required?: boolean | undefined;
@@ -5117,7 +5120,7 @@ export declare function init(config: AuthHeroConfig): {
5117
5120
  hint?: string | undefined;
5118
5121
  messages?: {
5119
5122
  text: string;
5120
- type: "error" | "success" | "info" | "warning";
5123
+ type: "success" | "error" | "info" | "warning";
5121
5124
  id?: number | undefined;
5122
5125
  }[] | undefined;
5123
5126
  required?: boolean | undefined;
@@ -5136,7 +5139,7 @@ export declare function init(config: AuthHeroConfig): {
5136
5139
  hint?: string | undefined;
5137
5140
  messages?: {
5138
5141
  text: string;
5139
- type: "error" | "success" | "info" | "warning";
5142
+ type: "success" | "error" | "info" | "warning";
5140
5143
  id?: number | undefined;
5141
5144
  }[] | undefined;
5142
5145
  required?: boolean | undefined;
@@ -5158,7 +5161,7 @@ export declare function init(config: AuthHeroConfig): {
5158
5161
  hint?: string | undefined;
5159
5162
  messages?: {
5160
5163
  text: string;
5161
- type: "error" | "success" | "info" | "warning";
5164
+ type: "success" | "error" | "info" | "warning";
5162
5165
  id?: number | undefined;
5163
5166
  }[] | undefined;
5164
5167
  required?: boolean | undefined;
@@ -5180,7 +5183,7 @@ export declare function init(config: AuthHeroConfig): {
5180
5183
  hint?: string | undefined;
5181
5184
  messages?: {
5182
5185
  text: string;
5183
- type: "error" | "success" | "info" | "warning";
5186
+ type: "success" | "error" | "info" | "warning";
5184
5187
  id?: number | undefined;
5185
5188
  }[] | undefined;
5186
5189
  required?: boolean | undefined;
@@ -5199,7 +5202,7 @@ export declare function init(config: AuthHeroConfig): {
5199
5202
  hint?: string | undefined;
5200
5203
  messages?: {
5201
5204
  text: string;
5202
- type: "error" | "success" | "info" | "warning";
5205
+ type: "success" | "error" | "info" | "warning";
5203
5206
  id?: number | undefined;
5204
5207
  }[] | undefined;
5205
5208
  required?: boolean | undefined;
@@ -5224,7 +5227,7 @@ export declare function init(config: AuthHeroConfig): {
5224
5227
  hint?: string | undefined;
5225
5228
  messages?: {
5226
5229
  text: string;
5227
- type: "error" | "success" | "info" | "warning";
5230
+ type: "success" | "error" | "info" | "warning";
5228
5231
  id?: number | undefined;
5229
5232
  }[] | undefined;
5230
5233
  required?: boolean | undefined;
@@ -5245,7 +5248,7 @@ export declare function init(config: AuthHeroConfig): {
5245
5248
  hint?: string | undefined;
5246
5249
  messages?: {
5247
5250
  text: string;
5248
- type: "error" | "success" | "info" | "warning";
5251
+ type: "success" | "error" | "info" | "warning";
5249
5252
  id?: number | undefined;
5250
5253
  }[] | undefined;
5251
5254
  required?: boolean | undefined;
@@ -5266,7 +5269,7 @@ export declare function init(config: AuthHeroConfig): {
5266
5269
  hint?: string | undefined;
5267
5270
  messages?: {
5268
5271
  text: string;
5269
- type: "error" | "success" | "info" | "warning";
5272
+ type: "success" | "error" | "info" | "warning";
5270
5273
  id?: number | undefined;
5271
5274
  }[] | undefined;
5272
5275
  required?: boolean | undefined;
@@ -5499,7 +5502,7 @@ export declare function init(config: AuthHeroConfig): {
5499
5502
  hint?: string | undefined;
5500
5503
  messages?: {
5501
5504
  text: string;
5502
- type: "error" | "success" | "info" | "warning";
5505
+ type: "success" | "error" | "info" | "warning";
5503
5506
  id?: number | undefined;
5504
5507
  }[] | undefined;
5505
5508
  required?: boolean | undefined;
@@ -5517,7 +5520,7 @@ export declare function init(config: AuthHeroConfig): {
5517
5520
  hint?: string | undefined;
5518
5521
  messages?: {
5519
5522
  text: string;
5520
- type: "error" | "success" | "info" | "warning";
5523
+ type: "success" | "error" | "info" | "warning";
5521
5524
  id?: number | undefined;
5522
5525
  }[] | undefined;
5523
5526
  required?: boolean | undefined;
@@ -5541,7 +5544,7 @@ export declare function init(config: AuthHeroConfig): {
5541
5544
  hint?: string | undefined;
5542
5545
  messages?: {
5543
5546
  text: string;
5544
- type: "error" | "success" | "info" | "warning";
5547
+ type: "success" | "error" | "info" | "warning";
5545
5548
  id?: number | undefined;
5546
5549
  }[] | undefined;
5547
5550
  required?: boolean | undefined;
@@ -5551,7 +5554,7 @@ export declare function init(config: AuthHeroConfig): {
5551
5554
  value: string;
5552
5555
  label: string;
5553
5556
  }[] | undefined;
5554
- display?: "radio" | "checkbox" | undefined;
5557
+ display?: "checkbox" | "radio" | undefined;
5555
5558
  multiple?: boolean | undefined;
5556
5559
  default_value?: string | string[] | undefined;
5557
5560
  } | undefined;
@@ -5565,7 +5568,7 @@ export declare function init(config: AuthHeroConfig): {
5565
5568
  hint?: string | undefined;
5566
5569
  messages?: {
5567
5570
  text: string;
5568
- type: "error" | "success" | "info" | "warning";
5571
+ type: "success" | "error" | "info" | "warning";
5569
5572
  id?: number | undefined;
5570
5573
  }[] | undefined;
5571
5574
  required?: boolean | undefined;
@@ -5590,7 +5593,7 @@ export declare function init(config: AuthHeroConfig): {
5590
5593
  hint?: string | undefined;
5591
5594
  messages?: {
5592
5595
  text: string;
5593
- type: "error" | "success" | "info" | "warning";
5596
+ type: "success" | "error" | "info" | "warning";
5594
5597
  id?: number | undefined;
5595
5598
  }[] | undefined;
5596
5599
  required?: boolean | undefined;
@@ -5605,7 +5608,7 @@ export declare function init(config: AuthHeroConfig): {
5605
5608
  hint?: string | undefined;
5606
5609
  messages?: {
5607
5610
  text: string;
5608
- type: "error" | "success" | "info" | "warning";
5611
+ type: "success" | "error" | "info" | "warning";
5609
5612
  id?: number | undefined;
5610
5613
  }[] | undefined;
5611
5614
  required?: boolean | undefined;
@@ -5626,7 +5629,7 @@ export declare function init(config: AuthHeroConfig): {
5626
5629
  hint?: string | undefined;
5627
5630
  messages?: {
5628
5631
  text: string;
5629
- type: "error" | "success" | "info" | "warning";
5632
+ type: "success" | "error" | "info" | "warning";
5630
5633
  id?: number | undefined;
5631
5634
  }[] | undefined;
5632
5635
  required?: boolean | undefined;
@@ -5651,7 +5654,7 @@ export declare function init(config: AuthHeroConfig): {
5651
5654
  hint?: string | undefined;
5652
5655
  messages?: {
5653
5656
  text: string;
5654
- type: "error" | "success" | "info" | "warning";
5657
+ type: "success" | "error" | "info" | "warning";
5655
5658
  id?: number | undefined;
5656
5659
  }[] | undefined;
5657
5660
  required?: boolean | undefined;
@@ -5670,7 +5673,7 @@ export declare function init(config: AuthHeroConfig): {
5670
5673
  hint?: string | undefined;
5671
5674
  messages?: {
5672
5675
  text: string;
5673
- type: "error" | "success" | "info" | "warning";
5676
+ type: "success" | "error" | "info" | "warning";
5674
5677
  id?: number | undefined;
5675
5678
  }[] | undefined;
5676
5679
  required?: boolean | undefined;
@@ -5690,7 +5693,7 @@ export declare function init(config: AuthHeroConfig): {
5690
5693
  hint?: string | undefined;
5691
5694
  messages?: {
5692
5695
  text: string;
5693
- type: "error" | "success" | "info" | "warning";
5696
+ type: "success" | "error" | "info" | "warning";
5694
5697
  id?: number | undefined;
5695
5698
  }[] | undefined;
5696
5699
  required?: boolean | undefined;
@@ -5709,7 +5712,7 @@ export declare function init(config: AuthHeroConfig): {
5709
5712
  hint?: string | undefined;
5710
5713
  messages?: {
5711
5714
  text: string;
5712
- type: "error" | "success" | "info" | "warning";
5715
+ type: "success" | "error" | "info" | "warning";
5713
5716
  id?: number | undefined;
5714
5717
  }[] | undefined;
5715
5718
  required?: boolean | undefined;
@@ -5731,7 +5734,7 @@ export declare function init(config: AuthHeroConfig): {
5731
5734
  hint?: string | undefined;
5732
5735
  messages?: {
5733
5736
  text: string;
5734
- type: "error" | "success" | "info" | "warning";
5737
+ type: "success" | "error" | "info" | "warning";
5735
5738
  id?: number | undefined;
5736
5739
  }[] | undefined;
5737
5740
  required?: boolean | undefined;
@@ -5753,7 +5756,7 @@ export declare function init(config: AuthHeroConfig): {
5753
5756
  hint?: string | undefined;
5754
5757
  messages?: {
5755
5758
  text: string;
5756
- type: "error" | "success" | "info" | "warning";
5759
+ type: "success" | "error" | "info" | "warning";
5757
5760
  id?: number | undefined;
5758
5761
  }[] | undefined;
5759
5762
  required?: boolean | undefined;
@@ -5772,7 +5775,7 @@ export declare function init(config: AuthHeroConfig): {
5772
5775
  hint?: string | undefined;
5773
5776
  messages?: {
5774
5777
  text: string;
5775
- type: "error" | "success" | "info" | "warning";
5778
+ type: "success" | "error" | "info" | "warning";
5776
5779
  id?: number | undefined;
5777
5780
  }[] | undefined;
5778
5781
  required?: boolean | undefined;
@@ -5797,7 +5800,7 @@ export declare function init(config: AuthHeroConfig): {
5797
5800
  hint?: string | undefined;
5798
5801
  messages?: {
5799
5802
  text: string;
5800
- type: "error" | "success" | "info" | "warning";
5803
+ type: "success" | "error" | "info" | "warning";
5801
5804
  id?: number | undefined;
5802
5805
  }[] | undefined;
5803
5806
  required?: boolean | undefined;
@@ -5818,7 +5821,7 @@ export declare function init(config: AuthHeroConfig): {
5818
5821
  hint?: string | undefined;
5819
5822
  messages?: {
5820
5823
  text: string;
5821
- type: "error" | "success" | "info" | "warning";
5824
+ type: "success" | "error" | "info" | "warning";
5822
5825
  id?: number | undefined;
5823
5826
  }[] | undefined;
5824
5827
  required?: boolean | undefined;
@@ -5839,7 +5842,7 @@ export declare function init(config: AuthHeroConfig): {
5839
5842
  hint?: string | undefined;
5840
5843
  messages?: {
5841
5844
  text: string;
5842
- type: "error" | "success" | "info" | "warning";
5845
+ type: "success" | "error" | "info" | "warning";
5843
5846
  id?: number | undefined;
5844
5847
  }[] | undefined;
5845
5848
  required?: boolean | undefined;
@@ -6070,7 +6073,7 @@ export declare function init(config: AuthHeroConfig): {
6070
6073
  hint?: string | undefined;
6071
6074
  messages?: {
6072
6075
  text: string;
6073
- type: "error" | "success" | "info" | "warning";
6076
+ type: "success" | "error" | "info" | "warning";
6074
6077
  id?: number | undefined;
6075
6078
  }[] | undefined;
6076
6079
  required?: boolean | undefined;
@@ -6088,7 +6091,7 @@ export declare function init(config: AuthHeroConfig): {
6088
6091
  hint?: string | undefined;
6089
6092
  messages?: {
6090
6093
  text: string;
6091
- type: "error" | "success" | "info" | "warning";
6094
+ type: "success" | "error" | "info" | "warning";
6092
6095
  id?: number | undefined;
6093
6096
  }[] | undefined;
6094
6097
  required?: boolean | undefined;
@@ -6112,7 +6115,7 @@ export declare function init(config: AuthHeroConfig): {
6112
6115
  hint?: string | undefined;
6113
6116
  messages?: {
6114
6117
  text: string;
6115
- type: "error" | "success" | "info" | "warning";
6118
+ type: "success" | "error" | "info" | "warning";
6116
6119
  id?: number | undefined;
6117
6120
  }[] | undefined;
6118
6121
  required?: boolean | undefined;
@@ -6122,7 +6125,7 @@ export declare function init(config: AuthHeroConfig): {
6122
6125
  value: string;
6123
6126
  label: string;
6124
6127
  }[] | undefined;
6125
- display?: "radio" | "checkbox" | undefined;
6128
+ display?: "checkbox" | "radio" | undefined;
6126
6129
  multiple?: boolean | undefined;
6127
6130
  default_value?: string | string[] | undefined;
6128
6131
  } | undefined;
@@ -6136,7 +6139,7 @@ export declare function init(config: AuthHeroConfig): {
6136
6139
  hint?: string | undefined;
6137
6140
  messages?: {
6138
6141
  text: string;
6139
- type: "error" | "success" | "info" | "warning";
6142
+ type: "success" | "error" | "info" | "warning";
6140
6143
  id?: number | undefined;
6141
6144
  }[] | undefined;
6142
6145
  required?: boolean | undefined;
@@ -6165,7 +6168,7 @@ export declare function init(config: AuthHeroConfig): {
6165
6168
  hint?: string | undefined;
6166
6169
  messages?: {
6167
6170
  text: string;
6168
- type: "error" | "success" | "info" | "warning";
6171
+ type: "success" | "error" | "info" | "warning";
6169
6172
  id?: number | undefined;
6170
6173
  }[] | undefined;
6171
6174
  required?: boolean | undefined;
@@ -6180,7 +6183,7 @@ export declare function init(config: AuthHeroConfig): {
6180
6183
  hint?: string | undefined;
6181
6184
  messages?: {
6182
6185
  text: string;
6183
- type: "error" | "success" | "info" | "warning";
6186
+ type: "success" | "error" | "info" | "warning";
6184
6187
  id?: number | undefined;
6185
6188
  }[] | undefined;
6186
6189
  required?: boolean | undefined;
@@ -6201,7 +6204,7 @@ export declare function init(config: AuthHeroConfig): {
6201
6204
  hint?: string | undefined;
6202
6205
  messages?: {
6203
6206
  text: string;
6204
- type: "error" | "success" | "info" | "warning";
6207
+ type: "success" | "error" | "info" | "warning";
6205
6208
  id?: number | undefined;
6206
6209
  }[] | undefined;
6207
6210
  required?: boolean | undefined;
@@ -6226,7 +6229,7 @@ export declare function init(config: AuthHeroConfig): {
6226
6229
  hint?: string | undefined;
6227
6230
  messages?: {
6228
6231
  text: string;
6229
- type: "error" | "success" | "info" | "warning";
6232
+ type: "success" | "error" | "info" | "warning";
6230
6233
  id?: number | undefined;
6231
6234
  }[] | undefined;
6232
6235
  required?: boolean | undefined;
@@ -6245,7 +6248,7 @@ export declare function init(config: AuthHeroConfig): {
6245
6248
  hint?: string | undefined;
6246
6249
  messages?: {
6247
6250
  text: string;
6248
- type: "error" | "success" | "info" | "warning";
6251
+ type: "success" | "error" | "info" | "warning";
6249
6252
  id?: number | undefined;
6250
6253
  }[] | undefined;
6251
6254
  required?: boolean | undefined;
@@ -6265,7 +6268,7 @@ export declare function init(config: AuthHeroConfig): {
6265
6268
  hint?: string | undefined;
6266
6269
  messages?: {
6267
6270
  text: string;
6268
- type: "error" | "success" | "info" | "warning";
6271
+ type: "success" | "error" | "info" | "warning";
6269
6272
  id?: number | undefined;
6270
6273
  }[] | undefined;
6271
6274
  required?: boolean | undefined;
@@ -6284,7 +6287,7 @@ export declare function init(config: AuthHeroConfig): {
6284
6287
  hint?: string | undefined;
6285
6288
  messages?: {
6286
6289
  text: string;
6287
- type: "error" | "success" | "info" | "warning";
6290
+ type: "success" | "error" | "info" | "warning";
6288
6291
  id?: number | undefined;
6289
6292
  }[] | undefined;
6290
6293
  required?: boolean | undefined;
@@ -6306,7 +6309,7 @@ export declare function init(config: AuthHeroConfig): {
6306
6309
  hint?: string | undefined;
6307
6310
  messages?: {
6308
6311
  text: string;
6309
- type: "error" | "success" | "info" | "warning";
6312
+ type: "success" | "error" | "info" | "warning";
6310
6313
  id?: number | undefined;
6311
6314
  }[] | undefined;
6312
6315
  required?: boolean | undefined;
@@ -6328,7 +6331,7 @@ export declare function init(config: AuthHeroConfig): {
6328
6331
  hint?: string | undefined;
6329
6332
  messages?: {
6330
6333
  text: string;
6331
- type: "error" | "success" | "info" | "warning";
6334
+ type: "success" | "error" | "info" | "warning";
6332
6335
  id?: number | undefined;
6333
6336
  }[] | undefined;
6334
6337
  required?: boolean | undefined;
@@ -6347,7 +6350,7 @@ export declare function init(config: AuthHeroConfig): {
6347
6350
  hint?: string | undefined;
6348
6351
  messages?: {
6349
6352
  text: string;
6350
- type: "error" | "success" | "info" | "warning";
6353
+ type: "success" | "error" | "info" | "warning";
6351
6354
  id?: number | undefined;
6352
6355
  }[] | undefined;
6353
6356
  required?: boolean | undefined;
@@ -6372,7 +6375,7 @@ export declare function init(config: AuthHeroConfig): {
6372
6375
  hint?: string | undefined;
6373
6376
  messages?: {
6374
6377
  text: string;
6375
- type: "error" | "success" | "info" | "warning";
6378
+ type: "success" | "error" | "info" | "warning";
6376
6379
  id?: number | undefined;
6377
6380
  }[] | undefined;
6378
6381
  required?: boolean | undefined;
@@ -6393,7 +6396,7 @@ export declare function init(config: AuthHeroConfig): {
6393
6396
  hint?: string | undefined;
6394
6397
  messages?: {
6395
6398
  text: string;
6396
- type: "error" | "success" | "info" | "warning";
6399
+ type: "success" | "error" | "info" | "warning";
6397
6400
  id?: number | undefined;
6398
6401
  }[] | undefined;
6399
6402
  required?: boolean | undefined;
@@ -6414,7 +6417,7 @@ export declare function init(config: AuthHeroConfig): {
6414
6417
  hint?: string | undefined;
6415
6418
  messages?: {
6416
6419
  text: string;
6417
- type: "error" | "success" | "info" | "warning";
6420
+ type: "success" | "error" | "info" | "warning";
6418
6421
  id?: number | undefined;
6419
6422
  }[] | undefined;
6420
6423
  required?: boolean | undefined;
@@ -6644,7 +6647,7 @@ export declare function init(config: AuthHeroConfig): {
6644
6647
  };
6645
6648
  };
6646
6649
  output: {
6647
- prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6650
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6648
6651
  language: string;
6649
6652
  }[];
6650
6653
  outputFormat: "json";
@@ -6682,7 +6685,7 @@ export declare function init(config: AuthHeroConfig): {
6682
6685
  $get: {
6683
6686
  input: {
6684
6687
  param: {
6685
- prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6688
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6686
6689
  language: string;
6687
6690
  };
6688
6691
  } & {
@@ -6704,7 +6707,7 @@ export declare function init(config: AuthHeroConfig): {
6704
6707
  $put: {
6705
6708
  input: {
6706
6709
  param: {
6707
- prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6710
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6708
6711
  language: string;
6709
6712
  };
6710
6713
  } & {
@@ -6728,7 +6731,7 @@ export declare function init(config: AuthHeroConfig): {
6728
6731
  $delete: {
6729
6732
  input: {
6730
6733
  param: {
6731
- prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "login" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6734
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6732
6735
  language: string;
6733
6736
  };
6734
6737
  } & {
@@ -6867,7 +6870,7 @@ export declare function init(config: AuthHeroConfig): {
6867
6870
  } | undefined;
6868
6871
  } | undefined;
6869
6872
  passkey_options?: {
6870
- challenge_ui?: "button" | "both" | "autofill" | undefined;
6873
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
6871
6874
  local_enrollment_enabled?: boolean | undefined;
6872
6875
  progressive_enrollment_enabled?: boolean | undefined;
6873
6876
  } | undefined;
@@ -7001,7 +7004,7 @@ export declare function init(config: AuthHeroConfig): {
7001
7004
  } | undefined;
7002
7005
  } | undefined;
7003
7006
  passkey_options?: {
7004
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7007
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7005
7008
  local_enrollment_enabled?: boolean | undefined;
7006
7009
  progressive_enrollment_enabled?: boolean | undefined;
7007
7010
  } | undefined;
@@ -7150,7 +7153,7 @@ export declare function init(config: AuthHeroConfig): {
7150
7153
  } | undefined;
7151
7154
  } | undefined;
7152
7155
  passkey_options?: {
7153
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7156
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7154
7157
  local_enrollment_enabled?: boolean | undefined;
7155
7158
  progressive_enrollment_enabled?: boolean | undefined;
7156
7159
  } | undefined;
@@ -7329,7 +7332,7 @@ export declare function init(config: AuthHeroConfig): {
7329
7332
  } | undefined;
7330
7333
  } | undefined;
7331
7334
  passkey_options?: {
7332
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7335
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7333
7336
  local_enrollment_enabled?: boolean | undefined;
7334
7337
  progressive_enrollment_enabled?: boolean | undefined;
7335
7338
  } | undefined;
@@ -7487,7 +7490,7 @@ export declare function init(config: AuthHeroConfig): {
7487
7490
  } | undefined;
7488
7491
  } | undefined;
7489
7492
  passkey_options?: {
7490
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7493
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7491
7494
  local_enrollment_enabled?: boolean | undefined;
7492
7495
  progressive_enrollment_enabled?: boolean | undefined;
7493
7496
  } | undefined;
@@ -7590,7 +7593,7 @@ export declare function init(config: AuthHeroConfig): {
7590
7593
  };
7591
7594
  } | {
7592
7595
  mode: "inline";
7593
- status: "error" | "success";
7596
+ status: "success" | "error";
7594
7597
  connection_id: string;
7595
7598
  connection_name: string;
7596
7599
  strategy: string;
@@ -8169,7 +8172,7 @@ export declare function init(config: AuthHeroConfig): {
8169
8172
  log_type: string;
8170
8173
  category: "user_action" | "admin_action" | "system" | "api";
8171
8174
  actor: {
8172
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8175
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8173
8176
  id?: string | undefined;
8174
8177
  email?: string | undefined;
8175
8178
  org_id?: string | undefined;
@@ -8477,7 +8480,7 @@ export declare function init(config: AuthHeroConfig): {
8477
8480
  created_at: string;
8478
8481
  updated_at: string;
8479
8482
  name: string;
8480
- provider: "auth0" | "cognito" | "okta" | "oidc";
8483
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8481
8484
  connection: string;
8482
8485
  enabled: boolean;
8483
8486
  credentials: {
@@ -8509,7 +8512,7 @@ export declare function init(config: AuthHeroConfig): {
8509
8512
  created_at: string;
8510
8513
  updated_at: string;
8511
8514
  name: string;
8512
- provider: "auth0" | "cognito" | "okta" | "oidc";
8515
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8513
8516
  connection: string;
8514
8517
  enabled: boolean;
8515
8518
  credentials: {
@@ -8535,7 +8538,7 @@ export declare function init(config: AuthHeroConfig): {
8535
8538
  } & {
8536
8539
  json: {
8537
8540
  name: string;
8538
- provider: "auth0" | "cognito" | "okta" | "oidc";
8541
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8539
8542
  connection: string;
8540
8543
  credentials: {
8541
8544
  domain: string;
@@ -8552,7 +8555,7 @@ export declare function init(config: AuthHeroConfig): {
8552
8555
  created_at: string;
8553
8556
  updated_at: string;
8554
8557
  name: string;
8555
- provider: "auth0" | "cognito" | "okta" | "oidc";
8558
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8556
8559
  connection: string;
8557
8560
  enabled: boolean;
8558
8561
  credentials: {
@@ -8583,7 +8586,7 @@ export declare function init(config: AuthHeroConfig): {
8583
8586
  json: {
8584
8587
  id?: string | undefined;
8585
8588
  name?: string | undefined;
8586
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8589
+ provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
8587
8590
  connection?: string | undefined;
8588
8591
  enabled?: boolean | undefined;
8589
8592
  credentials?: {
@@ -8599,7 +8602,7 @@ export declare function init(config: AuthHeroConfig): {
8599
8602
  created_at: string;
8600
8603
  updated_at: string;
8601
8604
  name: string;
8602
- provider: "auth0" | "cognito" | "okta" | "oidc";
8605
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8603
8606
  connection: string;
8604
8607
  enabled: boolean;
8605
8608
  credentials: {
@@ -8817,7 +8820,7 @@ export declare function init(config: AuthHeroConfig): {
8817
8820
  };
8818
8821
  };
8819
8822
  output: {
8820
- type: "i" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8823
+ type: "s" | "w" | "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" | "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" | "wn" | "wum";
8821
8824
  date: string;
8822
8825
  isMobile: boolean;
8823
8826
  log_id: string;
@@ -8856,7 +8859,7 @@ export declare function init(config: AuthHeroConfig): {
8856
8859
  limit: number;
8857
8860
  length: number;
8858
8861
  logs: {
8859
- type: "i" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8862
+ type: "s" | "w" | "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" | "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" | "wn" | "wum";
8860
8863
  date: string;
8861
8864
  isMobile: boolean;
8862
8865
  log_id: string;
@@ -8910,7 +8913,7 @@ export declare function init(config: AuthHeroConfig): {
8910
8913
  };
8911
8914
  };
8912
8915
  output: {
8913
- type: "i" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8916
+ type: "s" | "w" | "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" | "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" | "wn" | "wum";
8914
8917
  date: string;
8915
8918
  isMobile: boolean;
8916
8919
  log_id: string;
@@ -8979,6 +8982,80 @@ export declare function init(config: AuthHeroConfig): {
8979
8982
  };
8980
8983
  };
8981
8984
  }, "/client-registration-tokens"> & import("hono/types").MergeSchemaPath<{
8985
+ "/": {
8986
+ $get: {
8987
+ input: {
8988
+ query: {
8989
+ per_page?: string | undefined;
8990
+ page?: string | undefined;
8991
+ include_totals?: string | undefined;
8992
+ user_id?: string | undefined;
8993
+ client_id?: string | undefined;
8994
+ audience?: string | undefined;
8995
+ };
8996
+ } & {
8997
+ header: {
8998
+ "tenant-id"?: string | undefined;
8999
+ };
9000
+ };
9001
+ output: {
9002
+ user_id: string;
9003
+ clientID: string;
9004
+ scope: string[];
9005
+ id: string;
9006
+ audience?: string | undefined;
9007
+ }[] | {
9008
+ start: number;
9009
+ limit: number;
9010
+ length: number;
9011
+ grants: {
9012
+ user_id: string;
9013
+ clientID: string;
9014
+ scope: string[];
9015
+ id: string;
9016
+ audience?: string | undefined;
9017
+ }[];
9018
+ total?: number | undefined;
9019
+ };
9020
+ outputFormat: "json";
9021
+ status: 200;
9022
+ };
9023
+ };
9024
+ } & {
9025
+ "/:id": {
9026
+ $delete: {
9027
+ input: {
9028
+ param: {
9029
+ id: string;
9030
+ };
9031
+ } & {
9032
+ header: {
9033
+ "tenant-id"?: string | undefined;
9034
+ };
9035
+ };
9036
+ output: {};
9037
+ outputFormat: string;
9038
+ status: 204;
9039
+ };
9040
+ };
9041
+ } & {
9042
+ "/": {
9043
+ $delete: {
9044
+ input: {
9045
+ query: {
9046
+ user_id: string;
9047
+ };
9048
+ } & {
9049
+ header: {
9050
+ "tenant-id"?: string | undefined;
9051
+ };
9052
+ };
9053
+ output: {};
9054
+ outputFormat: string;
9055
+ status: 204;
9056
+ };
9057
+ };
9058
+ }, "/grants"> & import("hono/types").MergeSchemaPath<{
8982
9059
  "/": {
8983
9060
  $get: {
8984
9061
  input: {
@@ -9959,7 +10036,7 @@ export declare function init(config: AuthHeroConfig): {
9959
10036
  } | undefined;
9960
10037
  } | undefined;
9961
10038
  passkey_options?: {
9962
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10039
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
9963
10040
  local_enrollment_enabled?: boolean | undefined;
9964
10041
  progressive_enrollment_enabled?: boolean | undefined;
9965
10042
  } | undefined;
@@ -10113,7 +10190,7 @@ export declare function init(config: AuthHeroConfig): {
10113
10190
  } | undefined;
10114
10191
  } | undefined;
10115
10192
  passkey_options?: {
10116
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10193
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10117
10194
  local_enrollment_enabled?: boolean | undefined;
10118
10195
  progressive_enrollment_enabled?: boolean | undefined;
10119
10196
  } | undefined;
@@ -11054,7 +11131,7 @@ export declare function init(config: AuthHeroConfig): {
11054
11131
  };
11055
11132
  };
11056
11133
  output: {
11057
- type: "i" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11134
+ type: "s" | "w" | "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" | "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" | "wn" | "wum";
11058
11135
  date: string;
11059
11136
  isMobile: boolean;
11060
11137
  log_id: string;
@@ -11093,7 +11170,7 @@ export declare function init(config: AuthHeroConfig): {
11093
11170
  limit: number;
11094
11171
  length: number;
11095
11172
  logs: {
11096
- type: "i" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11173
+ type: "s" | "w" | "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" | "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" | "wn" | "wum";
11097
11174
  date: string;
11098
11175
  isMobile: boolean;
11099
11176
  log_id: string;
@@ -11408,7 +11485,7 @@ export declare function init(config: AuthHeroConfig): {
11408
11485
  };
11409
11486
  } & {
11410
11487
  json: {
11411
- 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";
11488
+ 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";
11412
11489
  body: string;
11413
11490
  from: string;
11414
11491
  subject: string;
@@ -11419,9 +11496,19 @@ export declare function init(config: AuthHeroConfig): {
11419
11496
  enabled?: boolean | undefined;
11420
11497
  };
11421
11498
  };
11422
- output: {};
11423
- outputFormat: string;
11424
- status: 409;
11499
+ output: {
11500
+ 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";
11501
+ body: string;
11502
+ from: string;
11503
+ subject: string;
11504
+ syntax: "liquid";
11505
+ includeEmailInRedirect: boolean;
11506
+ enabled: boolean;
11507
+ resultUrl?: string | undefined;
11508
+ urlLifetimeInSeconds?: number | undefined;
11509
+ };
11510
+ outputFormat: "json";
11511
+ status: 201;
11425
11512
  } | {
11426
11513
  input: {
11427
11514
  header: {
@@ -11429,7 +11516,7 @@ export declare function init(config: AuthHeroConfig): {
11429
11516
  };
11430
11517
  } & {
11431
11518
  json: {
11432
- 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";
11519
+ 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";
11433
11520
  body: string;
11434
11521
  from: string;
11435
11522
  subject: string;
@@ -11440,19 +11527,9 @@ export declare function init(config: AuthHeroConfig): {
11440
11527
  enabled?: boolean | undefined;
11441
11528
  };
11442
11529
  };
11443
- output: {
11444
- 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";
11445
- body: string;
11446
- from: string;
11447
- subject: string;
11448
- syntax: "liquid";
11449
- includeEmailInRedirect: boolean;
11450
- enabled: boolean;
11451
- resultUrl?: string | undefined;
11452
- urlLifetimeInSeconds?: number | undefined;
11453
- };
11454
- outputFormat: "json";
11455
- status: 201;
11530
+ output: {};
11531
+ outputFormat: string;
11532
+ status: 409;
11456
11533
  };
11457
11534
  };
11458
11535
  } & {
@@ -11464,7 +11541,7 @@ export declare function init(config: AuthHeroConfig): {
11464
11541
  };
11465
11542
  };
11466
11543
  output: {
11467
- 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";
11544
+ 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";
11468
11545
  body: string;
11469
11546
  subject: string;
11470
11547
  }[];
@@ -11477,7 +11554,7 @@ export declare function init(config: AuthHeroConfig): {
11477
11554
  $get: {
11478
11555
  input: {
11479
11556
  param: {
11480
- 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";
11557
+ 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";
11481
11558
  };
11482
11559
  } & {
11483
11560
  header: {
@@ -11490,7 +11567,7 @@ export declare function init(config: AuthHeroConfig): {
11490
11567
  } | {
11491
11568
  input: {
11492
11569
  param: {
11493
- 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";
11570
+ 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";
11494
11571
  };
11495
11572
  } & {
11496
11573
  header: {
@@ -11498,7 +11575,7 @@ export declare function init(config: AuthHeroConfig): {
11498
11575
  };
11499
11576
  };
11500
11577
  output: {
11501
- 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";
11578
+ 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";
11502
11579
  body: string;
11503
11580
  from: string;
11504
11581
  subject: string;
@@ -11517,7 +11594,7 @@ export declare function init(config: AuthHeroConfig): {
11517
11594
  $put: {
11518
11595
  input: {
11519
11596
  param: {
11520
- 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";
11597
+ 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";
11521
11598
  };
11522
11599
  } & {
11523
11600
  header: {
@@ -11525,19 +11602,19 @@ export declare function init(config: AuthHeroConfig): {
11525
11602
  };
11526
11603
  } & {
11527
11604
  json: {
11528
- 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";
11605
+ 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";
11529
11606
  body: string;
11530
- from: string;
11531
11607
  subject: string;
11532
11608
  syntax?: "liquid" | undefined;
11533
11609
  resultUrl?: string | undefined;
11534
11610
  urlLifetimeInSeconds?: number | undefined;
11535
11611
  includeEmailInRedirect?: boolean | undefined;
11536
11612
  enabled?: boolean | undefined;
11613
+ from?: string | undefined;
11537
11614
  };
11538
11615
  };
11539
11616
  output: {
11540
- 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";
11617
+ 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";
11541
11618
  body: string;
11542
11619
  from: string;
11543
11620
  subject: string;
@@ -11556,7 +11633,7 @@ export declare function init(config: AuthHeroConfig): {
11556
11633
  $patch: {
11557
11634
  input: {
11558
11635
  param: {
11559
- 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";
11636
+ 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";
11560
11637
  };
11561
11638
  } & {
11562
11639
  header: {
@@ -11564,7 +11641,7 @@ export declare function init(config: AuthHeroConfig): {
11564
11641
  };
11565
11642
  } & {
11566
11643
  json: {
11567
- 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;
11644
+ 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;
11568
11645
  body?: string | undefined;
11569
11646
  from?: string | undefined;
11570
11647
  subject?: string | undefined;
@@ -11581,7 +11658,7 @@ export declare function init(config: AuthHeroConfig): {
11581
11658
  } | {
11582
11659
  input: {
11583
11660
  param: {
11584
- 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";
11661
+ 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";
11585
11662
  };
11586
11663
  } & {
11587
11664
  header: {
@@ -11589,7 +11666,7 @@ export declare function init(config: AuthHeroConfig): {
11589
11666
  };
11590
11667
  } & {
11591
11668
  json: {
11592
- 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;
11669
+ 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;
11593
11670
  body?: string | undefined;
11594
11671
  from?: string | undefined;
11595
11672
  subject?: string | undefined;
@@ -11601,7 +11678,7 @@ export declare function init(config: AuthHeroConfig): {
11601
11678
  };
11602
11679
  };
11603
11680
  output: {
11604
- 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";
11681
+ 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";
11605
11682
  body: string;
11606
11683
  from: string;
11607
11684
  subject: string;
@@ -11615,6 +11692,63 @@ export declare function init(config: AuthHeroConfig): {
11615
11692
  status: 200;
11616
11693
  };
11617
11694
  };
11695
+ } & {
11696
+ "/:templateName": {
11697
+ $delete: {
11698
+ input: {
11699
+ param: {
11700
+ 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";
11701
+ };
11702
+ } & {
11703
+ header: {
11704
+ "tenant-id"?: string | undefined;
11705
+ };
11706
+ };
11707
+ output: {};
11708
+ outputFormat: string;
11709
+ status: 204;
11710
+ } | {
11711
+ input: {
11712
+ param: {
11713
+ 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";
11714
+ };
11715
+ } & {
11716
+ header: {
11717
+ "tenant-id"?: string | undefined;
11718
+ };
11719
+ };
11720
+ output: {};
11721
+ outputFormat: string;
11722
+ status: 404;
11723
+ };
11724
+ };
11725
+ } & {
11726
+ "/:templateName/try": {
11727
+ $post: {
11728
+ input: {
11729
+ param: {
11730
+ 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";
11731
+ };
11732
+ } & {
11733
+ header: {
11734
+ "tenant-id"?: string | undefined;
11735
+ };
11736
+ } & {
11737
+ json: {
11738
+ to: string;
11739
+ body?: string | undefined;
11740
+ subject?: string | undefined;
11741
+ from?: string | undefined;
11742
+ language?: string | undefined;
11743
+ };
11744
+ };
11745
+ output: {
11746
+ sent: boolean;
11747
+ };
11748
+ outputFormat: "json";
11749
+ status: 200;
11750
+ };
11751
+ };
11618
11752
  }, "/email-templates"> & import("hono/types").MergeSchemaPath<{
11619
11753
  "/": {
11620
11754
  $get: {
@@ -11878,7 +12012,7 @@ export declare function init(config: AuthHeroConfig): {
11878
12012
  primary: boolean;
11879
12013
  status: "disabled" | "pending" | "pending_verification" | "ready";
11880
12014
  verification_method?: "txt" | undefined;
11881
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12015
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11882
12016
  domain_metadata?: {
11883
12017
  [x: string]: string;
11884
12018
  } | undefined;
@@ -11919,7 +12053,7 @@ export declare function init(config: AuthHeroConfig): {
11919
12053
  primary: boolean;
11920
12054
  status: "disabled" | "pending" | "pending_verification" | "ready";
11921
12055
  verification_method?: "txt" | undefined;
11922
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12056
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11923
12057
  domain_metadata?: {
11924
12058
  [x: string]: string;
11925
12059
  } | undefined;
@@ -11974,7 +12108,7 @@ export declare function init(config: AuthHeroConfig): {
11974
12108
  domain?: string | undefined;
11975
12109
  type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
11976
12110
  verification_method?: "txt" | undefined;
11977
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12111
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11978
12112
  domain_metadata?: Record<string, string> | undefined;
11979
12113
  custom_domain_id?: string | undefined;
11980
12114
  primary?: boolean | undefined;
@@ -12001,7 +12135,7 @@ export declare function init(config: AuthHeroConfig): {
12001
12135
  primary: boolean;
12002
12136
  status: "disabled" | "pending" | "pending_verification" | "ready";
12003
12137
  verification_method?: "txt" | undefined;
12004
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12138
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12005
12139
  domain_metadata?: {
12006
12140
  [x: string]: string;
12007
12141
  } | undefined;
@@ -12037,7 +12171,7 @@ export declare function init(config: AuthHeroConfig): {
12037
12171
  custom_domain_id?: string | undefined;
12038
12172
  verification_method?: "txt" | undefined;
12039
12173
  tls_policy?: "recommended" | undefined;
12040
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12174
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12041
12175
  domain_metadata?: Record<string, string> | undefined;
12042
12176
  };
12043
12177
  };
@@ -12048,7 +12182,7 @@ export declare function init(config: AuthHeroConfig): {
12048
12182
  primary: boolean;
12049
12183
  status: "disabled" | "pending" | "pending_verification" | "ready";
12050
12184
  verification_method?: "txt" | undefined;
12051
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12185
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12052
12186
  domain_metadata?: {
12053
12187
  [x: string]: string;
12054
12188
  } | undefined;
@@ -12094,7 +12228,7 @@ export declare function init(config: AuthHeroConfig): {
12094
12228
  primary: boolean;
12095
12229
  status: "disabled" | "pending" | "pending_verification" | "ready";
12096
12230
  verification_method?: "txt" | undefined;
12097
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12231
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12098
12232
  domain_metadata?: {
12099
12233
  [x: string]: string;
12100
12234
  } | undefined;
@@ -12135,7 +12269,7 @@ export declare function init(config: AuthHeroConfig): {
12135
12269
  primary: boolean;
12136
12270
  status: "disabled" | "pending" | "pending_verification" | "ready";
12137
12271
  verification_method?: "txt" | undefined;
12138
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12272
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12139
12273
  domain_metadata?: {
12140
12274
  [x: string]: string;
12141
12275
  } | undefined;
@@ -12181,7 +12315,7 @@ export declare function init(config: AuthHeroConfig): {
12181
12315
  base_focus_color: string;
12182
12316
  base_hover_color: string;
12183
12317
  body_text: string;
12184
- captcha_widget_theme: "auto" | "light" | "dark";
12318
+ captcha_widget_theme: "dark" | "light" | "auto";
12185
12319
  error: string;
12186
12320
  header: string;
12187
12321
  icons: string;
@@ -12232,7 +12366,7 @@ export declare function init(config: AuthHeroConfig): {
12232
12366
  background_color: string;
12233
12367
  background_image_url: string;
12234
12368
  page_layout: "center" | "left" | "right";
12235
- logo_placement?: "widget" | "chip" | "none" | undefined;
12369
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12236
12370
  };
12237
12371
  widget: {
12238
12372
  header_text_alignment: "center" | "left" | "right";
@@ -12271,7 +12405,7 @@ export declare function init(config: AuthHeroConfig): {
12271
12405
  base_focus_color: string;
12272
12406
  base_hover_color: string;
12273
12407
  body_text: string;
12274
- captcha_widget_theme: "auto" | "light" | "dark";
12408
+ captcha_widget_theme: "dark" | "light" | "auto";
12275
12409
  error: string;
12276
12410
  header: string;
12277
12411
  icons: string;
@@ -12322,7 +12456,7 @@ export declare function init(config: AuthHeroConfig): {
12322
12456
  background_color: string;
12323
12457
  background_image_url: string;
12324
12458
  page_layout: "center" | "left" | "right";
12325
- logo_placement?: "widget" | "chip" | "none" | undefined;
12459
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12326
12460
  };
12327
12461
  widget: {
12328
12462
  header_text_alignment: "center" | "left" | "right";
@@ -12350,7 +12484,7 @@ export declare function init(config: AuthHeroConfig): {
12350
12484
  base_focus_color: string;
12351
12485
  base_hover_color: string;
12352
12486
  body_text: string;
12353
- captcha_widget_theme: "auto" | "light" | "dark";
12487
+ captcha_widget_theme: "dark" | "light" | "auto";
12354
12488
  error: string;
12355
12489
  header: string;
12356
12490
  icons: string;
@@ -12401,7 +12535,7 @@ export declare function init(config: AuthHeroConfig): {
12401
12535
  background_color: string;
12402
12536
  background_image_url: string;
12403
12537
  page_layout: "center" | "left" | "right";
12404
- logo_placement?: "widget" | "chip" | "none" | undefined;
12538
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12405
12539
  };
12406
12540
  widget: {
12407
12541
  header_text_alignment: "center" | "left" | "right";
@@ -12440,7 +12574,7 @@ export declare function init(config: AuthHeroConfig): {
12440
12574
  font?: {
12441
12575
  url: string;
12442
12576
  } | undefined;
12443
- dark_mode?: "auto" | "light" | "dark" | undefined;
12577
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12444
12578
  };
12445
12579
  outputFormat: "json";
12446
12580
  status: 200;
@@ -12470,7 +12604,7 @@ export declare function init(config: AuthHeroConfig): {
12470
12604
  font?: {
12471
12605
  url: string;
12472
12606
  } | undefined;
12473
- dark_mode?: "auto" | "light" | "dark" | undefined;
12607
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12474
12608
  };
12475
12609
  };
12476
12610
  output: {
@@ -12489,7 +12623,7 @@ export declare function init(config: AuthHeroConfig): {
12489
12623
  font?: {
12490
12624
  url: string;
12491
12625
  } | undefined;
12492
- dark_mode?: "auto" | "light" | "dark" | undefined;
12626
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12493
12627
  };
12494
12628
  outputFormat: "json";
12495
12629
  status: 200;
@@ -12693,7 +12827,7 @@ export declare function init(config: AuthHeroConfig): {
12693
12827
  output: {
12694
12828
  id: string;
12695
12829
  trigger_id: string;
12696
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
12830
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
12697
12831
  results: {
12698
12832
  action_name: string;
12699
12833
  error: {
@@ -12740,7 +12874,7 @@ export declare function init(config: AuthHeroConfig): {
12740
12874
  logs: {
12741
12875
  action_name: string;
12742
12876
  lines: {
12743
- level: "log" | "error" | "info" | "warn" | "debug";
12877
+ level: "error" | "log" | "info" | "warn" | "debug";
12744
12878
  message: string;
12745
12879
  }[];
12746
12880
  }[];
@@ -13047,7 +13181,7 @@ export declare function init(config: AuthHeroConfig): {
13047
13181
  };
13048
13182
  output: {};
13049
13183
  outputFormat: string;
13050
- status: 200;
13184
+ status: 409;
13051
13185
  } | {
13052
13186
  input: {
13053
13187
  param: {
@@ -13060,7 +13194,7 @@ export declare function init(config: AuthHeroConfig): {
13060
13194
  };
13061
13195
  output: {};
13062
13196
  outputFormat: string;
13063
- status: 404;
13197
+ status: 200;
13064
13198
  } | {
13065
13199
  input: {
13066
13200
  param: {
@@ -13073,7 +13207,7 @@ export declare function init(config: AuthHeroConfig): {
13073
13207
  };
13074
13208
  output: {};
13075
13209
  outputFormat: string;
13076
- status: 409;
13210
+ status: 404;
13077
13211
  };
13078
13212
  };
13079
13213
  } & {
@@ -13407,7 +13541,7 @@ export declare function init(config: AuthHeroConfig): {
13407
13541
  args: import("hono/utils/types").JSONValue[];
13408
13542
  }[];
13409
13543
  logs: {
13410
- level: "log" | "error" | "info" | "warn" | "debug";
13544
+ level: "error" | "log" | "info" | "warn" | "debug";
13411
13545
  message: string;
13412
13546
  }[];
13413
13547
  error?: string | undefined;
@@ -14142,14 +14276,14 @@ export declare function init(config: AuthHeroConfig): {
14142
14276
  authParams: {
14143
14277
  username?: string | undefined;
14144
14278
  state?: string | undefined;
14145
- audience?: string | undefined;
14146
- scope?: string | undefined;
14279
+ act_as?: string | undefined;
14147
14280
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14148
14281
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14149
- act_as?: string | undefined;
14150
14282
  redirect_uri?: string | undefined;
14283
+ audience?: string | undefined;
14151
14284
  organization?: string | undefined;
14152
14285
  nonce?: string | undefined;
14286
+ scope?: string | undefined;
14153
14287
  prompt?: string | undefined;
14154
14288
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14155
14289
  code_challenge?: string | undefined;
@@ -14178,14 +14312,14 @@ export declare function init(config: AuthHeroConfig): {
14178
14312
  authParams: {
14179
14313
  username?: string | undefined;
14180
14314
  state?: string | undefined;
14181
- audience?: string | undefined;
14182
- scope?: string | undefined;
14315
+ act_as?: string | undefined;
14183
14316
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14184
14317
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14185
- act_as?: string | undefined;
14186
14318
  redirect_uri?: string | undefined;
14319
+ audience?: string | undefined;
14187
14320
  organization?: string | undefined;
14188
14321
  nonce?: string | undefined;
14322
+ scope?: string | undefined;
14189
14323
  prompt?: string | undefined;
14190
14324
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14191
14325
  code_challenge?: string | undefined;
@@ -14419,6 +14553,17 @@ export declare function init(config: AuthHeroConfig): {
14419
14553
  username: string;
14420
14554
  otp: string;
14421
14555
  realm: "email" | "sms";
14556
+ } | {
14557
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14558
+ subject_token: string;
14559
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14560
+ organization: string;
14561
+ audience?: string | undefined;
14562
+ scope?: string | undefined;
14563
+ client_id?: string | undefined;
14564
+ client_secret?: string | undefined;
14565
+ client_assertion?: string | undefined;
14566
+ client_assertion_type?: string | undefined;
14422
14567
  };
14423
14568
  } & {
14424
14569
  json: {
@@ -14455,6 +14600,17 @@ export declare function init(config: AuthHeroConfig): {
14455
14600
  username: string;
14456
14601
  otp: string;
14457
14602
  realm: "email" | "sms";
14603
+ } | {
14604
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14605
+ subject_token: string;
14606
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14607
+ organization: string;
14608
+ audience?: string | undefined;
14609
+ scope?: string | undefined;
14610
+ client_id?: string | undefined;
14611
+ client_secret?: string | undefined;
14612
+ client_assertion?: string | undefined;
14613
+ client_assertion_type?: string | undefined;
14458
14614
  };
14459
14615
  };
14460
14616
  output: {};
@@ -14496,6 +14652,17 @@ export declare function init(config: AuthHeroConfig): {
14496
14652
  username: string;
14497
14653
  otp: string;
14498
14654
  realm: "email" | "sms";
14655
+ } | {
14656
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14657
+ subject_token: string;
14658
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14659
+ organization: string;
14660
+ audience?: string | undefined;
14661
+ scope?: string | undefined;
14662
+ client_id?: string | undefined;
14663
+ client_secret?: string | undefined;
14664
+ client_assertion?: string | undefined;
14665
+ client_assertion_type?: string | undefined;
14499
14666
  };
14500
14667
  } & {
14501
14668
  json: {
@@ -14532,6 +14699,17 @@ export declare function init(config: AuthHeroConfig): {
14532
14699
  username: string;
14533
14700
  otp: string;
14534
14701
  realm: "email" | "sms";
14702
+ } | {
14703
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14704
+ subject_token: string;
14705
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14706
+ organization: string;
14707
+ audience?: string | undefined;
14708
+ scope?: string | undefined;
14709
+ client_id?: string | undefined;
14710
+ client_secret?: string | undefined;
14711
+ client_assertion?: string | undefined;
14712
+ client_assertion_type?: string | undefined;
14535
14713
  };
14536
14714
  };
14537
14715
  output: {
@@ -14581,6 +14759,17 @@ export declare function init(config: AuthHeroConfig): {
14581
14759
  username: string;
14582
14760
  otp: string;
14583
14761
  realm: "email" | "sms";
14762
+ } | {
14763
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14764
+ subject_token: string;
14765
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14766
+ organization: string;
14767
+ audience?: string | undefined;
14768
+ scope?: string | undefined;
14769
+ client_id?: string | undefined;
14770
+ client_secret?: string | undefined;
14771
+ client_assertion?: string | undefined;
14772
+ client_assertion_type?: string | undefined;
14584
14773
  };
14585
14774
  } & {
14586
14775
  json: {
@@ -14617,6 +14806,17 @@ export declare function init(config: AuthHeroConfig): {
14617
14806
  username: string;
14618
14807
  otp: string;
14619
14808
  realm: "email" | "sms";
14809
+ } | {
14810
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14811
+ subject_token: string;
14812
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14813
+ organization: string;
14814
+ audience?: string | undefined;
14815
+ scope?: string | undefined;
14816
+ client_id?: string | undefined;
14817
+ client_secret?: string | undefined;
14818
+ client_assertion?: string | undefined;
14819
+ client_assertion_type?: string | undefined;
14620
14820
  };
14621
14821
  };
14622
14822
  output: {
@@ -14661,6 +14861,17 @@ export declare function init(config: AuthHeroConfig): {
14661
14861
  username: string;
14662
14862
  otp: string;
14663
14863
  realm: "email" | "sms";
14864
+ } | {
14865
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14866
+ subject_token: string;
14867
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14868
+ organization: string;
14869
+ audience?: string | undefined;
14870
+ scope?: string | undefined;
14871
+ client_id?: string | undefined;
14872
+ client_secret?: string | undefined;
14873
+ client_assertion?: string | undefined;
14874
+ client_assertion_type?: string | undefined;
14664
14875
  };
14665
14876
  } & {
14666
14877
  json: {
@@ -14697,6 +14908,17 @@ export declare function init(config: AuthHeroConfig): {
14697
14908
  username: string;
14698
14909
  otp: string;
14699
14910
  realm: "email" | "sms";
14911
+ } | {
14912
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14913
+ subject_token: string;
14914
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14915
+ organization: string;
14916
+ audience?: string | undefined;
14917
+ scope?: string | undefined;
14918
+ client_id?: string | undefined;
14919
+ client_secret?: string | undefined;
14920
+ client_assertion?: string | undefined;
14921
+ client_assertion_type?: string | undefined;
14700
14922
  };
14701
14923
  };
14702
14924
  output: {
@@ -14741,6 +14963,17 @@ export declare function init(config: AuthHeroConfig): {
14741
14963
  username: string;
14742
14964
  otp: string;
14743
14965
  realm: "email" | "sms";
14966
+ } | {
14967
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14968
+ subject_token: string;
14969
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14970
+ organization: string;
14971
+ audience?: string | undefined;
14972
+ scope?: string | undefined;
14973
+ client_id?: string | undefined;
14974
+ client_secret?: string | undefined;
14975
+ client_assertion?: string | undefined;
14976
+ client_assertion_type?: string | undefined;
14744
14977
  };
14745
14978
  } & {
14746
14979
  json: {
@@ -14777,6 +15010,17 @@ export declare function init(config: AuthHeroConfig): {
14777
15010
  username: string;
14778
15011
  otp: string;
14779
15012
  realm: "email" | "sms";
15013
+ } | {
15014
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15015
+ subject_token: string;
15016
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
15017
+ organization: string;
15018
+ audience?: string | undefined;
15019
+ scope?: string | undefined;
15020
+ client_id?: string | undefined;
15021
+ client_secret?: string | undefined;
15022
+ client_assertion?: string | undefined;
15023
+ client_assertion_type?: string | undefined;
14780
15024
  };
14781
15025
  };
14782
15026
  output: {
@@ -14795,7 +15039,7 @@ export declare function init(config: AuthHeroConfig): {
14795
15039
  keys: {
14796
15040
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
14797
15041
  kid: string;
14798
- kty: "EC" | "RSA" | "oct";
15042
+ kty: "RSA" | "EC" | "oct";
14799
15043
  use?: "sig" | "enc" | undefined;
14800
15044
  n?: string | undefined;
14801
15045
  e?: string | undefined;
@@ -15606,7 +15850,7 @@ export declare function init(config: AuthHeroConfig): {
15606
15850
  } & {
15607
15851
  form: {
15608
15852
  username: string;
15609
- login_selection?: "password" | "code" | undefined;
15853
+ login_selection?: "code" | "password" | undefined;
15610
15854
  };
15611
15855
  };
15612
15856
  output: {};
@@ -15620,7 +15864,7 @@ export declare function init(config: AuthHeroConfig): {
15620
15864
  } & {
15621
15865
  form: {
15622
15866
  username: string;
15623
- login_selection?: "password" | "code" | undefined;
15867
+ login_selection?: "code" | "password" | undefined;
15624
15868
  };
15625
15869
  };
15626
15870
  output: {};
@@ -15985,7 +16229,7 @@ export declare function init(config: AuthHeroConfig): {
15985
16229
  $get: {
15986
16230
  input: {
15987
16231
  param: {
15988
- screen: "signup" | "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";
16232
+ 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";
15989
16233
  };
15990
16234
  } & {
15991
16235
  query: {
@@ -16001,7 +16245,7 @@ export declare function init(config: AuthHeroConfig): {
16001
16245
  } | {
16002
16246
  input: {
16003
16247
  param: {
16004
- screen: "signup" | "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";
16248
+ 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";
16005
16249
  };
16006
16250
  } & {
16007
16251
  query: {
@@ -16017,7 +16261,7 @@ export declare function init(config: AuthHeroConfig): {
16017
16261
  } | {
16018
16262
  input: {
16019
16263
  param: {
16020
- screen: "signup" | "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";
16264
+ 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";
16021
16265
  };
16022
16266
  } & {
16023
16267
  query: {
@@ -16037,7 +16281,7 @@ export declare function init(config: AuthHeroConfig): {
16037
16281
  $post: {
16038
16282
  input: {
16039
16283
  param: {
16040
- screen: "signup" | "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";
16284
+ 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";
16041
16285
  };
16042
16286
  } & {
16043
16287
  query: {
@@ -16055,7 +16299,7 @@ export declare function init(config: AuthHeroConfig): {
16055
16299
  } | {
16056
16300
  input: {
16057
16301
  param: {
16058
- screen: "signup" | "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";
16302
+ 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";
16059
16303
  };
16060
16304
  } & {
16061
16305
  query: {
@@ -16073,7 +16317,7 @@ export declare function init(config: AuthHeroConfig): {
16073
16317
  } | {
16074
16318
  input: {
16075
16319
  param: {
16076
- screen: "signup" | "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";
16320
+ 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";
16077
16321
  };
16078
16322
  } & {
16079
16323
  query: {