authhero 8.17.4 → 8.19.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 (37) hide show
  1. package/dist/authhero.cjs +112 -112
  2. package/dist/authhero.d.ts +414 -269
  3. package/dist/authhero.mjs +11131 -10900
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  6. package/dist/types/helpers/audit-target-types.d.ts +6 -0
  7. package/dist/types/helpers/default-destinations.d.ts +14 -4
  8. package/dist/types/helpers/outbox-destinations/code-hooks.d.ts +56 -0
  9. package/dist/types/helpers/password-connection.d.ts +16 -0
  10. package/dist/types/helpers/provision-tenant-clients.d.ts +65 -0
  11. package/dist/types/helpers/run-outbox-relay.d.ts +8 -1
  12. package/dist/types/hooks/codehooks.d.ts +78 -9
  13. package/dist/types/index.d.ts +268 -263
  14. package/dist/types/routes/auth-api/index.d.ts +24 -24
  15. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/token.d.ts +10 -10
  18. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  19. package/dist/types/routes/management-api/clients.d.ts +9 -9
  20. package/dist/types/routes/management-api/connections.d.ts +6 -6
  21. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  22. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  23. package/dist/types/routes/management-api/forms.d.ts +126 -126
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/hooks.d.ts +24 -24
  26. package/dist/types/routes/management-api/index.d.ts +236 -234
  27. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  28. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  29. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  30. package/dist/types/routes/management-api/roles.d.ts +6 -6
  31. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  32. package/dist/types/routes/management-api/users.d.ts +4 -2
  33. package/dist/types/routes/universal-login/common.d.ts +4 -4
  34. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  35. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  36. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  37. package/package.json +5 -5
@@ -18,10 +18,13 @@ export { cleanupOutbox } from "./helpers/outbox-cleanup";
18
18
  export type { OutboxCleanupParams } from "./helpers/outbox-cleanup";
19
19
  export { createDefaultDestinations } from "./helpers/default-destinations";
20
20
  export type { CreateDefaultDestinationsConfig } from "./helpers/default-destinations";
21
+ export { provisionDefaultClients, isInteractiveClient, } from "./helpers/provision-tenant-clients";
22
+ export type { ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ManagementApiScope, } from "./helpers/provision-tenant-clients";
21
23
  export { runOutboxRelay } from "./helpers/run-outbox-relay";
22
24
  export type { RunOutboxRelayConfig } from "./helpers/run-outbox-relay";
23
25
  export { LogsDestination } from "./helpers/outbox-destinations/logs";
24
26
  export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToken, } from "./helpers/outbox-destinations/webhooks";
27
+ export { CodeHookDestination } from "./helpers/outbox-destinations/code-hooks";
25
28
  export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/registration-finalizer";
26
29
  export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
27
30
  export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
@@ -59,8 +62,8 @@ export declare function init(config: AuthHeroConfig): {
59
62
  $get: {
60
63
  input: {
61
64
  query: {
62
- include_password_hashes?: "true" | "false" | undefined;
63
- gzip?: "true" | "false" | undefined;
65
+ include_password_hashes?: "false" | "true" | undefined;
66
+ gzip?: "false" | "true" | undefined;
64
67
  };
65
68
  } & {
66
69
  header: {
@@ -73,8 +76,8 @@ export declare function init(config: AuthHeroConfig): {
73
76
  } | {
74
77
  input: {
75
78
  query: {
76
- include_password_hashes?: "true" | "false" | undefined;
77
- gzip?: "true" | "false" | undefined;
79
+ include_password_hashes?: "false" | "true" | undefined;
80
+ gzip?: "false" | "true" | undefined;
78
81
  };
79
82
  } & {
80
83
  header: {
@@ -93,7 +96,7 @@ export declare function init(config: AuthHeroConfig): {
93
96
  $post: {
94
97
  input: {
95
98
  query: {
96
- include_password_hashes?: "true" | "false" | undefined;
99
+ include_password_hashes?: "false" | "true" | undefined;
97
100
  };
98
101
  } & {
99
102
  header: {
@@ -147,7 +150,7 @@ export declare function init(config: AuthHeroConfig): {
147
150
  };
148
151
  } & {
149
152
  json: {
150
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
153
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
151
154
  phone_number?: string | undefined;
152
155
  totp_secret?: string | undefined;
153
156
  credential_id?: string | undefined;
@@ -287,7 +290,7 @@ export declare function init(config: AuthHeroConfig): {
287
290
  };
288
291
  };
289
292
  output: {
290
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
293
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
291
294
  enabled: boolean;
292
295
  trial_expired?: boolean | undefined;
293
296
  }[];
@@ -442,7 +445,7 @@ export declare function init(config: AuthHeroConfig): {
442
445
  $get: {
443
446
  input: {
444
447
  param: {
445
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
448
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
446
449
  };
447
450
  } & {
448
451
  header: {
@@ -450,7 +453,7 @@ export declare function init(config: AuthHeroConfig): {
450
453
  };
451
454
  };
452
455
  output: {
453
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
456
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
454
457
  enabled: boolean;
455
458
  trial_expired?: boolean | undefined;
456
459
  };
@@ -463,7 +466,7 @@ export declare function init(config: AuthHeroConfig): {
463
466
  $put: {
464
467
  input: {
465
468
  param: {
466
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
469
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
467
470
  };
468
471
  } & {
469
472
  header: {
@@ -475,7 +478,7 @@ export declare function init(config: AuthHeroConfig): {
475
478
  };
476
479
  };
477
480
  output: {
478
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
481
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
479
482
  enabled: boolean;
480
483
  trial_expired?: boolean | undefined;
481
484
  };
@@ -1220,11 +1223,11 @@ export declare function init(config: AuthHeroConfig): {
1220
1223
  invitee: {
1221
1224
  email?: string | undefined;
1222
1225
  };
1226
+ roles?: string[] | undefined;
1223
1227
  id?: string | undefined;
1224
1228
  app_metadata?: Record<string, any> | undefined;
1225
1229
  user_metadata?: Record<string, any> | undefined;
1226
1230
  connection_id?: string | undefined;
1227
- roles?: string[] | undefined;
1228
1231
  ttl_sec?: number | undefined;
1229
1232
  send_invitation_email?: boolean | undefined;
1230
1233
  };
@@ -1408,8 +1411,8 @@ export declare function init(config: AuthHeroConfig): {
1408
1411
  };
1409
1412
  } & {
1410
1413
  json: {
1411
- show_as_button?: boolean | undefined;
1412
1414
  assign_membership_on_login?: boolean | undefined;
1415
+ show_as_button?: boolean | undefined;
1413
1416
  is_signup_enabled?: boolean | undefined;
1414
1417
  };
1415
1418
  };
@@ -2651,7 +2654,7 @@ export declare function init(config: AuthHeroConfig): {
2651
2654
  hint?: string | undefined;
2652
2655
  messages?: {
2653
2656
  text: string;
2654
- type: "error" | "success" | "info" | "warning";
2657
+ type: "success" | "error" | "info" | "warning";
2655
2658
  id?: number | undefined;
2656
2659
  }[] | undefined;
2657
2660
  required?: boolean | undefined;
@@ -2669,7 +2672,7 @@ export declare function init(config: AuthHeroConfig): {
2669
2672
  hint?: string | undefined;
2670
2673
  messages?: {
2671
2674
  text: string;
2672
- type: "error" | "success" | "info" | "warning";
2675
+ type: "success" | "error" | "info" | "warning";
2673
2676
  id?: number | undefined;
2674
2677
  }[] | undefined;
2675
2678
  required?: boolean | undefined;
@@ -2693,7 +2696,7 @@ export declare function init(config: AuthHeroConfig): {
2693
2696
  hint?: string | undefined;
2694
2697
  messages?: {
2695
2698
  text: string;
2696
- type: "error" | "success" | "info" | "warning";
2699
+ type: "success" | "error" | "info" | "warning";
2697
2700
  id?: number | undefined;
2698
2701
  }[] | undefined;
2699
2702
  required?: boolean | undefined;
@@ -2717,7 +2720,7 @@ export declare function init(config: AuthHeroConfig): {
2717
2720
  hint?: string | undefined;
2718
2721
  messages?: {
2719
2722
  text: string;
2720
- type: "error" | "success" | "info" | "warning";
2723
+ type: "success" | "error" | "info" | "warning";
2721
2724
  id?: number | undefined;
2722
2725
  }[] | undefined;
2723
2726
  required?: boolean | undefined;
@@ -2741,7 +2744,7 @@ export declare function init(config: AuthHeroConfig): {
2741
2744
  hint?: string | undefined;
2742
2745
  messages?: {
2743
2746
  text: string;
2744
- type: "error" | "success" | "info" | "warning";
2747
+ type: "success" | "error" | "info" | "warning";
2745
2748
  id?: number | undefined;
2746
2749
  }[] | undefined;
2747
2750
  required?: boolean | undefined;
@@ -2770,7 +2773,7 @@ export declare function init(config: AuthHeroConfig): {
2770
2773
  hint?: string | undefined;
2771
2774
  messages?: {
2772
2775
  text: string;
2773
- type: "error" | "success" | "info" | "warning";
2776
+ type: "success" | "error" | "info" | "warning";
2774
2777
  id?: number | undefined;
2775
2778
  }[] | undefined;
2776
2779
  required?: boolean | undefined;
@@ -2785,7 +2788,7 @@ export declare function init(config: AuthHeroConfig): {
2785
2788
  hint?: string | undefined;
2786
2789
  messages?: {
2787
2790
  text: string;
2788
- type: "error" | "success" | "info" | "warning";
2791
+ type: "success" | "error" | "info" | "warning";
2789
2792
  id?: number | undefined;
2790
2793
  }[] | undefined;
2791
2794
  required?: boolean | undefined;
@@ -2806,7 +2809,7 @@ export declare function init(config: AuthHeroConfig): {
2806
2809
  hint?: string | undefined;
2807
2810
  messages?: {
2808
2811
  text: string;
2809
- type: "error" | "success" | "info" | "warning";
2812
+ type: "success" | "error" | "info" | "warning";
2810
2813
  id?: number | undefined;
2811
2814
  }[] | undefined;
2812
2815
  required?: boolean | undefined;
@@ -2831,7 +2834,7 @@ export declare function init(config: AuthHeroConfig): {
2831
2834
  hint?: string | undefined;
2832
2835
  messages?: {
2833
2836
  text: string;
2834
- type: "error" | "success" | "info" | "warning";
2837
+ type: "success" | "error" | "info" | "warning";
2835
2838
  id?: number | undefined;
2836
2839
  }[] | undefined;
2837
2840
  required?: boolean | undefined;
@@ -2850,7 +2853,7 @@ export declare function init(config: AuthHeroConfig): {
2850
2853
  hint?: string | undefined;
2851
2854
  messages?: {
2852
2855
  text: string;
2853
- type: "error" | "success" | "info" | "warning";
2856
+ type: "success" | "error" | "info" | "warning";
2854
2857
  id?: number | undefined;
2855
2858
  }[] | undefined;
2856
2859
  required?: boolean | undefined;
@@ -2870,7 +2873,7 @@ export declare function init(config: AuthHeroConfig): {
2870
2873
  hint?: string | undefined;
2871
2874
  messages?: {
2872
2875
  text: string;
2873
- type: "error" | "success" | "info" | "warning";
2876
+ type: "success" | "error" | "info" | "warning";
2874
2877
  id?: number | undefined;
2875
2878
  }[] | undefined;
2876
2879
  required?: boolean | undefined;
@@ -2889,7 +2892,7 @@ export declare function init(config: AuthHeroConfig): {
2889
2892
  hint?: string | undefined;
2890
2893
  messages?: {
2891
2894
  text: string;
2892
- type: "error" | "success" | "info" | "warning";
2895
+ type: "success" | "error" | "info" | "warning";
2893
2896
  id?: number | undefined;
2894
2897
  }[] | undefined;
2895
2898
  required?: boolean | undefined;
@@ -2911,7 +2914,7 @@ export declare function init(config: AuthHeroConfig): {
2911
2914
  hint?: string | undefined;
2912
2915
  messages?: {
2913
2916
  text: string;
2914
- type: "error" | "success" | "info" | "warning";
2917
+ type: "success" | "error" | "info" | "warning";
2915
2918
  id?: number | undefined;
2916
2919
  }[] | undefined;
2917
2920
  required?: boolean | undefined;
@@ -2933,7 +2936,7 @@ export declare function init(config: AuthHeroConfig): {
2933
2936
  hint?: string | undefined;
2934
2937
  messages?: {
2935
2938
  text: string;
2936
- type: "error" | "success" | "info" | "warning";
2939
+ type: "success" | "error" | "info" | "warning";
2937
2940
  id?: number | undefined;
2938
2941
  }[] | undefined;
2939
2942
  required?: boolean | undefined;
@@ -2952,7 +2955,7 @@ export declare function init(config: AuthHeroConfig): {
2952
2955
  hint?: string | undefined;
2953
2956
  messages?: {
2954
2957
  text: string;
2955
- type: "error" | "success" | "info" | "warning";
2958
+ type: "success" | "error" | "info" | "warning";
2956
2959
  id?: number | undefined;
2957
2960
  }[] | undefined;
2958
2961
  required?: boolean | undefined;
@@ -2977,7 +2980,7 @@ export declare function init(config: AuthHeroConfig): {
2977
2980
  hint?: string | undefined;
2978
2981
  messages?: {
2979
2982
  text: string;
2980
- type: "error" | "success" | "info" | "warning";
2983
+ type: "success" | "error" | "info" | "warning";
2981
2984
  id?: number | undefined;
2982
2985
  }[] | undefined;
2983
2986
  required?: boolean | undefined;
@@ -2998,7 +3001,7 @@ export declare function init(config: AuthHeroConfig): {
2998
3001
  hint?: string | undefined;
2999
3002
  messages?: {
3000
3003
  text: string;
3001
- type: "error" | "success" | "info" | "warning";
3004
+ type: "success" | "error" | "info" | "warning";
3002
3005
  id?: number | undefined;
3003
3006
  }[] | undefined;
3004
3007
  required?: boolean | undefined;
@@ -3019,7 +3022,7 @@ export declare function init(config: AuthHeroConfig): {
3019
3022
  hint?: string | undefined;
3020
3023
  messages?: {
3021
3024
  text: string;
3022
- type: "error" | "success" | "info" | "warning";
3025
+ type: "success" | "error" | "info" | "warning";
3023
3026
  id?: number | undefined;
3024
3027
  }[] | undefined;
3025
3028
  required?: boolean | undefined;
@@ -3252,7 +3255,7 @@ export declare function init(config: AuthHeroConfig): {
3252
3255
  hint?: string | undefined;
3253
3256
  messages?: {
3254
3257
  text: string;
3255
- type: "error" | "success" | "info" | "warning";
3258
+ type: "success" | "error" | "info" | "warning";
3256
3259
  id?: number | undefined;
3257
3260
  }[] | undefined;
3258
3261
  required?: boolean | undefined;
@@ -3270,7 +3273,7 @@ export declare function init(config: AuthHeroConfig): {
3270
3273
  hint?: string | undefined;
3271
3274
  messages?: {
3272
3275
  text: string;
3273
- type: "error" | "success" | "info" | "warning";
3276
+ type: "success" | "error" | "info" | "warning";
3274
3277
  id?: number | undefined;
3275
3278
  }[] | undefined;
3276
3279
  required?: boolean | undefined;
@@ -3294,7 +3297,7 @@ export declare function init(config: AuthHeroConfig): {
3294
3297
  hint?: string | undefined;
3295
3298
  messages?: {
3296
3299
  text: string;
3297
- type: "error" | "success" | "info" | "warning";
3300
+ type: "success" | "error" | "info" | "warning";
3298
3301
  id?: number | undefined;
3299
3302
  }[] | undefined;
3300
3303
  required?: boolean | undefined;
@@ -3318,7 +3321,7 @@ export declare function init(config: AuthHeroConfig): {
3318
3321
  hint?: string | undefined;
3319
3322
  messages?: {
3320
3323
  text: string;
3321
- type: "error" | "success" | "info" | "warning";
3324
+ type: "success" | "error" | "info" | "warning";
3322
3325
  id?: number | undefined;
3323
3326
  }[] | undefined;
3324
3327
  required?: boolean | undefined;
@@ -3342,7 +3345,7 @@ export declare function init(config: AuthHeroConfig): {
3342
3345
  hint?: string | undefined;
3343
3346
  messages?: {
3344
3347
  text: string;
3345
- type: "error" | "success" | "info" | "warning";
3348
+ type: "success" | "error" | "info" | "warning";
3346
3349
  id?: number | undefined;
3347
3350
  }[] | undefined;
3348
3351
  required?: boolean | undefined;
@@ -3371,7 +3374,7 @@ export declare function init(config: AuthHeroConfig): {
3371
3374
  hint?: string | undefined;
3372
3375
  messages?: {
3373
3376
  text: string;
3374
- type: "error" | "success" | "info" | "warning";
3377
+ type: "success" | "error" | "info" | "warning";
3375
3378
  id?: number | undefined;
3376
3379
  }[] | undefined;
3377
3380
  required?: boolean | undefined;
@@ -3386,7 +3389,7 @@ export declare function init(config: AuthHeroConfig): {
3386
3389
  hint?: string | undefined;
3387
3390
  messages?: {
3388
3391
  text: string;
3389
- type: "error" | "success" | "info" | "warning";
3392
+ type: "success" | "error" | "info" | "warning";
3390
3393
  id?: number | undefined;
3391
3394
  }[] | undefined;
3392
3395
  required?: boolean | undefined;
@@ -3407,7 +3410,7 @@ export declare function init(config: AuthHeroConfig): {
3407
3410
  hint?: string | undefined;
3408
3411
  messages?: {
3409
3412
  text: string;
3410
- type: "error" | "success" | "info" | "warning";
3413
+ type: "success" | "error" | "info" | "warning";
3411
3414
  id?: number | undefined;
3412
3415
  }[] | undefined;
3413
3416
  required?: boolean | undefined;
@@ -3432,7 +3435,7 @@ export declare function init(config: AuthHeroConfig): {
3432
3435
  hint?: string | undefined;
3433
3436
  messages?: {
3434
3437
  text: string;
3435
- type: "error" | "success" | "info" | "warning";
3438
+ type: "success" | "error" | "info" | "warning";
3436
3439
  id?: number | undefined;
3437
3440
  }[] | undefined;
3438
3441
  required?: boolean | undefined;
@@ -3451,7 +3454,7 @@ export declare function init(config: AuthHeroConfig): {
3451
3454
  hint?: string | undefined;
3452
3455
  messages?: {
3453
3456
  text: string;
3454
- type: "error" | "success" | "info" | "warning";
3457
+ type: "success" | "error" | "info" | "warning";
3455
3458
  id?: number | undefined;
3456
3459
  }[] | undefined;
3457
3460
  required?: boolean | undefined;
@@ -3471,7 +3474,7 @@ export declare function init(config: AuthHeroConfig): {
3471
3474
  hint?: string | undefined;
3472
3475
  messages?: {
3473
3476
  text: string;
3474
- type: "error" | "success" | "info" | "warning";
3477
+ type: "success" | "error" | "info" | "warning";
3475
3478
  id?: number | undefined;
3476
3479
  }[] | undefined;
3477
3480
  required?: boolean | undefined;
@@ -3490,7 +3493,7 @@ export declare function init(config: AuthHeroConfig): {
3490
3493
  hint?: string | undefined;
3491
3494
  messages?: {
3492
3495
  text: string;
3493
- type: "error" | "success" | "info" | "warning";
3496
+ type: "success" | "error" | "info" | "warning";
3494
3497
  id?: number | undefined;
3495
3498
  }[] | undefined;
3496
3499
  required?: boolean | undefined;
@@ -3512,7 +3515,7 @@ export declare function init(config: AuthHeroConfig): {
3512
3515
  hint?: string | undefined;
3513
3516
  messages?: {
3514
3517
  text: string;
3515
- type: "error" | "success" | "info" | "warning";
3518
+ type: "success" | "error" | "info" | "warning";
3516
3519
  id?: number | undefined;
3517
3520
  }[] | undefined;
3518
3521
  required?: boolean | undefined;
@@ -3534,7 +3537,7 @@ export declare function init(config: AuthHeroConfig): {
3534
3537
  hint?: string | undefined;
3535
3538
  messages?: {
3536
3539
  text: string;
3537
- type: "error" | "success" | "info" | "warning";
3540
+ type: "success" | "error" | "info" | "warning";
3538
3541
  id?: number | undefined;
3539
3542
  }[] | undefined;
3540
3543
  required?: boolean | undefined;
@@ -3553,7 +3556,7 @@ export declare function init(config: AuthHeroConfig): {
3553
3556
  hint?: string | undefined;
3554
3557
  messages?: {
3555
3558
  text: string;
3556
- type: "error" | "success" | "info" | "warning";
3559
+ type: "success" | "error" | "info" | "warning";
3557
3560
  id?: number | undefined;
3558
3561
  }[] | undefined;
3559
3562
  required?: boolean | undefined;
@@ -3578,7 +3581,7 @@ export declare function init(config: AuthHeroConfig): {
3578
3581
  hint?: string | undefined;
3579
3582
  messages?: {
3580
3583
  text: string;
3581
- type: "error" | "success" | "info" | "warning";
3584
+ type: "success" | "error" | "info" | "warning";
3582
3585
  id?: number | undefined;
3583
3586
  }[] | undefined;
3584
3587
  required?: boolean | undefined;
@@ -3599,7 +3602,7 @@ export declare function init(config: AuthHeroConfig): {
3599
3602
  hint?: string | undefined;
3600
3603
  messages?: {
3601
3604
  text: string;
3602
- type: "error" | "success" | "info" | "warning";
3605
+ type: "success" | "error" | "info" | "warning";
3603
3606
  id?: number | undefined;
3604
3607
  }[] | undefined;
3605
3608
  required?: boolean | undefined;
@@ -3620,7 +3623,7 @@ export declare function init(config: AuthHeroConfig): {
3620
3623
  hint?: string | undefined;
3621
3624
  messages?: {
3622
3625
  text: string;
3623
- type: "error" | "success" | "info" | "warning";
3626
+ type: "success" | "error" | "info" | "warning";
3624
3627
  id?: number | undefined;
3625
3628
  }[] | undefined;
3626
3629
  required?: boolean | undefined;
@@ -3868,7 +3871,7 @@ export declare function init(config: AuthHeroConfig): {
3868
3871
  hint?: string | undefined;
3869
3872
  messages?: {
3870
3873
  text: string;
3871
- type: "error" | "success" | "info" | "warning";
3874
+ type: "success" | "error" | "info" | "warning";
3872
3875
  id?: number | undefined;
3873
3876
  }[] | undefined;
3874
3877
  required?: boolean | undefined;
@@ -3886,7 +3889,7 @@ export declare function init(config: AuthHeroConfig): {
3886
3889
  hint?: string | undefined;
3887
3890
  messages?: {
3888
3891
  text: string;
3889
- type: "error" | "success" | "info" | "warning";
3892
+ type: "success" | "error" | "info" | "warning";
3890
3893
  id?: number | undefined;
3891
3894
  }[] | undefined;
3892
3895
  required?: boolean | undefined;
@@ -3910,7 +3913,7 @@ export declare function init(config: AuthHeroConfig): {
3910
3913
  hint?: string | undefined;
3911
3914
  messages?: {
3912
3915
  text: string;
3913
- type: "error" | "success" | "info" | "warning";
3916
+ type: "success" | "error" | "info" | "warning";
3914
3917
  id?: number | undefined;
3915
3918
  }[] | undefined;
3916
3919
  required?: boolean | undefined;
@@ -3934,7 +3937,7 @@ export declare function init(config: AuthHeroConfig): {
3934
3937
  hint?: string | undefined;
3935
3938
  messages?: {
3936
3939
  text: string;
3937
- type: "error" | "success" | "info" | "warning";
3940
+ type: "success" | "error" | "info" | "warning";
3938
3941
  id?: number | undefined;
3939
3942
  }[] | undefined;
3940
3943
  required?: boolean | undefined;
@@ -3958,7 +3961,7 @@ export declare function init(config: AuthHeroConfig): {
3958
3961
  hint?: string | undefined;
3959
3962
  messages?: {
3960
3963
  text: string;
3961
- type: "error" | "success" | "info" | "warning";
3964
+ type: "success" | "error" | "info" | "warning";
3962
3965
  id?: number | undefined;
3963
3966
  }[] | undefined;
3964
3967
  required?: boolean | undefined;
@@ -3987,7 +3990,7 @@ export declare function init(config: AuthHeroConfig): {
3987
3990
  hint?: string | undefined;
3988
3991
  messages?: {
3989
3992
  text: string;
3990
- type: "error" | "success" | "info" | "warning";
3993
+ type: "success" | "error" | "info" | "warning";
3991
3994
  id?: number | undefined;
3992
3995
  }[] | undefined;
3993
3996
  required?: boolean | undefined;
@@ -4002,7 +4005,7 @@ export declare function init(config: AuthHeroConfig): {
4002
4005
  hint?: string | undefined;
4003
4006
  messages?: {
4004
4007
  text: string;
4005
- type: "error" | "success" | "info" | "warning";
4008
+ type: "success" | "error" | "info" | "warning";
4006
4009
  id?: number | undefined;
4007
4010
  }[] | undefined;
4008
4011
  required?: boolean | undefined;
@@ -4023,7 +4026,7 @@ export declare function init(config: AuthHeroConfig): {
4023
4026
  hint?: string | undefined;
4024
4027
  messages?: {
4025
4028
  text: string;
4026
- type: "error" | "success" | "info" | "warning";
4029
+ type: "success" | "error" | "info" | "warning";
4027
4030
  id?: number | undefined;
4028
4031
  }[] | undefined;
4029
4032
  required?: boolean | undefined;
@@ -4048,7 +4051,7 @@ export declare function init(config: AuthHeroConfig): {
4048
4051
  hint?: string | undefined;
4049
4052
  messages?: {
4050
4053
  text: string;
4051
- type: "error" | "success" | "info" | "warning";
4054
+ type: "success" | "error" | "info" | "warning";
4052
4055
  id?: number | undefined;
4053
4056
  }[] | undefined;
4054
4057
  required?: boolean | undefined;
@@ -4067,7 +4070,7 @@ export declare function init(config: AuthHeroConfig): {
4067
4070
  hint?: string | undefined;
4068
4071
  messages?: {
4069
4072
  text: string;
4070
- type: "error" | "success" | "info" | "warning";
4073
+ type: "success" | "error" | "info" | "warning";
4071
4074
  id?: number | undefined;
4072
4075
  }[] | undefined;
4073
4076
  required?: boolean | undefined;
@@ -4087,7 +4090,7 @@ export declare function init(config: AuthHeroConfig): {
4087
4090
  hint?: string | undefined;
4088
4091
  messages?: {
4089
4092
  text: string;
4090
- type: "error" | "success" | "info" | "warning";
4093
+ type: "success" | "error" | "info" | "warning";
4091
4094
  id?: number | undefined;
4092
4095
  }[] | undefined;
4093
4096
  required?: boolean | undefined;
@@ -4106,7 +4109,7 @@ export declare function init(config: AuthHeroConfig): {
4106
4109
  hint?: string | undefined;
4107
4110
  messages?: {
4108
4111
  text: string;
4109
- type: "error" | "success" | "info" | "warning";
4112
+ type: "success" | "error" | "info" | "warning";
4110
4113
  id?: number | undefined;
4111
4114
  }[] | undefined;
4112
4115
  required?: boolean | undefined;
@@ -4128,7 +4131,7 @@ export declare function init(config: AuthHeroConfig): {
4128
4131
  hint?: string | undefined;
4129
4132
  messages?: {
4130
4133
  text: string;
4131
- type: "error" | "success" | "info" | "warning";
4134
+ type: "success" | "error" | "info" | "warning";
4132
4135
  id?: number | undefined;
4133
4136
  }[] | undefined;
4134
4137
  required?: boolean | undefined;
@@ -4150,7 +4153,7 @@ export declare function init(config: AuthHeroConfig): {
4150
4153
  hint?: string | undefined;
4151
4154
  messages?: {
4152
4155
  text: string;
4153
- type: "error" | "success" | "info" | "warning";
4156
+ type: "success" | "error" | "info" | "warning";
4154
4157
  id?: number | undefined;
4155
4158
  }[] | undefined;
4156
4159
  required?: boolean | undefined;
@@ -4169,7 +4172,7 @@ export declare function init(config: AuthHeroConfig): {
4169
4172
  hint?: string | undefined;
4170
4173
  messages?: {
4171
4174
  text: string;
4172
- type: "error" | "success" | "info" | "warning";
4175
+ type: "success" | "error" | "info" | "warning";
4173
4176
  id?: number | undefined;
4174
4177
  }[] | undefined;
4175
4178
  required?: boolean | undefined;
@@ -4194,7 +4197,7 @@ export declare function init(config: AuthHeroConfig): {
4194
4197
  hint?: string | undefined;
4195
4198
  messages?: {
4196
4199
  text: string;
4197
- type: "error" | "success" | "info" | "warning";
4200
+ type: "success" | "error" | "info" | "warning";
4198
4201
  id?: number | undefined;
4199
4202
  }[] | undefined;
4200
4203
  required?: boolean | undefined;
@@ -4215,7 +4218,7 @@ export declare function init(config: AuthHeroConfig): {
4215
4218
  hint?: string | undefined;
4216
4219
  messages?: {
4217
4220
  text: string;
4218
- type: "error" | "success" | "info" | "warning";
4221
+ type: "success" | "error" | "info" | "warning";
4219
4222
  id?: number | undefined;
4220
4223
  }[] | undefined;
4221
4224
  required?: boolean | undefined;
@@ -4236,7 +4239,7 @@ export declare function init(config: AuthHeroConfig): {
4236
4239
  hint?: string | undefined;
4237
4240
  messages?: {
4238
4241
  text: string;
4239
- type: "error" | "success" | "info" | "warning";
4242
+ type: "success" | "error" | "info" | "warning";
4240
4243
  id?: number | undefined;
4241
4244
  }[] | undefined;
4242
4245
  required?: boolean | undefined;
@@ -4490,7 +4493,7 @@ export declare function init(config: AuthHeroConfig): {
4490
4493
  hint?: string | undefined;
4491
4494
  messages?: {
4492
4495
  text: string;
4493
- type: "error" | "success" | "info" | "warning";
4496
+ type: "success" | "error" | "info" | "warning";
4494
4497
  id?: number | undefined;
4495
4498
  }[] | undefined;
4496
4499
  required?: boolean | undefined;
@@ -4508,7 +4511,7 @@ export declare function init(config: AuthHeroConfig): {
4508
4511
  hint?: string | undefined;
4509
4512
  messages?: {
4510
4513
  text: string;
4511
- type: "error" | "success" | "info" | "warning";
4514
+ type: "success" | "error" | "info" | "warning";
4512
4515
  id?: number | undefined;
4513
4516
  }[] | undefined;
4514
4517
  required?: boolean | undefined;
@@ -4532,7 +4535,7 @@ export declare function init(config: AuthHeroConfig): {
4532
4535
  hint?: string | undefined;
4533
4536
  messages?: {
4534
4537
  text: string;
4535
- type: "error" | "success" | "info" | "warning";
4538
+ type: "success" | "error" | "info" | "warning";
4536
4539
  id?: number | undefined;
4537
4540
  }[] | undefined;
4538
4541
  required?: boolean | undefined;
@@ -4556,7 +4559,7 @@ export declare function init(config: AuthHeroConfig): {
4556
4559
  hint?: string | undefined;
4557
4560
  messages?: {
4558
4561
  text: string;
4559
- type: "error" | "success" | "info" | "warning";
4562
+ type: "success" | "error" | "info" | "warning";
4560
4563
  id?: number | undefined;
4561
4564
  }[] | undefined;
4562
4565
  required?: boolean | undefined;
@@ -4580,7 +4583,7 @@ export declare function init(config: AuthHeroConfig): {
4580
4583
  hint?: string | undefined;
4581
4584
  messages?: {
4582
4585
  text: string;
4583
- type: "error" | "success" | "info" | "warning";
4586
+ type: "success" | "error" | "info" | "warning";
4584
4587
  id?: number | undefined;
4585
4588
  }[] | undefined;
4586
4589
  required?: boolean | undefined;
@@ -4605,7 +4608,7 @@ export declare function init(config: AuthHeroConfig): {
4605
4608
  hint?: string | undefined;
4606
4609
  messages?: {
4607
4610
  text: string;
4608
- type: "error" | "success" | "info" | "warning";
4611
+ type: "success" | "error" | "info" | "warning";
4609
4612
  id?: number | undefined;
4610
4613
  }[] | undefined;
4611
4614
  required?: boolean | undefined;
@@ -4620,7 +4623,7 @@ export declare function init(config: AuthHeroConfig): {
4620
4623
  hint?: string | undefined;
4621
4624
  messages?: {
4622
4625
  text: string;
4623
- type: "error" | "success" | "info" | "warning";
4626
+ type: "success" | "error" | "info" | "warning";
4624
4627
  id?: number | undefined;
4625
4628
  }[] | undefined;
4626
4629
  required?: boolean | undefined;
@@ -4641,7 +4644,7 @@ export declare function init(config: AuthHeroConfig): {
4641
4644
  hint?: string | undefined;
4642
4645
  messages?: {
4643
4646
  text: string;
4644
- type: "error" | "success" | "info" | "warning";
4647
+ type: "success" | "error" | "info" | "warning";
4645
4648
  id?: number | undefined;
4646
4649
  }[] | undefined;
4647
4650
  required?: boolean | undefined;
@@ -4666,7 +4669,7 @@ export declare function init(config: AuthHeroConfig): {
4666
4669
  hint?: string | undefined;
4667
4670
  messages?: {
4668
4671
  text: string;
4669
- type: "error" | "success" | "info" | "warning";
4672
+ type: "success" | "error" | "info" | "warning";
4670
4673
  id?: number | undefined;
4671
4674
  }[] | undefined;
4672
4675
  required?: boolean | undefined;
@@ -4685,7 +4688,7 @@ export declare function init(config: AuthHeroConfig): {
4685
4688
  hint?: string | undefined;
4686
4689
  messages?: {
4687
4690
  text: string;
4688
- type: "error" | "success" | "info" | "warning";
4691
+ type: "success" | "error" | "info" | "warning";
4689
4692
  id?: number | undefined;
4690
4693
  }[] | undefined;
4691
4694
  required?: boolean | undefined;
@@ -4705,7 +4708,7 @@ export declare function init(config: AuthHeroConfig): {
4705
4708
  hint?: string | undefined;
4706
4709
  messages?: {
4707
4710
  text: string;
4708
- type: "error" | "success" | "info" | "warning";
4711
+ type: "success" | "error" | "info" | "warning";
4709
4712
  id?: number | undefined;
4710
4713
  }[] | undefined;
4711
4714
  required?: boolean | undefined;
@@ -4724,7 +4727,7 @@ export declare function init(config: AuthHeroConfig): {
4724
4727
  hint?: string | undefined;
4725
4728
  messages?: {
4726
4729
  text: string;
4727
- type: "error" | "success" | "info" | "warning";
4730
+ type: "success" | "error" | "info" | "warning";
4728
4731
  id?: number | undefined;
4729
4732
  }[] | undefined;
4730
4733
  required?: boolean | undefined;
@@ -4746,7 +4749,7 @@ export declare function init(config: AuthHeroConfig): {
4746
4749
  hint?: string | undefined;
4747
4750
  messages?: {
4748
4751
  text: string;
4749
- type: "error" | "success" | "info" | "warning";
4752
+ type: "success" | "error" | "info" | "warning";
4750
4753
  id?: number | undefined;
4751
4754
  }[] | undefined;
4752
4755
  required?: boolean | undefined;
@@ -4768,7 +4771,7 @@ export declare function init(config: AuthHeroConfig): {
4768
4771
  hint?: string | undefined;
4769
4772
  messages?: {
4770
4773
  text: string;
4771
- type: "error" | "success" | "info" | "warning";
4774
+ type: "success" | "error" | "info" | "warning";
4772
4775
  id?: number | undefined;
4773
4776
  }[] | undefined;
4774
4777
  required?: boolean | undefined;
@@ -4787,7 +4790,7 @@ export declare function init(config: AuthHeroConfig): {
4787
4790
  hint?: string | undefined;
4788
4791
  messages?: {
4789
4792
  text: string;
4790
- type: "error" | "success" | "info" | "warning";
4793
+ type: "success" | "error" | "info" | "warning";
4791
4794
  id?: number | undefined;
4792
4795
  }[] | undefined;
4793
4796
  required?: boolean | undefined;
@@ -4812,7 +4815,7 @@ export declare function init(config: AuthHeroConfig): {
4812
4815
  hint?: string | undefined;
4813
4816
  messages?: {
4814
4817
  text: string;
4815
- type: "error" | "success" | "info" | "warning";
4818
+ type: "success" | "error" | "info" | "warning";
4816
4819
  id?: number | undefined;
4817
4820
  }[] | undefined;
4818
4821
  required?: boolean | undefined;
@@ -4833,7 +4836,7 @@ export declare function init(config: AuthHeroConfig): {
4833
4836
  hint?: string | undefined;
4834
4837
  messages?: {
4835
4838
  text: string;
4836
- type: "error" | "success" | "info" | "warning";
4839
+ type: "success" | "error" | "info" | "warning";
4837
4840
  id?: number | undefined;
4838
4841
  }[] | undefined;
4839
4842
  required?: boolean | undefined;
@@ -4854,7 +4857,7 @@ export declare function init(config: AuthHeroConfig): {
4854
4857
  hint?: string | undefined;
4855
4858
  messages?: {
4856
4859
  text: string;
4857
- type: "error" | "success" | "info" | "warning";
4860
+ type: "success" | "error" | "info" | "warning";
4858
4861
  id?: number | undefined;
4859
4862
  }[] | undefined;
4860
4863
  required?: boolean | undefined;
@@ -5085,7 +5088,7 @@ export declare function init(config: AuthHeroConfig): {
5085
5088
  hint?: string | undefined;
5086
5089
  messages?: {
5087
5090
  text: string;
5088
- type: "error" | "success" | "info" | "warning";
5091
+ type: "success" | "error" | "info" | "warning";
5089
5092
  id?: number | undefined;
5090
5093
  }[] | undefined;
5091
5094
  required?: boolean | undefined;
@@ -5103,7 +5106,7 @@ export declare function init(config: AuthHeroConfig): {
5103
5106
  hint?: string | undefined;
5104
5107
  messages?: {
5105
5108
  text: string;
5106
- type: "error" | "success" | "info" | "warning";
5109
+ type: "success" | "error" | "info" | "warning";
5107
5110
  id?: number | undefined;
5108
5111
  }[] | undefined;
5109
5112
  required?: boolean | undefined;
@@ -5127,7 +5130,7 @@ export declare function init(config: AuthHeroConfig): {
5127
5130
  hint?: string | undefined;
5128
5131
  messages?: {
5129
5132
  text: string;
5130
- type: "error" | "success" | "info" | "warning";
5133
+ type: "success" | "error" | "info" | "warning";
5131
5134
  id?: number | undefined;
5132
5135
  }[] | undefined;
5133
5136
  required?: boolean | undefined;
@@ -5151,7 +5154,7 @@ export declare function init(config: AuthHeroConfig): {
5151
5154
  hint?: string | undefined;
5152
5155
  messages?: {
5153
5156
  text: string;
5154
- type: "error" | "success" | "info" | "warning";
5157
+ type: "success" | "error" | "info" | "warning";
5155
5158
  id?: number | undefined;
5156
5159
  }[] | undefined;
5157
5160
  required?: boolean | undefined;
@@ -5175,7 +5178,7 @@ export declare function init(config: AuthHeroConfig): {
5175
5178
  hint?: string | undefined;
5176
5179
  messages?: {
5177
5180
  text: string;
5178
- type: "error" | "success" | "info" | "warning";
5181
+ type: "success" | "error" | "info" | "warning";
5179
5182
  id?: number | undefined;
5180
5183
  }[] | undefined;
5181
5184
  required?: boolean | undefined;
@@ -5204,7 +5207,7 @@ export declare function init(config: AuthHeroConfig): {
5204
5207
  hint?: string | undefined;
5205
5208
  messages?: {
5206
5209
  text: string;
5207
- type: "error" | "success" | "info" | "warning";
5210
+ type: "success" | "error" | "info" | "warning";
5208
5211
  id?: number | undefined;
5209
5212
  }[] | undefined;
5210
5213
  required?: boolean | undefined;
@@ -5219,7 +5222,7 @@ export declare function init(config: AuthHeroConfig): {
5219
5222
  hint?: string | undefined;
5220
5223
  messages?: {
5221
5224
  text: string;
5222
- type: "error" | "success" | "info" | "warning";
5225
+ type: "success" | "error" | "info" | "warning";
5223
5226
  id?: number | undefined;
5224
5227
  }[] | undefined;
5225
5228
  required?: boolean | undefined;
@@ -5240,7 +5243,7 @@ export declare function init(config: AuthHeroConfig): {
5240
5243
  hint?: string | undefined;
5241
5244
  messages?: {
5242
5245
  text: string;
5243
- type: "error" | "success" | "info" | "warning";
5246
+ type: "success" | "error" | "info" | "warning";
5244
5247
  id?: number | undefined;
5245
5248
  }[] | undefined;
5246
5249
  required?: boolean | undefined;
@@ -5265,7 +5268,7 @@ export declare function init(config: AuthHeroConfig): {
5265
5268
  hint?: string | undefined;
5266
5269
  messages?: {
5267
5270
  text: string;
5268
- type: "error" | "success" | "info" | "warning";
5271
+ type: "success" | "error" | "info" | "warning";
5269
5272
  id?: number | undefined;
5270
5273
  }[] | undefined;
5271
5274
  required?: boolean | undefined;
@@ -5284,7 +5287,7 @@ export declare function init(config: AuthHeroConfig): {
5284
5287
  hint?: string | undefined;
5285
5288
  messages?: {
5286
5289
  text: string;
5287
- type: "error" | "success" | "info" | "warning";
5290
+ type: "success" | "error" | "info" | "warning";
5288
5291
  id?: number | undefined;
5289
5292
  }[] | undefined;
5290
5293
  required?: boolean | undefined;
@@ -5304,7 +5307,7 @@ export declare function init(config: AuthHeroConfig): {
5304
5307
  hint?: string | undefined;
5305
5308
  messages?: {
5306
5309
  text: string;
5307
- type: "error" | "success" | "info" | "warning";
5310
+ type: "success" | "error" | "info" | "warning";
5308
5311
  id?: number | undefined;
5309
5312
  }[] | undefined;
5310
5313
  required?: boolean | undefined;
@@ -5323,7 +5326,7 @@ export declare function init(config: AuthHeroConfig): {
5323
5326
  hint?: string | undefined;
5324
5327
  messages?: {
5325
5328
  text: string;
5326
- type: "error" | "success" | "info" | "warning";
5329
+ type: "success" | "error" | "info" | "warning";
5327
5330
  id?: number | undefined;
5328
5331
  }[] | undefined;
5329
5332
  required?: boolean | undefined;
@@ -5345,7 +5348,7 @@ export declare function init(config: AuthHeroConfig): {
5345
5348
  hint?: string | undefined;
5346
5349
  messages?: {
5347
5350
  text: string;
5348
- type: "error" | "success" | "info" | "warning";
5351
+ type: "success" | "error" | "info" | "warning";
5349
5352
  id?: number | undefined;
5350
5353
  }[] | undefined;
5351
5354
  required?: boolean | undefined;
@@ -5367,7 +5370,7 @@ export declare function init(config: AuthHeroConfig): {
5367
5370
  hint?: string | undefined;
5368
5371
  messages?: {
5369
5372
  text: string;
5370
- type: "error" | "success" | "info" | "warning";
5373
+ type: "success" | "error" | "info" | "warning";
5371
5374
  id?: number | undefined;
5372
5375
  }[] | undefined;
5373
5376
  required?: boolean | undefined;
@@ -5386,7 +5389,7 @@ export declare function init(config: AuthHeroConfig): {
5386
5389
  hint?: string | undefined;
5387
5390
  messages?: {
5388
5391
  text: string;
5389
- type: "error" | "success" | "info" | "warning";
5392
+ type: "success" | "error" | "info" | "warning";
5390
5393
  id?: number | undefined;
5391
5394
  }[] | undefined;
5392
5395
  required?: boolean | undefined;
@@ -5411,7 +5414,7 @@ export declare function init(config: AuthHeroConfig): {
5411
5414
  hint?: string | undefined;
5412
5415
  messages?: {
5413
5416
  text: string;
5414
- type: "error" | "success" | "info" | "warning";
5417
+ type: "success" | "error" | "info" | "warning";
5415
5418
  id?: number | undefined;
5416
5419
  }[] | undefined;
5417
5420
  required?: boolean | undefined;
@@ -5432,7 +5435,7 @@ export declare function init(config: AuthHeroConfig): {
5432
5435
  hint?: string | undefined;
5433
5436
  messages?: {
5434
5437
  text: string;
5435
- type: "error" | "success" | "info" | "warning";
5438
+ type: "success" | "error" | "info" | "warning";
5436
5439
  id?: number | undefined;
5437
5440
  }[] | undefined;
5438
5441
  required?: boolean | undefined;
@@ -5453,7 +5456,7 @@ export declare function init(config: AuthHeroConfig): {
5453
5456
  hint?: string | undefined;
5454
5457
  messages?: {
5455
5458
  text: string;
5456
- type: "error" | "success" | "info" | "warning";
5459
+ type: "success" | "error" | "info" | "warning";
5457
5460
  id?: number | undefined;
5458
5461
  }[] | undefined;
5459
5462
  required?: boolean | undefined;
@@ -5686,7 +5689,7 @@ export declare function init(config: AuthHeroConfig): {
5686
5689
  hint?: string | undefined;
5687
5690
  messages?: {
5688
5691
  text: string;
5689
- type: "error" | "success" | "info" | "warning";
5692
+ type: "success" | "error" | "info" | "warning";
5690
5693
  id?: number | undefined;
5691
5694
  }[] | undefined;
5692
5695
  required?: boolean | undefined;
@@ -5704,7 +5707,7 @@ export declare function init(config: AuthHeroConfig): {
5704
5707
  hint?: string | undefined;
5705
5708
  messages?: {
5706
5709
  text: string;
5707
- type: "error" | "success" | "info" | "warning";
5710
+ type: "success" | "error" | "info" | "warning";
5708
5711
  id?: number | undefined;
5709
5712
  }[] | undefined;
5710
5713
  required?: boolean | undefined;
@@ -5728,7 +5731,7 @@ export declare function init(config: AuthHeroConfig): {
5728
5731
  hint?: string | undefined;
5729
5732
  messages?: {
5730
5733
  text: string;
5731
- type: "error" | "success" | "info" | "warning";
5734
+ type: "success" | "error" | "info" | "warning";
5732
5735
  id?: number | undefined;
5733
5736
  }[] | undefined;
5734
5737
  required?: boolean | undefined;
@@ -5752,7 +5755,7 @@ export declare function init(config: AuthHeroConfig): {
5752
5755
  hint?: string | undefined;
5753
5756
  messages?: {
5754
5757
  text: string;
5755
- type: "error" | "success" | "info" | "warning";
5758
+ type: "success" | "error" | "info" | "warning";
5756
5759
  id?: number | undefined;
5757
5760
  }[] | undefined;
5758
5761
  required?: boolean | undefined;
@@ -5776,7 +5779,7 @@ export declare function init(config: AuthHeroConfig): {
5776
5779
  hint?: string | undefined;
5777
5780
  messages?: {
5778
5781
  text: string;
5779
- type: "error" | "success" | "info" | "warning";
5782
+ type: "success" | "error" | "info" | "warning";
5780
5783
  id?: number | undefined;
5781
5784
  }[] | undefined;
5782
5785
  required?: boolean | undefined;
@@ -5801,7 +5804,7 @@ export declare function init(config: AuthHeroConfig): {
5801
5804
  hint?: string | undefined;
5802
5805
  messages?: {
5803
5806
  text: string;
5804
- type: "error" | "success" | "info" | "warning";
5807
+ type: "success" | "error" | "info" | "warning";
5805
5808
  id?: number | undefined;
5806
5809
  }[] | undefined;
5807
5810
  required?: boolean | undefined;
@@ -5816,7 +5819,7 @@ export declare function init(config: AuthHeroConfig): {
5816
5819
  hint?: string | undefined;
5817
5820
  messages?: {
5818
5821
  text: string;
5819
- type: "error" | "success" | "info" | "warning";
5822
+ type: "success" | "error" | "info" | "warning";
5820
5823
  id?: number | undefined;
5821
5824
  }[] | undefined;
5822
5825
  required?: boolean | undefined;
@@ -5837,7 +5840,7 @@ export declare function init(config: AuthHeroConfig): {
5837
5840
  hint?: string | undefined;
5838
5841
  messages?: {
5839
5842
  text: string;
5840
- type: "error" | "success" | "info" | "warning";
5843
+ type: "success" | "error" | "info" | "warning";
5841
5844
  id?: number | undefined;
5842
5845
  }[] | undefined;
5843
5846
  required?: boolean | undefined;
@@ -5862,7 +5865,7 @@ export declare function init(config: AuthHeroConfig): {
5862
5865
  hint?: string | undefined;
5863
5866
  messages?: {
5864
5867
  text: string;
5865
- type: "error" | "success" | "info" | "warning";
5868
+ type: "success" | "error" | "info" | "warning";
5866
5869
  id?: number | undefined;
5867
5870
  }[] | undefined;
5868
5871
  required?: boolean | undefined;
@@ -5881,7 +5884,7 @@ export declare function init(config: AuthHeroConfig): {
5881
5884
  hint?: string | undefined;
5882
5885
  messages?: {
5883
5886
  text: string;
5884
- type: "error" | "success" | "info" | "warning";
5887
+ type: "success" | "error" | "info" | "warning";
5885
5888
  id?: number | undefined;
5886
5889
  }[] | undefined;
5887
5890
  required?: boolean | undefined;
@@ -5901,7 +5904,7 @@ export declare function init(config: AuthHeroConfig): {
5901
5904
  hint?: string | undefined;
5902
5905
  messages?: {
5903
5906
  text: string;
5904
- type: "error" | "success" | "info" | "warning";
5907
+ type: "success" | "error" | "info" | "warning";
5905
5908
  id?: number | undefined;
5906
5909
  }[] | undefined;
5907
5910
  required?: boolean | undefined;
@@ -5920,7 +5923,7 @@ export declare function init(config: AuthHeroConfig): {
5920
5923
  hint?: string | undefined;
5921
5924
  messages?: {
5922
5925
  text: string;
5923
- type: "error" | "success" | "info" | "warning";
5926
+ type: "success" | "error" | "info" | "warning";
5924
5927
  id?: number | undefined;
5925
5928
  }[] | undefined;
5926
5929
  required?: boolean | undefined;
@@ -5942,7 +5945,7 @@ export declare function init(config: AuthHeroConfig): {
5942
5945
  hint?: string | undefined;
5943
5946
  messages?: {
5944
5947
  text: string;
5945
- type: "error" | "success" | "info" | "warning";
5948
+ type: "success" | "error" | "info" | "warning";
5946
5949
  id?: number | undefined;
5947
5950
  }[] | undefined;
5948
5951
  required?: boolean | undefined;
@@ -5964,7 +5967,7 @@ export declare function init(config: AuthHeroConfig): {
5964
5967
  hint?: string | undefined;
5965
5968
  messages?: {
5966
5969
  text: string;
5967
- type: "error" | "success" | "info" | "warning";
5970
+ type: "success" | "error" | "info" | "warning";
5968
5971
  id?: number | undefined;
5969
5972
  }[] | undefined;
5970
5973
  required?: boolean | undefined;
@@ -5983,7 +5986,7 @@ export declare function init(config: AuthHeroConfig): {
5983
5986
  hint?: string | undefined;
5984
5987
  messages?: {
5985
5988
  text: string;
5986
- type: "error" | "success" | "info" | "warning";
5989
+ type: "success" | "error" | "info" | "warning";
5987
5990
  id?: number | undefined;
5988
5991
  }[] | undefined;
5989
5992
  required?: boolean | undefined;
@@ -6008,7 +6011,7 @@ export declare function init(config: AuthHeroConfig): {
6008
6011
  hint?: string | undefined;
6009
6012
  messages?: {
6010
6013
  text: string;
6011
- type: "error" | "success" | "info" | "warning";
6014
+ type: "success" | "error" | "info" | "warning";
6012
6015
  id?: number | undefined;
6013
6016
  }[] | undefined;
6014
6017
  required?: boolean | undefined;
@@ -6029,7 +6032,7 @@ export declare function init(config: AuthHeroConfig): {
6029
6032
  hint?: string | undefined;
6030
6033
  messages?: {
6031
6034
  text: string;
6032
- type: "error" | "success" | "info" | "warning";
6035
+ type: "success" | "error" | "info" | "warning";
6033
6036
  id?: number | undefined;
6034
6037
  }[] | undefined;
6035
6038
  required?: boolean | undefined;
@@ -6050,7 +6053,7 @@ export declare function init(config: AuthHeroConfig): {
6050
6053
  hint?: string | undefined;
6051
6054
  messages?: {
6052
6055
  text: string;
6053
- type: "error" | "success" | "info" | "warning";
6056
+ type: "success" | "error" | "info" | "warning";
6054
6057
  id?: number | undefined;
6055
6058
  }[] | undefined;
6056
6059
  required?: boolean | undefined;
@@ -6281,7 +6284,7 @@ export declare function init(config: AuthHeroConfig): {
6281
6284
  hint?: string | undefined;
6282
6285
  messages?: {
6283
6286
  text: string;
6284
- type: "error" | "success" | "info" | "warning";
6287
+ type: "success" | "error" | "info" | "warning";
6285
6288
  id?: number | undefined;
6286
6289
  }[] | undefined;
6287
6290
  required?: boolean | undefined;
@@ -6299,7 +6302,7 @@ export declare function init(config: AuthHeroConfig): {
6299
6302
  hint?: string | undefined;
6300
6303
  messages?: {
6301
6304
  text: string;
6302
- type: "error" | "success" | "info" | "warning";
6305
+ type: "success" | "error" | "info" | "warning";
6303
6306
  id?: number | undefined;
6304
6307
  }[] | undefined;
6305
6308
  required?: boolean | undefined;
@@ -6323,7 +6326,7 @@ export declare function init(config: AuthHeroConfig): {
6323
6326
  hint?: string | undefined;
6324
6327
  messages?: {
6325
6328
  text: string;
6326
- type: "error" | "success" | "info" | "warning";
6329
+ type: "success" | "error" | "info" | "warning";
6327
6330
  id?: number | undefined;
6328
6331
  }[] | undefined;
6329
6332
  required?: boolean | undefined;
@@ -6347,7 +6350,7 @@ export declare function init(config: AuthHeroConfig): {
6347
6350
  hint?: string | undefined;
6348
6351
  messages?: {
6349
6352
  text: string;
6350
- type: "error" | "success" | "info" | "warning";
6353
+ type: "success" | "error" | "info" | "warning";
6351
6354
  id?: number | undefined;
6352
6355
  }[] | undefined;
6353
6356
  required?: boolean | undefined;
@@ -6371,7 +6374,7 @@ export declare function init(config: AuthHeroConfig): {
6371
6374
  hint?: string | undefined;
6372
6375
  messages?: {
6373
6376
  text: string;
6374
- type: "error" | "success" | "info" | "warning";
6377
+ type: "success" | "error" | "info" | "warning";
6375
6378
  id?: number | undefined;
6376
6379
  }[] | undefined;
6377
6380
  required?: boolean | undefined;
@@ -6400,7 +6403,7 @@ export declare function init(config: AuthHeroConfig): {
6400
6403
  hint?: string | undefined;
6401
6404
  messages?: {
6402
6405
  text: string;
6403
- type: "error" | "success" | "info" | "warning";
6406
+ type: "success" | "error" | "info" | "warning";
6404
6407
  id?: number | undefined;
6405
6408
  }[] | undefined;
6406
6409
  required?: boolean | undefined;
@@ -6415,7 +6418,7 @@ export declare function init(config: AuthHeroConfig): {
6415
6418
  hint?: string | undefined;
6416
6419
  messages?: {
6417
6420
  text: string;
6418
- type: "error" | "success" | "info" | "warning";
6421
+ type: "success" | "error" | "info" | "warning";
6419
6422
  id?: number | undefined;
6420
6423
  }[] | undefined;
6421
6424
  required?: boolean | undefined;
@@ -6436,7 +6439,7 @@ export declare function init(config: AuthHeroConfig): {
6436
6439
  hint?: string | undefined;
6437
6440
  messages?: {
6438
6441
  text: string;
6439
- type: "error" | "success" | "info" | "warning";
6442
+ type: "success" | "error" | "info" | "warning";
6440
6443
  id?: number | undefined;
6441
6444
  }[] | undefined;
6442
6445
  required?: boolean | undefined;
@@ -6461,7 +6464,7 @@ export declare function init(config: AuthHeroConfig): {
6461
6464
  hint?: string | undefined;
6462
6465
  messages?: {
6463
6466
  text: string;
6464
- type: "error" | "success" | "info" | "warning";
6467
+ type: "success" | "error" | "info" | "warning";
6465
6468
  id?: number | undefined;
6466
6469
  }[] | undefined;
6467
6470
  required?: boolean | undefined;
@@ -6480,7 +6483,7 @@ export declare function init(config: AuthHeroConfig): {
6480
6483
  hint?: string | undefined;
6481
6484
  messages?: {
6482
6485
  text: string;
6483
- type: "error" | "success" | "info" | "warning";
6486
+ type: "success" | "error" | "info" | "warning";
6484
6487
  id?: number | undefined;
6485
6488
  }[] | undefined;
6486
6489
  required?: boolean | undefined;
@@ -6500,7 +6503,7 @@ export declare function init(config: AuthHeroConfig): {
6500
6503
  hint?: string | undefined;
6501
6504
  messages?: {
6502
6505
  text: string;
6503
- type: "error" | "success" | "info" | "warning";
6506
+ type: "success" | "error" | "info" | "warning";
6504
6507
  id?: number | undefined;
6505
6508
  }[] | undefined;
6506
6509
  required?: boolean | undefined;
@@ -6519,7 +6522,7 @@ export declare function init(config: AuthHeroConfig): {
6519
6522
  hint?: string | undefined;
6520
6523
  messages?: {
6521
6524
  text: string;
6522
- type: "error" | "success" | "info" | "warning";
6525
+ type: "success" | "error" | "info" | "warning";
6523
6526
  id?: number | undefined;
6524
6527
  }[] | undefined;
6525
6528
  required?: boolean | undefined;
@@ -6541,7 +6544,7 @@ export declare function init(config: AuthHeroConfig): {
6541
6544
  hint?: string | undefined;
6542
6545
  messages?: {
6543
6546
  text: string;
6544
- type: "error" | "success" | "info" | "warning";
6547
+ type: "success" | "error" | "info" | "warning";
6545
6548
  id?: number | undefined;
6546
6549
  }[] | undefined;
6547
6550
  required?: boolean | undefined;
@@ -6563,7 +6566,7 @@ export declare function init(config: AuthHeroConfig): {
6563
6566
  hint?: string | undefined;
6564
6567
  messages?: {
6565
6568
  text: string;
6566
- type: "error" | "success" | "info" | "warning";
6569
+ type: "success" | "error" | "info" | "warning";
6567
6570
  id?: number | undefined;
6568
6571
  }[] | undefined;
6569
6572
  required?: boolean | undefined;
@@ -6582,7 +6585,7 @@ export declare function init(config: AuthHeroConfig): {
6582
6585
  hint?: string | undefined;
6583
6586
  messages?: {
6584
6587
  text: string;
6585
- type: "error" | "success" | "info" | "warning";
6588
+ type: "success" | "error" | "info" | "warning";
6586
6589
  id?: number | undefined;
6587
6590
  }[] | undefined;
6588
6591
  required?: boolean | undefined;
@@ -6607,7 +6610,7 @@ export declare function init(config: AuthHeroConfig): {
6607
6610
  hint?: string | undefined;
6608
6611
  messages?: {
6609
6612
  text: string;
6610
- type: "error" | "success" | "info" | "warning";
6613
+ type: "success" | "error" | "info" | "warning";
6611
6614
  id?: number | undefined;
6612
6615
  }[] | undefined;
6613
6616
  required?: boolean | undefined;
@@ -6628,7 +6631,7 @@ export declare function init(config: AuthHeroConfig): {
6628
6631
  hint?: string | undefined;
6629
6632
  messages?: {
6630
6633
  text: string;
6631
- type: "error" | "success" | "info" | "warning";
6634
+ type: "success" | "error" | "info" | "warning";
6632
6635
  id?: number | undefined;
6633
6636
  }[] | undefined;
6634
6637
  required?: boolean | undefined;
@@ -6649,7 +6652,7 @@ export declare function init(config: AuthHeroConfig): {
6649
6652
  hint?: string | undefined;
6650
6653
  messages?: {
6651
6654
  text: string;
6652
- type: "error" | "success" | "info" | "warning";
6655
+ type: "success" | "error" | "info" | "warning";
6653
6656
  id?: number | undefined;
6654
6657
  }[] | undefined;
6655
6658
  required?: boolean | undefined;
@@ -6879,7 +6882,7 @@ export declare function init(config: AuthHeroConfig): {
6879
6882
  };
6880
6883
  };
6881
6884
  output: {
6882
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6885
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
6883
6886
  language: string;
6884
6887
  }[];
6885
6888
  outputFormat: "json";
@@ -6917,7 +6920,7 @@ export declare function init(config: AuthHeroConfig): {
6917
6920
  $get: {
6918
6921
  input: {
6919
6922
  param: {
6920
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6923
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
6921
6924
  language: string;
6922
6925
  };
6923
6926
  } & {
@@ -6939,7 +6942,7 @@ export declare function init(config: AuthHeroConfig): {
6939
6942
  $put: {
6940
6943
  input: {
6941
6944
  param: {
6942
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6945
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
6943
6946
  language: string;
6944
6947
  };
6945
6948
  } & {
@@ -6963,7 +6966,7 @@ export declare function init(config: AuthHeroConfig): {
6963
6966
  $delete: {
6964
6967
  input: {
6965
6968
  param: {
6966
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6969
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
6967
6970
  language: string;
6968
6971
  };
6969
6972
  } & {
@@ -7102,7 +7105,7 @@ export declare function init(config: AuthHeroConfig): {
7102
7105
  } | undefined;
7103
7106
  } | undefined;
7104
7107
  passkey_options?: {
7105
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7108
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7106
7109
  local_enrollment_enabled?: boolean | undefined;
7107
7110
  progressive_enrollment_enabled?: boolean | undefined;
7108
7111
  } | undefined;
@@ -7236,7 +7239,7 @@ export declare function init(config: AuthHeroConfig): {
7236
7239
  } | undefined;
7237
7240
  } | undefined;
7238
7241
  passkey_options?: {
7239
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7242
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7240
7243
  local_enrollment_enabled?: boolean | undefined;
7241
7244
  progressive_enrollment_enabled?: boolean | undefined;
7242
7245
  } | undefined;
@@ -7385,7 +7388,7 @@ export declare function init(config: AuthHeroConfig): {
7385
7388
  } | undefined;
7386
7389
  } | undefined;
7387
7390
  passkey_options?: {
7388
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7391
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7389
7392
  local_enrollment_enabled?: boolean | undefined;
7390
7393
  progressive_enrollment_enabled?: boolean | undefined;
7391
7394
  } | undefined;
@@ -7564,7 +7567,7 @@ export declare function init(config: AuthHeroConfig): {
7564
7567
  } | undefined;
7565
7568
  } | undefined;
7566
7569
  passkey_options?: {
7567
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7570
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7568
7571
  local_enrollment_enabled?: boolean | undefined;
7569
7572
  progressive_enrollment_enabled?: boolean | undefined;
7570
7573
  } | undefined;
@@ -7722,7 +7725,7 @@ export declare function init(config: AuthHeroConfig): {
7722
7725
  } | undefined;
7723
7726
  } | undefined;
7724
7727
  passkey_options?: {
7725
- challenge_ui?: "button" | "both" | "autofill" | undefined;
7728
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
7726
7729
  local_enrollment_enabled?: boolean | undefined;
7727
7730
  progressive_enrollment_enabled?: boolean | undefined;
7728
7731
  } | undefined;
@@ -7825,7 +7828,7 @@ export declare function init(config: AuthHeroConfig): {
7825
7828
  };
7826
7829
  } | {
7827
7830
  mode: "inline";
7828
- status: "error" | "success";
7831
+ status: "success" | "error";
7829
7832
  connection_id: string;
7830
7833
  connection_name: string;
7831
7834
  strategy: string;
@@ -7861,7 +7864,7 @@ export declare function init(config: AuthHeroConfig): {
7861
7864
  tenant_id: string;
7862
7865
  created_at: string;
7863
7866
  updated_at: string;
7864
- deploymentStatus: "failed" | "deployed" | "not_required";
7867
+ deploymentStatus: "deployed" | "failed" | "not_required";
7865
7868
  secrets?: {
7866
7869
  [x: string]: string;
7867
7870
  } | undefined;
@@ -7951,7 +7954,7 @@ export declare function init(config: AuthHeroConfig): {
7951
7954
  tenant_id: string;
7952
7955
  created_at: string;
7953
7956
  updated_at: string;
7954
- deploymentStatus: "failed" | "deployed" | "not_required";
7957
+ deploymentStatus: "deployed" | "failed" | "not_required";
7955
7958
  secrets?: {
7956
7959
  [x: string]: string;
7957
7960
  } | undefined;
@@ -7999,7 +8002,7 @@ export declare function init(config: AuthHeroConfig): {
7999
8002
  };
8000
8003
  };
8001
8004
  output: ({
8002
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8005
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8003
8006
  enabled: boolean;
8004
8007
  synchronous: boolean;
8005
8008
  created_at: string;
@@ -8011,7 +8014,7 @@ export declare function init(config: AuthHeroConfig): {
8011
8014
  [x: string]: import("hono/utils/types").JSONValue;
8012
8015
  } | undefined;
8013
8016
  } | {
8014
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8017
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8015
8018
  enabled: boolean;
8016
8019
  synchronous: boolean;
8017
8020
  created_at: string;
@@ -8023,7 +8026,7 @@ export declare function init(config: AuthHeroConfig): {
8023
8026
  [x: string]: import("hono/utils/types").JSONValue;
8024
8027
  } | undefined;
8025
8028
  } | {
8026
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8029
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8027
8030
  enabled: boolean;
8028
8031
  synchronous: boolean;
8029
8032
  created_at: string;
@@ -8035,7 +8038,7 @@ export declare function init(config: AuthHeroConfig): {
8035
8038
  [x: string]: import("hono/utils/types").JSONValue;
8036
8039
  } | undefined;
8037
8040
  } | {
8038
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8041
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8039
8042
  enabled: boolean;
8040
8043
  synchronous: boolean;
8041
8044
  created_at: string;
@@ -8051,7 +8054,7 @@ export declare function init(config: AuthHeroConfig): {
8051
8054
  limit: number;
8052
8055
  length: number;
8053
8056
  hooks: ({
8054
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8057
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8055
8058
  enabled: boolean;
8056
8059
  synchronous: boolean;
8057
8060
  created_at: string;
@@ -8063,7 +8066,7 @@ export declare function init(config: AuthHeroConfig): {
8063
8066
  [x: string]: import("hono/utils/types").JSONValue;
8064
8067
  } | undefined;
8065
8068
  } | {
8066
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8069
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8067
8070
  enabled: boolean;
8068
8071
  synchronous: boolean;
8069
8072
  created_at: string;
@@ -8075,7 +8078,7 @@ export declare function init(config: AuthHeroConfig): {
8075
8078
  [x: string]: import("hono/utils/types").JSONValue;
8076
8079
  } | undefined;
8077
8080
  } | {
8078
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8081
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8079
8082
  enabled: boolean;
8080
8083
  synchronous: boolean;
8081
8084
  created_at: string;
@@ -8087,7 +8090,7 @@ export declare function init(config: AuthHeroConfig): {
8087
8090
  [x: string]: import("hono/utils/types").JSONValue;
8088
8091
  } | undefined;
8089
8092
  } | {
8090
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8093
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8091
8094
  enabled: boolean;
8092
8095
  synchronous: boolean;
8093
8096
  created_at: string;
@@ -8114,7 +8117,7 @@ export declare function init(config: AuthHeroConfig): {
8114
8117
  };
8115
8118
  } & {
8116
8119
  json: {
8117
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8120
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8118
8121
  url: string;
8119
8122
  enabled?: boolean | undefined;
8120
8123
  synchronous?: boolean | undefined;
@@ -8122,7 +8125,7 @@ export declare function init(config: AuthHeroConfig): {
8122
8125
  hook_id?: string | undefined;
8123
8126
  metadata?: Record<string, unknown> | undefined;
8124
8127
  } | {
8125
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8128
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8126
8129
  form_id: string;
8127
8130
  enabled?: boolean | undefined;
8128
8131
  synchronous?: boolean | undefined;
@@ -8130,7 +8133,7 @@ export declare function init(config: AuthHeroConfig): {
8130
8133
  hook_id?: string | undefined;
8131
8134
  metadata?: Record<string, unknown> | undefined;
8132
8135
  } | {
8133
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8136
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8134
8137
  template_id: "ensure-username" | "set-preferred-username" | "account-linking";
8135
8138
  enabled?: boolean | undefined;
8136
8139
  synchronous?: boolean | undefined;
@@ -8138,7 +8141,7 @@ export declare function init(config: AuthHeroConfig): {
8138
8141
  hook_id?: string | undefined;
8139
8142
  metadata?: Record<string, unknown> | undefined;
8140
8143
  } | {
8141
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8144
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8142
8145
  code_id: string;
8143
8146
  enabled?: boolean | undefined;
8144
8147
  synchronous?: boolean | undefined;
@@ -8148,7 +8151,7 @@ export declare function init(config: AuthHeroConfig): {
8148
8151
  };
8149
8152
  };
8150
8153
  output: {
8151
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8154
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8152
8155
  enabled: boolean;
8153
8156
  synchronous: boolean;
8154
8157
  created_at: string;
@@ -8160,7 +8163,7 @@ export declare function init(config: AuthHeroConfig): {
8160
8163
  [x: string]: import("hono/utils/types").JSONValue;
8161
8164
  } | undefined;
8162
8165
  } | {
8163
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8166
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8164
8167
  enabled: boolean;
8165
8168
  synchronous: boolean;
8166
8169
  created_at: string;
@@ -8172,7 +8175,7 @@ export declare function init(config: AuthHeroConfig): {
8172
8175
  [x: string]: import("hono/utils/types").JSONValue;
8173
8176
  } | undefined;
8174
8177
  } | {
8175
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8178
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8176
8179
  enabled: boolean;
8177
8180
  synchronous: boolean;
8178
8181
  created_at: string;
@@ -8184,7 +8187,7 @@ export declare function init(config: AuthHeroConfig): {
8184
8187
  [x: string]: import("hono/utils/types").JSONValue;
8185
8188
  } | undefined;
8186
8189
  } | {
8187
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8190
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8188
8191
  enabled: boolean;
8189
8192
  synchronous: boolean;
8190
8193
  created_at: string;
@@ -8230,7 +8233,7 @@ export declare function init(config: AuthHeroConfig): {
8230
8233
  json: unknown;
8231
8234
  };
8232
8235
  output: {
8233
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8236
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8234
8237
  enabled: boolean;
8235
8238
  synchronous: boolean;
8236
8239
  created_at: string;
@@ -8242,7 +8245,7 @@ export declare function init(config: AuthHeroConfig): {
8242
8245
  [x: string]: import("hono/utils/types").JSONValue;
8243
8246
  } | undefined;
8244
8247
  } | {
8245
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8248
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8246
8249
  enabled: boolean;
8247
8250
  synchronous: boolean;
8248
8251
  created_at: string;
@@ -8254,7 +8257,7 @@ export declare function init(config: AuthHeroConfig): {
8254
8257
  [x: string]: import("hono/utils/types").JSONValue;
8255
8258
  } | undefined;
8256
8259
  } | {
8257
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8260
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8258
8261
  enabled: boolean;
8259
8262
  synchronous: boolean;
8260
8263
  created_at: string;
@@ -8266,7 +8269,7 @@ export declare function init(config: AuthHeroConfig): {
8266
8269
  [x: string]: import("hono/utils/types").JSONValue;
8267
8270
  } | undefined;
8268
8271
  } | {
8269
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8272
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8270
8273
  enabled: boolean;
8271
8274
  synchronous: boolean;
8272
8275
  created_at: string;
@@ -8308,7 +8311,7 @@ export declare function init(config: AuthHeroConfig): {
8308
8311
  };
8309
8312
  };
8310
8313
  output: {
8311
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8314
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8312
8315
  enabled: boolean;
8313
8316
  synchronous: boolean;
8314
8317
  created_at: string;
@@ -8320,7 +8323,7 @@ export declare function init(config: AuthHeroConfig): {
8320
8323
  [x: string]: import("hono/utils/types").JSONValue;
8321
8324
  } | undefined;
8322
8325
  } | {
8323
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8326
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8324
8327
  enabled: boolean;
8325
8328
  synchronous: boolean;
8326
8329
  created_at: string;
@@ -8332,7 +8335,7 @@ export declare function init(config: AuthHeroConfig): {
8332
8335
  [x: string]: import("hono/utils/types").JSONValue;
8333
8336
  } | undefined;
8334
8337
  } | {
8335
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8338
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8336
8339
  enabled: boolean;
8337
8340
  synchronous: boolean;
8338
8341
  created_at: string;
@@ -8344,7 +8347,7 @@ export declare function init(config: AuthHeroConfig): {
8344
8347
  [x: string]: import("hono/utils/types").JSONValue;
8345
8348
  } | undefined;
8346
8349
  } | {
8347
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8350
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8348
8351
  enabled: boolean;
8349
8352
  synchronous: boolean;
8350
8353
  created_at: string;
@@ -8462,9 +8465,9 @@ export declare function init(config: AuthHeroConfig): {
8462
8465
  tenant_id: string;
8463
8466
  event_type: string;
8464
8467
  log_type: string;
8465
- category: "user_action" | "admin_action" | "system" | "api";
8468
+ category: "api" | "user_action" | "admin_action" | "system";
8466
8469
  actor: {
8467
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8470
+ type: "user" | "system" | "client_credentials" | "admin" | "api_key";
8468
8471
  id?: string | undefined;
8469
8472
  email?: string | undefined;
8470
8473
  org_id?: string | undefined;
@@ -8774,7 +8777,7 @@ export declare function init(config: AuthHeroConfig): {
8774
8777
  created_at: string;
8775
8778
  updated_at: string;
8776
8779
  name: string;
8777
- provider: "auth0" | "oidc" | "okta" | "cognito";
8780
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8778
8781
  connection: string;
8779
8782
  enabled: boolean;
8780
8783
  credentials: {
@@ -8806,7 +8809,7 @@ export declare function init(config: AuthHeroConfig): {
8806
8809
  created_at: string;
8807
8810
  updated_at: string;
8808
8811
  name: string;
8809
- provider: "auth0" | "oidc" | "okta" | "cognito";
8812
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8810
8813
  connection: string;
8811
8814
  enabled: boolean;
8812
8815
  credentials: {
@@ -8832,7 +8835,7 @@ export declare function init(config: AuthHeroConfig): {
8832
8835
  } & {
8833
8836
  json: {
8834
8837
  name: string;
8835
- provider: "auth0" | "oidc" | "okta" | "cognito";
8838
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8836
8839
  connection: string;
8837
8840
  credentials: {
8838
8841
  domain: string;
@@ -8849,7 +8852,7 @@ export declare function init(config: AuthHeroConfig): {
8849
8852
  created_at: string;
8850
8853
  updated_at: string;
8851
8854
  name: string;
8852
- provider: "auth0" | "oidc" | "okta" | "cognito";
8855
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8853
8856
  connection: string;
8854
8857
  enabled: boolean;
8855
8858
  credentials: {
@@ -8880,7 +8883,7 @@ export declare function init(config: AuthHeroConfig): {
8880
8883
  json: {
8881
8884
  id?: string | undefined;
8882
8885
  name?: string | undefined;
8883
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8886
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8884
8887
  connection?: string | undefined;
8885
8888
  enabled?: boolean | undefined;
8886
8889
  credentials?: {
@@ -8896,7 +8899,7 @@ export declare function init(config: AuthHeroConfig): {
8896
8899
  created_at: string;
8897
8900
  updated_at: string;
8898
8901
  name: string;
8899
- provider: "auth0" | "oidc" | "okta" | "cognito";
8902
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8900
8903
  connection: string;
8901
8904
  enabled: boolean;
8902
8905
  credentials: {
@@ -8944,7 +8947,7 @@ export declare function init(config: AuthHeroConfig): {
8944
8947
  [x: string]: import("hono/utils/types").JSONValue;
8945
8948
  };
8946
8949
  id: string;
8947
- status: "active" | "suspended" | "paused";
8950
+ status: "suspended" | "active" | "paused";
8948
8951
  filters?: {
8949
8952
  type: string;
8950
8953
  name: string;
@@ -8976,7 +8979,7 @@ export declare function init(config: AuthHeroConfig): {
8976
8979
  [x: string]: import("hono/utils/types").JSONValue;
8977
8980
  };
8978
8981
  id: string;
8979
- status: "active" | "suspended" | "paused";
8982
+ status: "suspended" | "active" | "paused";
8980
8983
  filters?: {
8981
8984
  type: string;
8982
8985
  name: string;
@@ -9001,7 +9004,7 @@ export declare function init(config: AuthHeroConfig): {
9001
9004
  name: string;
9002
9005
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
9003
9006
  sink: Record<string, unknown>;
9004
- status?: "active" | "suspended" | "paused" | undefined;
9007
+ status?: "suspended" | "active" | "paused" | undefined;
9005
9008
  filters?: {
9006
9009
  type: string;
9007
9010
  name: string;
@@ -9016,7 +9019,7 @@ export declare function init(config: AuthHeroConfig): {
9016
9019
  [x: string]: import("hono/utils/types").JSONValue;
9017
9020
  };
9018
9021
  id: string;
9019
- status: "active" | "suspended" | "paused";
9022
+ status: "suspended" | "active" | "paused";
9020
9023
  filters?: {
9021
9024
  type: string;
9022
9025
  name: string;
@@ -9051,7 +9054,7 @@ export declare function init(config: AuthHeroConfig): {
9051
9054
  }[] | undefined;
9052
9055
  isPriority?: boolean | undefined;
9053
9056
  id?: string | undefined;
9054
- status?: "active" | "suspended" | "paused" | undefined;
9057
+ status?: "suspended" | "active" | "paused" | undefined;
9055
9058
  created_at?: string | undefined;
9056
9059
  updated_at?: string | undefined;
9057
9060
  };
@@ -9063,7 +9066,7 @@ export declare function init(config: AuthHeroConfig): {
9063
9066
  [x: string]: import("hono/utils/types").JSONValue;
9064
9067
  };
9065
9068
  id: string;
9066
- status: "active" | "suspended" | "paused";
9069
+ status: "suspended" | "active" | "paused";
9067
9070
  filters?: {
9068
9071
  type: string;
9069
9072
  name: string;
@@ -9114,7 +9117,7 @@ export declare function init(config: AuthHeroConfig): {
9114
9117
  };
9115
9118
  };
9116
9119
  output: {
9117
- type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9120
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9118
9121
  date: string;
9119
9122
  isMobile: boolean;
9120
9123
  log_id: string;
@@ -9153,7 +9156,7 @@ export declare function init(config: AuthHeroConfig): {
9153
9156
  limit: number;
9154
9157
  length: number;
9155
9158
  logs: {
9156
- type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9159
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9157
9160
  date: string;
9158
9161
  isMobile: boolean;
9159
9162
  log_id: string;
@@ -9207,7 +9210,7 @@ export declare function init(config: AuthHeroConfig): {
9207
9210
  };
9208
9211
  };
9209
9212
  output: {
9210
- type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9213
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9211
9214
  date: string;
9212
9215
  isMobile: boolean;
9213
9216
  log_id: string;
@@ -9362,7 +9365,7 @@ export declare function init(config: AuthHeroConfig): {
9362
9365
  audience?: string | undefined;
9363
9366
  client_id?: string | undefined;
9364
9367
  allow_any_organization?: string | undefined;
9365
- subject_type?: "user" | "client" | undefined;
9368
+ subject_type?: "client" | "user" | undefined;
9366
9369
  };
9367
9370
  } & {
9368
9371
  header: {
@@ -9377,7 +9380,7 @@ export declare function init(config: AuthHeroConfig): {
9377
9380
  organization_usage?: "deny" | "allow" | "require" | undefined;
9378
9381
  allow_any_organization?: boolean | undefined;
9379
9382
  is_system?: boolean | undefined;
9380
- subject_type?: "user" | "client" | undefined;
9383
+ subject_type?: "client" | "user" | undefined;
9381
9384
  authorization_details_types?: string[] | undefined;
9382
9385
  created_at?: string | undefined;
9383
9386
  updated_at?: string | undefined;
@@ -9393,7 +9396,7 @@ export declare function init(config: AuthHeroConfig): {
9393
9396
  organization_usage?: "deny" | "allow" | "require" | undefined;
9394
9397
  allow_any_organization?: boolean | undefined;
9395
9398
  is_system?: boolean | undefined;
9396
- subject_type?: "user" | "client" | undefined;
9399
+ subject_type?: "client" | "user" | undefined;
9397
9400
  authorization_details_types?: string[] | undefined;
9398
9401
  created_at?: string | undefined;
9399
9402
  updated_at?: string | undefined;
@@ -9424,7 +9427,7 @@ export declare function init(config: AuthHeroConfig): {
9424
9427
  organization_usage?: "deny" | "allow" | "require" | undefined;
9425
9428
  allow_any_organization?: boolean | undefined;
9426
9429
  is_system?: boolean | undefined;
9427
- subject_type?: "user" | "client" | undefined;
9430
+ subject_type?: "client" | "user" | undefined;
9428
9431
  authorization_details_types?: string[] | undefined;
9429
9432
  created_at?: string | undefined;
9430
9433
  updated_at?: string | undefined;
@@ -9469,7 +9472,7 @@ export declare function init(config: AuthHeroConfig): {
9469
9472
  organization_usage?: "deny" | "allow" | "require" | undefined;
9470
9473
  allow_any_organization?: boolean | undefined;
9471
9474
  is_system?: boolean | undefined;
9472
- subject_type?: "user" | "client" | undefined;
9475
+ subject_type?: "client" | "user" | undefined;
9473
9476
  authorization_details_types?: string[] | undefined;
9474
9477
  };
9475
9478
  };
@@ -9481,7 +9484,7 @@ export declare function init(config: AuthHeroConfig): {
9481
9484
  organization_usage?: "deny" | "allow" | "require" | undefined;
9482
9485
  allow_any_organization?: boolean | undefined;
9483
9486
  is_system?: boolean | undefined;
9484
- subject_type?: "user" | "client" | undefined;
9487
+ subject_type?: "client" | "user" | undefined;
9485
9488
  authorization_details_types?: string[] | undefined;
9486
9489
  created_at?: string | undefined;
9487
9490
  updated_at?: string | undefined;
@@ -9505,7 +9508,7 @@ export declare function init(config: AuthHeroConfig): {
9505
9508
  organization_usage?: "deny" | "allow" | "require" | undefined;
9506
9509
  allow_any_organization?: boolean | undefined;
9507
9510
  is_system?: boolean | undefined;
9508
- subject_type?: "user" | "client" | undefined;
9511
+ subject_type?: "client" | "user" | undefined;
9509
9512
  authorization_details_types?: string[] | undefined;
9510
9513
  };
9511
9514
  };
@@ -9517,7 +9520,7 @@ export declare function init(config: AuthHeroConfig): {
9517
9520
  organization_usage?: "deny" | "allow" | "require" | undefined;
9518
9521
  allow_any_organization?: boolean | undefined;
9519
9522
  is_system?: boolean | undefined;
9520
- subject_type?: "user" | "client" | undefined;
9523
+ subject_type?: "client" | "user" | undefined;
9521
9524
  authorization_details_types?: string[] | undefined;
9522
9525
  created_at?: string | undefined;
9523
9526
  updated_at?: string | undefined;
@@ -9595,7 +9598,7 @@ export declare function init(config: AuthHeroConfig): {
9595
9598
  addons?: {
9596
9599
  [x: string]: any;
9597
9600
  } | undefined;
9598
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9601
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9599
9602
  client_metadata?: {
9600
9603
  [x: string]: string;
9601
9604
  } | undefined;
@@ -9691,7 +9694,7 @@ export declare function init(config: AuthHeroConfig): {
9691
9694
  addons?: {
9692
9695
  [x: string]: any;
9693
9696
  } | undefined;
9694
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9697
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9695
9698
  client_metadata?: {
9696
9699
  [x: string]: string;
9697
9700
  } | undefined;
@@ -9802,7 +9805,7 @@ export declare function init(config: AuthHeroConfig): {
9802
9805
  addons?: {
9803
9806
  [x: string]: any;
9804
9807
  } | undefined;
9805
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9808
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9806
9809
  client_metadata?: {
9807
9810
  [x: string]: string;
9808
9811
  } | undefined;
@@ -9912,7 +9915,7 @@ export declare function init(config: AuthHeroConfig): {
9912
9915
  custom_login_page_preview?: string | undefined;
9913
9916
  form_template?: string | undefined;
9914
9917
  addons?: Record<string, any> | undefined;
9915
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9918
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9916
9919
  client_metadata?: Record<string, string> | undefined;
9917
9920
  hide_sign_up_disabled_error?: boolean | undefined;
9918
9921
  mobile?: Record<string, any> | undefined;
@@ -9992,7 +9995,7 @@ export declare function init(config: AuthHeroConfig): {
9992
9995
  addons?: {
9993
9996
  [x: string]: any;
9994
9997
  } | undefined;
9995
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9998
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9996
9999
  client_metadata?: {
9997
10000
  [x: string]: string;
9998
10001
  } | undefined;
@@ -10081,7 +10084,7 @@ export declare function init(config: AuthHeroConfig): {
10081
10084
  custom_login_page_preview?: string | undefined;
10082
10085
  form_template?: string | undefined;
10083
10086
  addons?: Record<string, any> | undefined;
10084
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10087
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10085
10088
  client_metadata?: Record<string, string> | undefined;
10086
10089
  hide_sign_up_disabled_error?: boolean | undefined;
10087
10090
  mobile?: Record<string, any> | undefined;
@@ -10161,7 +10164,7 @@ export declare function init(config: AuthHeroConfig): {
10161
10164
  addons?: {
10162
10165
  [x: string]: any;
10163
10166
  } | undefined;
10164
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10167
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10165
10168
  client_metadata?: {
10166
10169
  [x: string]: string;
10167
10170
  } | undefined;
@@ -10330,7 +10333,7 @@ export declare function init(config: AuthHeroConfig): {
10330
10333
  } | undefined;
10331
10334
  } | undefined;
10332
10335
  passkey_options?: {
10333
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10336
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10334
10337
  local_enrollment_enabled?: boolean | undefined;
10335
10338
  progressive_enrollment_enabled?: boolean | undefined;
10336
10339
  } | undefined;
@@ -10484,7 +10487,7 @@ export declare function init(config: AuthHeroConfig): {
10484
10487
  } | undefined;
10485
10488
  } | undefined;
10486
10489
  passkey_options?: {
10487
- challenge_ui?: "button" | "both" | "autofill" | undefined;
10490
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
10488
10491
  local_enrollment_enabled?: boolean | undefined;
10489
10492
  progressive_enrollment_enabled?: boolean | undefined;
10490
10493
  } | undefined;
@@ -11425,7 +11428,7 @@ export declare function init(config: AuthHeroConfig): {
11425
11428
  };
11426
11429
  };
11427
11430
  output: {
11428
- type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11431
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11429
11432
  date: string;
11430
11433
  isMobile: boolean;
11431
11434
  log_id: string;
@@ -11464,7 +11467,7 @@ export declare function init(config: AuthHeroConfig): {
11464
11467
  limit: number;
11465
11468
  length: number;
11466
11469
  logs: {
11467
- type: "i" | "s" | "fc" | "fd" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11470
+ type: "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11468
11471
  date: string;
11469
11472
  isMobile: boolean;
11470
11473
  log_id: string;
@@ -11558,6 +11561,7 @@ export declare function init(config: AuthHeroConfig): {
11558
11561
  permissions: {
11559
11562
  permission_name: string;
11560
11563
  resource_server_identifier: string;
11564
+ organization_id?: string | undefined;
11561
11565
  }[];
11562
11566
  };
11563
11567
  };
@@ -11582,6 +11586,7 @@ export declare function init(config: AuthHeroConfig): {
11582
11586
  permissions: {
11583
11587
  permission_name: string;
11584
11588
  resource_server_identifier: string;
11589
+ organization_id?: string | undefined;
11585
11590
  }[];
11586
11591
  };
11587
11592
  };
@@ -11779,7 +11784,7 @@ export declare function init(config: AuthHeroConfig): {
11779
11784
  };
11780
11785
  } & {
11781
11786
  json: {
11782
- 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";
11787
+ 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";
11783
11788
  body: string;
11784
11789
  from: string;
11785
11790
  subject: string;
@@ -11800,7 +11805,7 @@ export declare function init(config: AuthHeroConfig): {
11800
11805
  };
11801
11806
  } & {
11802
11807
  json: {
11803
- 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";
11808
+ 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";
11804
11809
  body: string;
11805
11810
  from: string;
11806
11811
  subject: string;
@@ -11812,7 +11817,7 @@ export declare function init(config: AuthHeroConfig): {
11812
11817
  };
11813
11818
  };
11814
11819
  output: {
11815
- 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";
11820
+ 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";
11816
11821
  body: string;
11817
11822
  from: string;
11818
11823
  subject: string;
@@ -11835,7 +11840,7 @@ export declare function init(config: AuthHeroConfig): {
11835
11840
  };
11836
11841
  };
11837
11842
  output: {
11838
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11843
+ name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11839
11844
  body: string;
11840
11845
  subject: string;
11841
11846
  }[];
@@ -11848,7 +11853,7 @@ export declare function init(config: AuthHeroConfig): {
11848
11853
  $get: {
11849
11854
  input: {
11850
11855
  param: {
11851
- 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";
11856
+ 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";
11852
11857
  };
11853
11858
  } & {
11854
11859
  header: {
@@ -11861,7 +11866,7 @@ export declare function init(config: AuthHeroConfig): {
11861
11866
  } | {
11862
11867
  input: {
11863
11868
  param: {
11864
- 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";
11869
+ 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";
11865
11870
  };
11866
11871
  } & {
11867
11872
  header: {
@@ -11869,7 +11874,7 @@ export declare function init(config: AuthHeroConfig): {
11869
11874
  };
11870
11875
  };
11871
11876
  output: {
11872
- 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";
11877
+ 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";
11873
11878
  body: string;
11874
11879
  from: string;
11875
11880
  subject: string;
@@ -11888,7 +11893,7 @@ export declare function init(config: AuthHeroConfig): {
11888
11893
  $put: {
11889
11894
  input: {
11890
11895
  param: {
11891
- 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";
11896
+ 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";
11892
11897
  };
11893
11898
  } & {
11894
11899
  header: {
@@ -11896,7 +11901,7 @@ export declare function init(config: AuthHeroConfig): {
11896
11901
  };
11897
11902
  } & {
11898
11903
  json: {
11899
- 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";
11904
+ 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";
11900
11905
  body: string;
11901
11906
  subject: string;
11902
11907
  syntax?: "liquid" | undefined;
@@ -11908,7 +11913,7 @@ export declare function init(config: AuthHeroConfig): {
11908
11913
  };
11909
11914
  };
11910
11915
  output: {
11911
- 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";
11916
+ 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";
11912
11917
  body: string;
11913
11918
  from: string;
11914
11919
  subject: string;
@@ -11927,7 +11932,7 @@ export declare function init(config: AuthHeroConfig): {
11927
11932
  $patch: {
11928
11933
  input: {
11929
11934
  param: {
11930
- 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";
11935
+ 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";
11931
11936
  };
11932
11937
  } & {
11933
11938
  header: {
@@ -11935,7 +11940,7 @@ export declare function init(config: AuthHeroConfig): {
11935
11940
  };
11936
11941
  } & {
11937
11942
  json: {
11938
- 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;
11943
+ 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;
11939
11944
  body?: string | undefined;
11940
11945
  from?: string | undefined;
11941
11946
  subject?: string | undefined;
@@ -11952,7 +11957,7 @@ export declare function init(config: AuthHeroConfig): {
11952
11957
  } | {
11953
11958
  input: {
11954
11959
  param: {
11955
- 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";
11960
+ 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";
11956
11961
  };
11957
11962
  } & {
11958
11963
  header: {
@@ -11960,7 +11965,7 @@ export declare function init(config: AuthHeroConfig): {
11960
11965
  };
11961
11966
  } & {
11962
11967
  json: {
11963
- 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;
11968
+ 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;
11964
11969
  body?: string | undefined;
11965
11970
  from?: string | undefined;
11966
11971
  subject?: string | undefined;
@@ -11972,7 +11977,7 @@ export declare function init(config: AuthHeroConfig): {
11972
11977
  };
11973
11978
  };
11974
11979
  output: {
11975
- 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";
11980
+ 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";
11976
11981
  body: string;
11977
11982
  from: string;
11978
11983
  subject: string;
@@ -11991,7 +11996,7 @@ export declare function init(config: AuthHeroConfig): {
11991
11996
  $delete: {
11992
11997
  input: {
11993
11998
  param: {
11994
- 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";
11999
+ 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";
11995
12000
  };
11996
12001
  } & {
11997
12002
  header: {
@@ -12004,7 +12009,7 @@ export declare function init(config: AuthHeroConfig): {
12004
12009
  } | {
12005
12010
  input: {
12006
12011
  param: {
12007
- 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";
12012
+ 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";
12008
12013
  };
12009
12014
  } & {
12010
12015
  header: {
@@ -12021,7 +12026,7 @@ export declare function init(config: AuthHeroConfig): {
12021
12026
  $post: {
12022
12027
  input: {
12023
12028
  param: {
12024
- 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";
12029
+ 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";
12025
12030
  };
12026
12031
  } & {
12027
12032
  header: {
@@ -12973,7 +12978,7 @@ export declare function init(config: AuthHeroConfig): {
12973
12978
  } & {
12974
12979
  json: {
12975
12980
  body?: string | undefined;
12976
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
12981
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
12977
12982
  branding?: {
12978
12983
  colors?: {
12979
12984
  primary: string;
@@ -13142,7 +13147,7 @@ export declare function init(config: AuthHeroConfig): {
13142
13147
  json: {
13143
13148
  bindings: {
13144
13149
  ref: {
13145
- type?: "action_id" | "action_name" | undefined;
13150
+ type?: "action_name" | "action_id" | undefined;
13146
13151
  value?: string | undefined;
13147
13152
  id?: string | undefined;
13148
13153
  name?: string | undefined;
@@ -13217,7 +13222,7 @@ export declare function init(config: AuthHeroConfig): {
13217
13222
  output: {
13218
13223
  id: string;
13219
13224
  trigger_id: string;
13220
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13225
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
13221
13226
  results: {
13222
13227
  action_name: string;
13223
13228
  error: {
@@ -13264,7 +13269,7 @@ export declare function init(config: AuthHeroConfig): {
13264
13269
  logs: {
13265
13270
  action_name: string;
13266
13271
  lines: {
13267
- level: "log" | "error" | "info" | "warn" | "debug";
13272
+ level: "error" | "log" | "info" | "warn" | "debug";
13268
13273
  message: string;
13269
13274
  }[];
13270
13275
  }[];
@@ -13931,7 +13936,7 @@ export declare function init(config: AuthHeroConfig): {
13931
13936
  args: import("hono/utils/types").JSONValue[];
13932
13937
  }[];
13933
13938
  logs: {
13934
- level: "log" | "error" | "info" | "warn" | "debug";
13939
+ level: "error" | "log" | "info" | "warn" | "debug";
13935
13940
  message: string;
13936
13941
  }[];
13937
13942
  error?: string | undefined;
@@ -14242,7 +14247,7 @@ export declare function init(config: AuthHeroConfig): {
14242
14247
  scope?: string | undefined;
14243
14248
  grant_types?: string[] | undefined;
14244
14249
  response_types?: string[] | undefined;
14245
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14250
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14246
14251
  jwks_uri?: string | undefined;
14247
14252
  jwks?: Record<string, unknown> | undefined;
14248
14253
  software_id?: string | undefined;
@@ -14331,7 +14336,7 @@ export declare function init(config: AuthHeroConfig): {
14331
14336
  scope?: string | undefined;
14332
14337
  grant_types?: string[] | undefined;
14333
14338
  response_types?: string[] | undefined;
14334
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14339
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14335
14340
  jwks_uri?: string | undefined;
14336
14341
  jwks?: Record<string, unknown> | undefined;
14337
14342
  software_id?: string | undefined;
@@ -14678,19 +14683,19 @@ export declare function init(config: AuthHeroConfig): {
14678
14683
  send: "code" | "link";
14679
14684
  authParams: {
14680
14685
  username?: string | undefined;
14681
- state?: string | undefined;
14686
+ scope?: string | undefined;
14682
14687
  audience?: string | undefined;
14688
+ organization?: string | undefined;
14689
+ state?: string | undefined;
14683
14690
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14684
14691
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14685
- scope?: string | undefined;
14686
- organization?: string | undefined;
14687
- nonce?: string | undefined;
14692
+ prompt?: string | undefined;
14693
+ ui_locales?: string | undefined;
14688
14694
  redirect_uri?: string | undefined;
14689
14695
  act_as?: string | undefined;
14690
- prompt?: string | undefined;
14696
+ nonce?: string | undefined;
14691
14697
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14692
14698
  code_challenge?: string | undefined;
14693
- ui_locales?: string | undefined;
14694
14699
  max_age?: number | undefined;
14695
14700
  acr_values?: string | undefined;
14696
14701
  claims?: {
@@ -14714,19 +14719,19 @@ export declare function init(config: AuthHeroConfig): {
14714
14719
  send: "code" | "link";
14715
14720
  authParams: {
14716
14721
  username?: string | undefined;
14717
- state?: string | undefined;
14722
+ scope?: string | undefined;
14718
14723
  audience?: string | undefined;
14724
+ organization?: string | undefined;
14725
+ state?: string | undefined;
14719
14726
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14720
14727
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14721
- scope?: string | undefined;
14722
- organization?: string | undefined;
14723
- nonce?: string | undefined;
14728
+ prompt?: string | undefined;
14729
+ ui_locales?: string | undefined;
14724
14730
  redirect_uri?: string | undefined;
14725
14731
  act_as?: string | undefined;
14726
- prompt?: string | undefined;
14732
+ nonce?: string | undefined;
14727
14733
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14728
14734
  code_challenge?: string | undefined;
14729
- ui_locales?: string | undefined;
14730
14735
  max_age?: number | undefined;
14731
14736
  acr_values?: string | undefined;
14732
14737
  claims?: {
@@ -14955,7 +14960,7 @@ export declare function init(config: AuthHeroConfig): {
14955
14960
  client_id: string;
14956
14961
  username: string;
14957
14962
  otp: string;
14958
- realm: "sms" | "email";
14963
+ realm: "email" | "sms";
14959
14964
  } | {
14960
14965
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14961
14966
  subject_token: string;
@@ -15002,7 +15007,7 @@ export declare function init(config: AuthHeroConfig): {
15002
15007
  client_id: string;
15003
15008
  username: string;
15004
15009
  otp: string;
15005
- realm: "sms" | "email";
15010
+ realm: "email" | "sms";
15006
15011
  } | {
15007
15012
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15008
15013
  subject_token: string;
@@ -15054,7 +15059,7 @@ export declare function init(config: AuthHeroConfig): {
15054
15059
  client_id: string;
15055
15060
  username: string;
15056
15061
  otp: string;
15057
- realm: "sms" | "email";
15062
+ realm: "email" | "sms";
15058
15063
  } | {
15059
15064
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15060
15065
  subject_token: string;
@@ -15101,7 +15106,7 @@ export declare function init(config: AuthHeroConfig): {
15101
15106
  client_id: string;
15102
15107
  username: string;
15103
15108
  otp: string;
15104
- realm: "sms" | "email";
15109
+ realm: "email" | "sms";
15105
15110
  } | {
15106
15111
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15107
15112
  subject_token: string;
@@ -15161,7 +15166,7 @@ export declare function init(config: AuthHeroConfig): {
15161
15166
  client_id: string;
15162
15167
  username: string;
15163
15168
  otp: string;
15164
- realm: "sms" | "email";
15169
+ realm: "email" | "sms";
15165
15170
  } | {
15166
15171
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15167
15172
  subject_token: string;
@@ -15208,7 +15213,7 @@ export declare function init(config: AuthHeroConfig): {
15208
15213
  client_id: string;
15209
15214
  username: string;
15210
15215
  otp: string;
15211
- realm: "sms" | "email";
15216
+ realm: "email" | "sms";
15212
15217
  } | {
15213
15218
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15214
15219
  subject_token: string;
@@ -15263,7 +15268,7 @@ export declare function init(config: AuthHeroConfig): {
15263
15268
  client_id: string;
15264
15269
  username: string;
15265
15270
  otp: string;
15266
- realm: "sms" | "email";
15271
+ realm: "email" | "sms";
15267
15272
  } | {
15268
15273
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15269
15274
  subject_token: string;
@@ -15310,7 +15315,7 @@ export declare function init(config: AuthHeroConfig): {
15310
15315
  client_id: string;
15311
15316
  username: string;
15312
15317
  otp: string;
15313
- realm: "sms" | "email";
15318
+ realm: "email" | "sms";
15314
15319
  } | {
15315
15320
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15316
15321
  subject_token: string;
@@ -15365,7 +15370,7 @@ export declare function init(config: AuthHeroConfig): {
15365
15370
  client_id: string;
15366
15371
  username: string;
15367
15372
  otp: string;
15368
- realm: "sms" | "email";
15373
+ realm: "email" | "sms";
15369
15374
  } | {
15370
15375
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15371
15376
  subject_token: string;
@@ -15412,7 +15417,7 @@ export declare function init(config: AuthHeroConfig): {
15412
15417
  client_id: string;
15413
15418
  username: string;
15414
15419
  otp: string;
15415
- realm: "sms" | "email";
15420
+ realm: "email" | "sms";
15416
15421
  } | {
15417
15422
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15418
15423
  subject_token: string;
@@ -16632,7 +16637,7 @@ export declare function init(config: AuthHeroConfig): {
16632
16637
  $get: {
16633
16638
  input: {
16634
16639
  param: {
16635
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16640
+ screen: "login" | "signup" | "reset-password" | "consent" | "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";
16636
16641
  };
16637
16642
  } & {
16638
16643
  query: {
@@ -16648,7 +16653,7 @@ export declare function init(config: AuthHeroConfig): {
16648
16653
  } | {
16649
16654
  input: {
16650
16655
  param: {
16651
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16656
+ screen: "login" | "signup" | "reset-password" | "consent" | "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";
16652
16657
  };
16653
16658
  } & {
16654
16659
  query: {
@@ -16664,7 +16669,7 @@ export declare function init(config: AuthHeroConfig): {
16664
16669
  } | {
16665
16670
  input: {
16666
16671
  param: {
16667
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16672
+ screen: "login" | "signup" | "reset-password" | "consent" | "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";
16668
16673
  };
16669
16674
  } & {
16670
16675
  query: {
@@ -16684,7 +16689,7 @@ export declare function init(config: AuthHeroConfig): {
16684
16689
  $post: {
16685
16690
  input: {
16686
16691
  param: {
16687
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16692
+ screen: "login" | "signup" | "reset-password" | "consent" | "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";
16688
16693
  };
16689
16694
  } & {
16690
16695
  query: {
@@ -16702,7 +16707,7 @@ export declare function init(config: AuthHeroConfig): {
16702
16707
  } | {
16703
16708
  input: {
16704
16709
  param: {
16705
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16710
+ screen: "login" | "signup" | "reset-password" | "consent" | "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";
16706
16711
  };
16707
16712
  } & {
16708
16713
  query: {