authhero 9.10.0 → 9.11.1

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 (39) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +146 -146
  3. package/dist/authhero.d.ts +494 -250
  4. package/dist/authhero.mjs +15108 -14199
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  7. package/dist/types/helpers/reserved-claims.d.ts +19 -3
  8. package/dist/types/helpers/run-retention.d.ts +5 -0
  9. package/dist/types/helpers/users-import/map.d.ts +128 -0
  10. package/dist/types/helpers/users-import/process.d.ts +95 -0
  11. package/dist/types/helpers/users-import-cleanup.d.ts +26 -0
  12. package/dist/types/index.d.ts +369 -246
  13. package/dist/types/routes/auth-api/index.d.ts +9 -9
  14. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  15. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  16. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  17. package/dist/types/routes/management-api/branding.d.ts +9 -9
  18. package/dist/types/routes/management-api/client-grants.d.ts +9 -9
  19. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  20. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  21. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  22. package/dist/types/routes/management-api/index.d.ts +333 -214
  23. package/dist/types/routes/management-api/jobs.d.ts +133 -0
  24. package/dist/types/routes/management-api/keys.d.ts +12 -12
  25. package/dist/types/routes/management-api/logs.d.ts +4 -4
  26. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  27. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  30. package/dist/types/routes/management-api/tenant-operations.d.ts +32 -8
  31. package/dist/types/routes/management-api/users.d.ts +12 -12
  32. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  33. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  34. package/dist/types/state-machines/login-session.d.ts +1 -1
  35. package/dist/types/types/AuthHeroConfig.d.ts +34 -0
  36. package/dist/types/types/Bindings.d.ts +3 -0
  37. package/dist/types/types/auth0/UserImport.d.ts +317 -0
  38. package/dist/types/utils/jwks.d.ts +2 -2
  39. package/package.json +6 -6
@@ -18,6 +18,10 @@ export type { OutboxMetric, OutboxMetricName, OutboxMetricsSink, } from "./types
18
18
  export { cleanupOutbox } from "./helpers/outbox-cleanup";
19
19
  export { cleanupCodes } from "./helpers/codes-cleanup";
20
20
  export { cleanupActionExecutions } from "./helpers/action-executions-cleanup";
21
+ export { cleanupUsersImports } from "./helpers/users-import-cleanup";
22
+ export type { UsersImportCleanupParams } from "./helpers/users-import-cleanup";
23
+ export { advanceUsersImport, resumeUsersImports, } from "./helpers/users-import/process";
24
+ export type { AdvanceOptions, AdvanceResult, ResumeUsersImportsOptions, ResumeUsersImportsResult, } from "./helpers/users-import/process";
21
25
  export type { OutboxCleanupParams } from "./helpers/outbox-cleanup";
22
26
  export type { CodesCleanupParams } from "./helpers/codes-cleanup";
23
27
  export type { ActionExecutionsCleanupParams } from "./helpers/action-executions-cleanup";
@@ -78,6 +82,125 @@ export declare function init(config: AuthHeroConfig): {
78
82
  Bindings: Bindings;
79
83
  Variables: Variables;
80
84
  }, import("hono/types").MergeSchemaPath<{
85
+ "/users-imports": {
86
+ $post: {
87
+ input: {
88
+ header: {
89
+ "tenant-id"?: string | undefined;
90
+ };
91
+ } & {
92
+ form: {
93
+ users: any;
94
+ connection_id: string;
95
+ upsert?: string | boolean | undefined;
96
+ external_id?: string | undefined;
97
+ send_completion_email?: string | boolean | undefined;
98
+ };
99
+ };
100
+ output: {
101
+ id: string;
102
+ type: string;
103
+ status: "pending" | "failed" | "completed";
104
+ created_at?: string | undefined;
105
+ connection_id?: string | undefined;
106
+ external_id?: string | undefined;
107
+ percentage_done?: number | undefined;
108
+ time_left_seconds?: number | undefined;
109
+ status_details?: string | undefined;
110
+ summary?: {
111
+ failed: number;
112
+ updated: number;
113
+ inserted: number;
114
+ total: number;
115
+ } | undefined;
116
+ };
117
+ outputFormat: "json";
118
+ status: 202;
119
+ };
120
+ };
121
+ } & {
122
+ "/:id": {
123
+ $get: {
124
+ input: {
125
+ param: {
126
+ id: string;
127
+ };
128
+ } & {
129
+ header: {
130
+ "tenant-id"?: string | undefined;
131
+ };
132
+ };
133
+ output: {
134
+ id: string;
135
+ type: string;
136
+ status: "pending" | "failed" | "completed";
137
+ created_at?: string | undefined;
138
+ connection_id?: string | undefined;
139
+ external_id?: string | undefined;
140
+ percentage_done?: number | undefined;
141
+ time_left_seconds?: number | undefined;
142
+ status_details?: string | undefined;
143
+ summary?: {
144
+ failed: number;
145
+ updated: number;
146
+ inserted: number;
147
+ total: number;
148
+ } | undefined;
149
+ };
150
+ outputFormat: "json";
151
+ status: 200;
152
+ };
153
+ };
154
+ } & {
155
+ "/:id/errors": {
156
+ $get: {
157
+ input: {
158
+ param: {
159
+ id: string;
160
+ };
161
+ } & {
162
+ query: {
163
+ page?: unknown;
164
+ per_page?: unknown;
165
+ };
166
+ } & {
167
+ header: {
168
+ "tenant-id"?: string | undefined;
169
+ };
170
+ };
171
+ output: {};
172
+ outputFormat: string;
173
+ status: 204;
174
+ } | {
175
+ input: {
176
+ param: {
177
+ id: string;
178
+ };
179
+ } & {
180
+ query: {
181
+ page?: unknown;
182
+ per_page?: unknown;
183
+ };
184
+ } & {
185
+ header: {
186
+ "tenant-id"?: string | undefined;
187
+ };
188
+ };
189
+ output: {
190
+ user: {
191
+ [x: string]: import("hono/utils/types").JSONValue;
192
+ };
193
+ errors: {
194
+ code: string;
195
+ message: string;
196
+ path?: string | undefined;
197
+ }[];
198
+ }[];
199
+ outputFormat: "json";
200
+ status: 200;
201
+ };
202
+ };
203
+ }, "/jobs"> & import("hono/types").MergeSchemaPath<{
81
204
  "/export": {
82
205
  $get: {
83
206
  input: {
@@ -170,7 +293,7 @@ export declare function init(config: AuthHeroConfig): {
170
293
  };
171
294
  } & {
172
295
  json: {
173
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
296
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
174
297
  phone_number?: string | undefined;
175
298
  totp_secret?: string | undefined;
176
299
  credential_id?: string | undefined;
@@ -310,7 +433,7 @@ export declare function init(config: AuthHeroConfig): {
310
433
  };
311
434
  };
312
435
  output: {
313
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
436
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
314
437
  enabled: boolean;
315
438
  trial_expired?: boolean | undefined;
316
439
  }[];
@@ -465,7 +588,7 @@ export declare function init(config: AuthHeroConfig): {
465
588
  $get: {
466
589
  input: {
467
590
  param: {
468
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
591
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
469
592
  };
470
593
  } & {
471
594
  header: {
@@ -473,7 +596,7 @@ export declare function init(config: AuthHeroConfig): {
473
596
  };
474
597
  };
475
598
  output: {
476
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
599
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
477
600
  enabled: boolean;
478
601
  trial_expired?: boolean | undefined;
479
602
  };
@@ -486,7 +609,7 @@ export declare function init(config: AuthHeroConfig): {
486
609
  $put: {
487
610
  input: {
488
611
  param: {
489
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
612
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
490
613
  };
491
614
  } & {
492
615
  header: {
@@ -498,7 +621,7 @@ export declare function init(config: AuthHeroConfig): {
498
621
  };
499
622
  };
500
623
  output: {
501
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
624
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
502
625
  enabled: boolean;
503
626
  trial_expired?: boolean | undefined;
504
627
  };
@@ -1277,9 +1400,9 @@ export declare function init(config: AuthHeroConfig): {
1277
1400
  email?: string | undefined;
1278
1401
  };
1279
1402
  id?: string | undefined;
1280
- connection_id?: string | undefined;
1281
1403
  app_metadata?: Record<string, any> | undefined;
1282
1404
  user_metadata?: Record<string, any> | undefined;
1405
+ connection_id?: string | undefined;
1283
1406
  roles?: string[] | undefined;
1284
1407
  ttl_sec?: number | undefined;
1285
1408
  send_invitation_email?: boolean | undefined;
@@ -1465,8 +1588,8 @@ export declare function init(config: AuthHeroConfig): {
1465
1588
  };
1466
1589
  } & {
1467
1590
  json: {
1468
- assign_membership_on_login?: boolean | undefined;
1469
1591
  show_as_button?: boolean | undefined;
1592
+ assign_membership_on_login?: boolean | undefined;
1470
1593
  is_signup_enabled?: boolean | undefined;
1471
1594
  };
1472
1595
  };
@@ -2762,7 +2885,7 @@ export declare function init(config: AuthHeroConfig): {
2762
2885
  hint?: string | undefined;
2763
2886
  messages?: {
2764
2887
  text: string;
2765
- type: "success" | "error" | "info" | "warning";
2888
+ type: "error" | "success" | "info" | "warning";
2766
2889
  id?: number | undefined;
2767
2890
  }[] | undefined;
2768
2891
  required?: boolean | undefined;
@@ -2780,7 +2903,7 @@ export declare function init(config: AuthHeroConfig): {
2780
2903
  hint?: string | undefined;
2781
2904
  messages?: {
2782
2905
  text: string;
2783
- type: "success" | "error" | "info" | "warning";
2906
+ type: "error" | "success" | "info" | "warning";
2784
2907
  id?: number | undefined;
2785
2908
  }[] | undefined;
2786
2909
  required?: boolean | undefined;
@@ -2804,7 +2927,7 @@ export declare function init(config: AuthHeroConfig): {
2804
2927
  hint?: string | undefined;
2805
2928
  messages?: {
2806
2929
  text: string;
2807
- type: "success" | "error" | "info" | "warning";
2930
+ type: "error" | "success" | "info" | "warning";
2808
2931
  id?: number | undefined;
2809
2932
  }[] | undefined;
2810
2933
  required?: boolean | undefined;
@@ -2828,7 +2951,7 @@ export declare function init(config: AuthHeroConfig): {
2828
2951
  hint?: string | undefined;
2829
2952
  messages?: {
2830
2953
  text: string;
2831
- type: "success" | "error" | "info" | "warning";
2954
+ type: "error" | "success" | "info" | "warning";
2832
2955
  id?: number | undefined;
2833
2956
  }[] | undefined;
2834
2957
  required?: boolean | undefined;
@@ -2852,7 +2975,7 @@ export declare function init(config: AuthHeroConfig): {
2852
2975
  hint?: string | undefined;
2853
2976
  messages?: {
2854
2977
  text: string;
2855
- type: "success" | "error" | "info" | "warning";
2978
+ type: "error" | "success" | "info" | "warning";
2856
2979
  id?: number | undefined;
2857
2980
  }[] | undefined;
2858
2981
  required?: boolean | undefined;
@@ -2881,7 +3004,7 @@ export declare function init(config: AuthHeroConfig): {
2881
3004
  hint?: string | undefined;
2882
3005
  messages?: {
2883
3006
  text: string;
2884
- type: "success" | "error" | "info" | "warning";
3007
+ type: "error" | "success" | "info" | "warning";
2885
3008
  id?: number | undefined;
2886
3009
  }[] | undefined;
2887
3010
  required?: boolean | undefined;
@@ -2896,7 +3019,7 @@ export declare function init(config: AuthHeroConfig): {
2896
3019
  hint?: string | undefined;
2897
3020
  messages?: {
2898
3021
  text: string;
2899
- type: "success" | "error" | "info" | "warning";
3022
+ type: "error" | "success" | "info" | "warning";
2900
3023
  id?: number | undefined;
2901
3024
  }[] | undefined;
2902
3025
  required?: boolean | undefined;
@@ -2917,7 +3040,7 @@ export declare function init(config: AuthHeroConfig): {
2917
3040
  hint?: string | undefined;
2918
3041
  messages?: {
2919
3042
  text: string;
2920
- type: "success" | "error" | "info" | "warning";
3043
+ type: "error" | "success" | "info" | "warning";
2921
3044
  id?: number | undefined;
2922
3045
  }[] | undefined;
2923
3046
  required?: boolean | undefined;
@@ -2942,7 +3065,7 @@ export declare function init(config: AuthHeroConfig): {
2942
3065
  hint?: string | undefined;
2943
3066
  messages?: {
2944
3067
  text: string;
2945
- type: "success" | "error" | "info" | "warning";
3068
+ type: "error" | "success" | "info" | "warning";
2946
3069
  id?: number | undefined;
2947
3070
  }[] | undefined;
2948
3071
  required?: boolean | undefined;
@@ -2963,7 +3086,7 @@ export declare function init(config: AuthHeroConfig): {
2963
3086
  hint?: string | undefined;
2964
3087
  messages?: {
2965
3088
  text: string;
2966
- type: "success" | "error" | "info" | "warning";
3089
+ type: "error" | "success" | "info" | "warning";
2967
3090
  id?: number | undefined;
2968
3091
  }[] | undefined;
2969
3092
  required?: boolean | undefined;
@@ -2983,7 +3106,7 @@ export declare function init(config: AuthHeroConfig): {
2983
3106
  hint?: string | undefined;
2984
3107
  messages?: {
2985
3108
  text: string;
2986
- type: "success" | "error" | "info" | "warning";
3109
+ type: "error" | "success" | "info" | "warning";
2987
3110
  id?: number | undefined;
2988
3111
  }[] | undefined;
2989
3112
  required?: boolean | undefined;
@@ -3002,7 +3125,7 @@ export declare function init(config: AuthHeroConfig): {
3002
3125
  hint?: string | undefined;
3003
3126
  messages?: {
3004
3127
  text: string;
3005
- type: "success" | "error" | "info" | "warning";
3128
+ type: "error" | "success" | "info" | "warning";
3006
3129
  id?: number | undefined;
3007
3130
  }[] | undefined;
3008
3131
  required?: boolean | undefined;
@@ -3024,7 +3147,7 @@ export declare function init(config: AuthHeroConfig): {
3024
3147
  hint?: string | undefined;
3025
3148
  messages?: {
3026
3149
  text: string;
3027
- type: "success" | "error" | "info" | "warning";
3150
+ type: "error" | "success" | "info" | "warning";
3028
3151
  id?: number | undefined;
3029
3152
  }[] | undefined;
3030
3153
  required?: boolean | undefined;
@@ -3046,7 +3169,7 @@ export declare function init(config: AuthHeroConfig): {
3046
3169
  hint?: string | undefined;
3047
3170
  messages?: {
3048
3171
  text: string;
3049
- type: "success" | "error" | "info" | "warning";
3172
+ type: "error" | "success" | "info" | "warning";
3050
3173
  id?: number | undefined;
3051
3174
  }[] | undefined;
3052
3175
  required?: boolean | undefined;
@@ -3065,7 +3188,7 @@ export declare function init(config: AuthHeroConfig): {
3065
3188
  hint?: string | undefined;
3066
3189
  messages?: {
3067
3190
  text: string;
3068
- type: "success" | "error" | "info" | "warning";
3191
+ type: "error" | "success" | "info" | "warning";
3069
3192
  id?: number | undefined;
3070
3193
  }[] | undefined;
3071
3194
  required?: boolean | undefined;
@@ -3092,7 +3215,7 @@ export declare function init(config: AuthHeroConfig): {
3092
3215
  hint?: string | undefined;
3093
3216
  messages?: {
3094
3217
  text: string;
3095
- type: "success" | "error" | "info" | "warning";
3218
+ type: "error" | "success" | "info" | "warning";
3096
3219
  id?: number | undefined;
3097
3220
  }[] | undefined;
3098
3221
  required?: boolean | undefined;
@@ -3113,7 +3236,7 @@ export declare function init(config: AuthHeroConfig): {
3113
3236
  hint?: string | undefined;
3114
3237
  messages?: {
3115
3238
  text: string;
3116
- type: "success" | "error" | "info" | "warning";
3239
+ type: "error" | "success" | "info" | "warning";
3117
3240
  id?: number | undefined;
3118
3241
  }[] | undefined;
3119
3242
  required?: boolean | undefined;
@@ -3136,7 +3259,7 @@ export declare function init(config: AuthHeroConfig): {
3136
3259
  hint?: string | undefined;
3137
3260
  messages?: {
3138
3261
  text: string;
3139
- type: "success" | "error" | "info" | "warning";
3262
+ type: "error" | "success" | "info" | "warning";
3140
3263
  id?: number | undefined;
3141
3264
  }[] | undefined;
3142
3265
  required?: boolean | undefined;
@@ -3369,7 +3492,7 @@ export declare function init(config: AuthHeroConfig): {
3369
3492
  hint?: string | undefined;
3370
3493
  messages?: {
3371
3494
  text: string;
3372
- type: "success" | "error" | "info" | "warning";
3495
+ type: "error" | "success" | "info" | "warning";
3373
3496
  id?: number | undefined;
3374
3497
  }[] | undefined;
3375
3498
  required?: boolean | undefined;
@@ -3387,7 +3510,7 @@ export declare function init(config: AuthHeroConfig): {
3387
3510
  hint?: string | undefined;
3388
3511
  messages?: {
3389
3512
  text: string;
3390
- type: "success" | "error" | "info" | "warning";
3513
+ type: "error" | "success" | "info" | "warning";
3391
3514
  id?: number | undefined;
3392
3515
  }[] | undefined;
3393
3516
  required?: boolean | undefined;
@@ -3411,7 +3534,7 @@ export declare function init(config: AuthHeroConfig): {
3411
3534
  hint?: string | undefined;
3412
3535
  messages?: {
3413
3536
  text: string;
3414
- type: "success" | "error" | "info" | "warning";
3537
+ type: "error" | "success" | "info" | "warning";
3415
3538
  id?: number | undefined;
3416
3539
  }[] | undefined;
3417
3540
  required?: boolean | undefined;
@@ -3435,7 +3558,7 @@ export declare function init(config: AuthHeroConfig): {
3435
3558
  hint?: string | undefined;
3436
3559
  messages?: {
3437
3560
  text: string;
3438
- type: "success" | "error" | "info" | "warning";
3561
+ type: "error" | "success" | "info" | "warning";
3439
3562
  id?: number | undefined;
3440
3563
  }[] | undefined;
3441
3564
  required?: boolean | undefined;
@@ -3459,7 +3582,7 @@ export declare function init(config: AuthHeroConfig): {
3459
3582
  hint?: string | undefined;
3460
3583
  messages?: {
3461
3584
  text: string;
3462
- type: "success" | "error" | "info" | "warning";
3585
+ type: "error" | "success" | "info" | "warning";
3463
3586
  id?: number | undefined;
3464
3587
  }[] | undefined;
3465
3588
  required?: boolean | undefined;
@@ -3488,7 +3611,7 @@ export declare function init(config: AuthHeroConfig): {
3488
3611
  hint?: string | undefined;
3489
3612
  messages?: {
3490
3613
  text: string;
3491
- type: "success" | "error" | "info" | "warning";
3614
+ type: "error" | "success" | "info" | "warning";
3492
3615
  id?: number | undefined;
3493
3616
  }[] | undefined;
3494
3617
  required?: boolean | undefined;
@@ -3503,7 +3626,7 @@ export declare function init(config: AuthHeroConfig): {
3503
3626
  hint?: string | undefined;
3504
3627
  messages?: {
3505
3628
  text: string;
3506
- type: "success" | "error" | "info" | "warning";
3629
+ type: "error" | "success" | "info" | "warning";
3507
3630
  id?: number | undefined;
3508
3631
  }[] | undefined;
3509
3632
  required?: boolean | undefined;
@@ -3524,7 +3647,7 @@ export declare function init(config: AuthHeroConfig): {
3524
3647
  hint?: string | undefined;
3525
3648
  messages?: {
3526
3649
  text: string;
3527
- type: "success" | "error" | "info" | "warning";
3650
+ type: "error" | "success" | "info" | "warning";
3528
3651
  id?: number | undefined;
3529
3652
  }[] | undefined;
3530
3653
  required?: boolean | undefined;
@@ -3549,7 +3672,7 @@ export declare function init(config: AuthHeroConfig): {
3549
3672
  hint?: string | undefined;
3550
3673
  messages?: {
3551
3674
  text: string;
3552
- type: "success" | "error" | "info" | "warning";
3675
+ type: "error" | "success" | "info" | "warning";
3553
3676
  id?: number | undefined;
3554
3677
  }[] | undefined;
3555
3678
  required?: boolean | undefined;
@@ -3570,7 +3693,7 @@ export declare function init(config: AuthHeroConfig): {
3570
3693
  hint?: string | undefined;
3571
3694
  messages?: {
3572
3695
  text: string;
3573
- type: "success" | "error" | "info" | "warning";
3696
+ type: "error" | "success" | "info" | "warning";
3574
3697
  id?: number | undefined;
3575
3698
  }[] | undefined;
3576
3699
  required?: boolean | undefined;
@@ -3590,7 +3713,7 @@ export declare function init(config: AuthHeroConfig): {
3590
3713
  hint?: string | undefined;
3591
3714
  messages?: {
3592
3715
  text: string;
3593
- type: "success" | "error" | "info" | "warning";
3716
+ type: "error" | "success" | "info" | "warning";
3594
3717
  id?: number | undefined;
3595
3718
  }[] | undefined;
3596
3719
  required?: boolean | undefined;
@@ -3609,7 +3732,7 @@ export declare function init(config: AuthHeroConfig): {
3609
3732
  hint?: string | undefined;
3610
3733
  messages?: {
3611
3734
  text: string;
3612
- type: "success" | "error" | "info" | "warning";
3735
+ type: "error" | "success" | "info" | "warning";
3613
3736
  id?: number | undefined;
3614
3737
  }[] | undefined;
3615
3738
  required?: boolean | undefined;
@@ -3631,7 +3754,7 @@ export declare function init(config: AuthHeroConfig): {
3631
3754
  hint?: string | undefined;
3632
3755
  messages?: {
3633
3756
  text: string;
3634
- type: "success" | "error" | "info" | "warning";
3757
+ type: "error" | "success" | "info" | "warning";
3635
3758
  id?: number | undefined;
3636
3759
  }[] | undefined;
3637
3760
  required?: boolean | undefined;
@@ -3653,7 +3776,7 @@ export declare function init(config: AuthHeroConfig): {
3653
3776
  hint?: string | undefined;
3654
3777
  messages?: {
3655
3778
  text: string;
3656
- type: "success" | "error" | "info" | "warning";
3779
+ type: "error" | "success" | "info" | "warning";
3657
3780
  id?: number | undefined;
3658
3781
  }[] | undefined;
3659
3782
  required?: boolean | undefined;
@@ -3672,7 +3795,7 @@ export declare function init(config: AuthHeroConfig): {
3672
3795
  hint?: string | undefined;
3673
3796
  messages?: {
3674
3797
  text: string;
3675
- type: "success" | "error" | "info" | "warning";
3798
+ type: "error" | "success" | "info" | "warning";
3676
3799
  id?: number | undefined;
3677
3800
  }[] | undefined;
3678
3801
  required?: boolean | undefined;
@@ -3699,7 +3822,7 @@ export declare function init(config: AuthHeroConfig): {
3699
3822
  hint?: string | undefined;
3700
3823
  messages?: {
3701
3824
  text: string;
3702
- type: "success" | "error" | "info" | "warning";
3825
+ type: "error" | "success" | "info" | "warning";
3703
3826
  id?: number | undefined;
3704
3827
  }[] | undefined;
3705
3828
  required?: boolean | undefined;
@@ -3720,7 +3843,7 @@ export declare function init(config: AuthHeroConfig): {
3720
3843
  hint?: string | undefined;
3721
3844
  messages?: {
3722
3845
  text: string;
3723
- type: "success" | "error" | "info" | "warning";
3846
+ type: "error" | "success" | "info" | "warning";
3724
3847
  id?: number | undefined;
3725
3848
  }[] | undefined;
3726
3849
  required?: boolean | undefined;
@@ -3743,7 +3866,7 @@ export declare function init(config: AuthHeroConfig): {
3743
3866
  hint?: string | undefined;
3744
3867
  messages?: {
3745
3868
  text: string;
3746
- type: "success" | "error" | "info" | "warning";
3869
+ type: "error" | "success" | "info" | "warning";
3747
3870
  id?: number | undefined;
3748
3871
  }[] | undefined;
3749
3872
  required?: boolean | undefined;
@@ -3992,7 +4115,7 @@ export declare function init(config: AuthHeroConfig): {
3992
4115
  hint?: string | undefined;
3993
4116
  messages?: {
3994
4117
  text: string;
3995
- type: "success" | "error" | "info" | "warning";
4118
+ type: "error" | "success" | "info" | "warning";
3996
4119
  id?: number | undefined;
3997
4120
  }[] | undefined;
3998
4121
  required?: boolean | undefined;
@@ -4010,7 +4133,7 @@ export declare function init(config: AuthHeroConfig): {
4010
4133
  hint?: string | undefined;
4011
4134
  messages?: {
4012
4135
  text: string;
4013
- type: "success" | "error" | "info" | "warning";
4136
+ type: "error" | "success" | "info" | "warning";
4014
4137
  id?: number | undefined;
4015
4138
  }[] | undefined;
4016
4139
  required?: boolean | undefined;
@@ -4034,7 +4157,7 @@ export declare function init(config: AuthHeroConfig): {
4034
4157
  hint?: string | undefined;
4035
4158
  messages?: {
4036
4159
  text: string;
4037
- type: "success" | "error" | "info" | "warning";
4160
+ type: "error" | "success" | "info" | "warning";
4038
4161
  id?: number | undefined;
4039
4162
  }[] | undefined;
4040
4163
  required?: boolean | undefined;
@@ -4058,7 +4181,7 @@ export declare function init(config: AuthHeroConfig): {
4058
4181
  hint?: string | undefined;
4059
4182
  messages?: {
4060
4183
  text: string;
4061
- type: "success" | "error" | "info" | "warning";
4184
+ type: "error" | "success" | "info" | "warning";
4062
4185
  id?: number | undefined;
4063
4186
  }[] | undefined;
4064
4187
  required?: boolean | undefined;
@@ -4082,7 +4205,7 @@ export declare function init(config: AuthHeroConfig): {
4082
4205
  hint?: string | undefined;
4083
4206
  messages?: {
4084
4207
  text: string;
4085
- type: "success" | "error" | "info" | "warning";
4208
+ type: "error" | "success" | "info" | "warning";
4086
4209
  id?: number | undefined;
4087
4210
  }[] | undefined;
4088
4211
  required?: boolean | undefined;
@@ -4111,7 +4234,7 @@ export declare function init(config: AuthHeroConfig): {
4111
4234
  hint?: string | undefined;
4112
4235
  messages?: {
4113
4236
  text: string;
4114
- type: "success" | "error" | "info" | "warning";
4237
+ type: "error" | "success" | "info" | "warning";
4115
4238
  id?: number | undefined;
4116
4239
  }[] | undefined;
4117
4240
  required?: boolean | undefined;
@@ -4126,7 +4249,7 @@ export declare function init(config: AuthHeroConfig): {
4126
4249
  hint?: string | undefined;
4127
4250
  messages?: {
4128
4251
  text: string;
4129
- type: "success" | "error" | "info" | "warning";
4252
+ type: "error" | "success" | "info" | "warning";
4130
4253
  id?: number | undefined;
4131
4254
  }[] | undefined;
4132
4255
  required?: boolean | undefined;
@@ -4147,7 +4270,7 @@ export declare function init(config: AuthHeroConfig): {
4147
4270
  hint?: string | undefined;
4148
4271
  messages?: {
4149
4272
  text: string;
4150
- type: "success" | "error" | "info" | "warning";
4273
+ type: "error" | "success" | "info" | "warning";
4151
4274
  id?: number | undefined;
4152
4275
  }[] | undefined;
4153
4276
  required?: boolean | undefined;
@@ -4172,7 +4295,7 @@ export declare function init(config: AuthHeroConfig): {
4172
4295
  hint?: string | undefined;
4173
4296
  messages?: {
4174
4297
  text: string;
4175
- type: "success" | "error" | "info" | "warning";
4298
+ type: "error" | "success" | "info" | "warning";
4176
4299
  id?: number | undefined;
4177
4300
  }[] | undefined;
4178
4301
  required?: boolean | undefined;
@@ -4193,7 +4316,7 @@ export declare function init(config: AuthHeroConfig): {
4193
4316
  hint?: string | undefined;
4194
4317
  messages?: {
4195
4318
  text: string;
4196
- type: "success" | "error" | "info" | "warning";
4319
+ type: "error" | "success" | "info" | "warning";
4197
4320
  id?: number | undefined;
4198
4321
  }[] | undefined;
4199
4322
  required?: boolean | undefined;
@@ -4213,7 +4336,7 @@ export declare function init(config: AuthHeroConfig): {
4213
4336
  hint?: string | undefined;
4214
4337
  messages?: {
4215
4338
  text: string;
4216
- type: "success" | "error" | "info" | "warning";
4339
+ type: "error" | "success" | "info" | "warning";
4217
4340
  id?: number | undefined;
4218
4341
  }[] | undefined;
4219
4342
  required?: boolean | undefined;
@@ -4232,7 +4355,7 @@ export declare function init(config: AuthHeroConfig): {
4232
4355
  hint?: string | undefined;
4233
4356
  messages?: {
4234
4357
  text: string;
4235
- type: "success" | "error" | "info" | "warning";
4358
+ type: "error" | "success" | "info" | "warning";
4236
4359
  id?: number | undefined;
4237
4360
  }[] | undefined;
4238
4361
  required?: boolean | undefined;
@@ -4254,7 +4377,7 @@ export declare function init(config: AuthHeroConfig): {
4254
4377
  hint?: string | undefined;
4255
4378
  messages?: {
4256
4379
  text: string;
4257
- type: "success" | "error" | "info" | "warning";
4380
+ type: "error" | "success" | "info" | "warning";
4258
4381
  id?: number | undefined;
4259
4382
  }[] | undefined;
4260
4383
  required?: boolean | undefined;
@@ -4276,7 +4399,7 @@ export declare function init(config: AuthHeroConfig): {
4276
4399
  hint?: string | undefined;
4277
4400
  messages?: {
4278
4401
  text: string;
4279
- type: "success" | "error" | "info" | "warning";
4402
+ type: "error" | "success" | "info" | "warning";
4280
4403
  id?: number | undefined;
4281
4404
  }[] | undefined;
4282
4405
  required?: boolean | undefined;
@@ -4295,7 +4418,7 @@ export declare function init(config: AuthHeroConfig): {
4295
4418
  hint?: string | undefined;
4296
4419
  messages?: {
4297
4420
  text: string;
4298
- type: "success" | "error" | "info" | "warning";
4421
+ type: "error" | "success" | "info" | "warning";
4299
4422
  id?: number | undefined;
4300
4423
  }[] | undefined;
4301
4424
  required?: boolean | undefined;
@@ -4322,7 +4445,7 @@ export declare function init(config: AuthHeroConfig): {
4322
4445
  hint?: string | undefined;
4323
4446
  messages?: {
4324
4447
  text: string;
4325
- type: "success" | "error" | "info" | "warning";
4448
+ type: "error" | "success" | "info" | "warning";
4326
4449
  id?: number | undefined;
4327
4450
  }[] | undefined;
4328
4451
  required?: boolean | undefined;
@@ -4343,7 +4466,7 @@ export declare function init(config: AuthHeroConfig): {
4343
4466
  hint?: string | undefined;
4344
4467
  messages?: {
4345
4468
  text: string;
4346
- type: "success" | "error" | "info" | "warning";
4469
+ type: "error" | "success" | "info" | "warning";
4347
4470
  id?: number | undefined;
4348
4471
  }[] | undefined;
4349
4472
  required?: boolean | undefined;
@@ -4366,7 +4489,7 @@ export declare function init(config: AuthHeroConfig): {
4366
4489
  hint?: string | undefined;
4367
4490
  messages?: {
4368
4491
  text: string;
4369
- type: "success" | "error" | "info" | "warning";
4492
+ type: "error" | "success" | "info" | "warning";
4370
4493
  id?: number | undefined;
4371
4494
  }[] | undefined;
4372
4495
  required?: boolean | undefined;
@@ -4620,7 +4743,7 @@ export declare function init(config: AuthHeroConfig): {
4620
4743
  hint?: string | undefined;
4621
4744
  messages?: {
4622
4745
  text: string;
4623
- type: "success" | "error" | "info" | "warning";
4746
+ type: "error" | "success" | "info" | "warning";
4624
4747
  id?: number | undefined;
4625
4748
  }[] | undefined;
4626
4749
  required?: boolean | undefined;
@@ -4638,7 +4761,7 @@ export declare function init(config: AuthHeroConfig): {
4638
4761
  hint?: string | undefined;
4639
4762
  messages?: {
4640
4763
  text: string;
4641
- type: "success" | "error" | "info" | "warning";
4764
+ type: "error" | "success" | "info" | "warning";
4642
4765
  id?: number | undefined;
4643
4766
  }[] | undefined;
4644
4767
  required?: boolean | undefined;
@@ -4662,7 +4785,7 @@ export declare function init(config: AuthHeroConfig): {
4662
4785
  hint?: string | undefined;
4663
4786
  messages?: {
4664
4787
  text: string;
4665
- type: "success" | "error" | "info" | "warning";
4788
+ type: "error" | "success" | "info" | "warning";
4666
4789
  id?: number | undefined;
4667
4790
  }[] | undefined;
4668
4791
  required?: boolean | undefined;
@@ -4686,7 +4809,7 @@ export declare function init(config: AuthHeroConfig): {
4686
4809
  hint?: string | undefined;
4687
4810
  messages?: {
4688
4811
  text: string;
4689
- type: "success" | "error" | "info" | "warning";
4812
+ type: "error" | "success" | "info" | "warning";
4690
4813
  id?: number | undefined;
4691
4814
  }[] | undefined;
4692
4815
  required?: boolean | undefined;
@@ -4710,7 +4833,7 @@ export declare function init(config: AuthHeroConfig): {
4710
4833
  hint?: string | undefined;
4711
4834
  messages?: {
4712
4835
  text: string;
4713
- type: "success" | "error" | "info" | "warning";
4836
+ type: "error" | "success" | "info" | "warning";
4714
4837
  id?: number | undefined;
4715
4838
  }[] | undefined;
4716
4839
  required?: boolean | undefined;
@@ -4735,7 +4858,7 @@ export declare function init(config: AuthHeroConfig): {
4735
4858
  hint?: string | undefined;
4736
4859
  messages?: {
4737
4860
  text: string;
4738
- type: "success" | "error" | "info" | "warning";
4861
+ type: "error" | "success" | "info" | "warning";
4739
4862
  id?: number | undefined;
4740
4863
  }[] | undefined;
4741
4864
  required?: boolean | undefined;
@@ -4750,7 +4873,7 @@ export declare function init(config: AuthHeroConfig): {
4750
4873
  hint?: string | undefined;
4751
4874
  messages?: {
4752
4875
  text: string;
4753
- type: "success" | "error" | "info" | "warning";
4876
+ type: "error" | "success" | "info" | "warning";
4754
4877
  id?: number | undefined;
4755
4878
  }[] | undefined;
4756
4879
  required?: boolean | undefined;
@@ -4771,7 +4894,7 @@ export declare function init(config: AuthHeroConfig): {
4771
4894
  hint?: string | undefined;
4772
4895
  messages?: {
4773
4896
  text: string;
4774
- type: "success" | "error" | "info" | "warning";
4897
+ type: "error" | "success" | "info" | "warning";
4775
4898
  id?: number | undefined;
4776
4899
  }[] | undefined;
4777
4900
  required?: boolean | undefined;
@@ -4796,7 +4919,7 @@ export declare function init(config: AuthHeroConfig): {
4796
4919
  hint?: string | undefined;
4797
4920
  messages?: {
4798
4921
  text: string;
4799
- type: "success" | "error" | "info" | "warning";
4922
+ type: "error" | "success" | "info" | "warning";
4800
4923
  id?: number | undefined;
4801
4924
  }[] | undefined;
4802
4925
  required?: boolean | undefined;
@@ -4817,7 +4940,7 @@ export declare function init(config: AuthHeroConfig): {
4817
4940
  hint?: string | undefined;
4818
4941
  messages?: {
4819
4942
  text: string;
4820
- type: "success" | "error" | "info" | "warning";
4943
+ type: "error" | "success" | "info" | "warning";
4821
4944
  id?: number | undefined;
4822
4945
  }[] | undefined;
4823
4946
  required?: boolean | undefined;
@@ -4837,7 +4960,7 @@ export declare function init(config: AuthHeroConfig): {
4837
4960
  hint?: string | undefined;
4838
4961
  messages?: {
4839
4962
  text: string;
4840
- type: "success" | "error" | "info" | "warning";
4963
+ type: "error" | "success" | "info" | "warning";
4841
4964
  id?: number | undefined;
4842
4965
  }[] | undefined;
4843
4966
  required?: boolean | undefined;
@@ -4856,7 +4979,7 @@ export declare function init(config: AuthHeroConfig): {
4856
4979
  hint?: string | undefined;
4857
4980
  messages?: {
4858
4981
  text: string;
4859
- type: "success" | "error" | "info" | "warning";
4982
+ type: "error" | "success" | "info" | "warning";
4860
4983
  id?: number | undefined;
4861
4984
  }[] | undefined;
4862
4985
  required?: boolean | undefined;
@@ -4878,7 +5001,7 @@ export declare function init(config: AuthHeroConfig): {
4878
5001
  hint?: string | undefined;
4879
5002
  messages?: {
4880
5003
  text: string;
4881
- type: "success" | "error" | "info" | "warning";
5004
+ type: "error" | "success" | "info" | "warning";
4882
5005
  id?: number | undefined;
4883
5006
  }[] | undefined;
4884
5007
  required?: boolean | undefined;
@@ -4900,7 +5023,7 @@ export declare function init(config: AuthHeroConfig): {
4900
5023
  hint?: string | undefined;
4901
5024
  messages?: {
4902
5025
  text: string;
4903
- type: "success" | "error" | "info" | "warning";
5026
+ type: "error" | "success" | "info" | "warning";
4904
5027
  id?: number | undefined;
4905
5028
  }[] | undefined;
4906
5029
  required?: boolean | undefined;
@@ -4919,7 +5042,7 @@ export declare function init(config: AuthHeroConfig): {
4919
5042
  hint?: string | undefined;
4920
5043
  messages?: {
4921
5044
  text: string;
4922
- type: "success" | "error" | "info" | "warning";
5045
+ type: "error" | "success" | "info" | "warning";
4923
5046
  id?: number | undefined;
4924
5047
  }[] | undefined;
4925
5048
  required?: boolean | undefined;
@@ -4946,7 +5069,7 @@ export declare function init(config: AuthHeroConfig): {
4946
5069
  hint?: string | undefined;
4947
5070
  messages?: {
4948
5071
  text: string;
4949
- type: "success" | "error" | "info" | "warning";
5072
+ type: "error" | "success" | "info" | "warning";
4950
5073
  id?: number | undefined;
4951
5074
  }[] | undefined;
4952
5075
  required?: boolean | undefined;
@@ -4967,7 +5090,7 @@ export declare function init(config: AuthHeroConfig): {
4967
5090
  hint?: string | undefined;
4968
5091
  messages?: {
4969
5092
  text: string;
4970
- type: "success" | "error" | "info" | "warning";
5093
+ type: "error" | "success" | "info" | "warning";
4971
5094
  id?: number | undefined;
4972
5095
  }[] | undefined;
4973
5096
  required?: boolean | undefined;
@@ -4990,7 +5113,7 @@ export declare function init(config: AuthHeroConfig): {
4990
5113
  hint?: string | undefined;
4991
5114
  messages?: {
4992
5115
  text: string;
4993
- type: "success" | "error" | "info" | "warning";
5116
+ type: "error" | "success" | "info" | "warning";
4994
5117
  id?: number | undefined;
4995
5118
  }[] | undefined;
4996
5119
  required?: boolean | undefined;
@@ -5221,7 +5344,7 @@ export declare function init(config: AuthHeroConfig): {
5221
5344
  hint?: string | undefined;
5222
5345
  messages?: {
5223
5346
  text: string;
5224
- type: "success" | "error" | "info" | "warning";
5347
+ type: "error" | "success" | "info" | "warning";
5225
5348
  id?: number | undefined;
5226
5349
  }[] | undefined;
5227
5350
  required?: boolean | undefined;
@@ -5239,7 +5362,7 @@ export declare function init(config: AuthHeroConfig): {
5239
5362
  hint?: string | undefined;
5240
5363
  messages?: {
5241
5364
  text: string;
5242
- type: "success" | "error" | "info" | "warning";
5365
+ type: "error" | "success" | "info" | "warning";
5243
5366
  id?: number | undefined;
5244
5367
  }[] | undefined;
5245
5368
  required?: boolean | undefined;
@@ -5263,7 +5386,7 @@ export declare function init(config: AuthHeroConfig): {
5263
5386
  hint?: string | undefined;
5264
5387
  messages?: {
5265
5388
  text: string;
5266
- type: "success" | "error" | "info" | "warning";
5389
+ type: "error" | "success" | "info" | "warning";
5267
5390
  id?: number | undefined;
5268
5391
  }[] | undefined;
5269
5392
  required?: boolean | undefined;
@@ -5287,7 +5410,7 @@ export declare function init(config: AuthHeroConfig): {
5287
5410
  hint?: string | undefined;
5288
5411
  messages?: {
5289
5412
  text: string;
5290
- type: "success" | "error" | "info" | "warning";
5413
+ type: "error" | "success" | "info" | "warning";
5291
5414
  id?: number | undefined;
5292
5415
  }[] | undefined;
5293
5416
  required?: boolean | undefined;
@@ -5311,7 +5434,7 @@ export declare function init(config: AuthHeroConfig): {
5311
5434
  hint?: string | undefined;
5312
5435
  messages?: {
5313
5436
  text: string;
5314
- type: "success" | "error" | "info" | "warning";
5437
+ type: "error" | "success" | "info" | "warning";
5315
5438
  id?: number | undefined;
5316
5439
  }[] | undefined;
5317
5440
  required?: boolean | undefined;
@@ -5340,7 +5463,7 @@ export declare function init(config: AuthHeroConfig): {
5340
5463
  hint?: string | undefined;
5341
5464
  messages?: {
5342
5465
  text: string;
5343
- type: "success" | "error" | "info" | "warning";
5466
+ type: "error" | "success" | "info" | "warning";
5344
5467
  id?: number | undefined;
5345
5468
  }[] | undefined;
5346
5469
  required?: boolean | undefined;
@@ -5355,7 +5478,7 @@ export declare function init(config: AuthHeroConfig): {
5355
5478
  hint?: string | undefined;
5356
5479
  messages?: {
5357
5480
  text: string;
5358
- type: "success" | "error" | "info" | "warning";
5481
+ type: "error" | "success" | "info" | "warning";
5359
5482
  id?: number | undefined;
5360
5483
  }[] | undefined;
5361
5484
  required?: boolean | undefined;
@@ -5376,7 +5499,7 @@ export declare function init(config: AuthHeroConfig): {
5376
5499
  hint?: string | undefined;
5377
5500
  messages?: {
5378
5501
  text: string;
5379
- type: "success" | "error" | "info" | "warning";
5502
+ type: "error" | "success" | "info" | "warning";
5380
5503
  id?: number | undefined;
5381
5504
  }[] | undefined;
5382
5505
  required?: boolean | undefined;
@@ -5401,7 +5524,7 @@ export declare function init(config: AuthHeroConfig): {
5401
5524
  hint?: string | undefined;
5402
5525
  messages?: {
5403
5526
  text: string;
5404
- type: "success" | "error" | "info" | "warning";
5527
+ type: "error" | "success" | "info" | "warning";
5405
5528
  id?: number | undefined;
5406
5529
  }[] | undefined;
5407
5530
  required?: boolean | undefined;
@@ -5422,7 +5545,7 @@ export declare function init(config: AuthHeroConfig): {
5422
5545
  hint?: string | undefined;
5423
5546
  messages?: {
5424
5547
  text: string;
5425
- type: "success" | "error" | "info" | "warning";
5548
+ type: "error" | "success" | "info" | "warning";
5426
5549
  id?: number | undefined;
5427
5550
  }[] | undefined;
5428
5551
  required?: boolean | undefined;
@@ -5442,7 +5565,7 @@ export declare function init(config: AuthHeroConfig): {
5442
5565
  hint?: string | undefined;
5443
5566
  messages?: {
5444
5567
  text: string;
5445
- type: "success" | "error" | "info" | "warning";
5568
+ type: "error" | "success" | "info" | "warning";
5446
5569
  id?: number | undefined;
5447
5570
  }[] | undefined;
5448
5571
  required?: boolean | undefined;
@@ -5461,7 +5584,7 @@ export declare function init(config: AuthHeroConfig): {
5461
5584
  hint?: string | undefined;
5462
5585
  messages?: {
5463
5586
  text: string;
5464
- type: "success" | "error" | "info" | "warning";
5587
+ type: "error" | "success" | "info" | "warning";
5465
5588
  id?: number | undefined;
5466
5589
  }[] | undefined;
5467
5590
  required?: boolean | undefined;
@@ -5483,7 +5606,7 @@ export declare function init(config: AuthHeroConfig): {
5483
5606
  hint?: string | undefined;
5484
5607
  messages?: {
5485
5608
  text: string;
5486
- type: "success" | "error" | "info" | "warning";
5609
+ type: "error" | "success" | "info" | "warning";
5487
5610
  id?: number | undefined;
5488
5611
  }[] | undefined;
5489
5612
  required?: boolean | undefined;
@@ -5505,7 +5628,7 @@ export declare function init(config: AuthHeroConfig): {
5505
5628
  hint?: string | undefined;
5506
5629
  messages?: {
5507
5630
  text: string;
5508
- type: "success" | "error" | "info" | "warning";
5631
+ type: "error" | "success" | "info" | "warning";
5509
5632
  id?: number | undefined;
5510
5633
  }[] | undefined;
5511
5634
  required?: boolean | undefined;
@@ -5524,7 +5647,7 @@ export declare function init(config: AuthHeroConfig): {
5524
5647
  hint?: string | undefined;
5525
5648
  messages?: {
5526
5649
  text: string;
5527
- type: "success" | "error" | "info" | "warning";
5650
+ type: "error" | "success" | "info" | "warning";
5528
5651
  id?: number | undefined;
5529
5652
  }[] | undefined;
5530
5653
  required?: boolean | undefined;
@@ -5551,7 +5674,7 @@ export declare function init(config: AuthHeroConfig): {
5551
5674
  hint?: string | undefined;
5552
5675
  messages?: {
5553
5676
  text: string;
5554
- type: "success" | "error" | "info" | "warning";
5677
+ type: "error" | "success" | "info" | "warning";
5555
5678
  id?: number | undefined;
5556
5679
  }[] | undefined;
5557
5680
  required?: boolean | undefined;
@@ -5572,7 +5695,7 @@ export declare function init(config: AuthHeroConfig): {
5572
5695
  hint?: string | undefined;
5573
5696
  messages?: {
5574
5697
  text: string;
5575
- type: "success" | "error" | "info" | "warning";
5698
+ type: "error" | "success" | "info" | "warning";
5576
5699
  id?: number | undefined;
5577
5700
  }[] | undefined;
5578
5701
  required?: boolean | undefined;
@@ -5595,7 +5718,7 @@ export declare function init(config: AuthHeroConfig): {
5595
5718
  hint?: string | undefined;
5596
5719
  messages?: {
5597
5720
  text: string;
5598
- type: "success" | "error" | "info" | "warning";
5721
+ type: "error" | "success" | "info" | "warning";
5599
5722
  id?: number | undefined;
5600
5723
  }[] | undefined;
5601
5724
  required?: boolean | undefined;
@@ -5828,7 +5951,7 @@ export declare function init(config: AuthHeroConfig): {
5828
5951
  hint?: string | undefined;
5829
5952
  messages?: {
5830
5953
  text: string;
5831
- type: "success" | "error" | "info" | "warning";
5954
+ type: "error" | "success" | "info" | "warning";
5832
5955
  id?: number | undefined;
5833
5956
  }[] | undefined;
5834
5957
  required?: boolean | undefined;
@@ -5846,7 +5969,7 @@ export declare function init(config: AuthHeroConfig): {
5846
5969
  hint?: string | undefined;
5847
5970
  messages?: {
5848
5971
  text: string;
5849
- type: "success" | "error" | "info" | "warning";
5972
+ type: "error" | "success" | "info" | "warning";
5850
5973
  id?: number | undefined;
5851
5974
  }[] | undefined;
5852
5975
  required?: boolean | undefined;
@@ -5870,7 +5993,7 @@ export declare function init(config: AuthHeroConfig): {
5870
5993
  hint?: string | undefined;
5871
5994
  messages?: {
5872
5995
  text: string;
5873
- type: "success" | "error" | "info" | "warning";
5996
+ type: "error" | "success" | "info" | "warning";
5874
5997
  id?: number | undefined;
5875
5998
  }[] | undefined;
5876
5999
  required?: boolean | undefined;
@@ -5894,7 +6017,7 @@ export declare function init(config: AuthHeroConfig): {
5894
6017
  hint?: string | undefined;
5895
6018
  messages?: {
5896
6019
  text: string;
5897
- type: "success" | "error" | "info" | "warning";
6020
+ type: "error" | "success" | "info" | "warning";
5898
6021
  id?: number | undefined;
5899
6022
  }[] | undefined;
5900
6023
  required?: boolean | undefined;
@@ -5918,7 +6041,7 @@ export declare function init(config: AuthHeroConfig): {
5918
6041
  hint?: string | undefined;
5919
6042
  messages?: {
5920
6043
  text: string;
5921
- type: "success" | "error" | "info" | "warning";
6044
+ type: "error" | "success" | "info" | "warning";
5922
6045
  id?: number | undefined;
5923
6046
  }[] | undefined;
5924
6047
  required?: boolean | undefined;
@@ -5943,7 +6066,7 @@ export declare function init(config: AuthHeroConfig): {
5943
6066
  hint?: string | undefined;
5944
6067
  messages?: {
5945
6068
  text: string;
5946
- type: "success" | "error" | "info" | "warning";
6069
+ type: "error" | "success" | "info" | "warning";
5947
6070
  id?: number | undefined;
5948
6071
  }[] | undefined;
5949
6072
  required?: boolean | undefined;
@@ -5958,7 +6081,7 @@ export declare function init(config: AuthHeroConfig): {
5958
6081
  hint?: string | undefined;
5959
6082
  messages?: {
5960
6083
  text: string;
5961
- type: "success" | "error" | "info" | "warning";
6084
+ type: "error" | "success" | "info" | "warning";
5962
6085
  id?: number | undefined;
5963
6086
  }[] | undefined;
5964
6087
  required?: boolean | undefined;
@@ -5979,7 +6102,7 @@ export declare function init(config: AuthHeroConfig): {
5979
6102
  hint?: string | undefined;
5980
6103
  messages?: {
5981
6104
  text: string;
5982
- type: "success" | "error" | "info" | "warning";
6105
+ type: "error" | "success" | "info" | "warning";
5983
6106
  id?: number | undefined;
5984
6107
  }[] | undefined;
5985
6108
  required?: boolean | undefined;
@@ -6004,7 +6127,7 @@ export declare function init(config: AuthHeroConfig): {
6004
6127
  hint?: string | undefined;
6005
6128
  messages?: {
6006
6129
  text: string;
6007
- type: "success" | "error" | "info" | "warning";
6130
+ type: "error" | "success" | "info" | "warning";
6008
6131
  id?: number | undefined;
6009
6132
  }[] | undefined;
6010
6133
  required?: boolean | undefined;
@@ -6025,7 +6148,7 @@ export declare function init(config: AuthHeroConfig): {
6025
6148
  hint?: string | undefined;
6026
6149
  messages?: {
6027
6150
  text: string;
6028
- type: "success" | "error" | "info" | "warning";
6151
+ type: "error" | "success" | "info" | "warning";
6029
6152
  id?: number | undefined;
6030
6153
  }[] | undefined;
6031
6154
  required?: boolean | undefined;
@@ -6045,7 +6168,7 @@ export declare function init(config: AuthHeroConfig): {
6045
6168
  hint?: string | undefined;
6046
6169
  messages?: {
6047
6170
  text: string;
6048
- type: "success" | "error" | "info" | "warning";
6171
+ type: "error" | "success" | "info" | "warning";
6049
6172
  id?: number | undefined;
6050
6173
  }[] | undefined;
6051
6174
  required?: boolean | undefined;
@@ -6064,7 +6187,7 @@ export declare function init(config: AuthHeroConfig): {
6064
6187
  hint?: string | undefined;
6065
6188
  messages?: {
6066
6189
  text: string;
6067
- type: "success" | "error" | "info" | "warning";
6190
+ type: "error" | "success" | "info" | "warning";
6068
6191
  id?: number | undefined;
6069
6192
  }[] | undefined;
6070
6193
  required?: boolean | undefined;
@@ -6086,7 +6209,7 @@ export declare function init(config: AuthHeroConfig): {
6086
6209
  hint?: string | undefined;
6087
6210
  messages?: {
6088
6211
  text: string;
6089
- type: "success" | "error" | "info" | "warning";
6212
+ type: "error" | "success" | "info" | "warning";
6090
6213
  id?: number | undefined;
6091
6214
  }[] | undefined;
6092
6215
  required?: boolean | undefined;
@@ -6108,7 +6231,7 @@ export declare function init(config: AuthHeroConfig): {
6108
6231
  hint?: string | undefined;
6109
6232
  messages?: {
6110
6233
  text: string;
6111
- type: "success" | "error" | "info" | "warning";
6234
+ type: "error" | "success" | "info" | "warning";
6112
6235
  id?: number | undefined;
6113
6236
  }[] | undefined;
6114
6237
  required?: boolean | undefined;
@@ -6127,7 +6250,7 @@ export declare function init(config: AuthHeroConfig): {
6127
6250
  hint?: string | undefined;
6128
6251
  messages?: {
6129
6252
  text: string;
6130
- type: "success" | "error" | "info" | "warning";
6253
+ type: "error" | "success" | "info" | "warning";
6131
6254
  id?: number | undefined;
6132
6255
  }[] | undefined;
6133
6256
  required?: boolean | undefined;
@@ -6154,7 +6277,7 @@ export declare function init(config: AuthHeroConfig): {
6154
6277
  hint?: string | undefined;
6155
6278
  messages?: {
6156
6279
  text: string;
6157
- type: "success" | "error" | "info" | "warning";
6280
+ type: "error" | "success" | "info" | "warning";
6158
6281
  id?: number | undefined;
6159
6282
  }[] | undefined;
6160
6283
  required?: boolean | undefined;
@@ -6175,7 +6298,7 @@ export declare function init(config: AuthHeroConfig): {
6175
6298
  hint?: string | undefined;
6176
6299
  messages?: {
6177
6300
  text: string;
6178
- type: "success" | "error" | "info" | "warning";
6301
+ type: "error" | "success" | "info" | "warning";
6179
6302
  id?: number | undefined;
6180
6303
  }[] | undefined;
6181
6304
  required?: boolean | undefined;
@@ -6198,7 +6321,7 @@ export declare function init(config: AuthHeroConfig): {
6198
6321
  hint?: string | undefined;
6199
6322
  messages?: {
6200
6323
  text: string;
6201
- type: "success" | "error" | "info" | "warning";
6324
+ type: "error" | "success" | "info" | "warning";
6202
6325
  id?: number | undefined;
6203
6326
  }[] | undefined;
6204
6327
  required?: boolean | undefined;
@@ -6429,7 +6552,7 @@ export declare function init(config: AuthHeroConfig): {
6429
6552
  hint?: string | undefined;
6430
6553
  messages?: {
6431
6554
  text: string;
6432
- type: "success" | "error" | "info" | "warning";
6555
+ type: "error" | "success" | "info" | "warning";
6433
6556
  id?: number | undefined;
6434
6557
  }[] | undefined;
6435
6558
  required?: boolean | undefined;
@@ -6447,7 +6570,7 @@ export declare function init(config: AuthHeroConfig): {
6447
6570
  hint?: string | undefined;
6448
6571
  messages?: {
6449
6572
  text: string;
6450
- type: "success" | "error" | "info" | "warning";
6573
+ type: "error" | "success" | "info" | "warning";
6451
6574
  id?: number | undefined;
6452
6575
  }[] | undefined;
6453
6576
  required?: boolean | undefined;
@@ -6471,7 +6594,7 @@ export declare function init(config: AuthHeroConfig): {
6471
6594
  hint?: string | undefined;
6472
6595
  messages?: {
6473
6596
  text: string;
6474
- type: "success" | "error" | "info" | "warning";
6597
+ type: "error" | "success" | "info" | "warning";
6475
6598
  id?: number | undefined;
6476
6599
  }[] | undefined;
6477
6600
  required?: boolean | undefined;
@@ -6495,7 +6618,7 @@ export declare function init(config: AuthHeroConfig): {
6495
6618
  hint?: string | undefined;
6496
6619
  messages?: {
6497
6620
  text: string;
6498
- type: "success" | "error" | "info" | "warning";
6621
+ type: "error" | "success" | "info" | "warning";
6499
6622
  id?: number | undefined;
6500
6623
  }[] | undefined;
6501
6624
  required?: boolean | undefined;
@@ -6519,7 +6642,7 @@ export declare function init(config: AuthHeroConfig): {
6519
6642
  hint?: string | undefined;
6520
6643
  messages?: {
6521
6644
  text: string;
6522
- type: "success" | "error" | "info" | "warning";
6645
+ type: "error" | "success" | "info" | "warning";
6523
6646
  id?: number | undefined;
6524
6647
  }[] | undefined;
6525
6648
  required?: boolean | undefined;
@@ -6548,7 +6671,7 @@ export declare function init(config: AuthHeroConfig): {
6548
6671
  hint?: string | undefined;
6549
6672
  messages?: {
6550
6673
  text: string;
6551
- type: "success" | "error" | "info" | "warning";
6674
+ type: "error" | "success" | "info" | "warning";
6552
6675
  id?: number | undefined;
6553
6676
  }[] | undefined;
6554
6677
  required?: boolean | undefined;
@@ -6563,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
6563
6686
  hint?: string | undefined;
6564
6687
  messages?: {
6565
6688
  text: string;
6566
- type: "success" | "error" | "info" | "warning";
6689
+ type: "error" | "success" | "info" | "warning";
6567
6690
  id?: number | undefined;
6568
6691
  }[] | undefined;
6569
6692
  required?: boolean | undefined;
@@ -6584,7 +6707,7 @@ export declare function init(config: AuthHeroConfig): {
6584
6707
  hint?: string | undefined;
6585
6708
  messages?: {
6586
6709
  text: string;
6587
- type: "success" | "error" | "info" | "warning";
6710
+ type: "error" | "success" | "info" | "warning";
6588
6711
  id?: number | undefined;
6589
6712
  }[] | undefined;
6590
6713
  required?: boolean | undefined;
@@ -6609,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
6609
6732
  hint?: string | undefined;
6610
6733
  messages?: {
6611
6734
  text: string;
6612
- type: "success" | "error" | "info" | "warning";
6735
+ type: "error" | "success" | "info" | "warning";
6613
6736
  id?: number | undefined;
6614
6737
  }[] | undefined;
6615
6738
  required?: boolean | undefined;
@@ -6630,7 +6753,7 @@ export declare function init(config: AuthHeroConfig): {
6630
6753
  hint?: string | undefined;
6631
6754
  messages?: {
6632
6755
  text: string;
6633
- type: "success" | "error" | "info" | "warning";
6756
+ type: "error" | "success" | "info" | "warning";
6634
6757
  id?: number | undefined;
6635
6758
  }[] | undefined;
6636
6759
  required?: boolean | undefined;
@@ -6650,7 +6773,7 @@ export declare function init(config: AuthHeroConfig): {
6650
6773
  hint?: string | undefined;
6651
6774
  messages?: {
6652
6775
  text: string;
6653
- type: "success" | "error" | "info" | "warning";
6776
+ type: "error" | "success" | "info" | "warning";
6654
6777
  id?: number | undefined;
6655
6778
  }[] | undefined;
6656
6779
  required?: boolean | undefined;
@@ -6669,7 +6792,7 @@ export declare function init(config: AuthHeroConfig): {
6669
6792
  hint?: string | undefined;
6670
6793
  messages?: {
6671
6794
  text: string;
6672
- type: "success" | "error" | "info" | "warning";
6795
+ type: "error" | "success" | "info" | "warning";
6673
6796
  id?: number | undefined;
6674
6797
  }[] | undefined;
6675
6798
  required?: boolean | undefined;
@@ -6691,7 +6814,7 @@ export declare function init(config: AuthHeroConfig): {
6691
6814
  hint?: string | undefined;
6692
6815
  messages?: {
6693
6816
  text: string;
6694
- type: "success" | "error" | "info" | "warning";
6817
+ type: "error" | "success" | "info" | "warning";
6695
6818
  id?: number | undefined;
6696
6819
  }[] | undefined;
6697
6820
  required?: boolean | undefined;
@@ -6713,7 +6836,7 @@ export declare function init(config: AuthHeroConfig): {
6713
6836
  hint?: string | undefined;
6714
6837
  messages?: {
6715
6838
  text: string;
6716
- type: "success" | "error" | "info" | "warning";
6839
+ type: "error" | "success" | "info" | "warning";
6717
6840
  id?: number | undefined;
6718
6841
  }[] | undefined;
6719
6842
  required?: boolean | undefined;
@@ -6732,7 +6855,7 @@ export declare function init(config: AuthHeroConfig): {
6732
6855
  hint?: string | undefined;
6733
6856
  messages?: {
6734
6857
  text: string;
6735
- type: "success" | "error" | "info" | "warning";
6858
+ type: "error" | "success" | "info" | "warning";
6736
6859
  id?: number | undefined;
6737
6860
  }[] | undefined;
6738
6861
  required?: boolean | undefined;
@@ -6759,7 +6882,7 @@ export declare function init(config: AuthHeroConfig): {
6759
6882
  hint?: string | undefined;
6760
6883
  messages?: {
6761
6884
  text: string;
6762
- type: "success" | "error" | "info" | "warning";
6885
+ type: "error" | "success" | "info" | "warning";
6763
6886
  id?: number | undefined;
6764
6887
  }[] | undefined;
6765
6888
  required?: boolean | undefined;
@@ -6780,7 +6903,7 @@ export declare function init(config: AuthHeroConfig): {
6780
6903
  hint?: string | undefined;
6781
6904
  messages?: {
6782
6905
  text: string;
6783
- type: "success" | "error" | "info" | "warning";
6906
+ type: "error" | "success" | "info" | "warning";
6784
6907
  id?: number | undefined;
6785
6908
  }[] | undefined;
6786
6909
  required?: boolean | undefined;
@@ -6803,7 +6926,7 @@ export declare function init(config: AuthHeroConfig): {
6803
6926
  hint?: string | undefined;
6804
6927
  messages?: {
6805
6928
  text: string;
6806
- type: "success" | "error" | "info" | "warning";
6929
+ type: "error" | "success" | "info" | "warning";
6807
6930
  id?: number | undefined;
6808
6931
  }[] | undefined;
6809
6932
  required?: boolean | undefined;
@@ -7109,7 +7232,7 @@ export declare function init(config: AuthHeroConfig): {
7109
7232
  };
7110
7233
  };
7111
7234
  output: {
7112
- prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
7235
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7113
7236
  language: string;
7114
7237
  }[];
7115
7238
  outputFormat: "json";
@@ -7147,7 +7270,7 @@ export declare function init(config: AuthHeroConfig): {
7147
7270
  $get: {
7148
7271
  input: {
7149
7272
  param: {
7150
- prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
7273
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7151
7274
  language: string;
7152
7275
  };
7153
7276
  } & {
@@ -7169,7 +7292,7 @@ export declare function init(config: AuthHeroConfig): {
7169
7292
  $put: {
7170
7293
  input: {
7171
7294
  param: {
7172
- prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
7295
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7173
7296
  language: string;
7174
7297
  };
7175
7298
  } & {
@@ -7193,7 +7316,7 @@ export declare function init(config: AuthHeroConfig): {
7193
7316
  $delete: {
7194
7317
  input: {
7195
7318
  param: {
7196
- prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
7319
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7197
7320
  language: string;
7198
7321
  };
7199
7322
  } & {
@@ -8076,7 +8199,7 @@ export declare function init(config: AuthHeroConfig): {
8076
8199
  };
8077
8200
  } | {
8078
8201
  mode: "inline";
8079
- status: "success" | "error";
8202
+ status: "error" | "success";
8080
8203
  connection_id: string;
8081
8204
  connection_name: string;
8082
8205
  strategy: string;
@@ -9136,7 +9259,7 @@ export declare function init(config: AuthHeroConfig): {
9136
9259
  created_at: string;
9137
9260
  updated_at: string;
9138
9261
  name: string;
9139
- provider: "auth0" | "cognito" | "okta" | "oidc";
9262
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9140
9263
  connection: string;
9141
9264
  enabled: boolean;
9142
9265
  credentials: {
@@ -9168,7 +9291,7 @@ export declare function init(config: AuthHeroConfig): {
9168
9291
  created_at: string;
9169
9292
  updated_at: string;
9170
9293
  name: string;
9171
- provider: "auth0" | "cognito" | "okta" | "oidc";
9294
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9172
9295
  connection: string;
9173
9296
  enabled: boolean;
9174
9297
  credentials: {
@@ -9194,7 +9317,7 @@ export declare function init(config: AuthHeroConfig): {
9194
9317
  } & {
9195
9318
  json: {
9196
9319
  name: string;
9197
- provider: "auth0" | "cognito" | "okta" | "oidc";
9320
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9198
9321
  connection: string;
9199
9322
  credentials: {
9200
9323
  domain: string;
@@ -9211,7 +9334,7 @@ export declare function init(config: AuthHeroConfig): {
9211
9334
  created_at: string;
9212
9335
  updated_at: string;
9213
9336
  name: string;
9214
- provider: "auth0" | "cognito" | "okta" | "oidc";
9337
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9215
9338
  connection: string;
9216
9339
  enabled: boolean;
9217
9340
  credentials: {
@@ -9242,7 +9365,7 @@ export declare function init(config: AuthHeroConfig): {
9242
9365
  json: {
9243
9366
  id?: string | undefined;
9244
9367
  name?: string | undefined;
9245
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
9368
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
9246
9369
  connection?: string | undefined;
9247
9370
  enabled?: boolean | undefined;
9248
9371
  credentials?: {
@@ -9258,7 +9381,7 @@ export declare function init(config: AuthHeroConfig): {
9258
9381
  created_at: string;
9259
9382
  updated_at: string;
9260
9383
  name: string;
9261
- provider: "auth0" | "cognito" | "okta" | "oidc";
9384
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9262
9385
  connection: string;
9263
9386
  enabled: boolean;
9264
9387
  credentials: {
@@ -9306,7 +9429,7 @@ export declare function init(config: AuthHeroConfig): {
9306
9429
  [x: string]: import("hono/utils/types").JSONValue;
9307
9430
  };
9308
9431
  id: string;
9309
- status: "suspended" | "active" | "paused";
9432
+ status: "active" | "suspended" | "paused";
9310
9433
  filters?: {
9311
9434
  type: string;
9312
9435
  name: string;
@@ -9338,7 +9461,7 @@ export declare function init(config: AuthHeroConfig): {
9338
9461
  [x: string]: import("hono/utils/types").JSONValue;
9339
9462
  };
9340
9463
  id: string;
9341
- status: "suspended" | "active" | "paused";
9464
+ status: "active" | "suspended" | "paused";
9342
9465
  filters?: {
9343
9466
  type: string;
9344
9467
  name: string;
@@ -9363,7 +9486,7 @@ export declare function init(config: AuthHeroConfig): {
9363
9486
  name: string;
9364
9487
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
9365
9488
  sink: Record<string, unknown>;
9366
- status?: "suspended" | "active" | "paused" | undefined;
9489
+ status?: "active" | "suspended" | "paused" | undefined;
9367
9490
  filters?: {
9368
9491
  type: string;
9369
9492
  name: string;
@@ -9378,7 +9501,7 @@ export declare function init(config: AuthHeroConfig): {
9378
9501
  [x: string]: import("hono/utils/types").JSONValue;
9379
9502
  };
9380
9503
  id: string;
9381
- status: "suspended" | "active" | "paused";
9504
+ status: "active" | "suspended" | "paused";
9382
9505
  filters?: {
9383
9506
  type: string;
9384
9507
  name: string;
@@ -9413,7 +9536,7 @@ export declare function init(config: AuthHeroConfig): {
9413
9536
  }[] | undefined;
9414
9537
  isPriority?: boolean | undefined;
9415
9538
  id?: string | undefined;
9416
- status?: "suspended" | "active" | "paused" | undefined;
9539
+ status?: "active" | "suspended" | "paused" | undefined;
9417
9540
  created_at?: string | undefined;
9418
9541
  updated_at?: string | undefined;
9419
9542
  };
@@ -9425,7 +9548,7 @@ export declare function init(config: AuthHeroConfig): {
9425
9548
  [x: string]: import("hono/utils/types").JSONValue;
9426
9549
  };
9427
9550
  id: string;
9428
- status: "suspended" | "active" | "paused";
9551
+ status: "active" | "suspended" | "paused";
9429
9552
  filters?: {
9430
9553
  type: string;
9431
9554
  name: string;
@@ -9476,7 +9599,7 @@ export declare function init(config: AuthHeroConfig): {
9476
9599
  };
9477
9600
  };
9478
9601
  output: {
9479
- type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9602
+ type: "w" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
9480
9603
  date: string;
9481
9604
  isMobile: boolean;
9482
9605
  log_id: string;
@@ -9515,7 +9638,7 @@ export declare function init(config: AuthHeroConfig): {
9515
9638
  limit: number;
9516
9639
  length: number;
9517
9640
  logs: {
9518
- type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9641
+ type: "w" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
9519
9642
  date: string;
9520
9643
  isMobile: boolean;
9521
9644
  log_id: string;
@@ -9554,7 +9677,7 @@ export declare function init(config: AuthHeroConfig): {
9554
9677
  next?: string | undefined;
9555
9678
  } | {
9556
9679
  logs: {
9557
- type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9680
+ type: "w" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
9558
9681
  date: string;
9559
9682
  isMobile: boolean;
9560
9683
  log_id: string;
@@ -9608,7 +9731,7 @@ export declare function init(config: AuthHeroConfig): {
9608
9731
  };
9609
9732
  };
9610
9733
  output: {
9611
- type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9734
+ type: "w" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
9612
9735
  date: string;
9613
9736
  isMobile: boolean;
9614
9737
  log_id: string;
@@ -9764,7 +9887,7 @@ export declare function init(config: AuthHeroConfig): {
9764
9887
  audience?: string | undefined;
9765
9888
  client_id?: string | undefined;
9766
9889
  allow_any_organization?: string | undefined;
9767
- subject_type?: "user" | "client" | undefined;
9890
+ subject_type?: "client" | "user" | undefined;
9768
9891
  };
9769
9892
  } & {
9770
9893
  header: {
@@ -9779,7 +9902,7 @@ export declare function init(config: AuthHeroConfig): {
9779
9902
  organization_usage?: "deny" | "allow" | "require" | undefined;
9780
9903
  allow_any_organization?: boolean | undefined;
9781
9904
  is_system?: boolean | undefined;
9782
- subject_type?: "user" | "client" | undefined;
9905
+ subject_type?: "client" | "user" | undefined;
9783
9906
  authorization_details_types?: string[] | undefined;
9784
9907
  created_at?: string | undefined;
9785
9908
  updated_at?: string | undefined;
@@ -9795,7 +9918,7 @@ export declare function init(config: AuthHeroConfig): {
9795
9918
  organization_usage?: "deny" | "allow" | "require" | undefined;
9796
9919
  allow_any_organization?: boolean | undefined;
9797
9920
  is_system?: boolean | undefined;
9798
- subject_type?: "user" | "client" | undefined;
9921
+ subject_type?: "client" | "user" | undefined;
9799
9922
  authorization_details_types?: string[] | undefined;
9800
9923
  created_at?: string | undefined;
9801
9924
  updated_at?: string | undefined;
@@ -9811,7 +9934,7 @@ export declare function init(config: AuthHeroConfig): {
9811
9934
  organization_usage?: "deny" | "allow" | "require" | undefined;
9812
9935
  allow_any_organization?: boolean | undefined;
9813
9936
  is_system?: boolean | undefined;
9814
- subject_type?: "user" | "client" | undefined;
9937
+ subject_type?: "client" | "user" | undefined;
9815
9938
  authorization_details_types?: string[] | undefined;
9816
9939
  created_at?: string | undefined;
9817
9940
  updated_at?: string | undefined;
@@ -9842,7 +9965,7 @@ export declare function init(config: AuthHeroConfig): {
9842
9965
  organization_usage?: "deny" | "allow" | "require" | undefined;
9843
9966
  allow_any_organization?: boolean | undefined;
9844
9967
  is_system?: boolean | undefined;
9845
- subject_type?: "user" | "client" | undefined;
9968
+ subject_type?: "client" | "user" | undefined;
9846
9969
  authorization_details_types?: string[] | undefined;
9847
9970
  created_at?: string | undefined;
9848
9971
  updated_at?: string | undefined;
@@ -9887,7 +10010,7 @@ export declare function init(config: AuthHeroConfig): {
9887
10010
  organization_usage?: "deny" | "allow" | "require" | undefined;
9888
10011
  allow_any_organization?: boolean | undefined;
9889
10012
  is_system?: boolean | undefined;
9890
- subject_type?: "user" | "client" | undefined;
10013
+ subject_type?: "client" | "user" | undefined;
9891
10014
  authorization_details_types?: string[] | undefined;
9892
10015
  };
9893
10016
  };
@@ -9899,7 +10022,7 @@ export declare function init(config: AuthHeroConfig): {
9899
10022
  organization_usage?: "deny" | "allow" | "require" | undefined;
9900
10023
  allow_any_organization?: boolean | undefined;
9901
10024
  is_system?: boolean | undefined;
9902
- subject_type?: "user" | "client" | undefined;
10025
+ subject_type?: "client" | "user" | undefined;
9903
10026
  authorization_details_types?: string[] | undefined;
9904
10027
  created_at?: string | undefined;
9905
10028
  updated_at?: string | undefined;
@@ -9923,7 +10046,7 @@ export declare function init(config: AuthHeroConfig): {
9923
10046
  organization_usage?: "deny" | "allow" | "require" | undefined;
9924
10047
  allow_any_organization?: boolean | undefined;
9925
10048
  is_system?: boolean | undefined;
9926
- subject_type?: "user" | "client" | undefined;
10049
+ subject_type?: "client" | "user" | undefined;
9927
10050
  authorization_details_types?: string[] | undefined;
9928
10051
  };
9929
10052
  };
@@ -9935,7 +10058,7 @@ export declare function init(config: AuthHeroConfig): {
9935
10058
  organization_usage?: "deny" | "allow" | "require" | undefined;
9936
10059
  allow_any_organization?: boolean | undefined;
9937
10060
  is_system?: boolean | undefined;
9938
- subject_type?: "user" | "client" | undefined;
10061
+ subject_type?: "client" | "user" | undefined;
9939
10062
  authorization_details_types?: string[] | undefined;
9940
10063
  created_at?: string | undefined;
9941
10064
  updated_at?: string | undefined;
@@ -10019,7 +10142,7 @@ export declare function init(config: AuthHeroConfig): {
10019
10142
  addons?: {
10020
10143
  [x: string]: any;
10021
10144
  } | undefined;
10022
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10145
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10023
10146
  client_metadata?: {
10024
10147
  [x: string]: string;
10025
10148
  } | undefined;
@@ -10121,7 +10244,7 @@ export declare function init(config: AuthHeroConfig): {
10121
10244
  addons?: {
10122
10245
  [x: string]: any;
10123
10246
  } | undefined;
10124
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10247
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10125
10248
  client_metadata?: {
10126
10249
  [x: string]: string;
10127
10250
  } | undefined;
@@ -10223,7 +10346,7 @@ export declare function init(config: AuthHeroConfig): {
10223
10346
  addons?: {
10224
10347
  [x: string]: any;
10225
10348
  } | undefined;
10226
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10349
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10227
10350
  client_metadata?: {
10228
10351
  [x: string]: string;
10229
10352
  } | undefined;
@@ -10340,7 +10463,7 @@ export declare function init(config: AuthHeroConfig): {
10340
10463
  addons?: {
10341
10464
  [x: string]: any;
10342
10465
  } | undefined;
10343
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10466
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10344
10467
  client_metadata?: {
10345
10468
  [x: string]: string;
10346
10469
  } | undefined;
@@ -10458,7 +10581,7 @@ export declare function init(config: AuthHeroConfig): {
10458
10581
  custom_login_page_preview?: string | undefined;
10459
10582
  form_template?: string | undefined;
10460
10583
  addons?: Record<string, any> | undefined;
10461
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10584
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10462
10585
  client_metadata?: Record<string, string> | undefined;
10463
10586
  hide_sign_up_disabled_error?: boolean | undefined;
10464
10587
  mobile?: Record<string, any> | undefined;
@@ -10544,7 +10667,7 @@ export declare function init(config: AuthHeroConfig): {
10544
10667
  addons?: {
10545
10668
  [x: string]: any;
10546
10669
  } | undefined;
10547
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10670
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10548
10671
  client_metadata?: {
10549
10672
  [x: string]: string;
10550
10673
  } | undefined;
@@ -10641,7 +10764,7 @@ export declare function init(config: AuthHeroConfig): {
10641
10764
  custom_login_page_preview?: string | undefined;
10642
10765
  form_template?: string | undefined;
10643
10766
  addons?: Record<string, any> | undefined;
10644
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10767
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10645
10768
  client_metadata?: Record<string, string> | undefined;
10646
10769
  hide_sign_up_disabled_error?: boolean | undefined;
10647
10770
  mobile?: Record<string, any> | undefined;
@@ -10727,7 +10850,7 @@ export declare function init(config: AuthHeroConfig): {
10727
10850
  addons?: {
10728
10851
  [x: string]: any;
10729
10852
  } | undefined;
10730
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10853
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10731
10854
  client_metadata?: {
10732
10855
  [x: string]: string;
10733
10856
  } | undefined;
@@ -11187,20 +11310,20 @@ export declare function init(config: AuthHeroConfig): {
11187
11310
  };
11188
11311
  };
11189
11312
  output: {
11190
- type: "jwt_signing" | "saml_encryption";
11191
11313
  kid: string;
11192
11314
  cert: string;
11193
11315
  fingerprint: string;
11194
11316
  thumbprint: string;
11317
+ type: "jwt_signing" | "saml_encryption";
11195
11318
  tenant_id?: string | undefined;
11196
11319
  connection?: string | undefined;
11197
- next?: boolean | undefined;
11198
- revoked_at?: string | undefined;
11199
11320
  current?: boolean | undefined;
11321
+ next?: boolean | undefined;
11200
11322
  previous?: boolean | undefined;
11201
11323
  current_since?: string | undefined;
11202
11324
  current_until?: string | undefined;
11203
11325
  revoked?: boolean | undefined;
11326
+ revoked_at?: string | undefined;
11204
11327
  expires_at?: string | undefined;
11205
11328
  expired?: boolean | undefined;
11206
11329
  inherited?: boolean | undefined;
@@ -11226,20 +11349,20 @@ export declare function init(config: AuthHeroConfig): {
11226
11349
  };
11227
11350
  };
11228
11351
  output: {
11229
- type: "jwt_signing" | "saml_encryption";
11230
11352
  kid: string;
11231
11353
  cert: string;
11232
11354
  fingerprint: string;
11233
11355
  thumbprint: string;
11356
+ type: "jwt_signing" | "saml_encryption";
11234
11357
  tenant_id?: string | undefined;
11235
11358
  connection?: string | undefined;
11236
- next?: boolean | undefined;
11237
- revoked_at?: string | undefined;
11238
11359
  current?: boolean | undefined;
11360
+ next?: boolean | undefined;
11239
11361
  previous?: boolean | undefined;
11240
11362
  current_since?: string | undefined;
11241
11363
  current_until?: string | undefined;
11242
11364
  revoked?: boolean | undefined;
11365
+ revoked_at?: string | undefined;
11243
11366
  expires_at?: string | undefined;
11244
11367
  expired?: boolean | undefined;
11245
11368
  inherited?: boolean | undefined;
@@ -11264,20 +11387,20 @@ export declare function init(config: AuthHeroConfig): {
11264
11387
  };
11265
11388
  };
11266
11389
  output: {
11267
- type: "jwt_signing" | "saml_encryption";
11268
11390
  kid: string;
11269
11391
  cert: string;
11270
11392
  fingerprint: string;
11271
11393
  thumbprint: string;
11394
+ type: "jwt_signing" | "saml_encryption";
11272
11395
  tenant_id?: string | undefined;
11273
11396
  connection?: string | undefined;
11274
- next?: boolean | undefined;
11275
- revoked_at?: string | undefined;
11276
11397
  current?: boolean | undefined;
11398
+ next?: boolean | undefined;
11277
11399
  previous?: boolean | undefined;
11278
11400
  current_since?: string | undefined;
11279
11401
  current_until?: string | undefined;
11280
11402
  revoked?: boolean | undefined;
11403
+ revoked_at?: string | undefined;
11281
11404
  expires_at?: string | undefined;
11282
11405
  expired?: boolean | undefined;
11283
11406
  inherited?: boolean | undefined;
@@ -11304,20 +11427,20 @@ export declare function init(config: AuthHeroConfig): {
11304
11427
  };
11305
11428
  };
11306
11429
  output: {
11307
- type: "jwt_signing" | "saml_encryption";
11308
11430
  kid: string;
11309
11431
  cert: string;
11310
11432
  fingerprint: string;
11311
11433
  thumbprint: string;
11434
+ type: "jwt_signing" | "saml_encryption";
11312
11435
  tenant_id?: string | undefined;
11313
11436
  connection?: string | undefined;
11314
- next?: boolean | undefined;
11315
- revoked_at?: string | undefined;
11316
11437
  current?: boolean | undefined;
11438
+ next?: boolean | undefined;
11317
11439
  previous?: boolean | undefined;
11318
11440
  current_since?: string | undefined;
11319
11441
  current_until?: string | undefined;
11320
11442
  revoked?: boolean | undefined;
11443
+ revoked_at?: string | undefined;
11321
11444
  expires_at?: string | undefined;
11322
11445
  expired?: boolean | undefined;
11323
11446
  inherited?: boolean | undefined;
@@ -12162,8 +12285,8 @@ export declare function init(config: AuthHeroConfig): {
12162
12285
  };
12163
12286
  };
12164
12287
  output: {
12165
- id: string;
12166
12288
  created_at: string;
12289
+ id: string;
12167
12290
  client_id: string;
12168
12291
  user_id: string;
12169
12292
  rotating: boolean;
@@ -12180,21 +12303,24 @@ export declare function init(config: AuthHeroConfig): {
12180
12303
  audience: string;
12181
12304
  scopes: string;
12182
12305
  }[];
12306
+ organization?: string | undefined;
12183
12307
  revoked_at?: string | undefined;
12184
12308
  expires_at?: string | undefined;
12185
- idle_expires_at?: string | undefined;
12186
12309
  session_id?: string | undefined;
12187
- organization?: string | undefined;
12188
12310
  auth_connection?: string | undefined;
12189
12311
  auth_strategy?: {
12190
12312
  strategy: string;
12191
12313
  strategy_type: string;
12192
12314
  } | undefined;
12315
+ idle_expires_at?: string | undefined;
12193
12316
  last_exchanged_at?: string | undefined;
12194
12317
  }[] | {
12318
+ start: number;
12319
+ limit: number;
12320
+ length: number;
12195
12321
  tokens: {
12196
- id: string;
12197
12322
  created_at: string;
12323
+ id: string;
12198
12324
  client_id: string;
12199
12325
  user_id: string;
12200
12326
  rotating: boolean;
@@ -12211,26 +12337,24 @@ export declare function init(config: AuthHeroConfig): {
12211
12337
  audience: string;
12212
12338
  scopes: string;
12213
12339
  }[];
12340
+ organization?: string | undefined;
12214
12341
  revoked_at?: string | undefined;
12215
12342
  expires_at?: string | undefined;
12216
- idle_expires_at?: string | undefined;
12217
12343
  session_id?: string | undefined;
12218
- organization?: string | undefined;
12219
12344
  auth_connection?: string | undefined;
12220
12345
  auth_strategy?: {
12221
12346
  strategy: string;
12222
12347
  strategy_type: string;
12223
12348
  } | undefined;
12349
+ idle_expires_at?: string | undefined;
12224
12350
  last_exchanged_at?: string | undefined;
12225
12351
  }[];
12352
+ total?: number | undefined;
12226
12353
  next?: string | undefined;
12227
12354
  } | {
12228
- start: number;
12229
- limit: number;
12230
- length: number;
12231
12355
  tokens: {
12232
- id: string;
12233
12356
  created_at: string;
12357
+ id: string;
12234
12358
  client_id: string;
12235
12359
  user_id: string;
12236
12360
  rotating: boolean;
@@ -12247,19 +12371,18 @@ export declare function init(config: AuthHeroConfig): {
12247
12371
  audience: string;
12248
12372
  scopes: string;
12249
12373
  }[];
12374
+ organization?: string | undefined;
12250
12375
  revoked_at?: string | undefined;
12251
12376
  expires_at?: string | undefined;
12252
- idle_expires_at?: string | undefined;
12253
12377
  session_id?: string | undefined;
12254
- organization?: string | undefined;
12255
12378
  auth_connection?: string | undefined;
12256
12379
  auth_strategy?: {
12257
12380
  strategy: string;
12258
12381
  strategy_type: string;
12259
12382
  } | undefined;
12383
+ idle_expires_at?: string | undefined;
12260
12384
  last_exchanged_at?: string | undefined;
12261
12385
  }[];
12262
- total?: number | undefined;
12263
12386
  next?: string | undefined;
12264
12387
  };
12265
12388
  outputFormat: "json";
@@ -12308,7 +12431,7 @@ export declare function init(config: AuthHeroConfig): {
12308
12431
  };
12309
12432
  };
12310
12433
  output: {
12311
- type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12434
+ type: "w" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
12312
12435
  date: string;
12313
12436
  isMobile: boolean;
12314
12437
  log_id: string;
@@ -12347,7 +12470,7 @@ export declare function init(config: AuthHeroConfig): {
12347
12470
  limit: number;
12348
12471
  length: number;
12349
12472
  logs: {
12350
- type: "fn" | "cs" | "fi" | "sv" | "i" | "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" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12473
+ type: "w" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
12351
12474
  date: string;
12352
12475
  isMobile: boolean;
12353
12476
  log_id: string;
@@ -13191,7 +13314,7 @@ export declare function init(config: AuthHeroConfig): {
13191
13314
  type: "auth0_managed_certs" | "self_managed_certs";
13192
13315
  custom_domain_id: string;
13193
13316
  primary: boolean;
13194
- status: "pending" | "ready" | "disabled" | "pending_verification";
13317
+ status: "disabled" | "pending" | "ready" | "pending_verification";
13195
13318
  verification_method?: "txt" | undefined;
13196
13319
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13197
13320
  domain_metadata?: {
@@ -13232,7 +13355,7 @@ export declare function init(config: AuthHeroConfig): {
13232
13355
  type: "auth0_managed_certs" | "self_managed_certs";
13233
13356
  custom_domain_id: string;
13234
13357
  primary: boolean;
13235
- status: "pending" | "ready" | "disabled" | "pending_verification";
13358
+ status: "disabled" | "pending" | "ready" | "pending_verification";
13236
13359
  verification_method?: "txt" | undefined;
13237
13360
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13238
13361
  domain_metadata?: {
@@ -13296,7 +13419,7 @@ export declare function init(config: AuthHeroConfig): {
13296
13419
  type: "auth0_managed_certs" | "self_managed_certs";
13297
13420
  custom_domain_id: string;
13298
13421
  primary: boolean;
13299
- status: "pending" | "ready" | "disabled" | "pending_verification";
13422
+ status: "disabled" | "pending" | "ready" | "pending_verification";
13300
13423
  verification_method?: "txt" | undefined;
13301
13424
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13302
13425
  domain_metadata?: {
@@ -13343,7 +13466,7 @@ export declare function init(config: AuthHeroConfig): {
13343
13466
  type: "auth0_managed_certs" | "self_managed_certs";
13344
13467
  custom_domain_id: string;
13345
13468
  primary: boolean;
13346
- status: "pending" | "ready" | "disabled" | "pending_verification";
13469
+ status: "disabled" | "pending" | "ready" | "pending_verification";
13347
13470
  verification_method?: "txt" | undefined;
13348
13471
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13349
13472
  domain_metadata?: {
@@ -13389,7 +13512,7 @@ export declare function init(config: AuthHeroConfig): {
13389
13512
  type: "auth0_managed_certs" | "self_managed_certs";
13390
13513
  custom_domain_id: string;
13391
13514
  primary: boolean;
13392
- status: "pending" | "ready" | "disabled" | "pending_verification";
13515
+ status: "disabled" | "pending" | "ready" | "pending_verification";
13393
13516
  verification_method?: "txt" | undefined;
13394
13517
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13395
13518
  domain_metadata?: {
@@ -13430,7 +13553,7 @@ export declare function init(config: AuthHeroConfig): {
13430
13553
  type: "auth0_managed_certs" | "self_managed_certs";
13431
13554
  custom_domain_id: string;
13432
13555
  primary: boolean;
13433
- status: "pending" | "ready" | "disabled" | "pending_verification";
13556
+ status: "disabled" | "pending" | "ready" | "pending_verification";
13434
13557
  verification_method?: "txt" | undefined;
13435
13558
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13436
13559
  domain_metadata?: {
@@ -13529,12 +13652,12 @@ export declare function init(config: AuthHeroConfig): {
13529
13652
  background_color: string;
13530
13653
  background_image_url: string;
13531
13654
  page_layout: "center" | "left" | "right";
13532
- logo_placement?: "widget" | "none" | "chip" | undefined;
13655
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13533
13656
  };
13534
13657
  widget: {
13535
13658
  header_text_alignment: "center" | "left" | "right";
13536
13659
  logo_height: number;
13537
- logo_position: "center" | "left" | "right" | "none";
13660
+ logo_position: "none" | "center" | "left" | "right";
13538
13661
  logo_url: string;
13539
13662
  social_buttons_layout: "bottom" | "top";
13540
13663
  };
@@ -13619,12 +13742,12 @@ export declare function init(config: AuthHeroConfig): {
13619
13742
  background_color: string;
13620
13743
  background_image_url: string;
13621
13744
  page_layout: "center" | "left" | "right";
13622
- logo_placement?: "widget" | "none" | "chip" | undefined;
13745
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13623
13746
  };
13624
13747
  widget: {
13625
13748
  header_text_alignment: "center" | "left" | "right";
13626
13749
  logo_height: number;
13627
- logo_position: "center" | "left" | "right" | "none";
13750
+ logo_position: "none" | "center" | "left" | "right";
13628
13751
  logo_url: string;
13629
13752
  social_buttons_layout: "bottom" | "top";
13630
13753
  };
@@ -13698,12 +13821,12 @@ export declare function init(config: AuthHeroConfig): {
13698
13821
  background_color: string;
13699
13822
  background_image_url: string;
13700
13823
  page_layout: "center" | "left" | "right";
13701
- logo_placement?: "widget" | "none" | "chip" | undefined;
13824
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13702
13825
  };
13703
13826
  widget: {
13704
13827
  header_text_alignment: "center" | "left" | "right";
13705
13828
  logo_height: number;
13706
- logo_position: "center" | "left" | "right" | "none";
13829
+ logo_position: "none" | "center" | "left" | "right";
13707
13830
  logo_url: string;
13708
13831
  social_buttons_layout: "bottom" | "top";
13709
13832
  };
@@ -13860,7 +13983,7 @@ export declare function init(config: AuthHeroConfig): {
13860
13983
  } & {
13861
13984
  json: {
13862
13985
  body?: string | undefined;
13863
- screen?: "password" | "login" | "identifier" | "signup" | undefined;
13986
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
13864
13987
  branding?: {
13865
13988
  colors?: {
13866
13989
  primary: string;
@@ -13946,12 +14069,12 @@ export declare function init(config: AuthHeroConfig): {
13946
14069
  background_color: string;
13947
14070
  background_image_url: string;
13948
14071
  page_layout: "center" | "left" | "right";
13949
- logo_placement?: "widget" | "none" | "chip" | undefined;
14072
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13950
14073
  } | undefined;
13951
14074
  widget?: {
13952
14075
  header_text_alignment: "center" | "left" | "right";
13953
14076
  logo_height: number;
13954
- logo_position: "center" | "left" | "right" | "none";
14077
+ logo_position: "none" | "center" | "left" | "right";
13955
14078
  logo_url: string;
13956
14079
  social_buttons_layout: "bottom" | "top";
13957
14080
  } | undefined;
@@ -15122,7 +15245,7 @@ export declare function init(config: AuthHeroConfig): {
15122
15245
  scope?: string | undefined;
15123
15246
  grant_types?: string[] | undefined;
15124
15247
  response_types?: string[] | undefined;
15125
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
15248
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15126
15249
  jwks_uri?: string | undefined;
15127
15250
  jwks?: Record<string, unknown> | undefined;
15128
15251
  software_id?: string | undefined;
@@ -15211,7 +15334,7 @@ export declare function init(config: AuthHeroConfig): {
15211
15334
  scope?: string | undefined;
15212
15335
  grant_types?: string[] | undefined;
15213
15336
  response_types?: string[] | undefined;
15214
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
15337
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15215
15338
  jwks_uri?: string | undefined;
15216
15339
  jwks?: Record<string, unknown> | undefined;
15217
15340
  software_id?: string | undefined;
@@ -15557,17 +15680,17 @@ export declare function init(config: AuthHeroConfig): {
15557
15680
  email: string;
15558
15681
  send: "code" | "link";
15559
15682
  authParams: {
15560
- audience?: string | undefined;
15561
- username?: string | undefined;
15562
- prompt?: string | undefined;
15563
- scope?: string | undefined;
15564
- organization?: string | undefined;
15565
15683
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15566
15684
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15567
- state?: string | undefined;
15685
+ scope?: string | undefined;
15686
+ username?: string | undefined;
15687
+ audience?: string | undefined;
15688
+ nonce?: string | undefined;
15689
+ organization?: string | undefined;
15568
15690
  redirect_uri?: string | undefined;
15691
+ state?: string | undefined;
15569
15692
  act_as?: string | undefined;
15570
- nonce?: string | undefined;
15693
+ prompt?: string | undefined;
15571
15694
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15572
15695
  code_challenge?: string | undefined;
15573
15696
  ui_locales?: string | undefined;
@@ -15593,17 +15716,17 @@ export declare function init(config: AuthHeroConfig): {
15593
15716
  phone_number: string;
15594
15717
  send: "code" | "link";
15595
15718
  authParams: {
15596
- audience?: string | undefined;
15597
- username?: string | undefined;
15598
- prompt?: string | undefined;
15599
- scope?: string | undefined;
15600
- organization?: string | undefined;
15601
15719
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15602
15720
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15603
- state?: string | undefined;
15721
+ scope?: string | undefined;
15722
+ username?: string | undefined;
15723
+ audience?: string | undefined;
15724
+ nonce?: string | undefined;
15725
+ organization?: string | undefined;
15604
15726
  redirect_uri?: string | undefined;
15727
+ state?: string | undefined;
15605
15728
  act_as?: string | undefined;
15606
- nonce?: string | undefined;
15729
+ prompt?: string | undefined;
15607
15730
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15608
15731
  code_challenge?: string | undefined;
15609
15732
  ui_locales?: string | undefined;
@@ -15835,7 +15958,7 @@ export declare function init(config: AuthHeroConfig): {
15835
15958
  client_id: string;
15836
15959
  username: string;
15837
15960
  otp: string;
15838
- realm: "sms" | "email";
15961
+ realm: "email" | "sms";
15839
15962
  scope?: string | undefined;
15840
15963
  audience?: string | undefined;
15841
15964
  } | {
@@ -15884,7 +16007,7 @@ export declare function init(config: AuthHeroConfig): {
15884
16007
  client_id: string;
15885
16008
  username: string;
15886
16009
  otp: string;
15887
- realm: "sms" | "email";
16010
+ realm: "email" | "sms";
15888
16011
  scope?: string | undefined;
15889
16012
  audience?: string | undefined;
15890
16013
  } | {
@@ -15938,7 +16061,7 @@ export declare function init(config: AuthHeroConfig): {
15938
16061
  client_id: string;
15939
16062
  username: string;
15940
16063
  otp: string;
15941
- realm: "sms" | "email";
16064
+ realm: "email" | "sms";
15942
16065
  scope?: string | undefined;
15943
16066
  audience?: string | undefined;
15944
16067
  } | {
@@ -15987,7 +16110,7 @@ export declare function init(config: AuthHeroConfig): {
15987
16110
  client_id: string;
15988
16111
  username: string;
15989
16112
  otp: string;
15990
- realm: "sms" | "email";
16113
+ realm: "email" | "sms";
15991
16114
  scope?: string | undefined;
15992
16115
  audience?: string | undefined;
15993
16116
  } | {
@@ -16049,7 +16172,7 @@ export declare function init(config: AuthHeroConfig): {
16049
16172
  client_id: string;
16050
16173
  username: string;
16051
16174
  otp: string;
16052
- realm: "sms" | "email";
16175
+ realm: "email" | "sms";
16053
16176
  scope?: string | undefined;
16054
16177
  audience?: string | undefined;
16055
16178
  } | {
@@ -16098,7 +16221,7 @@ export declare function init(config: AuthHeroConfig): {
16098
16221
  client_id: string;
16099
16222
  username: string;
16100
16223
  otp: string;
16101
- realm: "sms" | "email";
16224
+ realm: "email" | "sms";
16102
16225
  scope?: string | undefined;
16103
16226
  audience?: string | undefined;
16104
16227
  } | {
@@ -16155,7 +16278,7 @@ export declare function init(config: AuthHeroConfig): {
16155
16278
  client_id: string;
16156
16279
  username: string;
16157
16280
  otp: string;
16158
- realm: "sms" | "email";
16281
+ realm: "email" | "sms";
16159
16282
  scope?: string | undefined;
16160
16283
  audience?: string | undefined;
16161
16284
  } | {
@@ -16204,7 +16327,7 @@ export declare function init(config: AuthHeroConfig): {
16204
16327
  client_id: string;
16205
16328
  username: string;
16206
16329
  otp: string;
16207
- realm: "sms" | "email";
16330
+ realm: "email" | "sms";
16208
16331
  scope?: string | undefined;
16209
16332
  audience?: string | undefined;
16210
16333
  } | {
@@ -16261,7 +16384,7 @@ export declare function init(config: AuthHeroConfig): {
16261
16384
  client_id: string;
16262
16385
  username: string;
16263
16386
  otp: string;
16264
- realm: "sms" | "email";
16387
+ realm: "email" | "sms";
16265
16388
  scope?: string | undefined;
16266
16389
  audience?: string | undefined;
16267
16390
  } | {
@@ -16310,7 +16433,7 @@ export declare function init(config: AuthHeroConfig): {
16310
16433
  client_id: string;
16311
16434
  username: string;
16312
16435
  otp: string;
16313
- realm: "sms" | "email";
16436
+ realm: "email" | "sms";
16314
16437
  scope?: string | undefined;
16315
16438
  audience?: string | undefined;
16316
16439
  } | {
@@ -16341,7 +16464,7 @@ export declare function init(config: AuthHeroConfig): {
16341
16464
  output: {
16342
16465
  keys: {
16343
16466
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
16344
- kty: "EC" | "RSA" | "oct";
16467
+ kty: "RSA" | "EC" | "oct";
16345
16468
  kid?: string | undefined;
16346
16469
  use?: "sig" | "enc" | undefined;
16347
16470
  n?: string | undefined;
@@ -17536,7 +17659,7 @@ export declare function init(config: AuthHeroConfig): {
17536
17659
  $get: {
17537
17660
  input: {
17538
17661
  param: {
17539
- screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "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";
17662
+ screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "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";
17540
17663
  };
17541
17664
  } & {
17542
17665
  query: {
@@ -17552,7 +17675,7 @@ export declare function init(config: AuthHeroConfig): {
17552
17675
  } | {
17553
17676
  input: {
17554
17677
  param: {
17555
- screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "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";
17678
+ screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "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";
17556
17679
  };
17557
17680
  } & {
17558
17681
  query: {
@@ -17568,7 +17691,7 @@ export declare function init(config: AuthHeroConfig): {
17568
17691
  } | {
17569
17692
  input: {
17570
17693
  param: {
17571
- screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "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";
17694
+ screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "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";
17572
17695
  };
17573
17696
  } & {
17574
17697
  query: {
@@ -17588,7 +17711,7 @@ export declare function init(config: AuthHeroConfig): {
17588
17711
  $post: {
17589
17712
  input: {
17590
17713
  param: {
17591
- screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "enter-password" | "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";
17714
+ screen: "impersonate" | "signup" | "login" | "reset-password" | "consent" | "enter-password" | "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";
17592
17715
  };
17593
17716
  } & {
17594
17717
  query: {
@@ -17606,7 +17729,7 @@ export declare function init(config: AuthHeroConfig): {
17606
17729
  } | {
17607
17730
  input: {
17608
17731
  param: {
17609
- screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "enter-password" | "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";
17732
+ screen: "impersonate" | "signup" | "login" | "reset-password" | "consent" | "enter-password" | "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";
17610
17733
  };
17611
17734
  } & {
17612
17735
  query: {