authhero 5.15.0 → 5.17.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 +117 -117
  4. package/dist/authhero.d.ts +319 -223
  5. package/dist/authhero.mjs +10088 -9959
  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 +3 -3
  10. package/dist/types/client/client-bundle.d.ts +1 -1
  11. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  12. package/dist/types/index.d.ts +244 -197
  13. package/dist/types/middlewares/authentication.d.ts +17 -0
  14. package/dist/types/routes/auth-api/index.d.ts +25 -25
  15. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  18. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  19. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  20. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  21. package/dist/types/routes/management-api/clients.d.ts +7 -7
  22. package/dist/types/routes/management-api/connections.d.ts +1 -1
  23. package/dist/types/routes/management-api/custom-domains.d.ts +52 -6
  24. package/dist/types/routes/management-api/email-templates.d.ts +14 -14
  25. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  26. package/dist/types/routes/management-api/forms.d.ts +119 -119
  27. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  28. package/dist/types/routes/management-api/index.d.ts +212 -166
  29. package/dist/types/routes/management-api/logs.d.ts +3 -3
  30. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  31. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  32. package/dist/types/routes/management-api/users.d.ts +2 -2
  33. package/dist/types/routes/universal-login/common.d.ts +2 -2
  34. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  35. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  36. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  37. package/dist/types/state-machines/login-session.d.ts +1 -1
  38. package/dist/types/types/AuthHeroConfig.d.ts +33 -0
  39. package/dist/types/types/IdToken.d.ts +1 -1
  40. package/dist/types/types/Variables.d.ts +1 -0
  41. package/dist/types/utils/jwks.d.ts +2 -2
  42. package/package.json +6 -6
@@ -26,6 +26,7 @@ export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
26
26
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
27
27
  export type { SeedOptions, SeedResult } from "./seed";
28
28
  export { createAuthMiddleware, MANAGEMENT_API_AUDIENCE, } from "./middlewares/authentication";
29
+ export type { ManagementAudienceResolver } from "./middlewares/authentication";
29
30
  export { tenantMiddleware } from "./middlewares/tenant";
30
31
  export { clientInfoMiddleware } from "./middlewares/client-info";
31
32
  export type { SamlSigner } from "@authhero/saml/core";
@@ -79,7 +80,7 @@ export declare function init(config: AuthHeroConfig): {
79
80
  };
80
81
  } & {
81
82
  json: {
82
- type: "email" | "phone" | "push" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
83
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
83
84
  phone_number?: string | undefined;
84
85
  totp_secret?: string | undefined;
85
86
  credential_id?: string | undefined;
@@ -219,7 +220,7 @@ export declare function init(config: AuthHeroConfig): {
219
220
  };
220
221
  };
221
222
  output: {
222
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
223
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
223
224
  enabled: boolean;
224
225
  trial_expired?: boolean | undefined;
225
226
  }[];
@@ -374,7 +375,7 @@ export declare function init(config: AuthHeroConfig): {
374
375
  $get: {
375
376
  input: {
376
377
  param: {
377
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
378
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
378
379
  };
379
380
  } & {
380
381
  header: {
@@ -382,7 +383,7 @@ export declare function init(config: AuthHeroConfig): {
382
383
  };
383
384
  };
384
385
  output: {
385
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
386
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
386
387
  enabled: boolean;
387
388
  trial_expired?: boolean | undefined;
388
389
  };
@@ -395,7 +396,7 @@ export declare function init(config: AuthHeroConfig): {
395
396
  $put: {
396
397
  input: {
397
398
  param: {
398
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
399
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
399
400
  };
400
401
  } & {
401
402
  header: {
@@ -407,7 +408,7 @@ export declare function init(config: AuthHeroConfig): {
407
408
  };
408
409
  };
409
410
  output: {
410
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
411
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
411
412
  enabled: boolean;
412
413
  trial_expired?: boolean | undefined;
413
414
  };
@@ -1152,9 +1153,9 @@ export declare function init(config: AuthHeroConfig): {
1152
1153
  invitee: {
1153
1154
  email?: string | undefined;
1154
1155
  };
1156
+ id?: string | undefined;
1155
1157
  app_metadata?: Record<string, any> | undefined;
1156
1158
  user_metadata?: Record<string, any> | undefined;
1157
- id?: string | undefined;
1158
1159
  connection_id?: string | undefined;
1159
1160
  roles?: string[] | undefined;
1160
1161
  ttl_sec?: number | undefined;
@@ -1340,8 +1341,8 @@ export declare function init(config: AuthHeroConfig): {
1340
1341
  };
1341
1342
  } & {
1342
1343
  json: {
1343
- assign_membership_on_login?: boolean | undefined;
1344
1344
  show_as_button?: boolean | undefined;
1345
+ assign_membership_on_login?: boolean | undefined;
1345
1346
  is_signup_enabled?: boolean | undefined;
1346
1347
  };
1347
1348
  };
@@ -2583,7 +2584,7 @@ export declare function init(config: AuthHeroConfig): {
2583
2584
  hint?: string | undefined;
2584
2585
  messages?: {
2585
2586
  text: string;
2586
- type: "success" | "error" | "info" | "warning";
2587
+ type: "error" | "success" | "info" | "warning";
2587
2588
  id?: number | undefined;
2588
2589
  }[] | undefined;
2589
2590
  required?: boolean | undefined;
@@ -2601,7 +2602,7 @@ export declare function init(config: AuthHeroConfig): {
2601
2602
  hint?: string | undefined;
2602
2603
  messages?: {
2603
2604
  text: string;
2604
- type: "success" | "error" | "info" | "warning";
2605
+ type: "error" | "success" | "info" | "warning";
2605
2606
  id?: number | undefined;
2606
2607
  }[] | undefined;
2607
2608
  required?: boolean | undefined;
@@ -2625,7 +2626,7 @@ export declare function init(config: AuthHeroConfig): {
2625
2626
  hint?: string | undefined;
2626
2627
  messages?: {
2627
2628
  text: string;
2628
- type: "success" | "error" | "info" | "warning";
2629
+ type: "error" | "success" | "info" | "warning";
2629
2630
  id?: number | undefined;
2630
2631
  }[] | undefined;
2631
2632
  required?: boolean | undefined;
@@ -2649,7 +2650,7 @@ export declare function init(config: AuthHeroConfig): {
2649
2650
  hint?: string | undefined;
2650
2651
  messages?: {
2651
2652
  text: string;
2652
- type: "success" | "error" | "info" | "warning";
2653
+ type: "error" | "success" | "info" | "warning";
2653
2654
  id?: number | undefined;
2654
2655
  }[] | undefined;
2655
2656
  required?: boolean | undefined;
@@ -2678,7 +2679,7 @@ export declare function init(config: AuthHeroConfig): {
2678
2679
  hint?: string | undefined;
2679
2680
  messages?: {
2680
2681
  text: string;
2681
- type: "success" | "error" | "info" | "warning";
2682
+ type: "error" | "success" | "info" | "warning";
2682
2683
  id?: number | undefined;
2683
2684
  }[] | undefined;
2684
2685
  required?: boolean | undefined;
@@ -2693,7 +2694,7 @@ export declare function init(config: AuthHeroConfig): {
2693
2694
  hint?: string | undefined;
2694
2695
  messages?: {
2695
2696
  text: string;
2696
- type: "success" | "error" | "info" | "warning";
2697
+ type: "error" | "success" | "info" | "warning";
2697
2698
  id?: number | undefined;
2698
2699
  }[] | undefined;
2699
2700
  required?: boolean | undefined;
@@ -2714,7 +2715,7 @@ export declare function init(config: AuthHeroConfig): {
2714
2715
  hint?: string | undefined;
2715
2716
  messages?: {
2716
2717
  text: string;
2717
- type: "success" | "error" | "info" | "warning";
2718
+ type: "error" | "success" | "info" | "warning";
2718
2719
  id?: number | undefined;
2719
2720
  }[] | undefined;
2720
2721
  required?: boolean | undefined;
@@ -2739,7 +2740,7 @@ export declare function init(config: AuthHeroConfig): {
2739
2740
  hint?: string | undefined;
2740
2741
  messages?: {
2741
2742
  text: string;
2742
- type: "success" | "error" | "info" | "warning";
2743
+ type: "error" | "success" | "info" | "warning";
2743
2744
  id?: number | undefined;
2744
2745
  }[] | undefined;
2745
2746
  required?: boolean | undefined;
@@ -2758,7 +2759,7 @@ export declare function init(config: AuthHeroConfig): {
2758
2759
  hint?: string | undefined;
2759
2760
  messages?: {
2760
2761
  text: string;
2761
- type: "success" | "error" | "info" | "warning";
2762
+ type: "error" | "success" | "info" | "warning";
2762
2763
  id?: number | undefined;
2763
2764
  }[] | undefined;
2764
2765
  required?: boolean | undefined;
@@ -2778,7 +2779,7 @@ export declare function init(config: AuthHeroConfig): {
2778
2779
  hint?: string | undefined;
2779
2780
  messages?: {
2780
2781
  text: string;
2781
- type: "success" | "error" | "info" | "warning";
2782
+ type: "error" | "success" | "info" | "warning";
2782
2783
  id?: number | undefined;
2783
2784
  }[] | undefined;
2784
2785
  required?: boolean | undefined;
@@ -2797,7 +2798,7 @@ export declare function init(config: AuthHeroConfig): {
2797
2798
  hint?: string | undefined;
2798
2799
  messages?: {
2799
2800
  text: string;
2800
- type: "success" | "error" | "info" | "warning";
2801
+ type: "error" | "success" | "info" | "warning";
2801
2802
  id?: number | undefined;
2802
2803
  }[] | undefined;
2803
2804
  required?: boolean | undefined;
@@ -2819,7 +2820,7 @@ export declare function init(config: AuthHeroConfig): {
2819
2820
  hint?: string | undefined;
2820
2821
  messages?: {
2821
2822
  text: string;
2822
- type: "success" | "error" | "info" | "warning";
2823
+ type: "error" | "success" | "info" | "warning";
2823
2824
  id?: number | undefined;
2824
2825
  }[] | undefined;
2825
2826
  required?: boolean | undefined;
@@ -2841,7 +2842,7 @@ export declare function init(config: AuthHeroConfig): {
2841
2842
  hint?: string | undefined;
2842
2843
  messages?: {
2843
2844
  text: string;
2844
- type: "success" | "error" | "info" | "warning";
2845
+ type: "error" | "success" | "info" | "warning";
2845
2846
  id?: number | undefined;
2846
2847
  }[] | undefined;
2847
2848
  required?: boolean | undefined;
@@ -2860,7 +2861,7 @@ export declare function init(config: AuthHeroConfig): {
2860
2861
  hint?: string | undefined;
2861
2862
  messages?: {
2862
2863
  text: string;
2863
- type: "success" | "error" | "info" | "warning";
2864
+ type: "error" | "success" | "info" | "warning";
2864
2865
  id?: number | undefined;
2865
2866
  }[] | undefined;
2866
2867
  required?: boolean | undefined;
@@ -2885,7 +2886,7 @@ export declare function init(config: AuthHeroConfig): {
2885
2886
  hint?: string | undefined;
2886
2887
  messages?: {
2887
2888
  text: string;
2888
- type: "success" | "error" | "info" | "warning";
2889
+ type: "error" | "success" | "info" | "warning";
2889
2890
  id?: number | undefined;
2890
2891
  }[] | undefined;
2891
2892
  required?: boolean | undefined;
@@ -2906,7 +2907,7 @@ export declare function init(config: AuthHeroConfig): {
2906
2907
  hint?: string | undefined;
2907
2908
  messages?: {
2908
2909
  text: string;
2909
- type: "success" | "error" | "info" | "warning";
2910
+ type: "error" | "success" | "info" | "warning";
2910
2911
  id?: number | undefined;
2911
2912
  }[] | undefined;
2912
2913
  required?: boolean | undefined;
@@ -2927,7 +2928,7 @@ export declare function init(config: AuthHeroConfig): {
2927
2928
  hint?: string | undefined;
2928
2929
  messages?: {
2929
2930
  text: string;
2930
- type: "success" | "error" | "info" | "warning";
2931
+ type: "error" | "success" | "info" | "warning";
2931
2932
  id?: number | undefined;
2932
2933
  }[] | undefined;
2933
2934
  required?: boolean | undefined;
@@ -3160,7 +3161,7 @@ export declare function init(config: AuthHeroConfig): {
3160
3161
  hint?: string | undefined;
3161
3162
  messages?: {
3162
3163
  text: string;
3163
- type: "success" | "error" | "info" | "warning";
3164
+ type: "error" | "success" | "info" | "warning";
3164
3165
  id?: number | undefined;
3165
3166
  }[] | undefined;
3166
3167
  required?: boolean | undefined;
@@ -3178,7 +3179,7 @@ export declare function init(config: AuthHeroConfig): {
3178
3179
  hint?: string | undefined;
3179
3180
  messages?: {
3180
3181
  text: string;
3181
- type: "success" | "error" | "info" | "warning";
3182
+ type: "error" | "success" | "info" | "warning";
3182
3183
  id?: number | undefined;
3183
3184
  }[] | undefined;
3184
3185
  required?: boolean | undefined;
@@ -3202,7 +3203,7 @@ export declare function init(config: AuthHeroConfig): {
3202
3203
  hint?: string | undefined;
3203
3204
  messages?: {
3204
3205
  text: string;
3205
- type: "success" | "error" | "info" | "warning";
3206
+ type: "error" | "success" | "info" | "warning";
3206
3207
  id?: number | undefined;
3207
3208
  }[] | undefined;
3208
3209
  required?: boolean | undefined;
@@ -3226,7 +3227,7 @@ export declare function init(config: AuthHeroConfig): {
3226
3227
  hint?: string | undefined;
3227
3228
  messages?: {
3228
3229
  text: string;
3229
- type: "success" | "error" | "info" | "warning";
3230
+ type: "error" | "success" | "info" | "warning";
3230
3231
  id?: number | undefined;
3231
3232
  }[] | undefined;
3232
3233
  required?: boolean | undefined;
@@ -3255,7 +3256,7 @@ export declare function init(config: AuthHeroConfig): {
3255
3256
  hint?: string | undefined;
3256
3257
  messages?: {
3257
3258
  text: string;
3258
- type: "success" | "error" | "info" | "warning";
3259
+ type: "error" | "success" | "info" | "warning";
3259
3260
  id?: number | undefined;
3260
3261
  }[] | undefined;
3261
3262
  required?: boolean | undefined;
@@ -3270,7 +3271,7 @@ export declare function init(config: AuthHeroConfig): {
3270
3271
  hint?: string | undefined;
3271
3272
  messages?: {
3272
3273
  text: string;
3273
- type: "success" | "error" | "info" | "warning";
3274
+ type: "error" | "success" | "info" | "warning";
3274
3275
  id?: number | undefined;
3275
3276
  }[] | undefined;
3276
3277
  required?: boolean | undefined;
@@ -3291,7 +3292,7 @@ export declare function init(config: AuthHeroConfig): {
3291
3292
  hint?: string | undefined;
3292
3293
  messages?: {
3293
3294
  text: string;
3294
- type: "success" | "error" | "info" | "warning";
3295
+ type: "error" | "success" | "info" | "warning";
3295
3296
  id?: number | undefined;
3296
3297
  }[] | undefined;
3297
3298
  required?: boolean | undefined;
@@ -3316,7 +3317,7 @@ export declare function init(config: AuthHeroConfig): {
3316
3317
  hint?: string | undefined;
3317
3318
  messages?: {
3318
3319
  text: string;
3319
- type: "success" | "error" | "info" | "warning";
3320
+ type: "error" | "success" | "info" | "warning";
3320
3321
  id?: number | undefined;
3321
3322
  }[] | undefined;
3322
3323
  required?: boolean | undefined;
@@ -3335,7 +3336,7 @@ export declare function init(config: AuthHeroConfig): {
3335
3336
  hint?: string | undefined;
3336
3337
  messages?: {
3337
3338
  text: string;
3338
- type: "success" | "error" | "info" | "warning";
3339
+ type: "error" | "success" | "info" | "warning";
3339
3340
  id?: number | undefined;
3340
3341
  }[] | undefined;
3341
3342
  required?: boolean | undefined;
@@ -3355,7 +3356,7 @@ export declare function init(config: AuthHeroConfig): {
3355
3356
  hint?: string | undefined;
3356
3357
  messages?: {
3357
3358
  text: string;
3358
- type: "success" | "error" | "info" | "warning";
3359
+ type: "error" | "success" | "info" | "warning";
3359
3360
  id?: number | undefined;
3360
3361
  }[] | undefined;
3361
3362
  required?: boolean | undefined;
@@ -3374,7 +3375,7 @@ export declare function init(config: AuthHeroConfig): {
3374
3375
  hint?: string | undefined;
3375
3376
  messages?: {
3376
3377
  text: string;
3377
- type: "success" | "error" | "info" | "warning";
3378
+ type: "error" | "success" | "info" | "warning";
3378
3379
  id?: number | undefined;
3379
3380
  }[] | undefined;
3380
3381
  required?: boolean | undefined;
@@ -3396,7 +3397,7 @@ export declare function init(config: AuthHeroConfig): {
3396
3397
  hint?: string | undefined;
3397
3398
  messages?: {
3398
3399
  text: string;
3399
- type: "success" | "error" | "info" | "warning";
3400
+ type: "error" | "success" | "info" | "warning";
3400
3401
  id?: number | undefined;
3401
3402
  }[] | undefined;
3402
3403
  required?: boolean | undefined;
@@ -3418,7 +3419,7 @@ export declare function init(config: AuthHeroConfig): {
3418
3419
  hint?: string | undefined;
3419
3420
  messages?: {
3420
3421
  text: string;
3421
- type: "success" | "error" | "info" | "warning";
3422
+ type: "error" | "success" | "info" | "warning";
3422
3423
  id?: number | undefined;
3423
3424
  }[] | undefined;
3424
3425
  required?: boolean | undefined;
@@ -3437,7 +3438,7 @@ export declare function init(config: AuthHeroConfig): {
3437
3438
  hint?: string | undefined;
3438
3439
  messages?: {
3439
3440
  text: string;
3440
- type: "success" | "error" | "info" | "warning";
3441
+ type: "error" | "success" | "info" | "warning";
3441
3442
  id?: number | undefined;
3442
3443
  }[] | undefined;
3443
3444
  required?: boolean | undefined;
@@ -3462,7 +3463,7 @@ export declare function init(config: AuthHeroConfig): {
3462
3463
  hint?: string | undefined;
3463
3464
  messages?: {
3464
3465
  text: string;
3465
- type: "success" | "error" | "info" | "warning";
3466
+ type: "error" | "success" | "info" | "warning";
3466
3467
  id?: number | undefined;
3467
3468
  }[] | undefined;
3468
3469
  required?: boolean | undefined;
@@ -3483,7 +3484,7 @@ export declare function init(config: AuthHeroConfig): {
3483
3484
  hint?: string | undefined;
3484
3485
  messages?: {
3485
3486
  text: string;
3486
- type: "success" | "error" | "info" | "warning";
3487
+ type: "error" | "success" | "info" | "warning";
3487
3488
  id?: number | undefined;
3488
3489
  }[] | undefined;
3489
3490
  required?: boolean | undefined;
@@ -3504,7 +3505,7 @@ export declare function init(config: AuthHeroConfig): {
3504
3505
  hint?: string | undefined;
3505
3506
  messages?: {
3506
3507
  text: string;
3507
- type: "success" | "error" | "info" | "warning";
3508
+ type: "error" | "success" | "info" | "warning";
3508
3509
  id?: number | undefined;
3509
3510
  }[] | undefined;
3510
3511
  required?: boolean | undefined;
@@ -3752,7 +3753,7 @@ export declare function init(config: AuthHeroConfig): {
3752
3753
  hint?: string | undefined;
3753
3754
  messages?: {
3754
3755
  text: string;
3755
- type: "success" | "error" | "info" | "warning";
3756
+ type: "error" | "success" | "info" | "warning";
3756
3757
  id?: number | undefined;
3757
3758
  }[] | undefined;
3758
3759
  required?: boolean | undefined;
@@ -3770,7 +3771,7 @@ export declare function init(config: AuthHeroConfig): {
3770
3771
  hint?: string | undefined;
3771
3772
  messages?: {
3772
3773
  text: string;
3773
- type: "success" | "error" | "info" | "warning";
3774
+ type: "error" | "success" | "info" | "warning";
3774
3775
  id?: number | undefined;
3775
3776
  }[] | undefined;
3776
3777
  required?: boolean | undefined;
@@ -3794,7 +3795,7 @@ export declare function init(config: AuthHeroConfig): {
3794
3795
  hint?: string | undefined;
3795
3796
  messages?: {
3796
3797
  text: string;
3797
- type: "success" | "error" | "info" | "warning";
3798
+ type: "error" | "success" | "info" | "warning";
3798
3799
  id?: number | undefined;
3799
3800
  }[] | undefined;
3800
3801
  required?: boolean | undefined;
@@ -3818,7 +3819,7 @@ export declare function init(config: AuthHeroConfig): {
3818
3819
  hint?: string | undefined;
3819
3820
  messages?: {
3820
3821
  text: string;
3821
- type: "success" | "error" | "info" | "warning";
3822
+ type: "error" | "success" | "info" | "warning";
3822
3823
  id?: number | undefined;
3823
3824
  }[] | undefined;
3824
3825
  required?: boolean | undefined;
@@ -3847,7 +3848,7 @@ export declare function init(config: AuthHeroConfig): {
3847
3848
  hint?: string | undefined;
3848
3849
  messages?: {
3849
3850
  text: string;
3850
- type: "success" | "error" | "info" | "warning";
3851
+ type: "error" | "success" | "info" | "warning";
3851
3852
  id?: number | undefined;
3852
3853
  }[] | undefined;
3853
3854
  required?: boolean | undefined;
@@ -3862,7 +3863,7 @@ export declare function init(config: AuthHeroConfig): {
3862
3863
  hint?: string | undefined;
3863
3864
  messages?: {
3864
3865
  text: string;
3865
- type: "success" | "error" | "info" | "warning";
3866
+ type: "error" | "success" | "info" | "warning";
3866
3867
  id?: number | undefined;
3867
3868
  }[] | undefined;
3868
3869
  required?: boolean | undefined;
@@ -3883,7 +3884,7 @@ export declare function init(config: AuthHeroConfig): {
3883
3884
  hint?: string | undefined;
3884
3885
  messages?: {
3885
3886
  text: string;
3886
- type: "success" | "error" | "info" | "warning";
3887
+ type: "error" | "success" | "info" | "warning";
3887
3888
  id?: number | undefined;
3888
3889
  }[] | undefined;
3889
3890
  required?: boolean | undefined;
@@ -3908,7 +3909,7 @@ export declare function init(config: AuthHeroConfig): {
3908
3909
  hint?: string | undefined;
3909
3910
  messages?: {
3910
3911
  text: string;
3911
- type: "success" | "error" | "info" | "warning";
3912
+ type: "error" | "success" | "info" | "warning";
3912
3913
  id?: number | undefined;
3913
3914
  }[] | undefined;
3914
3915
  required?: boolean | undefined;
@@ -3927,7 +3928,7 @@ export declare function init(config: AuthHeroConfig): {
3927
3928
  hint?: string | undefined;
3928
3929
  messages?: {
3929
3930
  text: string;
3930
- type: "success" | "error" | "info" | "warning";
3931
+ type: "error" | "success" | "info" | "warning";
3931
3932
  id?: number | undefined;
3932
3933
  }[] | undefined;
3933
3934
  required?: boolean | undefined;
@@ -3947,7 +3948,7 @@ export declare function init(config: AuthHeroConfig): {
3947
3948
  hint?: string | undefined;
3948
3949
  messages?: {
3949
3950
  text: string;
3950
- type: "success" | "error" | "info" | "warning";
3951
+ type: "error" | "success" | "info" | "warning";
3951
3952
  id?: number | undefined;
3952
3953
  }[] | undefined;
3953
3954
  required?: boolean | undefined;
@@ -3966,7 +3967,7 @@ export declare function init(config: AuthHeroConfig): {
3966
3967
  hint?: string | undefined;
3967
3968
  messages?: {
3968
3969
  text: string;
3969
- type: "success" | "error" | "info" | "warning";
3970
+ type: "error" | "success" | "info" | "warning";
3970
3971
  id?: number | undefined;
3971
3972
  }[] | undefined;
3972
3973
  required?: boolean | undefined;
@@ -3988,7 +3989,7 @@ export declare function init(config: AuthHeroConfig): {
3988
3989
  hint?: string | undefined;
3989
3990
  messages?: {
3990
3991
  text: string;
3991
- type: "success" | "error" | "info" | "warning";
3992
+ type: "error" | "success" | "info" | "warning";
3992
3993
  id?: number | undefined;
3993
3994
  }[] | undefined;
3994
3995
  required?: boolean | undefined;
@@ -4010,7 +4011,7 @@ export declare function init(config: AuthHeroConfig): {
4010
4011
  hint?: string | undefined;
4011
4012
  messages?: {
4012
4013
  text: string;
4013
- type: "success" | "error" | "info" | "warning";
4014
+ type: "error" | "success" | "info" | "warning";
4014
4015
  id?: number | undefined;
4015
4016
  }[] | undefined;
4016
4017
  required?: boolean | undefined;
@@ -4029,7 +4030,7 @@ export declare function init(config: AuthHeroConfig): {
4029
4030
  hint?: string | undefined;
4030
4031
  messages?: {
4031
4032
  text: string;
4032
- type: "success" | "error" | "info" | "warning";
4033
+ type: "error" | "success" | "info" | "warning";
4033
4034
  id?: number | undefined;
4034
4035
  }[] | undefined;
4035
4036
  required?: boolean | undefined;
@@ -4054,7 +4055,7 @@ export declare function init(config: AuthHeroConfig): {
4054
4055
  hint?: string | undefined;
4055
4056
  messages?: {
4056
4057
  text: string;
4057
- type: "success" | "error" | "info" | "warning";
4058
+ type: "error" | "success" | "info" | "warning";
4058
4059
  id?: number | undefined;
4059
4060
  }[] | undefined;
4060
4061
  required?: boolean | undefined;
@@ -4075,7 +4076,7 @@ export declare function init(config: AuthHeroConfig): {
4075
4076
  hint?: string | undefined;
4076
4077
  messages?: {
4077
4078
  text: string;
4078
- type: "success" | "error" | "info" | "warning";
4079
+ type: "error" | "success" | "info" | "warning";
4079
4080
  id?: number | undefined;
4080
4081
  }[] | undefined;
4081
4082
  required?: boolean | undefined;
@@ -4096,7 +4097,7 @@ export declare function init(config: AuthHeroConfig): {
4096
4097
  hint?: string | undefined;
4097
4098
  messages?: {
4098
4099
  text: string;
4099
- type: "success" | "error" | "info" | "warning";
4100
+ type: "error" | "success" | "info" | "warning";
4100
4101
  id?: number | undefined;
4101
4102
  }[] | undefined;
4102
4103
  required?: boolean | undefined;
@@ -4350,7 +4351,7 @@ export declare function init(config: AuthHeroConfig): {
4350
4351
  hint?: string | undefined;
4351
4352
  messages?: {
4352
4353
  text: string;
4353
- type: "success" | "error" | "info" | "warning";
4354
+ type: "error" | "success" | "info" | "warning";
4354
4355
  id?: number | undefined;
4355
4356
  }[] | undefined;
4356
4357
  required?: boolean | undefined;
@@ -4368,7 +4369,7 @@ export declare function init(config: AuthHeroConfig): {
4368
4369
  hint?: string | undefined;
4369
4370
  messages?: {
4370
4371
  text: string;
4371
- type: "success" | "error" | "info" | "warning";
4372
+ type: "error" | "success" | "info" | "warning";
4372
4373
  id?: number | undefined;
4373
4374
  }[] | undefined;
4374
4375
  required?: boolean | undefined;
@@ -4392,7 +4393,7 @@ export declare function init(config: AuthHeroConfig): {
4392
4393
  hint?: string | undefined;
4393
4394
  messages?: {
4394
4395
  text: string;
4395
- type: "success" | "error" | "info" | "warning";
4396
+ type: "error" | "success" | "info" | "warning";
4396
4397
  id?: number | undefined;
4397
4398
  }[] | undefined;
4398
4399
  required?: boolean | undefined;
@@ -4416,7 +4417,7 @@ export declare function init(config: AuthHeroConfig): {
4416
4417
  hint?: string | undefined;
4417
4418
  messages?: {
4418
4419
  text: string;
4419
- type: "success" | "error" | "info" | "warning";
4420
+ type: "error" | "success" | "info" | "warning";
4420
4421
  id?: number | undefined;
4421
4422
  }[] | undefined;
4422
4423
  required?: boolean | undefined;
@@ -4441,7 +4442,7 @@ export declare function init(config: AuthHeroConfig): {
4441
4442
  hint?: string | undefined;
4442
4443
  messages?: {
4443
4444
  text: string;
4444
- type: "success" | "error" | "info" | "warning";
4445
+ type: "error" | "success" | "info" | "warning";
4445
4446
  id?: number | undefined;
4446
4447
  }[] | undefined;
4447
4448
  required?: boolean | undefined;
@@ -4456,7 +4457,7 @@ export declare function init(config: AuthHeroConfig): {
4456
4457
  hint?: string | undefined;
4457
4458
  messages?: {
4458
4459
  text: string;
4459
- type: "success" | "error" | "info" | "warning";
4460
+ type: "error" | "success" | "info" | "warning";
4460
4461
  id?: number | undefined;
4461
4462
  }[] | undefined;
4462
4463
  required?: boolean | undefined;
@@ -4477,7 +4478,7 @@ export declare function init(config: AuthHeroConfig): {
4477
4478
  hint?: string | undefined;
4478
4479
  messages?: {
4479
4480
  text: string;
4480
- type: "success" | "error" | "info" | "warning";
4481
+ type: "error" | "success" | "info" | "warning";
4481
4482
  id?: number | undefined;
4482
4483
  }[] | undefined;
4483
4484
  required?: boolean | undefined;
@@ -4502,7 +4503,7 @@ export declare function init(config: AuthHeroConfig): {
4502
4503
  hint?: string | undefined;
4503
4504
  messages?: {
4504
4505
  text: string;
4505
- type: "success" | "error" | "info" | "warning";
4506
+ type: "error" | "success" | "info" | "warning";
4506
4507
  id?: number | undefined;
4507
4508
  }[] | undefined;
4508
4509
  required?: boolean | undefined;
@@ -4521,7 +4522,7 @@ export declare function init(config: AuthHeroConfig): {
4521
4522
  hint?: string | undefined;
4522
4523
  messages?: {
4523
4524
  text: string;
4524
- type: "success" | "error" | "info" | "warning";
4525
+ type: "error" | "success" | "info" | "warning";
4525
4526
  id?: number | undefined;
4526
4527
  }[] | undefined;
4527
4528
  required?: boolean | undefined;
@@ -4541,7 +4542,7 @@ export declare function init(config: AuthHeroConfig): {
4541
4542
  hint?: string | undefined;
4542
4543
  messages?: {
4543
4544
  text: string;
4544
- type: "success" | "error" | "info" | "warning";
4545
+ type: "error" | "success" | "info" | "warning";
4545
4546
  id?: number | undefined;
4546
4547
  }[] | undefined;
4547
4548
  required?: boolean | undefined;
@@ -4560,7 +4561,7 @@ export declare function init(config: AuthHeroConfig): {
4560
4561
  hint?: string | undefined;
4561
4562
  messages?: {
4562
4563
  text: string;
4563
- type: "success" | "error" | "info" | "warning";
4564
+ type: "error" | "success" | "info" | "warning";
4564
4565
  id?: number | undefined;
4565
4566
  }[] | undefined;
4566
4567
  required?: boolean | undefined;
@@ -4582,7 +4583,7 @@ export declare function init(config: AuthHeroConfig): {
4582
4583
  hint?: string | undefined;
4583
4584
  messages?: {
4584
4585
  text: string;
4585
- type: "success" | "error" | "info" | "warning";
4586
+ type: "error" | "success" | "info" | "warning";
4586
4587
  id?: number | undefined;
4587
4588
  }[] | undefined;
4588
4589
  required?: boolean | undefined;
@@ -4604,7 +4605,7 @@ export declare function init(config: AuthHeroConfig): {
4604
4605
  hint?: string | undefined;
4605
4606
  messages?: {
4606
4607
  text: string;
4607
- type: "success" | "error" | "info" | "warning";
4608
+ type: "error" | "success" | "info" | "warning";
4608
4609
  id?: number | undefined;
4609
4610
  }[] | undefined;
4610
4611
  required?: boolean | undefined;
@@ -4623,7 +4624,7 @@ export declare function init(config: AuthHeroConfig): {
4623
4624
  hint?: string | undefined;
4624
4625
  messages?: {
4625
4626
  text: string;
4626
- type: "success" | "error" | "info" | "warning";
4627
+ type: "error" | "success" | "info" | "warning";
4627
4628
  id?: number | undefined;
4628
4629
  }[] | undefined;
4629
4630
  required?: boolean | undefined;
@@ -4648,7 +4649,7 @@ export declare function init(config: AuthHeroConfig): {
4648
4649
  hint?: string | undefined;
4649
4650
  messages?: {
4650
4651
  text: string;
4651
- type: "success" | "error" | "info" | "warning";
4652
+ type: "error" | "success" | "info" | "warning";
4652
4653
  id?: number | undefined;
4653
4654
  }[] | undefined;
4654
4655
  required?: boolean | undefined;
@@ -4669,7 +4670,7 @@ export declare function init(config: AuthHeroConfig): {
4669
4670
  hint?: string | undefined;
4670
4671
  messages?: {
4671
4672
  text: string;
4672
- type: "success" | "error" | "info" | "warning";
4673
+ type: "error" | "success" | "info" | "warning";
4673
4674
  id?: number | undefined;
4674
4675
  }[] | undefined;
4675
4676
  required?: boolean | undefined;
@@ -4690,7 +4691,7 @@ export declare function init(config: AuthHeroConfig): {
4690
4691
  hint?: string | undefined;
4691
4692
  messages?: {
4692
4693
  text: string;
4693
- type: "success" | "error" | "info" | "warning";
4694
+ type: "error" | "success" | "info" | "warning";
4694
4695
  id?: number | undefined;
4695
4696
  }[] | undefined;
4696
4697
  required?: boolean | undefined;
@@ -4921,7 +4922,7 @@ export declare function init(config: AuthHeroConfig): {
4921
4922
  hint?: string | undefined;
4922
4923
  messages?: {
4923
4924
  text: string;
4924
- type: "success" | "error" | "info" | "warning";
4925
+ type: "error" | "success" | "info" | "warning";
4925
4926
  id?: number | undefined;
4926
4927
  }[] | undefined;
4927
4928
  required?: boolean | undefined;
@@ -4939,7 +4940,7 @@ export declare function init(config: AuthHeroConfig): {
4939
4940
  hint?: string | undefined;
4940
4941
  messages?: {
4941
4942
  text: string;
4942
- type: "success" | "error" | "info" | "warning";
4943
+ type: "error" | "success" | "info" | "warning";
4943
4944
  id?: number | undefined;
4944
4945
  }[] | undefined;
4945
4946
  required?: boolean | undefined;
@@ -4963,7 +4964,7 @@ export declare function init(config: AuthHeroConfig): {
4963
4964
  hint?: string | undefined;
4964
4965
  messages?: {
4965
4966
  text: string;
4966
- type: "success" | "error" | "info" | "warning";
4967
+ type: "error" | "success" | "info" | "warning";
4967
4968
  id?: number | undefined;
4968
4969
  }[] | undefined;
4969
4970
  required?: boolean | undefined;
@@ -4987,7 +4988,7 @@ export declare function init(config: AuthHeroConfig): {
4987
4988
  hint?: string | undefined;
4988
4989
  messages?: {
4989
4990
  text: string;
4990
- type: "success" | "error" | "info" | "warning";
4991
+ type: "error" | "success" | "info" | "warning";
4991
4992
  id?: number | undefined;
4992
4993
  }[] | undefined;
4993
4994
  required?: boolean | undefined;
@@ -5016,7 +5017,7 @@ export declare function init(config: AuthHeroConfig): {
5016
5017
  hint?: string | undefined;
5017
5018
  messages?: {
5018
5019
  text: string;
5019
- type: "success" | "error" | "info" | "warning";
5020
+ type: "error" | "success" | "info" | "warning";
5020
5021
  id?: number | undefined;
5021
5022
  }[] | undefined;
5022
5023
  required?: boolean | undefined;
@@ -5031,7 +5032,7 @@ export declare function init(config: AuthHeroConfig): {
5031
5032
  hint?: string | undefined;
5032
5033
  messages?: {
5033
5034
  text: string;
5034
- type: "success" | "error" | "info" | "warning";
5035
+ type: "error" | "success" | "info" | "warning";
5035
5036
  id?: number | undefined;
5036
5037
  }[] | undefined;
5037
5038
  required?: boolean | undefined;
@@ -5052,7 +5053,7 @@ export declare function init(config: AuthHeroConfig): {
5052
5053
  hint?: string | undefined;
5053
5054
  messages?: {
5054
5055
  text: string;
5055
- type: "success" | "error" | "info" | "warning";
5056
+ type: "error" | "success" | "info" | "warning";
5056
5057
  id?: number | undefined;
5057
5058
  }[] | undefined;
5058
5059
  required?: boolean | undefined;
@@ -5077,7 +5078,7 @@ export declare function init(config: AuthHeroConfig): {
5077
5078
  hint?: string | undefined;
5078
5079
  messages?: {
5079
5080
  text: string;
5080
- type: "success" | "error" | "info" | "warning";
5081
+ type: "error" | "success" | "info" | "warning";
5081
5082
  id?: number | undefined;
5082
5083
  }[] | undefined;
5083
5084
  required?: boolean | undefined;
@@ -5096,7 +5097,7 @@ export declare function init(config: AuthHeroConfig): {
5096
5097
  hint?: string | undefined;
5097
5098
  messages?: {
5098
5099
  text: string;
5099
- type: "success" | "error" | "info" | "warning";
5100
+ type: "error" | "success" | "info" | "warning";
5100
5101
  id?: number | undefined;
5101
5102
  }[] | undefined;
5102
5103
  required?: boolean | undefined;
@@ -5116,7 +5117,7 @@ export declare function init(config: AuthHeroConfig): {
5116
5117
  hint?: string | undefined;
5117
5118
  messages?: {
5118
5119
  text: string;
5119
- type: "success" | "error" | "info" | "warning";
5120
+ type: "error" | "success" | "info" | "warning";
5120
5121
  id?: number | undefined;
5121
5122
  }[] | undefined;
5122
5123
  required?: boolean | undefined;
@@ -5135,7 +5136,7 @@ export declare function init(config: AuthHeroConfig): {
5135
5136
  hint?: string | undefined;
5136
5137
  messages?: {
5137
5138
  text: string;
5138
- type: "success" | "error" | "info" | "warning";
5139
+ type: "error" | "success" | "info" | "warning";
5139
5140
  id?: number | undefined;
5140
5141
  }[] | undefined;
5141
5142
  required?: boolean | undefined;
@@ -5157,7 +5158,7 @@ export declare function init(config: AuthHeroConfig): {
5157
5158
  hint?: string | undefined;
5158
5159
  messages?: {
5159
5160
  text: string;
5160
- type: "success" | "error" | "info" | "warning";
5161
+ type: "error" | "success" | "info" | "warning";
5161
5162
  id?: number | undefined;
5162
5163
  }[] | undefined;
5163
5164
  required?: boolean | undefined;
@@ -5179,7 +5180,7 @@ export declare function init(config: AuthHeroConfig): {
5179
5180
  hint?: string | undefined;
5180
5181
  messages?: {
5181
5182
  text: string;
5182
- type: "success" | "error" | "info" | "warning";
5183
+ type: "error" | "success" | "info" | "warning";
5183
5184
  id?: number | undefined;
5184
5185
  }[] | undefined;
5185
5186
  required?: boolean | undefined;
@@ -5198,7 +5199,7 @@ export declare function init(config: AuthHeroConfig): {
5198
5199
  hint?: string | undefined;
5199
5200
  messages?: {
5200
5201
  text: string;
5201
- type: "success" | "error" | "info" | "warning";
5202
+ type: "error" | "success" | "info" | "warning";
5202
5203
  id?: number | undefined;
5203
5204
  }[] | undefined;
5204
5205
  required?: boolean | undefined;
@@ -5223,7 +5224,7 @@ export declare function init(config: AuthHeroConfig): {
5223
5224
  hint?: string | undefined;
5224
5225
  messages?: {
5225
5226
  text: string;
5226
- type: "success" | "error" | "info" | "warning";
5227
+ type: "error" | "success" | "info" | "warning";
5227
5228
  id?: number | undefined;
5228
5229
  }[] | undefined;
5229
5230
  required?: boolean | undefined;
@@ -5244,7 +5245,7 @@ export declare function init(config: AuthHeroConfig): {
5244
5245
  hint?: string | undefined;
5245
5246
  messages?: {
5246
5247
  text: string;
5247
- type: "success" | "error" | "info" | "warning";
5248
+ type: "error" | "success" | "info" | "warning";
5248
5249
  id?: number | undefined;
5249
5250
  }[] | undefined;
5250
5251
  required?: boolean | undefined;
@@ -5265,7 +5266,7 @@ export declare function init(config: AuthHeroConfig): {
5265
5266
  hint?: string | undefined;
5266
5267
  messages?: {
5267
5268
  text: string;
5268
- type: "success" | "error" | "info" | "warning";
5269
+ type: "error" | "success" | "info" | "warning";
5269
5270
  id?: number | undefined;
5270
5271
  }[] | undefined;
5271
5272
  required?: boolean | undefined;
@@ -5498,7 +5499,7 @@ export declare function init(config: AuthHeroConfig): {
5498
5499
  hint?: string | undefined;
5499
5500
  messages?: {
5500
5501
  text: string;
5501
- type: "success" | "error" | "info" | "warning";
5502
+ type: "error" | "success" | "info" | "warning";
5502
5503
  id?: number | undefined;
5503
5504
  }[] | undefined;
5504
5505
  required?: boolean | undefined;
@@ -5516,7 +5517,7 @@ export declare function init(config: AuthHeroConfig): {
5516
5517
  hint?: string | undefined;
5517
5518
  messages?: {
5518
5519
  text: string;
5519
- type: "success" | "error" | "info" | "warning";
5520
+ type: "error" | "success" | "info" | "warning";
5520
5521
  id?: number | undefined;
5521
5522
  }[] | undefined;
5522
5523
  required?: boolean | undefined;
@@ -5540,7 +5541,7 @@ export declare function init(config: AuthHeroConfig): {
5540
5541
  hint?: string | undefined;
5541
5542
  messages?: {
5542
5543
  text: string;
5543
- type: "success" | "error" | "info" | "warning";
5544
+ type: "error" | "success" | "info" | "warning";
5544
5545
  id?: number | undefined;
5545
5546
  }[] | undefined;
5546
5547
  required?: boolean | undefined;
@@ -5564,7 +5565,7 @@ export declare function init(config: AuthHeroConfig): {
5564
5565
  hint?: string | undefined;
5565
5566
  messages?: {
5566
5567
  text: string;
5567
- type: "success" | "error" | "info" | "warning";
5568
+ type: "error" | "success" | "info" | "warning";
5568
5569
  id?: number | undefined;
5569
5570
  }[] | undefined;
5570
5571
  required?: boolean | undefined;
@@ -5589,7 +5590,7 @@ export declare function init(config: AuthHeroConfig): {
5589
5590
  hint?: string | undefined;
5590
5591
  messages?: {
5591
5592
  text: string;
5592
- type: "success" | "error" | "info" | "warning";
5593
+ type: "error" | "success" | "info" | "warning";
5593
5594
  id?: number | undefined;
5594
5595
  }[] | undefined;
5595
5596
  required?: boolean | undefined;
@@ -5604,7 +5605,7 @@ export declare function init(config: AuthHeroConfig): {
5604
5605
  hint?: string | undefined;
5605
5606
  messages?: {
5606
5607
  text: string;
5607
- type: "success" | "error" | "info" | "warning";
5608
+ type: "error" | "success" | "info" | "warning";
5608
5609
  id?: number | undefined;
5609
5610
  }[] | undefined;
5610
5611
  required?: boolean | undefined;
@@ -5625,7 +5626,7 @@ export declare function init(config: AuthHeroConfig): {
5625
5626
  hint?: string | undefined;
5626
5627
  messages?: {
5627
5628
  text: string;
5628
- type: "success" | "error" | "info" | "warning";
5629
+ type: "error" | "success" | "info" | "warning";
5629
5630
  id?: number | undefined;
5630
5631
  }[] | undefined;
5631
5632
  required?: boolean | undefined;
@@ -5650,7 +5651,7 @@ export declare function init(config: AuthHeroConfig): {
5650
5651
  hint?: string | undefined;
5651
5652
  messages?: {
5652
5653
  text: string;
5653
- type: "success" | "error" | "info" | "warning";
5654
+ type: "error" | "success" | "info" | "warning";
5654
5655
  id?: number | undefined;
5655
5656
  }[] | undefined;
5656
5657
  required?: boolean | undefined;
@@ -5669,7 +5670,7 @@ export declare function init(config: AuthHeroConfig): {
5669
5670
  hint?: string | undefined;
5670
5671
  messages?: {
5671
5672
  text: string;
5672
- type: "success" | "error" | "info" | "warning";
5673
+ type: "error" | "success" | "info" | "warning";
5673
5674
  id?: number | undefined;
5674
5675
  }[] | undefined;
5675
5676
  required?: boolean | undefined;
@@ -5689,7 +5690,7 @@ export declare function init(config: AuthHeroConfig): {
5689
5690
  hint?: string | undefined;
5690
5691
  messages?: {
5691
5692
  text: string;
5692
- type: "success" | "error" | "info" | "warning";
5693
+ type: "error" | "success" | "info" | "warning";
5693
5694
  id?: number | undefined;
5694
5695
  }[] | undefined;
5695
5696
  required?: boolean | undefined;
@@ -5708,7 +5709,7 @@ export declare function init(config: AuthHeroConfig): {
5708
5709
  hint?: string | undefined;
5709
5710
  messages?: {
5710
5711
  text: string;
5711
- type: "success" | "error" | "info" | "warning";
5712
+ type: "error" | "success" | "info" | "warning";
5712
5713
  id?: number | undefined;
5713
5714
  }[] | undefined;
5714
5715
  required?: boolean | undefined;
@@ -5730,7 +5731,7 @@ export declare function init(config: AuthHeroConfig): {
5730
5731
  hint?: string | undefined;
5731
5732
  messages?: {
5732
5733
  text: string;
5733
- type: "success" | "error" | "info" | "warning";
5734
+ type: "error" | "success" | "info" | "warning";
5734
5735
  id?: number | undefined;
5735
5736
  }[] | undefined;
5736
5737
  required?: boolean | undefined;
@@ -5752,7 +5753,7 @@ export declare function init(config: AuthHeroConfig): {
5752
5753
  hint?: string | undefined;
5753
5754
  messages?: {
5754
5755
  text: string;
5755
- type: "success" | "error" | "info" | "warning";
5756
+ type: "error" | "success" | "info" | "warning";
5756
5757
  id?: number | undefined;
5757
5758
  }[] | undefined;
5758
5759
  required?: boolean | undefined;
@@ -5771,7 +5772,7 @@ export declare function init(config: AuthHeroConfig): {
5771
5772
  hint?: string | undefined;
5772
5773
  messages?: {
5773
5774
  text: string;
5774
- type: "success" | "error" | "info" | "warning";
5775
+ type: "error" | "success" | "info" | "warning";
5775
5776
  id?: number | undefined;
5776
5777
  }[] | undefined;
5777
5778
  required?: boolean | undefined;
@@ -5796,7 +5797,7 @@ export declare function init(config: AuthHeroConfig): {
5796
5797
  hint?: string | undefined;
5797
5798
  messages?: {
5798
5799
  text: string;
5799
- type: "success" | "error" | "info" | "warning";
5800
+ type: "error" | "success" | "info" | "warning";
5800
5801
  id?: number | undefined;
5801
5802
  }[] | undefined;
5802
5803
  required?: boolean | undefined;
@@ -5817,7 +5818,7 @@ export declare function init(config: AuthHeroConfig): {
5817
5818
  hint?: string | undefined;
5818
5819
  messages?: {
5819
5820
  text: string;
5820
- type: "success" | "error" | "info" | "warning";
5821
+ type: "error" | "success" | "info" | "warning";
5821
5822
  id?: number | undefined;
5822
5823
  }[] | undefined;
5823
5824
  required?: boolean | undefined;
@@ -5838,7 +5839,7 @@ export declare function init(config: AuthHeroConfig): {
5838
5839
  hint?: string | undefined;
5839
5840
  messages?: {
5840
5841
  text: string;
5841
- type: "success" | "error" | "info" | "warning";
5842
+ type: "error" | "success" | "info" | "warning";
5842
5843
  id?: number | undefined;
5843
5844
  }[] | undefined;
5844
5845
  required?: boolean | undefined;
@@ -6069,7 +6070,7 @@ export declare function init(config: AuthHeroConfig): {
6069
6070
  hint?: string | undefined;
6070
6071
  messages?: {
6071
6072
  text: string;
6072
- type: "success" | "error" | "info" | "warning";
6073
+ type: "error" | "success" | "info" | "warning";
6073
6074
  id?: number | undefined;
6074
6075
  }[] | undefined;
6075
6076
  required?: boolean | undefined;
@@ -6087,7 +6088,7 @@ export declare function init(config: AuthHeroConfig): {
6087
6088
  hint?: string | undefined;
6088
6089
  messages?: {
6089
6090
  text: string;
6090
- type: "success" | "error" | "info" | "warning";
6091
+ type: "error" | "success" | "info" | "warning";
6091
6092
  id?: number | undefined;
6092
6093
  }[] | undefined;
6093
6094
  required?: boolean | undefined;
@@ -6111,7 +6112,7 @@ export declare function init(config: AuthHeroConfig): {
6111
6112
  hint?: string | undefined;
6112
6113
  messages?: {
6113
6114
  text: string;
6114
- type: "success" | "error" | "info" | "warning";
6115
+ type: "error" | "success" | "info" | "warning";
6115
6116
  id?: number | undefined;
6116
6117
  }[] | undefined;
6117
6118
  required?: boolean | undefined;
@@ -6135,7 +6136,7 @@ export declare function init(config: AuthHeroConfig): {
6135
6136
  hint?: string | undefined;
6136
6137
  messages?: {
6137
6138
  text: string;
6138
- type: "success" | "error" | "info" | "warning";
6139
+ type: "error" | "success" | "info" | "warning";
6139
6140
  id?: number | undefined;
6140
6141
  }[] | undefined;
6141
6142
  required?: boolean | undefined;
@@ -6164,7 +6165,7 @@ export declare function init(config: AuthHeroConfig): {
6164
6165
  hint?: string | undefined;
6165
6166
  messages?: {
6166
6167
  text: string;
6167
- type: "success" | "error" | "info" | "warning";
6168
+ type: "error" | "success" | "info" | "warning";
6168
6169
  id?: number | undefined;
6169
6170
  }[] | undefined;
6170
6171
  required?: boolean | undefined;
@@ -6179,7 +6180,7 @@ export declare function init(config: AuthHeroConfig): {
6179
6180
  hint?: string | undefined;
6180
6181
  messages?: {
6181
6182
  text: string;
6182
- type: "success" | "error" | "info" | "warning";
6183
+ type: "error" | "success" | "info" | "warning";
6183
6184
  id?: number | undefined;
6184
6185
  }[] | undefined;
6185
6186
  required?: boolean | undefined;
@@ -6200,7 +6201,7 @@ export declare function init(config: AuthHeroConfig): {
6200
6201
  hint?: string | undefined;
6201
6202
  messages?: {
6202
6203
  text: string;
6203
- type: "success" | "error" | "info" | "warning";
6204
+ type: "error" | "success" | "info" | "warning";
6204
6205
  id?: number | undefined;
6205
6206
  }[] | undefined;
6206
6207
  required?: boolean | undefined;
@@ -6225,7 +6226,7 @@ export declare function init(config: AuthHeroConfig): {
6225
6226
  hint?: string | undefined;
6226
6227
  messages?: {
6227
6228
  text: string;
6228
- type: "success" | "error" | "info" | "warning";
6229
+ type: "error" | "success" | "info" | "warning";
6229
6230
  id?: number | undefined;
6230
6231
  }[] | undefined;
6231
6232
  required?: boolean | undefined;
@@ -6244,7 +6245,7 @@ export declare function init(config: AuthHeroConfig): {
6244
6245
  hint?: string | undefined;
6245
6246
  messages?: {
6246
6247
  text: string;
6247
- type: "success" | "error" | "info" | "warning";
6248
+ type: "error" | "success" | "info" | "warning";
6248
6249
  id?: number | undefined;
6249
6250
  }[] | undefined;
6250
6251
  required?: boolean | undefined;
@@ -6264,7 +6265,7 @@ export declare function init(config: AuthHeroConfig): {
6264
6265
  hint?: string | undefined;
6265
6266
  messages?: {
6266
6267
  text: string;
6267
- type: "success" | "error" | "info" | "warning";
6268
+ type: "error" | "success" | "info" | "warning";
6268
6269
  id?: number | undefined;
6269
6270
  }[] | undefined;
6270
6271
  required?: boolean | undefined;
@@ -6283,7 +6284,7 @@ export declare function init(config: AuthHeroConfig): {
6283
6284
  hint?: string | undefined;
6284
6285
  messages?: {
6285
6286
  text: string;
6286
- type: "success" | "error" | "info" | "warning";
6287
+ type: "error" | "success" | "info" | "warning";
6287
6288
  id?: number | undefined;
6288
6289
  }[] | undefined;
6289
6290
  required?: boolean | undefined;
@@ -6305,7 +6306,7 @@ export declare function init(config: AuthHeroConfig): {
6305
6306
  hint?: string | undefined;
6306
6307
  messages?: {
6307
6308
  text: string;
6308
- type: "success" | "error" | "info" | "warning";
6309
+ type: "error" | "success" | "info" | "warning";
6309
6310
  id?: number | undefined;
6310
6311
  }[] | undefined;
6311
6312
  required?: boolean | undefined;
@@ -6327,7 +6328,7 @@ export declare function init(config: AuthHeroConfig): {
6327
6328
  hint?: string | undefined;
6328
6329
  messages?: {
6329
6330
  text: string;
6330
- type: "success" | "error" | "info" | "warning";
6331
+ type: "error" | "success" | "info" | "warning";
6331
6332
  id?: number | undefined;
6332
6333
  }[] | undefined;
6333
6334
  required?: boolean | undefined;
@@ -6346,7 +6347,7 @@ export declare function init(config: AuthHeroConfig): {
6346
6347
  hint?: string | undefined;
6347
6348
  messages?: {
6348
6349
  text: string;
6349
- type: "success" | "error" | "info" | "warning";
6350
+ type: "error" | "success" | "info" | "warning";
6350
6351
  id?: number | undefined;
6351
6352
  }[] | undefined;
6352
6353
  required?: boolean | undefined;
@@ -6371,7 +6372,7 @@ export declare function init(config: AuthHeroConfig): {
6371
6372
  hint?: string | undefined;
6372
6373
  messages?: {
6373
6374
  text: string;
6374
- type: "success" | "error" | "info" | "warning";
6375
+ type: "error" | "success" | "info" | "warning";
6375
6376
  id?: number | undefined;
6376
6377
  }[] | undefined;
6377
6378
  required?: boolean | undefined;
@@ -6392,7 +6393,7 @@ export declare function init(config: AuthHeroConfig): {
6392
6393
  hint?: string | undefined;
6393
6394
  messages?: {
6394
6395
  text: string;
6395
- type: "success" | "error" | "info" | "warning";
6396
+ type: "error" | "success" | "info" | "warning";
6396
6397
  id?: number | undefined;
6397
6398
  }[] | undefined;
6398
6399
  required?: boolean | undefined;
@@ -6413,7 +6414,7 @@ export declare function init(config: AuthHeroConfig): {
6413
6414
  hint?: string | undefined;
6414
6415
  messages?: {
6415
6416
  text: string;
6416
- type: "success" | "error" | "info" | "warning";
6417
+ type: "error" | "success" | "info" | "warning";
6417
6418
  id?: number | undefined;
6418
6419
  }[] | undefined;
6419
6420
  required?: boolean | undefined;
@@ -6643,7 +6644,7 @@ export declare function init(config: AuthHeroConfig): {
6643
6644
  };
6644
6645
  };
6645
6646
  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";
6647
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6647
6648
  language: string;
6648
6649
  }[];
6649
6650
  outputFormat: "json";
@@ -6681,7 +6682,7 @@ export declare function init(config: AuthHeroConfig): {
6681
6682
  $get: {
6682
6683
  input: {
6683
6684
  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";
6685
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6685
6686
  language: string;
6686
6687
  };
6687
6688
  } & {
@@ -6703,7 +6704,7 @@ export declare function init(config: AuthHeroConfig): {
6703
6704
  $put: {
6704
6705
  input: {
6705
6706
  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";
6707
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6707
6708
  language: string;
6708
6709
  };
6709
6710
  } & {
@@ -6727,7 +6728,7 @@ export declare function init(config: AuthHeroConfig): {
6727
6728
  $delete: {
6728
6729
  input: {
6729
6730
  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";
6731
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6731
6732
  language: string;
6732
6733
  };
6733
6734
  } & {
@@ -7589,7 +7590,7 @@ export declare function init(config: AuthHeroConfig): {
7589
7590
  };
7590
7591
  } | {
7591
7592
  mode: "inline";
7592
- status: "success" | "error";
7593
+ status: "error" | "success";
7593
7594
  connection_id: string;
7594
7595
  connection_name: string;
7595
7596
  strategy: string;
@@ -8168,7 +8169,7 @@ export declare function init(config: AuthHeroConfig): {
8168
8169
  log_type: string;
8169
8170
  category: "user_action" | "admin_action" | "system" | "api";
8170
8171
  actor: {
8171
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8172
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8172
8173
  id?: string | undefined;
8173
8174
  email?: string | undefined;
8174
8175
  org_id?: string | undefined;
@@ -8816,7 +8817,7 @@ export declare function init(config: AuthHeroConfig): {
8816
8817
  };
8817
8818
  };
8818
8819
  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";
8820
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8820
8821
  date: string;
8821
8822
  isMobile: boolean;
8822
8823
  log_id: string;
@@ -8855,7 +8856,7 @@ export declare function init(config: AuthHeroConfig): {
8855
8856
  limit: number;
8856
8857
  length: number;
8857
8858
  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";
8859
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8859
8860
  date: string;
8860
8861
  isMobile: boolean;
8861
8862
  log_id: string;
@@ -8909,7 +8910,7 @@ export declare function init(config: AuthHeroConfig): {
8909
8910
  };
8910
8911
  };
8911
8912
  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";
8913
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8913
8914
  date: string;
8914
8915
  isMobile: boolean;
8915
8916
  log_id: string;
@@ -9223,7 +9224,7 @@ export declare function init(config: AuthHeroConfig): {
9223
9224
  addons?: {
9224
9225
  [x: string]: any;
9225
9226
  } | undefined;
9226
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9227
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9227
9228
  client_metadata?: {
9228
9229
  [x: string]: string;
9229
9230
  } | undefined;
@@ -9319,7 +9320,7 @@ export declare function init(config: AuthHeroConfig): {
9319
9320
  addons?: {
9320
9321
  [x: string]: any;
9321
9322
  } | undefined;
9322
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9323
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9323
9324
  client_metadata?: {
9324
9325
  [x: string]: string;
9325
9326
  } | undefined;
@@ -9430,7 +9431,7 @@ export declare function init(config: AuthHeroConfig): {
9430
9431
  addons?: {
9431
9432
  [x: string]: any;
9432
9433
  } | undefined;
9433
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9434
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9434
9435
  client_metadata?: {
9435
9436
  [x: string]: string;
9436
9437
  } | undefined;
@@ -9540,7 +9541,7 @@ export declare function init(config: AuthHeroConfig): {
9540
9541
  custom_login_page_preview?: string | undefined;
9541
9542
  form_template?: string | undefined;
9542
9543
  addons?: Record<string, any> | undefined;
9543
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9544
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9544
9545
  client_metadata?: Record<string, string> | undefined;
9545
9546
  hide_sign_up_disabled_error?: boolean | undefined;
9546
9547
  mobile?: Record<string, any> | undefined;
@@ -9620,7 +9621,7 @@ export declare function init(config: AuthHeroConfig): {
9620
9621
  addons?: {
9621
9622
  [x: string]: any;
9622
9623
  } | undefined;
9623
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9624
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9624
9625
  client_metadata?: {
9625
9626
  [x: string]: string;
9626
9627
  } | undefined;
@@ -9709,7 +9710,7 @@ export declare function init(config: AuthHeroConfig): {
9709
9710
  custom_login_page_preview?: string | undefined;
9710
9711
  form_template?: string | undefined;
9711
9712
  addons?: Record<string, any> | undefined;
9712
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9713
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9713
9714
  client_metadata?: Record<string, string> | undefined;
9714
9715
  hide_sign_up_disabled_error?: boolean | undefined;
9715
9716
  mobile?: Record<string, any> | undefined;
@@ -9789,7 +9790,7 @@ export declare function init(config: AuthHeroConfig): {
9789
9790
  addons?: {
9790
9791
  [x: string]: any;
9791
9792
  } | undefined;
9792
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9793
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9793
9794
  client_metadata?: {
9794
9795
  [x: string]: string;
9795
9796
  } | undefined;
@@ -11053,7 +11054,7 @@ export declare function init(config: AuthHeroConfig): {
11053
11054
  };
11054
11055
  };
11055
11056
  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";
11057
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11057
11058
  date: string;
11058
11059
  isMobile: boolean;
11059
11060
  log_id: string;
@@ -11092,7 +11093,7 @@ export declare function init(config: AuthHeroConfig): {
11092
11093
  limit: number;
11093
11094
  length: number;
11094
11095
  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";
11096
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11096
11097
  date: string;
11097
11098
  isMobile: boolean;
11098
11099
  log_id: string;
@@ -11407,7 +11408,7 @@ export declare function init(config: AuthHeroConfig): {
11407
11408
  };
11408
11409
  } & {
11409
11410
  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";
11411
+ 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
11412
  body: string;
11412
11413
  from: string;
11413
11414
  subject: string;
@@ -11428,7 +11429,7 @@ export declare function init(config: AuthHeroConfig): {
11428
11429
  };
11429
11430
  } & {
11430
11431
  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";
11432
+ 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
11433
  body: string;
11433
11434
  from: string;
11434
11435
  subject: string;
@@ -11440,7 +11441,7 @@ export declare function init(config: AuthHeroConfig): {
11440
11441
  };
11441
11442
  };
11442
11443
  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";
11444
+ 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
11445
  body: string;
11445
11446
  from: string;
11446
11447
  subject: string;
@@ -11459,7 +11460,7 @@ export declare function init(config: AuthHeroConfig): {
11459
11460
  $get: {
11460
11461
  input: {
11461
11462
  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";
11463
+ 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
11464
  };
11464
11465
  } & {
11465
11466
  header: {
@@ -11472,7 +11473,7 @@ export declare function init(config: AuthHeroConfig): {
11472
11473
  } | {
11473
11474
  input: {
11474
11475
  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";
11476
+ 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
11477
  };
11477
11478
  } & {
11478
11479
  header: {
@@ -11480,7 +11481,7 @@ export declare function init(config: AuthHeroConfig): {
11480
11481
  };
11481
11482
  };
11482
11483
  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";
11484
+ 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
11485
  body: string;
11485
11486
  from: string;
11486
11487
  subject: string;
@@ -11499,7 +11500,7 @@ export declare function init(config: AuthHeroConfig): {
11499
11500
  $put: {
11500
11501
  input: {
11501
11502
  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";
11503
+ 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
11504
  };
11504
11505
  } & {
11505
11506
  header: {
@@ -11507,7 +11508,7 @@ export declare function init(config: AuthHeroConfig): {
11507
11508
  };
11508
11509
  } & {
11509
11510
  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";
11511
+ 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
11512
  body: string;
11512
11513
  from: string;
11513
11514
  subject: string;
@@ -11519,7 +11520,7 @@ export declare function init(config: AuthHeroConfig): {
11519
11520
  };
11520
11521
  };
11521
11522
  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";
11523
+ 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
11524
  body: string;
11524
11525
  from: string;
11525
11526
  subject: string;
@@ -11538,7 +11539,7 @@ export declare function init(config: AuthHeroConfig): {
11538
11539
  $patch: {
11539
11540
  input: {
11540
11541
  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";
11542
+ 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
11543
  };
11543
11544
  } & {
11544
11545
  header: {
@@ -11546,7 +11547,7 @@ export declare function init(config: AuthHeroConfig): {
11546
11547
  };
11547
11548
  } & {
11548
11549
  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;
11550
+ 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
11551
  body?: string | undefined;
11551
11552
  from?: string | undefined;
11552
11553
  subject?: string | undefined;
@@ -11563,7 +11564,7 @@ export declare function init(config: AuthHeroConfig): {
11563
11564
  } | {
11564
11565
  input: {
11565
11566
  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";
11567
+ 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
11568
  };
11568
11569
  } & {
11569
11570
  header: {
@@ -11571,7 +11572,7 @@ export declare function init(config: AuthHeroConfig): {
11571
11572
  };
11572
11573
  } & {
11573
11574
  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;
11575
+ 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
11576
  body?: string | undefined;
11576
11577
  from?: string | undefined;
11577
11578
  subject?: string | undefined;
@@ -11583,7 +11584,7 @@ export declare function init(config: AuthHeroConfig): {
11583
11584
  };
11584
11585
  };
11585
11586
  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";
11587
+ 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
11588
  body: string;
11588
11589
  from: string;
11589
11590
  subject: string;
@@ -11858,7 +11859,7 @@ export declare function init(config: AuthHeroConfig): {
11858
11859
  type: "auth0_managed_certs" | "self_managed_certs";
11859
11860
  custom_domain_id: string;
11860
11861
  primary: boolean;
11861
- status: "pending" | "disabled" | "pending_verification" | "ready";
11862
+ status: "disabled" | "pending" | "pending_verification" | "ready";
11862
11863
  verification_method?: "txt" | undefined;
11863
11864
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11864
11865
  domain_metadata?: {
@@ -11899,7 +11900,7 @@ export declare function init(config: AuthHeroConfig): {
11899
11900
  type: "auth0_managed_certs" | "self_managed_certs";
11900
11901
  custom_domain_id: string;
11901
11902
  primary: boolean;
11902
- status: "pending" | "disabled" | "pending_verification" | "ready";
11903
+ status: "disabled" | "pending" | "pending_verification" | "ready";
11903
11904
  verification_method?: "txt" | undefined;
11904
11905
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11905
11906
  domain_metadata?: {
@@ -11960,7 +11961,7 @@ export declare function init(config: AuthHeroConfig): {
11960
11961
  domain_metadata?: Record<string, string> | undefined;
11961
11962
  custom_domain_id?: string | undefined;
11962
11963
  primary?: boolean | undefined;
11963
- status?: "pending" | "disabled" | "pending_verification" | "ready" | undefined;
11964
+ status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
11964
11965
  origin_domain_name?: string | undefined;
11965
11966
  verification?: {
11966
11967
  methods: ({
@@ -11981,7 +11982,7 @@ export declare function init(config: AuthHeroConfig): {
11981
11982
  type: "auth0_managed_certs" | "self_managed_certs";
11982
11983
  custom_domain_id: string;
11983
11984
  primary: boolean;
11984
- status: "pending" | "disabled" | "pending_verification" | "ready";
11985
+ status: "disabled" | "pending" | "pending_verification" | "ready";
11985
11986
  verification_method?: "txt" | undefined;
11986
11987
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11987
11988
  domain_metadata?: {
@@ -12028,7 +12029,7 @@ export declare function init(config: AuthHeroConfig): {
12028
12029
  type: "auth0_managed_certs" | "self_managed_certs";
12029
12030
  custom_domain_id: string;
12030
12031
  primary: boolean;
12031
- status: "pending" | "disabled" | "pending_verification" | "ready";
12032
+ status: "disabled" | "pending" | "pending_verification" | "ready";
12032
12033
  verification_method?: "txt" | undefined;
12033
12034
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12034
12035
  domain_metadata?: {
@@ -12052,6 +12053,52 @@ export declare function init(config: AuthHeroConfig): {
12052
12053
  status: 201;
12053
12054
  };
12054
12055
  };
12056
+ } & {
12057
+ "/:id/certificate": {
12058
+ $put: {
12059
+ input: {
12060
+ param: {
12061
+ id: string;
12062
+ };
12063
+ } & {
12064
+ header: {
12065
+ "tenant-id"?: string | undefined;
12066
+ };
12067
+ } & {
12068
+ json: {
12069
+ certificate: string;
12070
+ private_key: string;
12071
+ };
12072
+ };
12073
+ output: {
12074
+ domain: string;
12075
+ type: "auth0_managed_certs" | "self_managed_certs";
12076
+ custom_domain_id: string;
12077
+ primary: boolean;
12078
+ status: "disabled" | "pending" | "pending_verification" | "ready";
12079
+ verification_method?: "txt" | undefined;
12080
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12081
+ domain_metadata?: {
12082
+ [x: string]: string;
12083
+ } | undefined;
12084
+ origin_domain_name?: string | undefined;
12085
+ verification?: {
12086
+ methods: ({
12087
+ name: "txt";
12088
+ record: string;
12089
+ domain: string;
12090
+ } | {
12091
+ name: "http";
12092
+ http_body: string;
12093
+ http_url: string;
12094
+ })[];
12095
+ } | undefined;
12096
+ tls_policy?: string | undefined;
12097
+ };
12098
+ outputFormat: "json";
12099
+ status: 200;
12100
+ };
12101
+ };
12055
12102
  } & {
12056
12103
  "/:id/verify": {
12057
12104
  $post: {
@@ -12069,7 +12116,7 @@ export declare function init(config: AuthHeroConfig): {
12069
12116
  type: "auth0_managed_certs" | "self_managed_certs";
12070
12117
  custom_domain_id: string;
12071
12118
  primary: boolean;
12072
- status: "pending" | "disabled" | "pending_verification" | "ready";
12119
+ status: "disabled" | "pending" | "pending_verification" | "ready";
12073
12120
  verification_method?: "txt" | undefined;
12074
12121
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12075
12122
  domain_metadata?: {
@@ -12629,7 +12676,7 @@ export declare function init(config: AuthHeroConfig): {
12629
12676
  output: {
12630
12677
  id: string;
12631
12678
  trigger_id: string;
12632
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
12679
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
12633
12680
  results: {
12634
12681
  action_name: string;
12635
12682
  error: {
@@ -13641,7 +13688,7 @@ export declare function init(config: AuthHeroConfig): {
13641
13688
  scope?: string | undefined;
13642
13689
  grant_types?: string[] | undefined;
13643
13690
  response_types?: string[] | undefined;
13644
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13691
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13645
13692
  jwks_uri?: string | undefined;
13646
13693
  jwks?: Record<string, unknown> | undefined;
13647
13694
  software_id?: string | undefined;
@@ -13730,7 +13777,7 @@ export declare function init(config: AuthHeroConfig): {
13730
13777
  scope?: string | undefined;
13731
13778
  grant_types?: string[] | undefined;
13732
13779
  response_types?: string[] | undefined;
13733
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13780
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13734
13781
  jwks_uri?: string | undefined;
13735
13782
  jwks?: Record<string, unknown> | undefined;
13736
13783
  software_id?: string | undefined;
@@ -14076,19 +14123,19 @@ export declare function init(config: AuthHeroConfig): {
14076
14123
  email: string;
14077
14124
  send: "code" | "link";
14078
14125
  authParams: {
14079
- act_as?: string | undefined;
14126
+ state?: string | undefined;
14080
14127
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14081
14128
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14082
- redirect_uri?: string | undefined;
14083
- audience?: string | undefined;
14084
- organization?: string | undefined;
14085
- state?: string | undefined;
14086
- nonce?: string | undefined;
14087
14129
  scope?: string | undefined;
14130
+ username?: string | undefined;
14131
+ audience?: string | undefined;
14088
14132
  prompt?: string | undefined;
14089
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14090
14133
  code_challenge?: string | undefined;
14091
- username?: string | undefined;
14134
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14135
+ redirect_uri?: string | undefined;
14136
+ nonce?: string | undefined;
14137
+ act_as?: string | undefined;
14138
+ organization?: string | undefined;
14092
14139
  ui_locales?: string | undefined;
14093
14140
  max_age?: number | undefined;
14094
14141
  acr_values?: string | undefined;
@@ -14112,19 +14159,19 @@ export declare function init(config: AuthHeroConfig): {
14112
14159
  phone_number: string;
14113
14160
  send: "code" | "link";
14114
14161
  authParams: {
14115
- act_as?: string | undefined;
14162
+ state?: string | undefined;
14116
14163
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14117
14164
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14118
- redirect_uri?: string | undefined;
14119
- audience?: string | undefined;
14120
- organization?: string | undefined;
14121
- state?: string | undefined;
14122
- nonce?: string | undefined;
14123
14165
  scope?: string | undefined;
14166
+ username?: string | undefined;
14167
+ audience?: string | undefined;
14124
14168
  prompt?: string | undefined;
14125
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14126
14169
  code_challenge?: string | undefined;
14127
- username?: string | undefined;
14170
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14171
+ redirect_uri?: string | undefined;
14172
+ nonce?: string | undefined;
14173
+ act_as?: string | undefined;
14174
+ organization?: string | undefined;
14128
14175
  ui_locales?: string | undefined;
14129
14176
  max_age?: number | undefined;
14130
14177
  acr_values?: string | undefined;
@@ -14256,14 +14303,14 @@ export declare function init(config: AuthHeroConfig): {
14256
14303
  input: {
14257
14304
  form: {
14258
14305
  token: string;
14259
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14306
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14260
14307
  client_id?: string | undefined;
14261
14308
  client_secret?: string | undefined;
14262
14309
  };
14263
14310
  } & {
14264
14311
  json: {
14265
14312
  token: string;
14266
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14313
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14267
14314
  client_id?: string | undefined;
14268
14315
  client_secret?: string | undefined;
14269
14316
  };
@@ -14275,14 +14322,14 @@ export declare function init(config: AuthHeroConfig): {
14275
14322
  input: {
14276
14323
  form: {
14277
14324
  token: string;
14278
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14325
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14279
14326
  client_id?: string | undefined;
14280
14327
  client_secret?: string | undefined;
14281
14328
  };
14282
14329
  } & {
14283
14330
  json: {
14284
14331
  token: string;
14285
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14332
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14286
14333
  client_id?: string | undefined;
14287
14334
  client_secret?: string | undefined;
14288
14335
  };
@@ -14297,14 +14344,14 @@ export declare function init(config: AuthHeroConfig): {
14297
14344
  input: {
14298
14345
  form: {
14299
14346
  token: string;
14300
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14347
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14301
14348
  client_id?: string | undefined;
14302
14349
  client_secret?: string | undefined;
14303
14350
  };
14304
14351
  } & {
14305
14352
  json: {
14306
14353
  token: string;
14307
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14354
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14308
14355
  client_id?: string | undefined;
14309
14356
  client_secret?: string | undefined;
14310
14357
  };
@@ -14731,7 +14778,7 @@ export declare function init(config: AuthHeroConfig): {
14731
14778
  keys: {
14732
14779
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
14733
14780
  kid: string;
14734
- kty: "RSA" | "EC" | "oct";
14781
+ kty: "EC" | "RSA" | "oct";
14735
14782
  use?: "sig" | "enc" | undefined;
14736
14783
  n?: string | undefined;
14737
14784
  e?: string | undefined;
@@ -15921,7 +15968,7 @@ export declare function init(config: AuthHeroConfig): {
15921
15968
  $get: {
15922
15969
  input: {
15923
15970
  param: {
15924
- screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15971
+ screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15925
15972
  };
15926
15973
  } & {
15927
15974
  query: {
@@ -15937,7 +15984,7 @@ export declare function init(config: AuthHeroConfig): {
15937
15984
  } | {
15938
15985
  input: {
15939
15986
  param: {
15940
- screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15987
+ screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15941
15988
  };
15942
15989
  } & {
15943
15990
  query: {
@@ -15953,7 +16000,7 @@ export declare function init(config: AuthHeroConfig): {
15953
16000
  } | {
15954
16001
  input: {
15955
16002
  param: {
15956
- screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16003
+ screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15957
16004
  };
15958
16005
  } & {
15959
16006
  query: {
@@ -15973,7 +16020,7 @@ export declare function init(config: AuthHeroConfig): {
15973
16020
  $post: {
15974
16021
  input: {
15975
16022
  param: {
15976
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16023
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15977
16024
  };
15978
16025
  } & {
15979
16026
  query: {
@@ -15991,7 +16038,7 @@ export declare function init(config: AuthHeroConfig): {
15991
16038
  } | {
15992
16039
  input: {
15993
16040
  param: {
15994
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16041
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
15995
16042
  };
15996
16043
  } & {
15997
16044
  query: {
@@ -16009,7 +16056,7 @@ export declare function init(config: AuthHeroConfig): {
16009
16056
  } | {
16010
16057
  input: {
16011
16058
  param: {
16012
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16059
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16013
16060
  };
16014
16061
  } & {
16015
16062
  query: {