authhero 5.15.0 → 5.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/assets/u/js/client.js +1 -1
  2. package/dist/assets/u/widget/index.esm.js +1 -1
  3. package/dist/authhero.cjs +116 -116
  4. package/dist/authhero.d.ts +271 -225
  5. package/dist/authhero.mjs +10024 -9934
  6. package/dist/client.js +1 -1
  7. package/dist/stats.html +1 -1
  8. package/dist/tsconfig.types.tsbuildinfo +1 -1
  9. package/dist/types/authentication-flows/passwordless.d.ts +2 -2
  10. package/dist/types/client/client-bundle.d.ts +1 -1
  11. package/dist/types/index.d.ts +271 -225
  12. package/dist/types/routes/auth-api/authorize.d.ts +12 -12
  13. package/dist/types/routes/auth-api/index.d.ts +47 -47
  14. package/dist/types/routes/auth-api/oidc-logout.d.ts +3 -3
  15. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  16. package/dist/types/routes/auth-api/token.d.ts +21 -21
  17. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  18. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  19. package/dist/types/routes/management-api/branding.d.ts +8 -8
  20. package/dist/types/routes/management-api/connections.d.ts +1 -1
  21. package/dist/types/routes/management-api/custom-domains.d.ts +52 -6
  22. package/dist/types/routes/management-api/email-templates.d.ts +14 -14
  23. package/dist/types/routes/management-api/forms.d.ts +119 -119
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/index.d.ts +212 -166
  26. package/dist/types/routes/management-api/logs.d.ts +3 -3
  27. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/themes.d.ts +3 -3
  30. package/dist/types/routes/management-api/users.d.ts +2 -2
  31. package/dist/types/routes/universal-login/common.d.ts +4 -4
  32. package/dist/types/routes/universal-login/continue.d.ts +2 -2
  33. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  34. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  35. package/dist/types/routes/universal-login/impersonate.d.ts +4 -4
  36. package/dist/types/routes/universal-login/index.d.ts +8 -8
  37. package/dist/types/routes/universal-login/u2-index.d.ts +4 -4
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +4 -4
  39. package/dist/types/state-machines/login-session.d.ts +1 -1
  40. package/dist/types/types/IdToken.d.ts +1 -1
  41. package/dist/types/utils/jwks.d.ts +2 -2
  42. package/package.json +5 -5
@@ -79,7 +79,7 @@ export declare function init(config: AuthHeroConfig): {
79
79
  };
80
80
  } & {
81
81
  json: {
82
- type: "email" | "phone" | "push" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
82
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
83
83
  phone_number?: string | undefined;
84
84
  totp_secret?: string | undefined;
85
85
  credential_id?: string | undefined;
@@ -219,7 +219,7 @@ export declare function init(config: AuthHeroConfig): {
219
219
  };
220
220
  };
221
221
  output: {
222
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
222
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
223
223
  enabled: boolean;
224
224
  trial_expired?: boolean | undefined;
225
225
  }[];
@@ -374,7 +374,7 @@ export declare function init(config: AuthHeroConfig): {
374
374
  $get: {
375
375
  input: {
376
376
  param: {
377
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
377
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
378
378
  };
379
379
  } & {
380
380
  header: {
@@ -382,7 +382,7 @@ export declare function init(config: AuthHeroConfig): {
382
382
  };
383
383
  };
384
384
  output: {
385
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
385
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
386
386
  enabled: boolean;
387
387
  trial_expired?: boolean | undefined;
388
388
  };
@@ -395,7 +395,7 @@ export declare function init(config: AuthHeroConfig): {
395
395
  $put: {
396
396
  input: {
397
397
  param: {
398
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
398
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
399
399
  };
400
400
  } & {
401
401
  header: {
@@ -407,7 +407,7 @@ export declare function init(config: AuthHeroConfig): {
407
407
  };
408
408
  };
409
409
  output: {
410
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
410
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
411
411
  enabled: boolean;
412
412
  trial_expired?: boolean | undefined;
413
413
  };
@@ -1152,10 +1152,10 @@ export declare function init(config: AuthHeroConfig): {
1152
1152
  invitee: {
1153
1153
  email?: string | undefined;
1154
1154
  };
1155
- app_metadata?: Record<string, any> | undefined;
1156
- user_metadata?: Record<string, any> | undefined;
1157
1155
  id?: string | undefined;
1158
1156
  connection_id?: string | undefined;
1157
+ app_metadata?: Record<string, any> | undefined;
1158
+ user_metadata?: Record<string, any> | undefined;
1159
1159
  roles?: string[] | undefined;
1160
1160
  ttl_sec?: number | undefined;
1161
1161
  send_invitation_email?: boolean | undefined;
@@ -1340,8 +1340,8 @@ export declare function init(config: AuthHeroConfig): {
1340
1340
  };
1341
1341
  } & {
1342
1342
  json: {
1343
- assign_membership_on_login?: boolean | undefined;
1344
1343
  show_as_button?: boolean | undefined;
1344
+ assign_membership_on_login?: boolean | undefined;
1345
1345
  is_signup_enabled?: boolean | undefined;
1346
1346
  };
1347
1347
  };
@@ -2583,7 +2583,7 @@ export declare function init(config: AuthHeroConfig): {
2583
2583
  hint?: string | undefined;
2584
2584
  messages?: {
2585
2585
  text: string;
2586
- type: "success" | "error" | "info" | "warning";
2586
+ type: "error" | "success" | "info" | "warning";
2587
2587
  id?: number | undefined;
2588
2588
  }[] | undefined;
2589
2589
  required?: boolean | undefined;
@@ -2601,7 +2601,7 @@ export declare function init(config: AuthHeroConfig): {
2601
2601
  hint?: string | undefined;
2602
2602
  messages?: {
2603
2603
  text: string;
2604
- type: "success" | "error" | "info" | "warning";
2604
+ type: "error" | "success" | "info" | "warning";
2605
2605
  id?: number | undefined;
2606
2606
  }[] | undefined;
2607
2607
  required?: boolean | undefined;
@@ -2625,7 +2625,7 @@ export declare function init(config: AuthHeroConfig): {
2625
2625
  hint?: string | undefined;
2626
2626
  messages?: {
2627
2627
  text: string;
2628
- type: "success" | "error" | "info" | "warning";
2628
+ type: "error" | "success" | "info" | "warning";
2629
2629
  id?: number | undefined;
2630
2630
  }[] | undefined;
2631
2631
  required?: boolean | undefined;
@@ -2649,7 +2649,7 @@ export declare function init(config: AuthHeroConfig): {
2649
2649
  hint?: string | undefined;
2650
2650
  messages?: {
2651
2651
  text: string;
2652
- type: "success" | "error" | "info" | "warning";
2652
+ type: "error" | "success" | "info" | "warning";
2653
2653
  id?: number | undefined;
2654
2654
  }[] | undefined;
2655
2655
  required?: boolean | undefined;
@@ -2678,7 +2678,7 @@ export declare function init(config: AuthHeroConfig): {
2678
2678
  hint?: string | undefined;
2679
2679
  messages?: {
2680
2680
  text: string;
2681
- type: "success" | "error" | "info" | "warning";
2681
+ type: "error" | "success" | "info" | "warning";
2682
2682
  id?: number | undefined;
2683
2683
  }[] | undefined;
2684
2684
  required?: boolean | undefined;
@@ -2693,7 +2693,7 @@ export declare function init(config: AuthHeroConfig): {
2693
2693
  hint?: string | undefined;
2694
2694
  messages?: {
2695
2695
  text: string;
2696
- type: "success" | "error" | "info" | "warning";
2696
+ type: "error" | "success" | "info" | "warning";
2697
2697
  id?: number | undefined;
2698
2698
  }[] | undefined;
2699
2699
  required?: boolean | undefined;
@@ -2714,7 +2714,7 @@ export declare function init(config: AuthHeroConfig): {
2714
2714
  hint?: string | undefined;
2715
2715
  messages?: {
2716
2716
  text: string;
2717
- type: "success" | "error" | "info" | "warning";
2717
+ type: "error" | "success" | "info" | "warning";
2718
2718
  id?: number | undefined;
2719
2719
  }[] | undefined;
2720
2720
  required?: boolean | undefined;
@@ -2739,7 +2739,7 @@ export declare function init(config: AuthHeroConfig): {
2739
2739
  hint?: string | undefined;
2740
2740
  messages?: {
2741
2741
  text: string;
2742
- type: "success" | "error" | "info" | "warning";
2742
+ type: "error" | "success" | "info" | "warning";
2743
2743
  id?: number | undefined;
2744
2744
  }[] | undefined;
2745
2745
  required?: boolean | undefined;
@@ -2758,7 +2758,7 @@ export declare function init(config: AuthHeroConfig): {
2758
2758
  hint?: string | undefined;
2759
2759
  messages?: {
2760
2760
  text: string;
2761
- type: "success" | "error" | "info" | "warning";
2761
+ type: "error" | "success" | "info" | "warning";
2762
2762
  id?: number | undefined;
2763
2763
  }[] | undefined;
2764
2764
  required?: boolean | undefined;
@@ -2778,7 +2778,7 @@ export declare function init(config: AuthHeroConfig): {
2778
2778
  hint?: string | undefined;
2779
2779
  messages?: {
2780
2780
  text: string;
2781
- type: "success" | "error" | "info" | "warning";
2781
+ type: "error" | "success" | "info" | "warning";
2782
2782
  id?: number | undefined;
2783
2783
  }[] | undefined;
2784
2784
  required?: boolean | undefined;
@@ -2797,7 +2797,7 @@ export declare function init(config: AuthHeroConfig): {
2797
2797
  hint?: string | undefined;
2798
2798
  messages?: {
2799
2799
  text: string;
2800
- type: "success" | "error" | "info" | "warning";
2800
+ type: "error" | "success" | "info" | "warning";
2801
2801
  id?: number | undefined;
2802
2802
  }[] | undefined;
2803
2803
  required?: boolean | undefined;
@@ -2819,7 +2819,7 @@ export declare function init(config: AuthHeroConfig): {
2819
2819
  hint?: string | undefined;
2820
2820
  messages?: {
2821
2821
  text: string;
2822
- type: "success" | "error" | "info" | "warning";
2822
+ type: "error" | "success" | "info" | "warning";
2823
2823
  id?: number | undefined;
2824
2824
  }[] | undefined;
2825
2825
  required?: boolean | undefined;
@@ -2841,7 +2841,7 @@ export declare function init(config: AuthHeroConfig): {
2841
2841
  hint?: string | undefined;
2842
2842
  messages?: {
2843
2843
  text: string;
2844
- type: "success" | "error" | "info" | "warning";
2844
+ type: "error" | "success" | "info" | "warning";
2845
2845
  id?: number | undefined;
2846
2846
  }[] | undefined;
2847
2847
  required?: boolean | undefined;
@@ -2860,7 +2860,7 @@ export declare function init(config: AuthHeroConfig): {
2860
2860
  hint?: string | undefined;
2861
2861
  messages?: {
2862
2862
  text: string;
2863
- type: "success" | "error" | "info" | "warning";
2863
+ type: "error" | "success" | "info" | "warning";
2864
2864
  id?: number | undefined;
2865
2865
  }[] | undefined;
2866
2866
  required?: boolean | undefined;
@@ -2885,7 +2885,7 @@ export declare function init(config: AuthHeroConfig): {
2885
2885
  hint?: string | undefined;
2886
2886
  messages?: {
2887
2887
  text: string;
2888
- type: "success" | "error" | "info" | "warning";
2888
+ type: "error" | "success" | "info" | "warning";
2889
2889
  id?: number | undefined;
2890
2890
  }[] | undefined;
2891
2891
  required?: boolean | undefined;
@@ -2906,7 +2906,7 @@ export declare function init(config: AuthHeroConfig): {
2906
2906
  hint?: string | undefined;
2907
2907
  messages?: {
2908
2908
  text: string;
2909
- type: "success" | "error" | "info" | "warning";
2909
+ type: "error" | "success" | "info" | "warning";
2910
2910
  id?: number | undefined;
2911
2911
  }[] | undefined;
2912
2912
  required?: boolean | undefined;
@@ -2927,7 +2927,7 @@ export declare function init(config: AuthHeroConfig): {
2927
2927
  hint?: string | undefined;
2928
2928
  messages?: {
2929
2929
  text: string;
2930
- type: "success" | "error" | "info" | "warning";
2930
+ type: "error" | "success" | "info" | "warning";
2931
2931
  id?: number | undefined;
2932
2932
  }[] | undefined;
2933
2933
  required?: boolean | undefined;
@@ -3160,7 +3160,7 @@ export declare function init(config: AuthHeroConfig): {
3160
3160
  hint?: string | undefined;
3161
3161
  messages?: {
3162
3162
  text: string;
3163
- type: "success" | "error" | "info" | "warning";
3163
+ type: "error" | "success" | "info" | "warning";
3164
3164
  id?: number | undefined;
3165
3165
  }[] | undefined;
3166
3166
  required?: boolean | undefined;
@@ -3178,7 +3178,7 @@ export declare function init(config: AuthHeroConfig): {
3178
3178
  hint?: string | undefined;
3179
3179
  messages?: {
3180
3180
  text: string;
3181
- type: "success" | "error" | "info" | "warning";
3181
+ type: "error" | "success" | "info" | "warning";
3182
3182
  id?: number | undefined;
3183
3183
  }[] | undefined;
3184
3184
  required?: boolean | undefined;
@@ -3202,7 +3202,7 @@ export declare function init(config: AuthHeroConfig): {
3202
3202
  hint?: string | undefined;
3203
3203
  messages?: {
3204
3204
  text: string;
3205
- type: "success" | "error" | "info" | "warning";
3205
+ type: "error" | "success" | "info" | "warning";
3206
3206
  id?: number | undefined;
3207
3207
  }[] | undefined;
3208
3208
  required?: boolean | undefined;
@@ -3226,7 +3226,7 @@ export declare function init(config: AuthHeroConfig): {
3226
3226
  hint?: string | undefined;
3227
3227
  messages?: {
3228
3228
  text: string;
3229
- type: "success" | "error" | "info" | "warning";
3229
+ type: "error" | "success" | "info" | "warning";
3230
3230
  id?: number | undefined;
3231
3231
  }[] | undefined;
3232
3232
  required?: boolean | undefined;
@@ -3255,7 +3255,7 @@ export declare function init(config: AuthHeroConfig): {
3255
3255
  hint?: string | undefined;
3256
3256
  messages?: {
3257
3257
  text: string;
3258
- type: "success" | "error" | "info" | "warning";
3258
+ type: "error" | "success" | "info" | "warning";
3259
3259
  id?: number | undefined;
3260
3260
  }[] | undefined;
3261
3261
  required?: boolean | undefined;
@@ -3270,7 +3270,7 @@ export declare function init(config: AuthHeroConfig): {
3270
3270
  hint?: string | undefined;
3271
3271
  messages?: {
3272
3272
  text: string;
3273
- type: "success" | "error" | "info" | "warning";
3273
+ type: "error" | "success" | "info" | "warning";
3274
3274
  id?: number | undefined;
3275
3275
  }[] | undefined;
3276
3276
  required?: boolean | undefined;
@@ -3291,7 +3291,7 @@ export declare function init(config: AuthHeroConfig): {
3291
3291
  hint?: string | undefined;
3292
3292
  messages?: {
3293
3293
  text: string;
3294
- type: "success" | "error" | "info" | "warning";
3294
+ type: "error" | "success" | "info" | "warning";
3295
3295
  id?: number | undefined;
3296
3296
  }[] | undefined;
3297
3297
  required?: boolean | undefined;
@@ -3316,7 +3316,7 @@ export declare function init(config: AuthHeroConfig): {
3316
3316
  hint?: string | undefined;
3317
3317
  messages?: {
3318
3318
  text: string;
3319
- type: "success" | "error" | "info" | "warning";
3319
+ type: "error" | "success" | "info" | "warning";
3320
3320
  id?: number | undefined;
3321
3321
  }[] | undefined;
3322
3322
  required?: boolean | undefined;
@@ -3335,7 +3335,7 @@ export declare function init(config: AuthHeroConfig): {
3335
3335
  hint?: string | undefined;
3336
3336
  messages?: {
3337
3337
  text: string;
3338
- type: "success" | "error" | "info" | "warning";
3338
+ type: "error" | "success" | "info" | "warning";
3339
3339
  id?: number | undefined;
3340
3340
  }[] | undefined;
3341
3341
  required?: boolean | undefined;
@@ -3355,7 +3355,7 @@ export declare function init(config: AuthHeroConfig): {
3355
3355
  hint?: string | undefined;
3356
3356
  messages?: {
3357
3357
  text: string;
3358
- type: "success" | "error" | "info" | "warning";
3358
+ type: "error" | "success" | "info" | "warning";
3359
3359
  id?: number | undefined;
3360
3360
  }[] | undefined;
3361
3361
  required?: boolean | undefined;
@@ -3374,7 +3374,7 @@ export declare function init(config: AuthHeroConfig): {
3374
3374
  hint?: string | undefined;
3375
3375
  messages?: {
3376
3376
  text: string;
3377
- type: "success" | "error" | "info" | "warning";
3377
+ type: "error" | "success" | "info" | "warning";
3378
3378
  id?: number | undefined;
3379
3379
  }[] | undefined;
3380
3380
  required?: boolean | undefined;
@@ -3396,7 +3396,7 @@ export declare function init(config: AuthHeroConfig): {
3396
3396
  hint?: string | undefined;
3397
3397
  messages?: {
3398
3398
  text: string;
3399
- type: "success" | "error" | "info" | "warning";
3399
+ type: "error" | "success" | "info" | "warning";
3400
3400
  id?: number | undefined;
3401
3401
  }[] | undefined;
3402
3402
  required?: boolean | undefined;
@@ -3418,7 +3418,7 @@ export declare function init(config: AuthHeroConfig): {
3418
3418
  hint?: string | undefined;
3419
3419
  messages?: {
3420
3420
  text: string;
3421
- type: "success" | "error" | "info" | "warning";
3421
+ type: "error" | "success" | "info" | "warning";
3422
3422
  id?: number | undefined;
3423
3423
  }[] | undefined;
3424
3424
  required?: boolean | undefined;
@@ -3437,7 +3437,7 @@ export declare function init(config: AuthHeroConfig): {
3437
3437
  hint?: string | undefined;
3438
3438
  messages?: {
3439
3439
  text: string;
3440
- type: "success" | "error" | "info" | "warning";
3440
+ type: "error" | "success" | "info" | "warning";
3441
3441
  id?: number | undefined;
3442
3442
  }[] | undefined;
3443
3443
  required?: boolean | undefined;
@@ -3462,7 +3462,7 @@ export declare function init(config: AuthHeroConfig): {
3462
3462
  hint?: string | undefined;
3463
3463
  messages?: {
3464
3464
  text: string;
3465
- type: "success" | "error" | "info" | "warning";
3465
+ type: "error" | "success" | "info" | "warning";
3466
3466
  id?: number | undefined;
3467
3467
  }[] | undefined;
3468
3468
  required?: boolean | undefined;
@@ -3483,7 +3483,7 @@ export declare function init(config: AuthHeroConfig): {
3483
3483
  hint?: string | undefined;
3484
3484
  messages?: {
3485
3485
  text: string;
3486
- type: "success" | "error" | "info" | "warning";
3486
+ type: "error" | "success" | "info" | "warning";
3487
3487
  id?: number | undefined;
3488
3488
  }[] | undefined;
3489
3489
  required?: boolean | undefined;
@@ -3504,7 +3504,7 @@ export declare function init(config: AuthHeroConfig): {
3504
3504
  hint?: string | undefined;
3505
3505
  messages?: {
3506
3506
  text: string;
3507
- type: "success" | "error" | "info" | "warning";
3507
+ type: "error" | "success" | "info" | "warning";
3508
3508
  id?: number | undefined;
3509
3509
  }[] | undefined;
3510
3510
  required?: boolean | undefined;
@@ -3752,7 +3752,7 @@ export declare function init(config: AuthHeroConfig): {
3752
3752
  hint?: string | undefined;
3753
3753
  messages?: {
3754
3754
  text: string;
3755
- type: "success" | "error" | "info" | "warning";
3755
+ type: "error" | "success" | "info" | "warning";
3756
3756
  id?: number | undefined;
3757
3757
  }[] | undefined;
3758
3758
  required?: boolean | undefined;
@@ -3770,7 +3770,7 @@ export declare function init(config: AuthHeroConfig): {
3770
3770
  hint?: string | undefined;
3771
3771
  messages?: {
3772
3772
  text: string;
3773
- type: "success" | "error" | "info" | "warning";
3773
+ type: "error" | "success" | "info" | "warning";
3774
3774
  id?: number | undefined;
3775
3775
  }[] | undefined;
3776
3776
  required?: boolean | undefined;
@@ -3794,7 +3794,7 @@ export declare function init(config: AuthHeroConfig): {
3794
3794
  hint?: string | undefined;
3795
3795
  messages?: {
3796
3796
  text: string;
3797
- type: "success" | "error" | "info" | "warning";
3797
+ type: "error" | "success" | "info" | "warning";
3798
3798
  id?: number | undefined;
3799
3799
  }[] | undefined;
3800
3800
  required?: boolean | undefined;
@@ -3818,7 +3818,7 @@ export declare function init(config: AuthHeroConfig): {
3818
3818
  hint?: string | undefined;
3819
3819
  messages?: {
3820
3820
  text: string;
3821
- type: "success" | "error" | "info" | "warning";
3821
+ type: "error" | "success" | "info" | "warning";
3822
3822
  id?: number | undefined;
3823
3823
  }[] | undefined;
3824
3824
  required?: boolean | undefined;
@@ -3847,7 +3847,7 @@ export declare function init(config: AuthHeroConfig): {
3847
3847
  hint?: string | undefined;
3848
3848
  messages?: {
3849
3849
  text: string;
3850
- type: "success" | "error" | "info" | "warning";
3850
+ type: "error" | "success" | "info" | "warning";
3851
3851
  id?: number | undefined;
3852
3852
  }[] | undefined;
3853
3853
  required?: boolean | undefined;
@@ -3862,7 +3862,7 @@ export declare function init(config: AuthHeroConfig): {
3862
3862
  hint?: string | undefined;
3863
3863
  messages?: {
3864
3864
  text: string;
3865
- type: "success" | "error" | "info" | "warning";
3865
+ type: "error" | "success" | "info" | "warning";
3866
3866
  id?: number | undefined;
3867
3867
  }[] | undefined;
3868
3868
  required?: boolean | undefined;
@@ -3883,7 +3883,7 @@ export declare function init(config: AuthHeroConfig): {
3883
3883
  hint?: string | undefined;
3884
3884
  messages?: {
3885
3885
  text: string;
3886
- type: "success" | "error" | "info" | "warning";
3886
+ type: "error" | "success" | "info" | "warning";
3887
3887
  id?: number | undefined;
3888
3888
  }[] | undefined;
3889
3889
  required?: boolean | undefined;
@@ -3908,7 +3908,7 @@ export declare function init(config: AuthHeroConfig): {
3908
3908
  hint?: string | undefined;
3909
3909
  messages?: {
3910
3910
  text: string;
3911
- type: "success" | "error" | "info" | "warning";
3911
+ type: "error" | "success" | "info" | "warning";
3912
3912
  id?: number | undefined;
3913
3913
  }[] | undefined;
3914
3914
  required?: boolean | undefined;
@@ -3927,7 +3927,7 @@ export declare function init(config: AuthHeroConfig): {
3927
3927
  hint?: string | undefined;
3928
3928
  messages?: {
3929
3929
  text: string;
3930
- type: "success" | "error" | "info" | "warning";
3930
+ type: "error" | "success" | "info" | "warning";
3931
3931
  id?: number | undefined;
3932
3932
  }[] | undefined;
3933
3933
  required?: boolean | undefined;
@@ -3947,7 +3947,7 @@ export declare function init(config: AuthHeroConfig): {
3947
3947
  hint?: string | undefined;
3948
3948
  messages?: {
3949
3949
  text: string;
3950
- type: "success" | "error" | "info" | "warning";
3950
+ type: "error" | "success" | "info" | "warning";
3951
3951
  id?: number | undefined;
3952
3952
  }[] | undefined;
3953
3953
  required?: boolean | undefined;
@@ -3966,7 +3966,7 @@ export declare function init(config: AuthHeroConfig): {
3966
3966
  hint?: string | undefined;
3967
3967
  messages?: {
3968
3968
  text: string;
3969
- type: "success" | "error" | "info" | "warning";
3969
+ type: "error" | "success" | "info" | "warning";
3970
3970
  id?: number | undefined;
3971
3971
  }[] | undefined;
3972
3972
  required?: boolean | undefined;
@@ -3988,7 +3988,7 @@ export declare function init(config: AuthHeroConfig): {
3988
3988
  hint?: string | undefined;
3989
3989
  messages?: {
3990
3990
  text: string;
3991
- type: "success" | "error" | "info" | "warning";
3991
+ type: "error" | "success" | "info" | "warning";
3992
3992
  id?: number | undefined;
3993
3993
  }[] | undefined;
3994
3994
  required?: boolean | undefined;
@@ -4010,7 +4010,7 @@ export declare function init(config: AuthHeroConfig): {
4010
4010
  hint?: string | undefined;
4011
4011
  messages?: {
4012
4012
  text: string;
4013
- type: "success" | "error" | "info" | "warning";
4013
+ type: "error" | "success" | "info" | "warning";
4014
4014
  id?: number | undefined;
4015
4015
  }[] | undefined;
4016
4016
  required?: boolean | undefined;
@@ -4029,7 +4029,7 @@ export declare function init(config: AuthHeroConfig): {
4029
4029
  hint?: string | undefined;
4030
4030
  messages?: {
4031
4031
  text: string;
4032
- type: "success" | "error" | "info" | "warning";
4032
+ type: "error" | "success" | "info" | "warning";
4033
4033
  id?: number | undefined;
4034
4034
  }[] | undefined;
4035
4035
  required?: boolean | undefined;
@@ -4054,7 +4054,7 @@ export declare function init(config: AuthHeroConfig): {
4054
4054
  hint?: string | undefined;
4055
4055
  messages?: {
4056
4056
  text: string;
4057
- type: "success" | "error" | "info" | "warning";
4057
+ type: "error" | "success" | "info" | "warning";
4058
4058
  id?: number | undefined;
4059
4059
  }[] | undefined;
4060
4060
  required?: boolean | undefined;
@@ -4075,7 +4075,7 @@ export declare function init(config: AuthHeroConfig): {
4075
4075
  hint?: string | undefined;
4076
4076
  messages?: {
4077
4077
  text: string;
4078
- type: "success" | "error" | "info" | "warning";
4078
+ type: "error" | "success" | "info" | "warning";
4079
4079
  id?: number | undefined;
4080
4080
  }[] | undefined;
4081
4081
  required?: boolean | undefined;
@@ -4096,7 +4096,7 @@ export declare function init(config: AuthHeroConfig): {
4096
4096
  hint?: string | undefined;
4097
4097
  messages?: {
4098
4098
  text: string;
4099
- type: "success" | "error" | "info" | "warning";
4099
+ type: "error" | "success" | "info" | "warning";
4100
4100
  id?: number | undefined;
4101
4101
  }[] | undefined;
4102
4102
  required?: boolean | undefined;
@@ -4350,7 +4350,7 @@ export declare function init(config: AuthHeroConfig): {
4350
4350
  hint?: string | undefined;
4351
4351
  messages?: {
4352
4352
  text: string;
4353
- type: "success" | "error" | "info" | "warning";
4353
+ type: "error" | "success" | "info" | "warning";
4354
4354
  id?: number | undefined;
4355
4355
  }[] | undefined;
4356
4356
  required?: boolean | undefined;
@@ -4368,7 +4368,7 @@ export declare function init(config: AuthHeroConfig): {
4368
4368
  hint?: string | undefined;
4369
4369
  messages?: {
4370
4370
  text: string;
4371
- type: "success" | "error" | "info" | "warning";
4371
+ type: "error" | "success" | "info" | "warning";
4372
4372
  id?: number | undefined;
4373
4373
  }[] | undefined;
4374
4374
  required?: boolean | undefined;
@@ -4392,7 +4392,7 @@ export declare function init(config: AuthHeroConfig): {
4392
4392
  hint?: string | undefined;
4393
4393
  messages?: {
4394
4394
  text: string;
4395
- type: "success" | "error" | "info" | "warning";
4395
+ type: "error" | "success" | "info" | "warning";
4396
4396
  id?: number | undefined;
4397
4397
  }[] | undefined;
4398
4398
  required?: boolean | undefined;
@@ -4416,7 +4416,7 @@ export declare function init(config: AuthHeroConfig): {
4416
4416
  hint?: string | undefined;
4417
4417
  messages?: {
4418
4418
  text: string;
4419
- type: "success" | "error" | "info" | "warning";
4419
+ type: "error" | "success" | "info" | "warning";
4420
4420
  id?: number | undefined;
4421
4421
  }[] | undefined;
4422
4422
  required?: boolean | undefined;
@@ -4441,7 +4441,7 @@ export declare function init(config: AuthHeroConfig): {
4441
4441
  hint?: string | undefined;
4442
4442
  messages?: {
4443
4443
  text: string;
4444
- type: "success" | "error" | "info" | "warning";
4444
+ type: "error" | "success" | "info" | "warning";
4445
4445
  id?: number | undefined;
4446
4446
  }[] | undefined;
4447
4447
  required?: boolean | undefined;
@@ -4456,7 +4456,7 @@ export declare function init(config: AuthHeroConfig): {
4456
4456
  hint?: string | undefined;
4457
4457
  messages?: {
4458
4458
  text: string;
4459
- type: "success" | "error" | "info" | "warning";
4459
+ type: "error" | "success" | "info" | "warning";
4460
4460
  id?: number | undefined;
4461
4461
  }[] | undefined;
4462
4462
  required?: boolean | undefined;
@@ -4477,7 +4477,7 @@ export declare function init(config: AuthHeroConfig): {
4477
4477
  hint?: string | undefined;
4478
4478
  messages?: {
4479
4479
  text: string;
4480
- type: "success" | "error" | "info" | "warning";
4480
+ type: "error" | "success" | "info" | "warning";
4481
4481
  id?: number | undefined;
4482
4482
  }[] | undefined;
4483
4483
  required?: boolean | undefined;
@@ -4502,7 +4502,7 @@ export declare function init(config: AuthHeroConfig): {
4502
4502
  hint?: string | undefined;
4503
4503
  messages?: {
4504
4504
  text: string;
4505
- type: "success" | "error" | "info" | "warning";
4505
+ type: "error" | "success" | "info" | "warning";
4506
4506
  id?: number | undefined;
4507
4507
  }[] | undefined;
4508
4508
  required?: boolean | undefined;
@@ -4521,7 +4521,7 @@ export declare function init(config: AuthHeroConfig): {
4521
4521
  hint?: string | undefined;
4522
4522
  messages?: {
4523
4523
  text: string;
4524
- type: "success" | "error" | "info" | "warning";
4524
+ type: "error" | "success" | "info" | "warning";
4525
4525
  id?: number | undefined;
4526
4526
  }[] | undefined;
4527
4527
  required?: boolean | undefined;
@@ -4541,7 +4541,7 @@ export declare function init(config: AuthHeroConfig): {
4541
4541
  hint?: string | undefined;
4542
4542
  messages?: {
4543
4543
  text: string;
4544
- type: "success" | "error" | "info" | "warning";
4544
+ type: "error" | "success" | "info" | "warning";
4545
4545
  id?: number | undefined;
4546
4546
  }[] | undefined;
4547
4547
  required?: boolean | undefined;
@@ -4560,7 +4560,7 @@ export declare function init(config: AuthHeroConfig): {
4560
4560
  hint?: string | undefined;
4561
4561
  messages?: {
4562
4562
  text: string;
4563
- type: "success" | "error" | "info" | "warning";
4563
+ type: "error" | "success" | "info" | "warning";
4564
4564
  id?: number | undefined;
4565
4565
  }[] | undefined;
4566
4566
  required?: boolean | undefined;
@@ -4582,7 +4582,7 @@ export declare function init(config: AuthHeroConfig): {
4582
4582
  hint?: string | undefined;
4583
4583
  messages?: {
4584
4584
  text: string;
4585
- type: "success" | "error" | "info" | "warning";
4585
+ type: "error" | "success" | "info" | "warning";
4586
4586
  id?: number | undefined;
4587
4587
  }[] | undefined;
4588
4588
  required?: boolean | undefined;
@@ -4604,7 +4604,7 @@ export declare function init(config: AuthHeroConfig): {
4604
4604
  hint?: string | undefined;
4605
4605
  messages?: {
4606
4606
  text: string;
4607
- type: "success" | "error" | "info" | "warning";
4607
+ type: "error" | "success" | "info" | "warning";
4608
4608
  id?: number | undefined;
4609
4609
  }[] | undefined;
4610
4610
  required?: boolean | undefined;
@@ -4623,7 +4623,7 @@ export declare function init(config: AuthHeroConfig): {
4623
4623
  hint?: string | undefined;
4624
4624
  messages?: {
4625
4625
  text: string;
4626
- type: "success" | "error" | "info" | "warning";
4626
+ type: "error" | "success" | "info" | "warning";
4627
4627
  id?: number | undefined;
4628
4628
  }[] | undefined;
4629
4629
  required?: boolean | undefined;
@@ -4648,7 +4648,7 @@ export declare function init(config: AuthHeroConfig): {
4648
4648
  hint?: string | undefined;
4649
4649
  messages?: {
4650
4650
  text: string;
4651
- type: "success" | "error" | "info" | "warning";
4651
+ type: "error" | "success" | "info" | "warning";
4652
4652
  id?: number | undefined;
4653
4653
  }[] | undefined;
4654
4654
  required?: boolean | undefined;
@@ -4669,7 +4669,7 @@ export declare function init(config: AuthHeroConfig): {
4669
4669
  hint?: string | undefined;
4670
4670
  messages?: {
4671
4671
  text: string;
4672
- type: "success" | "error" | "info" | "warning";
4672
+ type: "error" | "success" | "info" | "warning";
4673
4673
  id?: number | undefined;
4674
4674
  }[] | undefined;
4675
4675
  required?: boolean | undefined;
@@ -4690,7 +4690,7 @@ export declare function init(config: AuthHeroConfig): {
4690
4690
  hint?: string | undefined;
4691
4691
  messages?: {
4692
4692
  text: string;
4693
- type: "success" | "error" | "info" | "warning";
4693
+ type: "error" | "success" | "info" | "warning";
4694
4694
  id?: number | undefined;
4695
4695
  }[] | undefined;
4696
4696
  required?: boolean | undefined;
@@ -4921,7 +4921,7 @@ export declare function init(config: AuthHeroConfig): {
4921
4921
  hint?: string | undefined;
4922
4922
  messages?: {
4923
4923
  text: string;
4924
- type: "success" | "error" | "info" | "warning";
4924
+ type: "error" | "success" | "info" | "warning";
4925
4925
  id?: number | undefined;
4926
4926
  }[] | undefined;
4927
4927
  required?: boolean | undefined;
@@ -4939,7 +4939,7 @@ export declare function init(config: AuthHeroConfig): {
4939
4939
  hint?: string | undefined;
4940
4940
  messages?: {
4941
4941
  text: string;
4942
- type: "success" | "error" | "info" | "warning";
4942
+ type: "error" | "success" | "info" | "warning";
4943
4943
  id?: number | undefined;
4944
4944
  }[] | undefined;
4945
4945
  required?: boolean | undefined;
@@ -4963,7 +4963,7 @@ export declare function init(config: AuthHeroConfig): {
4963
4963
  hint?: string | undefined;
4964
4964
  messages?: {
4965
4965
  text: string;
4966
- type: "success" | "error" | "info" | "warning";
4966
+ type: "error" | "success" | "info" | "warning";
4967
4967
  id?: number | undefined;
4968
4968
  }[] | undefined;
4969
4969
  required?: boolean | undefined;
@@ -4987,7 +4987,7 @@ export declare function init(config: AuthHeroConfig): {
4987
4987
  hint?: string | undefined;
4988
4988
  messages?: {
4989
4989
  text: string;
4990
- type: "success" | "error" | "info" | "warning";
4990
+ type: "error" | "success" | "info" | "warning";
4991
4991
  id?: number | undefined;
4992
4992
  }[] | undefined;
4993
4993
  required?: boolean | undefined;
@@ -5016,7 +5016,7 @@ export declare function init(config: AuthHeroConfig): {
5016
5016
  hint?: string | undefined;
5017
5017
  messages?: {
5018
5018
  text: string;
5019
- type: "success" | "error" | "info" | "warning";
5019
+ type: "error" | "success" | "info" | "warning";
5020
5020
  id?: number | undefined;
5021
5021
  }[] | undefined;
5022
5022
  required?: boolean | undefined;
@@ -5031,7 +5031,7 @@ export declare function init(config: AuthHeroConfig): {
5031
5031
  hint?: string | undefined;
5032
5032
  messages?: {
5033
5033
  text: string;
5034
- type: "success" | "error" | "info" | "warning";
5034
+ type: "error" | "success" | "info" | "warning";
5035
5035
  id?: number | undefined;
5036
5036
  }[] | undefined;
5037
5037
  required?: boolean | undefined;
@@ -5052,7 +5052,7 @@ export declare function init(config: AuthHeroConfig): {
5052
5052
  hint?: string | undefined;
5053
5053
  messages?: {
5054
5054
  text: string;
5055
- type: "success" | "error" | "info" | "warning";
5055
+ type: "error" | "success" | "info" | "warning";
5056
5056
  id?: number | undefined;
5057
5057
  }[] | undefined;
5058
5058
  required?: boolean | undefined;
@@ -5077,7 +5077,7 @@ export declare function init(config: AuthHeroConfig): {
5077
5077
  hint?: string | undefined;
5078
5078
  messages?: {
5079
5079
  text: string;
5080
- type: "success" | "error" | "info" | "warning";
5080
+ type: "error" | "success" | "info" | "warning";
5081
5081
  id?: number | undefined;
5082
5082
  }[] | undefined;
5083
5083
  required?: boolean | undefined;
@@ -5096,7 +5096,7 @@ export declare function init(config: AuthHeroConfig): {
5096
5096
  hint?: string | undefined;
5097
5097
  messages?: {
5098
5098
  text: string;
5099
- type: "success" | "error" | "info" | "warning";
5099
+ type: "error" | "success" | "info" | "warning";
5100
5100
  id?: number | undefined;
5101
5101
  }[] | undefined;
5102
5102
  required?: boolean | undefined;
@@ -5116,7 +5116,7 @@ export declare function init(config: AuthHeroConfig): {
5116
5116
  hint?: string | undefined;
5117
5117
  messages?: {
5118
5118
  text: string;
5119
- type: "success" | "error" | "info" | "warning";
5119
+ type: "error" | "success" | "info" | "warning";
5120
5120
  id?: number | undefined;
5121
5121
  }[] | undefined;
5122
5122
  required?: boolean | undefined;
@@ -5135,7 +5135,7 @@ export declare function init(config: AuthHeroConfig): {
5135
5135
  hint?: string | undefined;
5136
5136
  messages?: {
5137
5137
  text: string;
5138
- type: "success" | "error" | "info" | "warning";
5138
+ type: "error" | "success" | "info" | "warning";
5139
5139
  id?: number | undefined;
5140
5140
  }[] | undefined;
5141
5141
  required?: boolean | undefined;
@@ -5157,7 +5157,7 @@ export declare function init(config: AuthHeroConfig): {
5157
5157
  hint?: string | undefined;
5158
5158
  messages?: {
5159
5159
  text: string;
5160
- type: "success" | "error" | "info" | "warning";
5160
+ type: "error" | "success" | "info" | "warning";
5161
5161
  id?: number | undefined;
5162
5162
  }[] | undefined;
5163
5163
  required?: boolean | undefined;
@@ -5179,7 +5179,7 @@ export declare function init(config: AuthHeroConfig): {
5179
5179
  hint?: string | undefined;
5180
5180
  messages?: {
5181
5181
  text: string;
5182
- type: "success" | "error" | "info" | "warning";
5182
+ type: "error" | "success" | "info" | "warning";
5183
5183
  id?: number | undefined;
5184
5184
  }[] | undefined;
5185
5185
  required?: boolean | undefined;
@@ -5198,7 +5198,7 @@ export declare function init(config: AuthHeroConfig): {
5198
5198
  hint?: string | undefined;
5199
5199
  messages?: {
5200
5200
  text: string;
5201
- type: "success" | "error" | "info" | "warning";
5201
+ type: "error" | "success" | "info" | "warning";
5202
5202
  id?: number | undefined;
5203
5203
  }[] | undefined;
5204
5204
  required?: boolean | undefined;
@@ -5223,7 +5223,7 @@ export declare function init(config: AuthHeroConfig): {
5223
5223
  hint?: string | undefined;
5224
5224
  messages?: {
5225
5225
  text: string;
5226
- type: "success" | "error" | "info" | "warning";
5226
+ type: "error" | "success" | "info" | "warning";
5227
5227
  id?: number | undefined;
5228
5228
  }[] | undefined;
5229
5229
  required?: boolean | undefined;
@@ -5244,7 +5244,7 @@ export declare function init(config: AuthHeroConfig): {
5244
5244
  hint?: string | undefined;
5245
5245
  messages?: {
5246
5246
  text: string;
5247
- type: "success" | "error" | "info" | "warning";
5247
+ type: "error" | "success" | "info" | "warning";
5248
5248
  id?: number | undefined;
5249
5249
  }[] | undefined;
5250
5250
  required?: boolean | undefined;
@@ -5265,7 +5265,7 @@ export declare function init(config: AuthHeroConfig): {
5265
5265
  hint?: string | undefined;
5266
5266
  messages?: {
5267
5267
  text: string;
5268
- type: "success" | "error" | "info" | "warning";
5268
+ type: "error" | "success" | "info" | "warning";
5269
5269
  id?: number | undefined;
5270
5270
  }[] | undefined;
5271
5271
  required?: boolean | undefined;
@@ -5498,7 +5498,7 @@ export declare function init(config: AuthHeroConfig): {
5498
5498
  hint?: string | undefined;
5499
5499
  messages?: {
5500
5500
  text: string;
5501
- type: "success" | "error" | "info" | "warning";
5501
+ type: "error" | "success" | "info" | "warning";
5502
5502
  id?: number | undefined;
5503
5503
  }[] | undefined;
5504
5504
  required?: boolean | undefined;
@@ -5516,7 +5516,7 @@ export declare function init(config: AuthHeroConfig): {
5516
5516
  hint?: string | undefined;
5517
5517
  messages?: {
5518
5518
  text: string;
5519
- type: "success" | "error" | "info" | "warning";
5519
+ type: "error" | "success" | "info" | "warning";
5520
5520
  id?: number | undefined;
5521
5521
  }[] | undefined;
5522
5522
  required?: boolean | undefined;
@@ -5540,7 +5540,7 @@ export declare function init(config: AuthHeroConfig): {
5540
5540
  hint?: string | undefined;
5541
5541
  messages?: {
5542
5542
  text: string;
5543
- type: "success" | "error" | "info" | "warning";
5543
+ type: "error" | "success" | "info" | "warning";
5544
5544
  id?: number | undefined;
5545
5545
  }[] | undefined;
5546
5546
  required?: boolean | undefined;
@@ -5564,7 +5564,7 @@ export declare function init(config: AuthHeroConfig): {
5564
5564
  hint?: string | undefined;
5565
5565
  messages?: {
5566
5566
  text: string;
5567
- type: "success" | "error" | "info" | "warning";
5567
+ type: "error" | "success" | "info" | "warning";
5568
5568
  id?: number | undefined;
5569
5569
  }[] | undefined;
5570
5570
  required?: boolean | undefined;
@@ -5589,7 +5589,7 @@ export declare function init(config: AuthHeroConfig): {
5589
5589
  hint?: string | undefined;
5590
5590
  messages?: {
5591
5591
  text: string;
5592
- type: "success" | "error" | "info" | "warning";
5592
+ type: "error" | "success" | "info" | "warning";
5593
5593
  id?: number | undefined;
5594
5594
  }[] | undefined;
5595
5595
  required?: boolean | undefined;
@@ -5604,7 +5604,7 @@ export declare function init(config: AuthHeroConfig): {
5604
5604
  hint?: string | undefined;
5605
5605
  messages?: {
5606
5606
  text: string;
5607
- type: "success" | "error" | "info" | "warning";
5607
+ type: "error" | "success" | "info" | "warning";
5608
5608
  id?: number | undefined;
5609
5609
  }[] | undefined;
5610
5610
  required?: boolean | undefined;
@@ -5625,7 +5625,7 @@ export declare function init(config: AuthHeroConfig): {
5625
5625
  hint?: string | undefined;
5626
5626
  messages?: {
5627
5627
  text: string;
5628
- type: "success" | "error" | "info" | "warning";
5628
+ type: "error" | "success" | "info" | "warning";
5629
5629
  id?: number | undefined;
5630
5630
  }[] | undefined;
5631
5631
  required?: boolean | undefined;
@@ -5650,7 +5650,7 @@ export declare function init(config: AuthHeroConfig): {
5650
5650
  hint?: string | undefined;
5651
5651
  messages?: {
5652
5652
  text: string;
5653
- type: "success" | "error" | "info" | "warning";
5653
+ type: "error" | "success" | "info" | "warning";
5654
5654
  id?: number | undefined;
5655
5655
  }[] | undefined;
5656
5656
  required?: boolean | undefined;
@@ -5669,7 +5669,7 @@ export declare function init(config: AuthHeroConfig): {
5669
5669
  hint?: string | undefined;
5670
5670
  messages?: {
5671
5671
  text: string;
5672
- type: "success" | "error" | "info" | "warning";
5672
+ type: "error" | "success" | "info" | "warning";
5673
5673
  id?: number | undefined;
5674
5674
  }[] | undefined;
5675
5675
  required?: boolean | undefined;
@@ -5689,7 +5689,7 @@ export declare function init(config: AuthHeroConfig): {
5689
5689
  hint?: string | undefined;
5690
5690
  messages?: {
5691
5691
  text: string;
5692
- type: "success" | "error" | "info" | "warning";
5692
+ type: "error" | "success" | "info" | "warning";
5693
5693
  id?: number | undefined;
5694
5694
  }[] | undefined;
5695
5695
  required?: boolean | undefined;
@@ -5708,7 +5708,7 @@ export declare function init(config: AuthHeroConfig): {
5708
5708
  hint?: string | undefined;
5709
5709
  messages?: {
5710
5710
  text: string;
5711
- type: "success" | "error" | "info" | "warning";
5711
+ type: "error" | "success" | "info" | "warning";
5712
5712
  id?: number | undefined;
5713
5713
  }[] | undefined;
5714
5714
  required?: boolean | undefined;
@@ -5730,7 +5730,7 @@ export declare function init(config: AuthHeroConfig): {
5730
5730
  hint?: string | undefined;
5731
5731
  messages?: {
5732
5732
  text: string;
5733
- type: "success" | "error" | "info" | "warning";
5733
+ type: "error" | "success" | "info" | "warning";
5734
5734
  id?: number | undefined;
5735
5735
  }[] | undefined;
5736
5736
  required?: boolean | undefined;
@@ -5752,7 +5752,7 @@ export declare function init(config: AuthHeroConfig): {
5752
5752
  hint?: string | undefined;
5753
5753
  messages?: {
5754
5754
  text: string;
5755
- type: "success" | "error" | "info" | "warning";
5755
+ type: "error" | "success" | "info" | "warning";
5756
5756
  id?: number | undefined;
5757
5757
  }[] | undefined;
5758
5758
  required?: boolean | undefined;
@@ -5771,7 +5771,7 @@ export declare function init(config: AuthHeroConfig): {
5771
5771
  hint?: string | undefined;
5772
5772
  messages?: {
5773
5773
  text: string;
5774
- type: "success" | "error" | "info" | "warning";
5774
+ type: "error" | "success" | "info" | "warning";
5775
5775
  id?: number | undefined;
5776
5776
  }[] | undefined;
5777
5777
  required?: boolean | undefined;
@@ -5796,7 +5796,7 @@ export declare function init(config: AuthHeroConfig): {
5796
5796
  hint?: string | undefined;
5797
5797
  messages?: {
5798
5798
  text: string;
5799
- type: "success" | "error" | "info" | "warning";
5799
+ type: "error" | "success" | "info" | "warning";
5800
5800
  id?: number | undefined;
5801
5801
  }[] | undefined;
5802
5802
  required?: boolean | undefined;
@@ -5817,7 +5817,7 @@ export declare function init(config: AuthHeroConfig): {
5817
5817
  hint?: string | undefined;
5818
5818
  messages?: {
5819
5819
  text: string;
5820
- type: "success" | "error" | "info" | "warning";
5820
+ type: "error" | "success" | "info" | "warning";
5821
5821
  id?: number | undefined;
5822
5822
  }[] | undefined;
5823
5823
  required?: boolean | undefined;
@@ -5838,7 +5838,7 @@ export declare function init(config: AuthHeroConfig): {
5838
5838
  hint?: string | undefined;
5839
5839
  messages?: {
5840
5840
  text: string;
5841
- type: "success" | "error" | "info" | "warning";
5841
+ type: "error" | "success" | "info" | "warning";
5842
5842
  id?: number | undefined;
5843
5843
  }[] | undefined;
5844
5844
  required?: boolean | undefined;
@@ -6069,7 +6069,7 @@ export declare function init(config: AuthHeroConfig): {
6069
6069
  hint?: string | undefined;
6070
6070
  messages?: {
6071
6071
  text: string;
6072
- type: "success" | "error" | "info" | "warning";
6072
+ type: "error" | "success" | "info" | "warning";
6073
6073
  id?: number | undefined;
6074
6074
  }[] | undefined;
6075
6075
  required?: boolean | undefined;
@@ -6087,7 +6087,7 @@ export declare function init(config: AuthHeroConfig): {
6087
6087
  hint?: string | undefined;
6088
6088
  messages?: {
6089
6089
  text: string;
6090
- type: "success" | "error" | "info" | "warning";
6090
+ type: "error" | "success" | "info" | "warning";
6091
6091
  id?: number | undefined;
6092
6092
  }[] | undefined;
6093
6093
  required?: boolean | undefined;
@@ -6111,7 +6111,7 @@ export declare function init(config: AuthHeroConfig): {
6111
6111
  hint?: string | undefined;
6112
6112
  messages?: {
6113
6113
  text: string;
6114
- type: "success" | "error" | "info" | "warning";
6114
+ type: "error" | "success" | "info" | "warning";
6115
6115
  id?: number | undefined;
6116
6116
  }[] | undefined;
6117
6117
  required?: boolean | undefined;
@@ -6135,7 +6135,7 @@ export declare function init(config: AuthHeroConfig): {
6135
6135
  hint?: string | undefined;
6136
6136
  messages?: {
6137
6137
  text: string;
6138
- type: "success" | "error" | "info" | "warning";
6138
+ type: "error" | "success" | "info" | "warning";
6139
6139
  id?: number | undefined;
6140
6140
  }[] | undefined;
6141
6141
  required?: boolean | undefined;
@@ -6164,7 +6164,7 @@ export declare function init(config: AuthHeroConfig): {
6164
6164
  hint?: string | undefined;
6165
6165
  messages?: {
6166
6166
  text: string;
6167
- type: "success" | "error" | "info" | "warning";
6167
+ type: "error" | "success" | "info" | "warning";
6168
6168
  id?: number | undefined;
6169
6169
  }[] | undefined;
6170
6170
  required?: boolean | undefined;
@@ -6179,7 +6179,7 @@ export declare function init(config: AuthHeroConfig): {
6179
6179
  hint?: string | undefined;
6180
6180
  messages?: {
6181
6181
  text: string;
6182
- type: "success" | "error" | "info" | "warning";
6182
+ type: "error" | "success" | "info" | "warning";
6183
6183
  id?: number | undefined;
6184
6184
  }[] | undefined;
6185
6185
  required?: boolean | undefined;
@@ -6200,7 +6200,7 @@ export declare function init(config: AuthHeroConfig): {
6200
6200
  hint?: string | undefined;
6201
6201
  messages?: {
6202
6202
  text: string;
6203
- type: "success" | "error" | "info" | "warning";
6203
+ type: "error" | "success" | "info" | "warning";
6204
6204
  id?: number | undefined;
6205
6205
  }[] | undefined;
6206
6206
  required?: boolean | undefined;
@@ -6225,7 +6225,7 @@ export declare function init(config: AuthHeroConfig): {
6225
6225
  hint?: string | undefined;
6226
6226
  messages?: {
6227
6227
  text: string;
6228
- type: "success" | "error" | "info" | "warning";
6228
+ type: "error" | "success" | "info" | "warning";
6229
6229
  id?: number | undefined;
6230
6230
  }[] | undefined;
6231
6231
  required?: boolean | undefined;
@@ -6244,7 +6244,7 @@ export declare function init(config: AuthHeroConfig): {
6244
6244
  hint?: string | undefined;
6245
6245
  messages?: {
6246
6246
  text: string;
6247
- type: "success" | "error" | "info" | "warning";
6247
+ type: "error" | "success" | "info" | "warning";
6248
6248
  id?: number | undefined;
6249
6249
  }[] | undefined;
6250
6250
  required?: boolean | undefined;
@@ -6264,7 +6264,7 @@ export declare function init(config: AuthHeroConfig): {
6264
6264
  hint?: string | undefined;
6265
6265
  messages?: {
6266
6266
  text: string;
6267
- type: "success" | "error" | "info" | "warning";
6267
+ type: "error" | "success" | "info" | "warning";
6268
6268
  id?: number | undefined;
6269
6269
  }[] | undefined;
6270
6270
  required?: boolean | undefined;
@@ -6283,7 +6283,7 @@ export declare function init(config: AuthHeroConfig): {
6283
6283
  hint?: string | undefined;
6284
6284
  messages?: {
6285
6285
  text: string;
6286
- type: "success" | "error" | "info" | "warning";
6286
+ type: "error" | "success" | "info" | "warning";
6287
6287
  id?: number | undefined;
6288
6288
  }[] | undefined;
6289
6289
  required?: boolean | undefined;
@@ -6305,7 +6305,7 @@ export declare function init(config: AuthHeroConfig): {
6305
6305
  hint?: string | undefined;
6306
6306
  messages?: {
6307
6307
  text: string;
6308
- type: "success" | "error" | "info" | "warning";
6308
+ type: "error" | "success" | "info" | "warning";
6309
6309
  id?: number | undefined;
6310
6310
  }[] | undefined;
6311
6311
  required?: boolean | undefined;
@@ -6327,7 +6327,7 @@ export declare function init(config: AuthHeroConfig): {
6327
6327
  hint?: string | undefined;
6328
6328
  messages?: {
6329
6329
  text: string;
6330
- type: "success" | "error" | "info" | "warning";
6330
+ type: "error" | "success" | "info" | "warning";
6331
6331
  id?: number | undefined;
6332
6332
  }[] | undefined;
6333
6333
  required?: boolean | undefined;
@@ -6346,7 +6346,7 @@ export declare function init(config: AuthHeroConfig): {
6346
6346
  hint?: string | undefined;
6347
6347
  messages?: {
6348
6348
  text: string;
6349
- type: "success" | "error" | "info" | "warning";
6349
+ type: "error" | "success" | "info" | "warning";
6350
6350
  id?: number | undefined;
6351
6351
  }[] | undefined;
6352
6352
  required?: boolean | undefined;
@@ -6371,7 +6371,7 @@ export declare function init(config: AuthHeroConfig): {
6371
6371
  hint?: string | undefined;
6372
6372
  messages?: {
6373
6373
  text: string;
6374
- type: "success" | "error" | "info" | "warning";
6374
+ type: "error" | "success" | "info" | "warning";
6375
6375
  id?: number | undefined;
6376
6376
  }[] | undefined;
6377
6377
  required?: boolean | undefined;
@@ -6392,7 +6392,7 @@ export declare function init(config: AuthHeroConfig): {
6392
6392
  hint?: string | undefined;
6393
6393
  messages?: {
6394
6394
  text: string;
6395
- type: "success" | "error" | "info" | "warning";
6395
+ type: "error" | "success" | "info" | "warning";
6396
6396
  id?: number | undefined;
6397
6397
  }[] | undefined;
6398
6398
  required?: boolean | undefined;
@@ -6413,7 +6413,7 @@ export declare function init(config: AuthHeroConfig): {
6413
6413
  hint?: string | undefined;
6414
6414
  messages?: {
6415
6415
  text: string;
6416
- type: "success" | "error" | "info" | "warning";
6416
+ type: "error" | "success" | "info" | "warning";
6417
6417
  id?: number | undefined;
6418
6418
  }[] | undefined;
6419
6419
  required?: boolean | undefined;
@@ -6643,7 +6643,7 @@ export declare function init(config: AuthHeroConfig): {
6643
6643
  };
6644
6644
  };
6645
6645
  output: {
6646
- 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";
6646
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6647
6647
  language: string;
6648
6648
  }[];
6649
6649
  outputFormat: "json";
@@ -6681,7 +6681,7 @@ export declare function init(config: AuthHeroConfig): {
6681
6681
  $get: {
6682
6682
  input: {
6683
6683
  param: {
6684
- 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";
6684
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6685
6685
  language: string;
6686
6686
  };
6687
6687
  } & {
@@ -6703,7 +6703,7 @@ export declare function init(config: AuthHeroConfig): {
6703
6703
  $put: {
6704
6704
  input: {
6705
6705
  param: {
6706
- 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";
6706
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6707
6707
  language: string;
6708
6708
  };
6709
6709
  } & {
@@ -6727,7 +6727,7 @@ export declare function init(config: AuthHeroConfig): {
6727
6727
  $delete: {
6728
6728
  input: {
6729
6729
  param: {
6730
- 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";
6730
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6731
6731
  language: string;
6732
6732
  };
6733
6733
  } & {
@@ -7589,7 +7589,7 @@ export declare function init(config: AuthHeroConfig): {
7589
7589
  };
7590
7590
  } | {
7591
7591
  mode: "inline";
7592
- status: "success" | "error";
7592
+ status: "error" | "success";
7593
7593
  connection_id: string;
7594
7594
  connection_name: string;
7595
7595
  strategy: string;
@@ -8816,7 +8816,7 @@ export declare function init(config: AuthHeroConfig): {
8816
8816
  };
8817
8817
  };
8818
8818
  output: {
8819
- type: "fn" | "i" | "feacft" | "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" | "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";
8819
+ type: "fc" | "fd" | "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8820
8820
  date: string;
8821
8821
  isMobile: boolean;
8822
8822
  log_id: string;
@@ -8855,7 +8855,7 @@ export declare function init(config: AuthHeroConfig): {
8855
8855
  limit: number;
8856
8856
  length: number;
8857
8857
  logs: {
8858
- type: "fn" | "i" | "feacft" | "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" | "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";
8858
+ type: "fc" | "fd" | "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8859
8859
  date: string;
8860
8860
  isMobile: boolean;
8861
8861
  log_id: string;
@@ -8909,7 +8909,7 @@ export declare function init(config: AuthHeroConfig): {
8909
8909
  };
8910
8910
  };
8911
8911
  output: {
8912
- type: "fn" | "i" | "feacft" | "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" | "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";
8912
+ type: "fc" | "fd" | "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8913
8913
  date: string;
8914
8914
  isMobile: boolean;
8915
8915
  log_id: string;
@@ -11053,7 +11053,7 @@ export declare function init(config: AuthHeroConfig): {
11053
11053
  };
11054
11054
  };
11055
11055
  output: {
11056
- type: "fn" | "i" | "feacft" | "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" | "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";
11056
+ type: "fc" | "fd" | "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11057
11057
  date: string;
11058
11058
  isMobile: boolean;
11059
11059
  log_id: string;
@@ -11092,7 +11092,7 @@ export declare function init(config: AuthHeroConfig): {
11092
11092
  limit: number;
11093
11093
  length: number;
11094
11094
  logs: {
11095
- type: "fn" | "i" | "feacft" | "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" | "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";
11095
+ type: "fc" | "fd" | "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11096
11096
  date: string;
11097
11097
  isMobile: boolean;
11098
11098
  log_id: string;
@@ -11407,7 +11407,7 @@ export declare function init(config: AuthHeroConfig): {
11407
11407
  };
11408
11408
  } & {
11409
11409
  json: {
11410
- 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";
11410
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11411
11411
  body: string;
11412
11412
  from: string;
11413
11413
  subject: string;
@@ -11428,7 +11428,7 @@ export declare function init(config: AuthHeroConfig): {
11428
11428
  };
11429
11429
  } & {
11430
11430
  json: {
11431
- 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";
11431
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11432
11432
  body: string;
11433
11433
  from: string;
11434
11434
  subject: string;
@@ -11440,7 +11440,7 @@ export declare function init(config: AuthHeroConfig): {
11440
11440
  };
11441
11441
  };
11442
11442
  output: {
11443
- 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";
11443
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11444
11444
  body: string;
11445
11445
  from: string;
11446
11446
  subject: string;
@@ -11459,7 +11459,7 @@ export declare function init(config: AuthHeroConfig): {
11459
11459
  $get: {
11460
11460
  input: {
11461
11461
  param: {
11462
- 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";
11462
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11463
11463
  };
11464
11464
  } & {
11465
11465
  header: {
@@ -11472,7 +11472,7 @@ export declare function init(config: AuthHeroConfig): {
11472
11472
  } | {
11473
11473
  input: {
11474
11474
  param: {
11475
- 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";
11475
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11476
11476
  };
11477
11477
  } & {
11478
11478
  header: {
@@ -11480,7 +11480,7 @@ export declare function init(config: AuthHeroConfig): {
11480
11480
  };
11481
11481
  };
11482
11482
  output: {
11483
- 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";
11483
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11484
11484
  body: string;
11485
11485
  from: string;
11486
11486
  subject: string;
@@ -11499,7 +11499,7 @@ export declare function init(config: AuthHeroConfig): {
11499
11499
  $put: {
11500
11500
  input: {
11501
11501
  param: {
11502
- 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";
11502
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11503
11503
  };
11504
11504
  } & {
11505
11505
  header: {
@@ -11507,7 +11507,7 @@ export declare function init(config: AuthHeroConfig): {
11507
11507
  };
11508
11508
  } & {
11509
11509
  json: {
11510
- 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";
11510
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11511
11511
  body: string;
11512
11512
  from: string;
11513
11513
  subject: string;
@@ -11519,7 +11519,7 @@ export declare function init(config: AuthHeroConfig): {
11519
11519
  };
11520
11520
  };
11521
11521
  output: {
11522
- 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";
11522
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11523
11523
  body: string;
11524
11524
  from: string;
11525
11525
  subject: string;
@@ -11538,7 +11538,7 @@ export declare function init(config: AuthHeroConfig): {
11538
11538
  $patch: {
11539
11539
  input: {
11540
11540
  param: {
11541
- 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";
11541
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11542
11542
  };
11543
11543
  } & {
11544
11544
  header: {
@@ -11546,7 +11546,7 @@ export declare function init(config: AuthHeroConfig): {
11546
11546
  };
11547
11547
  } & {
11548
11548
  json: {
11549
- 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;
11549
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11550
11550
  body?: string | undefined;
11551
11551
  from?: string | undefined;
11552
11552
  subject?: string | undefined;
@@ -11563,7 +11563,7 @@ export declare function init(config: AuthHeroConfig): {
11563
11563
  } | {
11564
11564
  input: {
11565
11565
  param: {
11566
- 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";
11566
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11567
11567
  };
11568
11568
  } & {
11569
11569
  header: {
@@ -11571,7 +11571,7 @@ export declare function init(config: AuthHeroConfig): {
11571
11571
  };
11572
11572
  } & {
11573
11573
  json: {
11574
- 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;
11574
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11575
11575
  body?: string | undefined;
11576
11576
  from?: string | undefined;
11577
11577
  subject?: string | undefined;
@@ -11583,7 +11583,7 @@ export declare function init(config: AuthHeroConfig): {
11583
11583
  };
11584
11584
  };
11585
11585
  output: {
11586
- 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";
11586
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11587
11587
  body: string;
11588
11588
  from: string;
11589
11589
  subject: string;
@@ -11858,7 +11858,7 @@ export declare function init(config: AuthHeroConfig): {
11858
11858
  type: "auth0_managed_certs" | "self_managed_certs";
11859
11859
  custom_domain_id: string;
11860
11860
  primary: boolean;
11861
- status: "pending" | "disabled" | "pending_verification" | "ready";
11861
+ status: "disabled" | "pending" | "pending_verification" | "ready";
11862
11862
  verification_method?: "txt" | undefined;
11863
11863
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11864
11864
  domain_metadata?: {
@@ -11899,7 +11899,7 @@ export declare function init(config: AuthHeroConfig): {
11899
11899
  type: "auth0_managed_certs" | "self_managed_certs";
11900
11900
  custom_domain_id: string;
11901
11901
  primary: boolean;
11902
- status: "pending" | "disabled" | "pending_verification" | "ready";
11902
+ status: "disabled" | "pending" | "pending_verification" | "ready";
11903
11903
  verification_method?: "txt" | undefined;
11904
11904
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11905
11905
  domain_metadata?: {
@@ -11960,7 +11960,7 @@ export declare function init(config: AuthHeroConfig): {
11960
11960
  domain_metadata?: Record<string, string> | undefined;
11961
11961
  custom_domain_id?: string | undefined;
11962
11962
  primary?: boolean | undefined;
11963
- status?: "pending" | "disabled" | "pending_verification" | "ready" | undefined;
11963
+ status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
11964
11964
  origin_domain_name?: string | undefined;
11965
11965
  verification?: {
11966
11966
  methods: ({
@@ -11981,7 +11981,7 @@ export declare function init(config: AuthHeroConfig): {
11981
11981
  type: "auth0_managed_certs" | "self_managed_certs";
11982
11982
  custom_domain_id: string;
11983
11983
  primary: boolean;
11984
- status: "pending" | "disabled" | "pending_verification" | "ready";
11984
+ status: "disabled" | "pending" | "pending_verification" | "ready";
11985
11985
  verification_method?: "txt" | undefined;
11986
11986
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11987
11987
  domain_metadata?: {
@@ -12028,7 +12028,7 @@ export declare function init(config: AuthHeroConfig): {
12028
12028
  type: "auth0_managed_certs" | "self_managed_certs";
12029
12029
  custom_domain_id: string;
12030
12030
  primary: boolean;
12031
- status: "pending" | "disabled" | "pending_verification" | "ready";
12031
+ status: "disabled" | "pending" | "pending_verification" | "ready";
12032
12032
  verification_method?: "txt" | undefined;
12033
12033
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12034
12034
  domain_metadata?: {
@@ -12052,6 +12052,52 @@ export declare function init(config: AuthHeroConfig): {
12052
12052
  status: 201;
12053
12053
  };
12054
12054
  };
12055
+ } & {
12056
+ "/:id/certificate": {
12057
+ $put: {
12058
+ input: {
12059
+ param: {
12060
+ id: string;
12061
+ };
12062
+ } & {
12063
+ header: {
12064
+ "tenant-id"?: string | undefined;
12065
+ };
12066
+ } & {
12067
+ json: {
12068
+ certificate: string;
12069
+ private_key: string;
12070
+ };
12071
+ };
12072
+ output: {
12073
+ domain: string;
12074
+ type: "auth0_managed_certs" | "self_managed_certs";
12075
+ custom_domain_id: string;
12076
+ primary: boolean;
12077
+ status: "disabled" | "pending" | "pending_verification" | "ready";
12078
+ verification_method?: "txt" | undefined;
12079
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12080
+ domain_metadata?: {
12081
+ [x: string]: string;
12082
+ } | undefined;
12083
+ origin_domain_name?: string | undefined;
12084
+ verification?: {
12085
+ methods: ({
12086
+ name: "txt";
12087
+ record: string;
12088
+ domain: string;
12089
+ } | {
12090
+ name: "http";
12091
+ http_body: string;
12092
+ http_url: string;
12093
+ })[];
12094
+ } | undefined;
12095
+ tls_policy?: string | undefined;
12096
+ };
12097
+ outputFormat: "json";
12098
+ status: 200;
12099
+ };
12100
+ };
12055
12101
  } & {
12056
12102
  "/:id/verify": {
12057
12103
  $post: {
@@ -12069,7 +12115,7 @@ export declare function init(config: AuthHeroConfig): {
12069
12115
  type: "auth0_managed_certs" | "self_managed_certs";
12070
12116
  custom_domain_id: string;
12071
12117
  primary: boolean;
12072
- status: "pending" | "disabled" | "pending_verification" | "ready";
12118
+ status: "disabled" | "pending" | "pending_verification" | "ready";
12073
12119
  verification_method?: "txt" | undefined;
12074
12120
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12075
12121
  domain_metadata?: {
@@ -12117,7 +12163,7 @@ export declare function init(config: AuthHeroConfig): {
12117
12163
  base_focus_color: string;
12118
12164
  base_hover_color: string;
12119
12165
  body_text: string;
12120
- captcha_widget_theme: "dark" | "light" | "auto";
12166
+ captcha_widget_theme: "auto" | "light" | "dark";
12121
12167
  error: string;
12122
12168
  header: string;
12123
12169
  icons: string;
@@ -12207,7 +12253,7 @@ export declare function init(config: AuthHeroConfig): {
12207
12253
  base_focus_color: string;
12208
12254
  base_hover_color: string;
12209
12255
  body_text: string;
12210
- captcha_widget_theme: "dark" | "light" | "auto";
12256
+ captcha_widget_theme: "auto" | "light" | "dark";
12211
12257
  error: string;
12212
12258
  header: string;
12213
12259
  icons: string;
@@ -12286,7 +12332,7 @@ export declare function init(config: AuthHeroConfig): {
12286
12332
  base_focus_color: string;
12287
12333
  base_hover_color: string;
12288
12334
  body_text: string;
12289
- captcha_widget_theme: "dark" | "light" | "auto";
12335
+ captcha_widget_theme: "auto" | "light" | "dark";
12290
12336
  error: string;
12291
12337
  header: string;
12292
12338
  icons: string;
@@ -12376,7 +12422,7 @@ export declare function init(config: AuthHeroConfig): {
12376
12422
  font?: {
12377
12423
  url: string;
12378
12424
  } | undefined;
12379
- dark_mode?: "dark" | "light" | "auto" | undefined;
12425
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12380
12426
  };
12381
12427
  outputFormat: "json";
12382
12428
  status: 200;
@@ -12406,7 +12452,7 @@ export declare function init(config: AuthHeroConfig): {
12406
12452
  font?: {
12407
12453
  url: string;
12408
12454
  } | undefined;
12409
- dark_mode?: "dark" | "light" | "auto" | undefined;
12455
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12410
12456
  };
12411
12457
  };
12412
12458
  output: {
@@ -12425,7 +12471,7 @@ export declare function init(config: AuthHeroConfig): {
12425
12471
  font?: {
12426
12472
  url: string;
12427
12473
  } | undefined;
12428
- dark_mode?: "dark" | "light" | "auto" | undefined;
12474
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12429
12475
  };
12430
12476
  outputFormat: "json";
12431
12477
  status: 200;
@@ -12460,7 +12506,7 @@ export declare function init(config: AuthHeroConfig): {
12460
12506
  };
12461
12507
  output: {};
12462
12508
  outputFormat: string;
12463
- status: 204;
12509
+ status: 400;
12464
12510
  } | {
12465
12511
  input: {
12466
12512
  header: {
@@ -12473,7 +12519,7 @@ export declare function init(config: AuthHeroConfig): {
12473
12519
  };
12474
12520
  output: {};
12475
12521
  outputFormat: string;
12476
- status: 400;
12522
+ status: 204;
12477
12523
  };
12478
12524
  };
12479
12525
  } & {
@@ -13910,17 +13956,11 @@ export declare function init(config: AuthHeroConfig): {
13910
13956
  request_uri?: string | undefined;
13911
13957
  };
13912
13958
  };
13913
- output: string | {
13914
- access_token: string;
13915
- token_type: string;
13916
- expires_in: number;
13917
- id_token?: string | undefined;
13918
- scope?: string | undefined;
13919
- state?: string | undefined;
13920
- refresh_token?: string | undefined;
13959
+ output: {
13960
+ message: string;
13921
13961
  };
13922
13962
  outputFormat: "json";
13923
- status: 200;
13963
+ status: 400;
13924
13964
  } | {
13925
13965
  input: {
13926
13966
  query: {
@@ -13952,11 +13992,17 @@ export declare function init(config: AuthHeroConfig): {
13952
13992
  request_uri?: string | undefined;
13953
13993
  };
13954
13994
  };
13955
- output: {
13956
- message: string;
13995
+ output: string | {
13996
+ access_token: string;
13997
+ token_type: string;
13998
+ expires_in: number;
13999
+ id_token?: string | undefined;
14000
+ scope?: string | undefined;
14001
+ state?: string | undefined;
14002
+ refresh_token?: string | undefined;
13957
14003
  };
13958
14004
  outputFormat: "json";
13959
- status: 400;
14005
+ status: 200;
13960
14006
  } | {
13961
14007
  input: {
13962
14008
  query: {
@@ -14076,19 +14122,19 @@ export declare function init(config: AuthHeroConfig): {
14076
14122
  email: string;
14077
14123
  send: "code" | "link";
14078
14124
  authParams: {
14079
- act_as?: string | undefined;
14125
+ audience?: string | undefined;
14080
14126
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14081
14127
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14128
+ scope?: string | undefined;
14129
+ username?: string | undefined;
14130
+ state?: string | undefined;
14131
+ act_as?: string | undefined;
14082
14132
  redirect_uri?: string | undefined;
14083
- audience?: string | undefined;
14084
14133
  organization?: string | undefined;
14085
- state?: string | undefined;
14086
14134
  nonce?: string | undefined;
14087
- scope?: string | undefined;
14088
14135
  prompt?: string | undefined;
14089
14136
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14090
14137
  code_challenge?: string | undefined;
14091
- username?: string | undefined;
14092
14138
  ui_locales?: string | undefined;
14093
14139
  max_age?: number | undefined;
14094
14140
  acr_values?: string | undefined;
@@ -14112,19 +14158,19 @@ export declare function init(config: AuthHeroConfig): {
14112
14158
  phone_number: string;
14113
14159
  send: "code" | "link";
14114
14160
  authParams: {
14115
- act_as?: string | undefined;
14161
+ audience?: string | undefined;
14116
14162
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14117
14163
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14164
+ scope?: string | undefined;
14165
+ username?: string | undefined;
14166
+ state?: string | undefined;
14167
+ act_as?: string | undefined;
14118
14168
  redirect_uri?: string | undefined;
14119
- audience?: string | undefined;
14120
14169
  organization?: string | undefined;
14121
- state?: string | undefined;
14122
14170
  nonce?: string | undefined;
14123
- scope?: string | undefined;
14124
14171
  prompt?: string | undefined;
14125
14172
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14126
14173
  code_challenge?: string | undefined;
14127
- username?: string | undefined;
14128
14174
  ui_locales?: string | undefined;
14129
14175
  max_age?: number | undefined;
14130
14176
  acr_values?: string | undefined;
@@ -14354,7 +14400,7 @@ export declare function init(config: AuthHeroConfig): {
14354
14400
  client_id: string;
14355
14401
  username: string;
14356
14402
  otp: string;
14357
- realm: "email" | "sms";
14403
+ realm: "sms" | "email";
14358
14404
  };
14359
14405
  } & {
14360
14406
  json: {
@@ -14390,7 +14436,7 @@ export declare function init(config: AuthHeroConfig): {
14390
14436
  client_id: string;
14391
14437
  username: string;
14392
14438
  otp: string;
14393
- realm: "email" | "sms";
14439
+ realm: "sms" | "email";
14394
14440
  };
14395
14441
  };
14396
14442
  output: {};
@@ -14431,7 +14477,7 @@ export declare function init(config: AuthHeroConfig): {
14431
14477
  client_id: string;
14432
14478
  username: string;
14433
14479
  otp: string;
14434
- realm: "email" | "sms";
14480
+ realm: "sms" | "email";
14435
14481
  };
14436
14482
  } & {
14437
14483
  json: {
@@ -14467,20 +14513,15 @@ export declare function init(config: AuthHeroConfig): {
14467
14513
  client_id: string;
14468
14514
  username: string;
14469
14515
  otp: string;
14470
- realm: "email" | "sms";
14516
+ realm: "sms" | "email";
14471
14517
  };
14472
14518
  };
14473
14519
  output: {
14474
- access_token: string;
14475
- token_type: string;
14476
- expires_in: number;
14477
- id_token?: string | undefined;
14478
- scope?: string | undefined;
14479
- state?: string | undefined;
14480
- refresh_token?: string | undefined;
14520
+ error: string;
14521
+ error_description?: string | undefined;
14481
14522
  };
14482
14523
  outputFormat: "json";
14483
- status: 200;
14524
+ status: 400;
14484
14525
  } | {
14485
14526
  input: {
14486
14527
  form: {
@@ -14516,7 +14557,7 @@ export declare function init(config: AuthHeroConfig): {
14516
14557
  client_id: string;
14517
14558
  username: string;
14518
14559
  otp: string;
14519
- realm: "email" | "sms";
14560
+ realm: "sms" | "email";
14520
14561
  };
14521
14562
  } & {
14522
14563
  json: {
@@ -14552,15 +14593,20 @@ export declare function init(config: AuthHeroConfig): {
14552
14593
  client_id: string;
14553
14594
  username: string;
14554
14595
  otp: string;
14555
- realm: "email" | "sms";
14596
+ realm: "sms" | "email";
14556
14597
  };
14557
14598
  };
14558
14599
  output: {
14559
- error: string;
14560
- error_description?: string | undefined;
14600
+ access_token: string;
14601
+ token_type: string;
14602
+ expires_in: number;
14603
+ id_token?: string | undefined;
14604
+ scope?: string | undefined;
14605
+ state?: string | undefined;
14606
+ refresh_token?: string | undefined;
14561
14607
  };
14562
14608
  outputFormat: "json";
14563
- status: 400;
14609
+ status: 200;
14564
14610
  } | {
14565
14611
  input: {
14566
14612
  form: {
@@ -14596,7 +14642,7 @@ export declare function init(config: AuthHeroConfig): {
14596
14642
  client_id: string;
14597
14643
  username: string;
14598
14644
  otp: string;
14599
- realm: "email" | "sms";
14645
+ realm: "sms" | "email";
14600
14646
  };
14601
14647
  } & {
14602
14648
  json: {
@@ -14632,7 +14678,7 @@ export declare function init(config: AuthHeroConfig): {
14632
14678
  client_id: string;
14633
14679
  username: string;
14634
14680
  otp: string;
14635
- realm: "email" | "sms";
14681
+ realm: "sms" | "email";
14636
14682
  };
14637
14683
  };
14638
14684
  output: {
@@ -14676,7 +14722,7 @@ export declare function init(config: AuthHeroConfig): {
14676
14722
  client_id: string;
14677
14723
  username: string;
14678
14724
  otp: string;
14679
- realm: "email" | "sms";
14725
+ realm: "sms" | "email";
14680
14726
  };
14681
14727
  } & {
14682
14728
  json: {
@@ -14712,7 +14758,7 @@ export declare function init(config: AuthHeroConfig): {
14712
14758
  client_id: string;
14713
14759
  username: string;
14714
14760
  otp: string;
14715
- realm: "email" | "sms";
14761
+ realm: "sms" | "email";
14716
14762
  };
14717
14763
  };
14718
14764
  output: {
@@ -14731,7 +14777,7 @@ export declare function init(config: AuthHeroConfig): {
14731
14777
  keys: {
14732
14778
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
14733
14779
  kid: string;
14734
- kty: "RSA" | "EC" | "oct";
14780
+ kty: "EC" | "RSA" | "oct";
14735
14781
  use?: "sig" | "enc" | undefined;
14736
14782
  n?: string | undefined;
14737
14783
  e?: string | undefined;
@@ -14919,7 +14965,7 @@ export declare function init(config: AuthHeroConfig): {
14919
14965
  };
14920
14966
  output: {};
14921
14967
  outputFormat: string;
14922
- status: 200;
14968
+ status: 400;
14923
14969
  } | {
14924
14970
  input: {
14925
14971
  query: {
@@ -14933,7 +14979,7 @@ export declare function init(config: AuthHeroConfig): {
14933
14979
  };
14934
14980
  output: {};
14935
14981
  outputFormat: string;
14936
- status: 302;
14982
+ status: 200;
14937
14983
  } | {
14938
14984
  input: {
14939
14985
  query: {
@@ -14947,7 +14993,7 @@ export declare function init(config: AuthHeroConfig): {
14947
14993
  };
14948
14994
  output: {};
14949
14995
  outputFormat: string;
14950
- status: 400;
14996
+ status: 302;
14951
14997
  };
14952
14998
  };
14953
14999
  }, "/oidc/logout"> & import("hono/types").MergeSchemaPath<{
@@ -15054,7 +15100,7 @@ export declare function init(config: AuthHeroConfig): {
15054
15100
  };
15055
15101
  output: {};
15056
15102
  outputFormat: string;
15057
- status: 302;
15103
+ status: 400;
15058
15104
  } | {
15059
15105
  input: {
15060
15106
  query: {
@@ -15063,7 +15109,7 @@ export declare function init(config: AuthHeroConfig): {
15063
15109
  };
15064
15110
  output: {};
15065
15111
  outputFormat: string;
15066
- status: 400;
15112
+ status: 302;
15067
15113
  } | {
15068
15114
  input: {
15069
15115
  query: {
@@ -15153,7 +15199,7 @@ export declare function init(config: AuthHeroConfig): {
15153
15199
  };
15154
15200
  output: {};
15155
15201
  outputFormat: string;
15156
- status: 200;
15202
+ status: 400;
15157
15203
  } | {
15158
15204
  input: {
15159
15205
  query: {
@@ -15162,7 +15208,7 @@ export declare function init(config: AuthHeroConfig): {
15162
15208
  };
15163
15209
  output: {};
15164
15210
  outputFormat: string;
15165
- status: 400;
15211
+ status: 200;
15166
15212
  };
15167
15213
  };
15168
15214
  } & {
@@ -15192,7 +15238,7 @@ export declare function init(config: AuthHeroConfig): {
15192
15238
  };
15193
15239
  output: {};
15194
15240
  outputFormat: string;
15195
- status: 302;
15241
+ status: 400;
15196
15242
  } | {
15197
15243
  input: {
15198
15244
  query: {
@@ -15205,7 +15251,7 @@ export declare function init(config: AuthHeroConfig): {
15205
15251
  };
15206
15252
  output: {};
15207
15253
  outputFormat: string;
15208
- status: 400;
15254
+ status: 302;
15209
15255
  };
15210
15256
  };
15211
15257
  }, "/impersonate"> & import("hono/types").MergeSchemaPath<{
@@ -15547,7 +15593,7 @@ export declare function init(config: AuthHeroConfig): {
15547
15593
  };
15548
15594
  output: {};
15549
15595
  outputFormat: string;
15550
- status: 302;
15596
+ status: 400;
15551
15597
  } | {
15552
15598
  input: {
15553
15599
  query: {
@@ -15561,7 +15607,7 @@ export declare function init(config: AuthHeroConfig): {
15561
15607
  };
15562
15608
  output: {};
15563
15609
  outputFormat: string;
15564
- status: 400;
15610
+ status: 302;
15565
15611
  };
15566
15612
  };
15567
15613
  }, "/login/identifier"> & import("hono/types").MergeSchemaPath<{
@@ -15949,7 +15995,7 @@ export declare function init(config: AuthHeroConfig): {
15949
15995
  };
15950
15996
  output: {};
15951
15997
  outputFormat: string;
15952
- status: 302;
15998
+ status: 400;
15953
15999
  } | {
15954
16000
  input: {
15955
16001
  param: {
@@ -15965,7 +16011,7 @@ export declare function init(config: AuthHeroConfig): {
15965
16011
  };
15966
16012
  output: {};
15967
16013
  outputFormat: string;
15968
- status: 400;
16014
+ status: 302;
15969
16015
  };
15970
16016
  };
15971
16017
  } & {
@@ -16005,7 +16051,7 @@ export declare function init(config: AuthHeroConfig): {
16005
16051
  };
16006
16052
  output: {};
16007
16053
  outputFormat: string;
16008
- status: 302;
16054
+ status: 400;
16009
16055
  } | {
16010
16056
  input: {
16011
16057
  param: {
@@ -16023,7 +16069,7 @@ export declare function init(config: AuthHeroConfig): {
16023
16069
  };
16024
16070
  output: {};
16025
16071
  outputFormat: string;
16026
- status: 400;
16072
+ status: 302;
16027
16073
  };
16028
16074
  };
16029
16075
  }, "/"> & import("hono/types").MergeSchemaPath<{