authhero 9.1.0 → 9.1.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.
@@ -3423,6 +3423,12 @@ interface CreateServiceTokenCoreParams {
3423
3423
  tenantId: string;
3424
3424
  scope: string;
3425
3425
  issuer: string;
3426
+ /**
3427
+ * Explicit audience override. When unset the tenant's `audience` is
3428
+ * required — callers that want a fallback chain (e.g. `default_audience`)
3429
+ * resolve it themselves and pass the result here.
3430
+ */
3431
+ audience?: string;
3426
3432
  expiresInSeconds?: number;
3427
3433
  customClaims?: Record<string, unknown>;
3428
3434
  /**
@@ -4218,8 +4224,8 @@ declare function init(config: AuthHeroConfig): {
4218
4224
  $get: {
4219
4225
  input: {
4220
4226
  query: {
4221
- include_password_hashes?: "true" | "false" | undefined;
4222
- gzip?: "true" | "false" | undefined;
4227
+ include_password_hashes?: "false" | "true" | undefined;
4228
+ gzip?: "false" | "true" | undefined;
4223
4229
  };
4224
4230
  } & {
4225
4231
  header: {
@@ -4232,8 +4238,8 @@ declare function init(config: AuthHeroConfig): {
4232
4238
  } | {
4233
4239
  input: {
4234
4240
  query: {
4235
- include_password_hashes?: "true" | "false" | undefined;
4236
- gzip?: "true" | "false" | undefined;
4241
+ include_password_hashes?: "false" | "true" | undefined;
4242
+ gzip?: "false" | "true" | undefined;
4237
4243
  };
4238
4244
  } & {
4239
4245
  header: {
@@ -4252,7 +4258,7 @@ declare function init(config: AuthHeroConfig): {
4252
4258
  $post: {
4253
4259
  input: {
4254
4260
  query: {
4255
- include_password_hashes?: "true" | "false" | undefined;
4261
+ include_password_hashes?: "false" | "true" | undefined;
4256
4262
  };
4257
4263
  } & {
4258
4264
  header: {
@@ -4446,7 +4452,7 @@ declare function init(config: AuthHeroConfig): {
4446
4452
  };
4447
4453
  };
4448
4454
  output: {
4449
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4455
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4450
4456
  enabled: boolean;
4451
4457
  trial_expired?: boolean | undefined;
4452
4458
  }[];
@@ -4601,7 +4607,7 @@ declare function init(config: AuthHeroConfig): {
4601
4607
  $get: {
4602
4608
  input: {
4603
4609
  param: {
4604
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4610
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4605
4611
  };
4606
4612
  } & {
4607
4613
  header: {
@@ -4609,7 +4615,7 @@ declare function init(config: AuthHeroConfig): {
4609
4615
  };
4610
4616
  };
4611
4617
  output: {
4612
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4618
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4613
4619
  enabled: boolean;
4614
4620
  trial_expired?: boolean | undefined;
4615
4621
  };
@@ -4622,7 +4628,7 @@ declare function init(config: AuthHeroConfig): {
4622
4628
  $put: {
4623
4629
  input: {
4624
4630
  param: {
4625
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4631
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4626
4632
  };
4627
4633
  } & {
4628
4634
  header: {
@@ -4634,7 +4640,7 @@ declare function init(config: AuthHeroConfig): {
4634
4640
  };
4635
4641
  };
4636
4642
  output: {
4637
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4643
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4638
4644
  enabled: boolean;
4639
4645
  trial_expired?: boolean | undefined;
4640
4646
  };
@@ -5406,19 +5412,19 @@ declare function init(config: AuthHeroConfig): {
5406
5412
  } & {
5407
5413
  json: {
5408
5414
  client_id: string;
5409
- invitee: {
5410
- email?: string | undefined;
5411
- };
5412
5415
  inviter: {
5413
5416
  name?: string | undefined;
5414
5417
  };
5415
- connection_id?: string | undefined;
5416
- id?: string | undefined;
5418
+ invitee: {
5419
+ email?: string | undefined;
5420
+ };
5417
5421
  app_metadata?: Record<string, any> | undefined;
5418
5422
  user_metadata?: Record<string, any> | undefined;
5423
+ id?: string | undefined;
5424
+ connection_id?: string | undefined;
5419
5425
  roles?: string[] | undefined;
5420
- send_invitation_email?: boolean | undefined;
5421
5426
  ttl_sec?: number | undefined;
5427
+ send_invitation_email?: boolean | undefined;
5422
5428
  };
5423
5429
  };
5424
5430
  output: {
@@ -5601,8 +5607,8 @@ declare function init(config: AuthHeroConfig): {
5601
5607
  };
5602
5608
  } & {
5603
5609
  json: {
5604
- show_as_button?: boolean | undefined;
5605
5610
  assign_membership_on_login?: boolean | undefined;
5611
+ show_as_button?: boolean | undefined;
5606
5612
  is_signup_enabled?: boolean | undefined;
5607
5613
  };
5608
5614
  };
@@ -6898,7 +6904,7 @@ declare function init(config: AuthHeroConfig): {
6898
6904
  hint?: string | undefined;
6899
6905
  messages?: {
6900
6906
  text: string;
6901
- type: "error" | "success" | "info" | "warning";
6907
+ type: "success" | "error" | "info" | "warning";
6902
6908
  id?: number | undefined;
6903
6909
  }[] | undefined;
6904
6910
  required?: boolean | undefined;
@@ -6916,7 +6922,7 @@ declare function init(config: AuthHeroConfig): {
6916
6922
  hint?: string | undefined;
6917
6923
  messages?: {
6918
6924
  text: string;
6919
- type: "error" | "success" | "info" | "warning";
6925
+ type: "success" | "error" | "info" | "warning";
6920
6926
  id?: number | undefined;
6921
6927
  }[] | undefined;
6922
6928
  required?: boolean | undefined;
@@ -6940,7 +6946,7 @@ declare function init(config: AuthHeroConfig): {
6940
6946
  hint?: string | undefined;
6941
6947
  messages?: {
6942
6948
  text: string;
6943
- type: "error" | "success" | "info" | "warning";
6949
+ type: "success" | "error" | "info" | "warning";
6944
6950
  id?: number | undefined;
6945
6951
  }[] | undefined;
6946
6952
  required?: boolean | undefined;
@@ -6964,7 +6970,7 @@ declare function init(config: AuthHeroConfig): {
6964
6970
  hint?: string | undefined;
6965
6971
  messages?: {
6966
6972
  text: string;
6967
- type: "error" | "success" | "info" | "warning";
6973
+ type: "success" | "error" | "info" | "warning";
6968
6974
  id?: number | undefined;
6969
6975
  }[] | undefined;
6970
6976
  required?: boolean | undefined;
@@ -6988,7 +6994,7 @@ declare function init(config: AuthHeroConfig): {
6988
6994
  hint?: string | undefined;
6989
6995
  messages?: {
6990
6996
  text: string;
6991
- type: "error" | "success" | "info" | "warning";
6997
+ type: "success" | "error" | "info" | "warning";
6992
6998
  id?: number | undefined;
6993
6999
  }[] | undefined;
6994
7000
  required?: boolean | undefined;
@@ -7017,7 +7023,7 @@ declare function init(config: AuthHeroConfig): {
7017
7023
  hint?: string | undefined;
7018
7024
  messages?: {
7019
7025
  text: string;
7020
- type: "error" | "success" | "info" | "warning";
7026
+ type: "success" | "error" | "info" | "warning";
7021
7027
  id?: number | undefined;
7022
7028
  }[] | undefined;
7023
7029
  required?: boolean | undefined;
@@ -7032,7 +7038,7 @@ declare function init(config: AuthHeroConfig): {
7032
7038
  hint?: string | undefined;
7033
7039
  messages?: {
7034
7040
  text: string;
7035
- type: "error" | "success" | "info" | "warning";
7041
+ type: "success" | "error" | "info" | "warning";
7036
7042
  id?: number | undefined;
7037
7043
  }[] | undefined;
7038
7044
  required?: boolean | undefined;
@@ -7053,7 +7059,7 @@ declare function init(config: AuthHeroConfig): {
7053
7059
  hint?: string | undefined;
7054
7060
  messages?: {
7055
7061
  text: string;
7056
- type: "error" | "success" | "info" | "warning";
7062
+ type: "success" | "error" | "info" | "warning";
7057
7063
  id?: number | undefined;
7058
7064
  }[] | undefined;
7059
7065
  required?: boolean | undefined;
@@ -7078,7 +7084,7 @@ declare function init(config: AuthHeroConfig): {
7078
7084
  hint?: string | undefined;
7079
7085
  messages?: {
7080
7086
  text: string;
7081
- type: "error" | "success" | "info" | "warning";
7087
+ type: "success" | "error" | "info" | "warning";
7082
7088
  id?: number | undefined;
7083
7089
  }[] | undefined;
7084
7090
  required?: boolean | undefined;
@@ -7097,7 +7103,7 @@ declare function init(config: AuthHeroConfig): {
7097
7103
  hint?: string | undefined;
7098
7104
  messages?: {
7099
7105
  text: string;
7100
- type: "error" | "success" | "info" | "warning";
7106
+ type: "success" | "error" | "info" | "warning";
7101
7107
  id?: number | undefined;
7102
7108
  }[] | undefined;
7103
7109
  required?: boolean | undefined;
@@ -7117,7 +7123,7 @@ declare function init(config: AuthHeroConfig): {
7117
7123
  hint?: string | undefined;
7118
7124
  messages?: {
7119
7125
  text: string;
7120
- type: "error" | "success" | "info" | "warning";
7126
+ type: "success" | "error" | "info" | "warning";
7121
7127
  id?: number | undefined;
7122
7128
  }[] | undefined;
7123
7129
  required?: boolean | undefined;
@@ -7136,7 +7142,7 @@ declare function init(config: AuthHeroConfig): {
7136
7142
  hint?: string | undefined;
7137
7143
  messages?: {
7138
7144
  text: string;
7139
- type: "error" | "success" | "info" | "warning";
7145
+ type: "success" | "error" | "info" | "warning";
7140
7146
  id?: number | undefined;
7141
7147
  }[] | undefined;
7142
7148
  required?: boolean | undefined;
@@ -7158,7 +7164,7 @@ declare function init(config: AuthHeroConfig): {
7158
7164
  hint?: string | undefined;
7159
7165
  messages?: {
7160
7166
  text: string;
7161
- type: "error" | "success" | "info" | "warning";
7167
+ type: "success" | "error" | "info" | "warning";
7162
7168
  id?: number | undefined;
7163
7169
  }[] | undefined;
7164
7170
  required?: boolean | undefined;
@@ -7180,7 +7186,7 @@ declare function init(config: AuthHeroConfig): {
7180
7186
  hint?: string | undefined;
7181
7187
  messages?: {
7182
7188
  text: string;
7183
- type: "error" | "success" | "info" | "warning";
7189
+ type: "success" | "error" | "info" | "warning";
7184
7190
  id?: number | undefined;
7185
7191
  }[] | undefined;
7186
7192
  required?: boolean | undefined;
@@ -7199,7 +7205,7 @@ declare function init(config: AuthHeroConfig): {
7199
7205
  hint?: string | undefined;
7200
7206
  messages?: {
7201
7207
  text: string;
7202
- type: "error" | "success" | "info" | "warning";
7208
+ type: "success" | "error" | "info" | "warning";
7203
7209
  id?: number | undefined;
7204
7210
  }[] | undefined;
7205
7211
  required?: boolean | undefined;
@@ -7226,7 +7232,7 @@ declare function init(config: AuthHeroConfig): {
7226
7232
  hint?: string | undefined;
7227
7233
  messages?: {
7228
7234
  text: string;
7229
- type: "error" | "success" | "info" | "warning";
7235
+ type: "success" | "error" | "info" | "warning";
7230
7236
  id?: number | undefined;
7231
7237
  }[] | undefined;
7232
7238
  required?: boolean | undefined;
@@ -7247,7 +7253,7 @@ declare function init(config: AuthHeroConfig): {
7247
7253
  hint?: string | undefined;
7248
7254
  messages?: {
7249
7255
  text: string;
7250
- type: "error" | "success" | "info" | "warning";
7256
+ type: "success" | "error" | "info" | "warning";
7251
7257
  id?: number | undefined;
7252
7258
  }[] | undefined;
7253
7259
  required?: boolean | undefined;
@@ -7268,7 +7274,7 @@ declare function init(config: AuthHeroConfig): {
7268
7274
  hint?: string | undefined;
7269
7275
  messages?: {
7270
7276
  text: string;
7271
- type: "error" | "success" | "info" | "warning";
7277
+ type: "success" | "error" | "info" | "warning";
7272
7278
  id?: number | undefined;
7273
7279
  }[] | undefined;
7274
7280
  required?: boolean | undefined;
@@ -7501,7 +7507,7 @@ declare function init(config: AuthHeroConfig): {
7501
7507
  hint?: string | undefined;
7502
7508
  messages?: {
7503
7509
  text: string;
7504
- type: "error" | "success" | "info" | "warning";
7510
+ type: "success" | "error" | "info" | "warning";
7505
7511
  id?: number | undefined;
7506
7512
  }[] | undefined;
7507
7513
  required?: boolean | undefined;
@@ -7519,7 +7525,7 @@ declare function init(config: AuthHeroConfig): {
7519
7525
  hint?: string | undefined;
7520
7526
  messages?: {
7521
7527
  text: string;
7522
- type: "error" | "success" | "info" | "warning";
7528
+ type: "success" | "error" | "info" | "warning";
7523
7529
  id?: number | undefined;
7524
7530
  }[] | undefined;
7525
7531
  required?: boolean | undefined;
@@ -7543,7 +7549,7 @@ declare function init(config: AuthHeroConfig): {
7543
7549
  hint?: string | undefined;
7544
7550
  messages?: {
7545
7551
  text: string;
7546
- type: "error" | "success" | "info" | "warning";
7552
+ type: "success" | "error" | "info" | "warning";
7547
7553
  id?: number | undefined;
7548
7554
  }[] | undefined;
7549
7555
  required?: boolean | undefined;
@@ -7567,7 +7573,7 @@ declare function init(config: AuthHeroConfig): {
7567
7573
  hint?: string | undefined;
7568
7574
  messages?: {
7569
7575
  text: string;
7570
- type: "error" | "success" | "info" | "warning";
7576
+ type: "success" | "error" | "info" | "warning";
7571
7577
  id?: number | undefined;
7572
7578
  }[] | undefined;
7573
7579
  required?: boolean | undefined;
@@ -7591,7 +7597,7 @@ declare function init(config: AuthHeroConfig): {
7591
7597
  hint?: string | undefined;
7592
7598
  messages?: {
7593
7599
  text: string;
7594
- type: "error" | "success" | "info" | "warning";
7600
+ type: "success" | "error" | "info" | "warning";
7595
7601
  id?: number | undefined;
7596
7602
  }[] | undefined;
7597
7603
  required?: boolean | undefined;
@@ -7620,7 +7626,7 @@ declare function init(config: AuthHeroConfig): {
7620
7626
  hint?: string | undefined;
7621
7627
  messages?: {
7622
7628
  text: string;
7623
- type: "error" | "success" | "info" | "warning";
7629
+ type: "success" | "error" | "info" | "warning";
7624
7630
  id?: number | undefined;
7625
7631
  }[] | undefined;
7626
7632
  required?: boolean | undefined;
@@ -7635,7 +7641,7 @@ declare function init(config: AuthHeroConfig): {
7635
7641
  hint?: string | undefined;
7636
7642
  messages?: {
7637
7643
  text: string;
7638
- type: "error" | "success" | "info" | "warning";
7644
+ type: "success" | "error" | "info" | "warning";
7639
7645
  id?: number | undefined;
7640
7646
  }[] | undefined;
7641
7647
  required?: boolean | undefined;
@@ -7656,7 +7662,7 @@ declare function init(config: AuthHeroConfig): {
7656
7662
  hint?: string | undefined;
7657
7663
  messages?: {
7658
7664
  text: string;
7659
- type: "error" | "success" | "info" | "warning";
7665
+ type: "success" | "error" | "info" | "warning";
7660
7666
  id?: number | undefined;
7661
7667
  }[] | undefined;
7662
7668
  required?: boolean | undefined;
@@ -7681,7 +7687,7 @@ declare function init(config: AuthHeroConfig): {
7681
7687
  hint?: string | undefined;
7682
7688
  messages?: {
7683
7689
  text: string;
7684
- type: "error" | "success" | "info" | "warning";
7690
+ type: "success" | "error" | "info" | "warning";
7685
7691
  id?: number | undefined;
7686
7692
  }[] | undefined;
7687
7693
  required?: boolean | undefined;
@@ -7700,7 +7706,7 @@ declare function init(config: AuthHeroConfig): {
7700
7706
  hint?: string | undefined;
7701
7707
  messages?: {
7702
7708
  text: string;
7703
- type: "error" | "success" | "info" | "warning";
7709
+ type: "success" | "error" | "info" | "warning";
7704
7710
  id?: number | undefined;
7705
7711
  }[] | undefined;
7706
7712
  required?: boolean | undefined;
@@ -7720,7 +7726,7 @@ declare function init(config: AuthHeroConfig): {
7720
7726
  hint?: string | undefined;
7721
7727
  messages?: {
7722
7728
  text: string;
7723
- type: "error" | "success" | "info" | "warning";
7729
+ type: "success" | "error" | "info" | "warning";
7724
7730
  id?: number | undefined;
7725
7731
  }[] | undefined;
7726
7732
  required?: boolean | undefined;
@@ -7739,7 +7745,7 @@ declare function init(config: AuthHeroConfig): {
7739
7745
  hint?: string | undefined;
7740
7746
  messages?: {
7741
7747
  text: string;
7742
- type: "error" | "success" | "info" | "warning";
7748
+ type: "success" | "error" | "info" | "warning";
7743
7749
  id?: number | undefined;
7744
7750
  }[] | undefined;
7745
7751
  required?: boolean | undefined;
@@ -7761,7 +7767,7 @@ declare function init(config: AuthHeroConfig): {
7761
7767
  hint?: string | undefined;
7762
7768
  messages?: {
7763
7769
  text: string;
7764
- type: "error" | "success" | "info" | "warning";
7770
+ type: "success" | "error" | "info" | "warning";
7765
7771
  id?: number | undefined;
7766
7772
  }[] | undefined;
7767
7773
  required?: boolean | undefined;
@@ -7783,7 +7789,7 @@ declare function init(config: AuthHeroConfig): {
7783
7789
  hint?: string | undefined;
7784
7790
  messages?: {
7785
7791
  text: string;
7786
- type: "error" | "success" | "info" | "warning";
7792
+ type: "success" | "error" | "info" | "warning";
7787
7793
  id?: number | undefined;
7788
7794
  }[] | undefined;
7789
7795
  required?: boolean | undefined;
@@ -7802,7 +7808,7 @@ declare function init(config: AuthHeroConfig): {
7802
7808
  hint?: string | undefined;
7803
7809
  messages?: {
7804
7810
  text: string;
7805
- type: "error" | "success" | "info" | "warning";
7811
+ type: "success" | "error" | "info" | "warning";
7806
7812
  id?: number | undefined;
7807
7813
  }[] | undefined;
7808
7814
  required?: boolean | undefined;
@@ -7829,7 +7835,7 @@ declare function init(config: AuthHeroConfig): {
7829
7835
  hint?: string | undefined;
7830
7836
  messages?: {
7831
7837
  text: string;
7832
- type: "error" | "success" | "info" | "warning";
7838
+ type: "success" | "error" | "info" | "warning";
7833
7839
  id?: number | undefined;
7834
7840
  }[] | undefined;
7835
7841
  required?: boolean | undefined;
@@ -7850,7 +7856,7 @@ declare function init(config: AuthHeroConfig): {
7850
7856
  hint?: string | undefined;
7851
7857
  messages?: {
7852
7858
  text: string;
7853
- type: "error" | "success" | "info" | "warning";
7859
+ type: "success" | "error" | "info" | "warning";
7854
7860
  id?: number | undefined;
7855
7861
  }[] | undefined;
7856
7862
  required?: boolean | undefined;
@@ -7871,7 +7877,7 @@ declare function init(config: AuthHeroConfig): {
7871
7877
  hint?: string | undefined;
7872
7878
  messages?: {
7873
7879
  text: string;
7874
- type: "error" | "success" | "info" | "warning";
7880
+ type: "success" | "error" | "info" | "warning";
7875
7881
  id?: number | undefined;
7876
7882
  }[] | undefined;
7877
7883
  required?: boolean | undefined;
@@ -8120,7 +8126,7 @@ declare function init(config: AuthHeroConfig): {
8120
8126
  hint?: string | undefined;
8121
8127
  messages?: {
8122
8128
  text: string;
8123
- type: "error" | "success" | "info" | "warning";
8129
+ type: "success" | "error" | "info" | "warning";
8124
8130
  id?: number | undefined;
8125
8131
  }[] | undefined;
8126
8132
  required?: boolean | undefined;
@@ -8138,7 +8144,7 @@ declare function init(config: AuthHeroConfig): {
8138
8144
  hint?: string | undefined;
8139
8145
  messages?: {
8140
8146
  text: string;
8141
- type: "error" | "success" | "info" | "warning";
8147
+ type: "success" | "error" | "info" | "warning";
8142
8148
  id?: number | undefined;
8143
8149
  }[] | undefined;
8144
8150
  required?: boolean | undefined;
@@ -8162,7 +8168,7 @@ declare function init(config: AuthHeroConfig): {
8162
8168
  hint?: string | undefined;
8163
8169
  messages?: {
8164
8170
  text: string;
8165
- type: "error" | "success" | "info" | "warning";
8171
+ type: "success" | "error" | "info" | "warning";
8166
8172
  id?: number | undefined;
8167
8173
  }[] | undefined;
8168
8174
  required?: boolean | undefined;
@@ -8186,7 +8192,7 @@ declare function init(config: AuthHeroConfig): {
8186
8192
  hint?: string | undefined;
8187
8193
  messages?: {
8188
8194
  text: string;
8189
- type: "error" | "success" | "info" | "warning";
8195
+ type: "success" | "error" | "info" | "warning";
8190
8196
  id?: number | undefined;
8191
8197
  }[] | undefined;
8192
8198
  required?: boolean | undefined;
@@ -8210,7 +8216,7 @@ declare function init(config: AuthHeroConfig): {
8210
8216
  hint?: string | undefined;
8211
8217
  messages?: {
8212
8218
  text: string;
8213
- type: "error" | "success" | "info" | "warning";
8219
+ type: "success" | "error" | "info" | "warning";
8214
8220
  id?: number | undefined;
8215
8221
  }[] | undefined;
8216
8222
  required?: boolean | undefined;
@@ -8239,7 +8245,7 @@ declare function init(config: AuthHeroConfig): {
8239
8245
  hint?: string | undefined;
8240
8246
  messages?: {
8241
8247
  text: string;
8242
- type: "error" | "success" | "info" | "warning";
8248
+ type: "success" | "error" | "info" | "warning";
8243
8249
  id?: number | undefined;
8244
8250
  }[] | undefined;
8245
8251
  required?: boolean | undefined;
@@ -8254,7 +8260,7 @@ declare function init(config: AuthHeroConfig): {
8254
8260
  hint?: string | undefined;
8255
8261
  messages?: {
8256
8262
  text: string;
8257
- type: "error" | "success" | "info" | "warning";
8263
+ type: "success" | "error" | "info" | "warning";
8258
8264
  id?: number | undefined;
8259
8265
  }[] | undefined;
8260
8266
  required?: boolean | undefined;
@@ -8275,7 +8281,7 @@ declare function init(config: AuthHeroConfig): {
8275
8281
  hint?: string | undefined;
8276
8282
  messages?: {
8277
8283
  text: string;
8278
- type: "error" | "success" | "info" | "warning";
8284
+ type: "success" | "error" | "info" | "warning";
8279
8285
  id?: number | undefined;
8280
8286
  }[] | undefined;
8281
8287
  required?: boolean | undefined;
@@ -8300,7 +8306,7 @@ declare function init(config: AuthHeroConfig): {
8300
8306
  hint?: string | undefined;
8301
8307
  messages?: {
8302
8308
  text: string;
8303
- type: "error" | "success" | "info" | "warning";
8309
+ type: "success" | "error" | "info" | "warning";
8304
8310
  id?: number | undefined;
8305
8311
  }[] | undefined;
8306
8312
  required?: boolean | undefined;
@@ -8319,7 +8325,7 @@ declare function init(config: AuthHeroConfig): {
8319
8325
  hint?: string | undefined;
8320
8326
  messages?: {
8321
8327
  text: string;
8322
- type: "error" | "success" | "info" | "warning";
8328
+ type: "success" | "error" | "info" | "warning";
8323
8329
  id?: number | undefined;
8324
8330
  }[] | undefined;
8325
8331
  required?: boolean | undefined;
@@ -8339,7 +8345,7 @@ declare function init(config: AuthHeroConfig): {
8339
8345
  hint?: string | undefined;
8340
8346
  messages?: {
8341
8347
  text: string;
8342
- type: "error" | "success" | "info" | "warning";
8348
+ type: "success" | "error" | "info" | "warning";
8343
8349
  id?: number | undefined;
8344
8350
  }[] | undefined;
8345
8351
  required?: boolean | undefined;
@@ -8358,7 +8364,7 @@ declare function init(config: AuthHeroConfig): {
8358
8364
  hint?: string | undefined;
8359
8365
  messages?: {
8360
8366
  text: string;
8361
- type: "error" | "success" | "info" | "warning";
8367
+ type: "success" | "error" | "info" | "warning";
8362
8368
  id?: number | undefined;
8363
8369
  }[] | undefined;
8364
8370
  required?: boolean | undefined;
@@ -8380,7 +8386,7 @@ declare function init(config: AuthHeroConfig): {
8380
8386
  hint?: string | undefined;
8381
8387
  messages?: {
8382
8388
  text: string;
8383
- type: "error" | "success" | "info" | "warning";
8389
+ type: "success" | "error" | "info" | "warning";
8384
8390
  id?: number | undefined;
8385
8391
  }[] | undefined;
8386
8392
  required?: boolean | undefined;
@@ -8402,7 +8408,7 @@ declare function init(config: AuthHeroConfig): {
8402
8408
  hint?: string | undefined;
8403
8409
  messages?: {
8404
8410
  text: string;
8405
- type: "error" | "success" | "info" | "warning";
8411
+ type: "success" | "error" | "info" | "warning";
8406
8412
  id?: number | undefined;
8407
8413
  }[] | undefined;
8408
8414
  required?: boolean | undefined;
@@ -8421,7 +8427,7 @@ declare function init(config: AuthHeroConfig): {
8421
8427
  hint?: string | undefined;
8422
8428
  messages?: {
8423
8429
  text: string;
8424
- type: "error" | "success" | "info" | "warning";
8430
+ type: "success" | "error" | "info" | "warning";
8425
8431
  id?: number | undefined;
8426
8432
  }[] | undefined;
8427
8433
  required?: boolean | undefined;
@@ -8448,7 +8454,7 @@ declare function init(config: AuthHeroConfig): {
8448
8454
  hint?: string | undefined;
8449
8455
  messages?: {
8450
8456
  text: string;
8451
- type: "error" | "success" | "info" | "warning";
8457
+ type: "success" | "error" | "info" | "warning";
8452
8458
  id?: number | undefined;
8453
8459
  }[] | undefined;
8454
8460
  required?: boolean | undefined;
@@ -8469,7 +8475,7 @@ declare function init(config: AuthHeroConfig): {
8469
8475
  hint?: string | undefined;
8470
8476
  messages?: {
8471
8477
  text: string;
8472
- type: "error" | "success" | "info" | "warning";
8478
+ type: "success" | "error" | "info" | "warning";
8473
8479
  id?: number | undefined;
8474
8480
  }[] | undefined;
8475
8481
  required?: boolean | undefined;
@@ -8490,7 +8496,7 @@ declare function init(config: AuthHeroConfig): {
8490
8496
  hint?: string | undefined;
8491
8497
  messages?: {
8492
8498
  text: string;
8493
- type: "error" | "success" | "info" | "warning";
8499
+ type: "success" | "error" | "info" | "warning";
8494
8500
  id?: number | undefined;
8495
8501
  }[] | undefined;
8496
8502
  required?: boolean | undefined;
@@ -8744,7 +8750,7 @@ declare function init(config: AuthHeroConfig): {
8744
8750
  hint?: string | undefined;
8745
8751
  messages?: {
8746
8752
  text: string;
8747
- type: "error" | "success" | "info" | "warning";
8753
+ type: "success" | "error" | "info" | "warning";
8748
8754
  id?: number | undefined;
8749
8755
  }[] | undefined;
8750
8756
  required?: boolean | undefined;
@@ -8762,7 +8768,7 @@ declare function init(config: AuthHeroConfig): {
8762
8768
  hint?: string | undefined;
8763
8769
  messages?: {
8764
8770
  text: string;
8765
- type: "error" | "success" | "info" | "warning";
8771
+ type: "success" | "error" | "info" | "warning";
8766
8772
  id?: number | undefined;
8767
8773
  }[] | undefined;
8768
8774
  required?: boolean | undefined;
@@ -8786,7 +8792,7 @@ declare function init(config: AuthHeroConfig): {
8786
8792
  hint?: string | undefined;
8787
8793
  messages?: {
8788
8794
  text: string;
8789
- type: "error" | "success" | "info" | "warning";
8795
+ type: "success" | "error" | "info" | "warning";
8790
8796
  id?: number | undefined;
8791
8797
  }[] | undefined;
8792
8798
  required?: boolean | undefined;
@@ -8810,7 +8816,7 @@ declare function init(config: AuthHeroConfig): {
8810
8816
  hint?: string | undefined;
8811
8817
  messages?: {
8812
8818
  text: string;
8813
- type: "error" | "success" | "info" | "warning";
8819
+ type: "success" | "error" | "info" | "warning";
8814
8820
  id?: number | undefined;
8815
8821
  }[] | undefined;
8816
8822
  required?: boolean | undefined;
@@ -8834,7 +8840,7 @@ declare function init(config: AuthHeroConfig): {
8834
8840
  hint?: string | undefined;
8835
8841
  messages?: {
8836
8842
  text: string;
8837
- type: "error" | "success" | "info" | "warning";
8843
+ type: "success" | "error" | "info" | "warning";
8838
8844
  id?: number | undefined;
8839
8845
  }[] | undefined;
8840
8846
  required?: boolean | undefined;
@@ -8859,7 +8865,7 @@ declare function init(config: AuthHeroConfig): {
8859
8865
  hint?: string | undefined;
8860
8866
  messages?: {
8861
8867
  text: string;
8862
- type: "error" | "success" | "info" | "warning";
8868
+ type: "success" | "error" | "info" | "warning";
8863
8869
  id?: number | undefined;
8864
8870
  }[] | undefined;
8865
8871
  required?: boolean | undefined;
@@ -8874,7 +8880,7 @@ declare function init(config: AuthHeroConfig): {
8874
8880
  hint?: string | undefined;
8875
8881
  messages?: {
8876
8882
  text: string;
8877
- type: "error" | "success" | "info" | "warning";
8883
+ type: "success" | "error" | "info" | "warning";
8878
8884
  id?: number | undefined;
8879
8885
  }[] | undefined;
8880
8886
  required?: boolean | undefined;
@@ -8895,7 +8901,7 @@ declare function init(config: AuthHeroConfig): {
8895
8901
  hint?: string | undefined;
8896
8902
  messages?: {
8897
8903
  text: string;
8898
- type: "error" | "success" | "info" | "warning";
8904
+ type: "success" | "error" | "info" | "warning";
8899
8905
  id?: number | undefined;
8900
8906
  }[] | undefined;
8901
8907
  required?: boolean | undefined;
@@ -8920,7 +8926,7 @@ declare function init(config: AuthHeroConfig): {
8920
8926
  hint?: string | undefined;
8921
8927
  messages?: {
8922
8928
  text: string;
8923
- type: "error" | "success" | "info" | "warning";
8929
+ type: "success" | "error" | "info" | "warning";
8924
8930
  id?: number | undefined;
8925
8931
  }[] | undefined;
8926
8932
  required?: boolean | undefined;
@@ -8939,7 +8945,7 @@ declare function init(config: AuthHeroConfig): {
8939
8945
  hint?: string | undefined;
8940
8946
  messages?: {
8941
8947
  text: string;
8942
- type: "error" | "success" | "info" | "warning";
8948
+ type: "success" | "error" | "info" | "warning";
8943
8949
  id?: number | undefined;
8944
8950
  }[] | undefined;
8945
8951
  required?: boolean | undefined;
@@ -8959,7 +8965,7 @@ declare function init(config: AuthHeroConfig): {
8959
8965
  hint?: string | undefined;
8960
8966
  messages?: {
8961
8967
  text: string;
8962
- type: "error" | "success" | "info" | "warning";
8968
+ type: "success" | "error" | "info" | "warning";
8963
8969
  id?: number | undefined;
8964
8970
  }[] | undefined;
8965
8971
  required?: boolean | undefined;
@@ -8978,7 +8984,7 @@ declare function init(config: AuthHeroConfig): {
8978
8984
  hint?: string | undefined;
8979
8985
  messages?: {
8980
8986
  text: string;
8981
- type: "error" | "success" | "info" | "warning";
8987
+ type: "success" | "error" | "info" | "warning";
8982
8988
  id?: number | undefined;
8983
8989
  }[] | undefined;
8984
8990
  required?: boolean | undefined;
@@ -9000,7 +9006,7 @@ declare function init(config: AuthHeroConfig): {
9000
9006
  hint?: string | undefined;
9001
9007
  messages?: {
9002
9008
  text: string;
9003
- type: "error" | "success" | "info" | "warning";
9009
+ type: "success" | "error" | "info" | "warning";
9004
9010
  id?: number | undefined;
9005
9011
  }[] | undefined;
9006
9012
  required?: boolean | undefined;
@@ -9022,7 +9028,7 @@ declare function init(config: AuthHeroConfig): {
9022
9028
  hint?: string | undefined;
9023
9029
  messages?: {
9024
9030
  text: string;
9025
- type: "error" | "success" | "info" | "warning";
9031
+ type: "success" | "error" | "info" | "warning";
9026
9032
  id?: number | undefined;
9027
9033
  }[] | undefined;
9028
9034
  required?: boolean | undefined;
@@ -9041,7 +9047,7 @@ declare function init(config: AuthHeroConfig): {
9041
9047
  hint?: string | undefined;
9042
9048
  messages?: {
9043
9049
  text: string;
9044
- type: "error" | "success" | "info" | "warning";
9050
+ type: "success" | "error" | "info" | "warning";
9045
9051
  id?: number | undefined;
9046
9052
  }[] | undefined;
9047
9053
  required?: boolean | undefined;
@@ -9068,7 +9074,7 @@ declare function init(config: AuthHeroConfig): {
9068
9074
  hint?: string | undefined;
9069
9075
  messages?: {
9070
9076
  text: string;
9071
- type: "error" | "success" | "info" | "warning";
9077
+ type: "success" | "error" | "info" | "warning";
9072
9078
  id?: number | undefined;
9073
9079
  }[] | undefined;
9074
9080
  required?: boolean | undefined;
@@ -9089,7 +9095,7 @@ declare function init(config: AuthHeroConfig): {
9089
9095
  hint?: string | undefined;
9090
9096
  messages?: {
9091
9097
  text: string;
9092
- type: "error" | "success" | "info" | "warning";
9098
+ type: "success" | "error" | "info" | "warning";
9093
9099
  id?: number | undefined;
9094
9100
  }[] | undefined;
9095
9101
  required?: boolean | undefined;
@@ -9110,7 +9116,7 @@ declare function init(config: AuthHeroConfig): {
9110
9116
  hint?: string | undefined;
9111
9117
  messages?: {
9112
9118
  text: string;
9113
- type: "error" | "success" | "info" | "warning";
9119
+ type: "success" | "error" | "info" | "warning";
9114
9120
  id?: number | undefined;
9115
9121
  }[] | undefined;
9116
9122
  required?: boolean | undefined;
@@ -9341,7 +9347,7 @@ declare function init(config: AuthHeroConfig): {
9341
9347
  hint?: string | undefined;
9342
9348
  messages?: {
9343
9349
  text: string;
9344
- type: "error" | "success" | "info" | "warning";
9350
+ type: "success" | "error" | "info" | "warning";
9345
9351
  id?: number | undefined;
9346
9352
  }[] | undefined;
9347
9353
  required?: boolean | undefined;
@@ -9359,7 +9365,7 @@ declare function init(config: AuthHeroConfig): {
9359
9365
  hint?: string | undefined;
9360
9366
  messages?: {
9361
9367
  text: string;
9362
- type: "error" | "success" | "info" | "warning";
9368
+ type: "success" | "error" | "info" | "warning";
9363
9369
  id?: number | undefined;
9364
9370
  }[] | undefined;
9365
9371
  required?: boolean | undefined;
@@ -9383,7 +9389,7 @@ declare function init(config: AuthHeroConfig): {
9383
9389
  hint?: string | undefined;
9384
9390
  messages?: {
9385
9391
  text: string;
9386
- type: "error" | "success" | "info" | "warning";
9392
+ type: "success" | "error" | "info" | "warning";
9387
9393
  id?: number | undefined;
9388
9394
  }[] | undefined;
9389
9395
  required?: boolean | undefined;
@@ -9407,7 +9413,7 @@ declare function init(config: AuthHeroConfig): {
9407
9413
  hint?: string | undefined;
9408
9414
  messages?: {
9409
9415
  text: string;
9410
- type: "error" | "success" | "info" | "warning";
9416
+ type: "success" | "error" | "info" | "warning";
9411
9417
  id?: number | undefined;
9412
9418
  }[] | undefined;
9413
9419
  required?: boolean | undefined;
@@ -9431,7 +9437,7 @@ declare function init(config: AuthHeroConfig): {
9431
9437
  hint?: string | undefined;
9432
9438
  messages?: {
9433
9439
  text: string;
9434
- type: "error" | "success" | "info" | "warning";
9440
+ type: "success" | "error" | "info" | "warning";
9435
9441
  id?: number | undefined;
9436
9442
  }[] | undefined;
9437
9443
  required?: boolean | undefined;
@@ -9460,7 +9466,7 @@ declare function init(config: AuthHeroConfig): {
9460
9466
  hint?: string | undefined;
9461
9467
  messages?: {
9462
9468
  text: string;
9463
- type: "error" | "success" | "info" | "warning";
9469
+ type: "success" | "error" | "info" | "warning";
9464
9470
  id?: number | undefined;
9465
9471
  }[] | undefined;
9466
9472
  required?: boolean | undefined;
@@ -9475,7 +9481,7 @@ declare function init(config: AuthHeroConfig): {
9475
9481
  hint?: string | undefined;
9476
9482
  messages?: {
9477
9483
  text: string;
9478
- type: "error" | "success" | "info" | "warning";
9484
+ type: "success" | "error" | "info" | "warning";
9479
9485
  id?: number | undefined;
9480
9486
  }[] | undefined;
9481
9487
  required?: boolean | undefined;
@@ -9496,7 +9502,7 @@ declare function init(config: AuthHeroConfig): {
9496
9502
  hint?: string | undefined;
9497
9503
  messages?: {
9498
9504
  text: string;
9499
- type: "error" | "success" | "info" | "warning";
9505
+ type: "success" | "error" | "info" | "warning";
9500
9506
  id?: number | undefined;
9501
9507
  }[] | undefined;
9502
9508
  required?: boolean | undefined;
@@ -9521,7 +9527,7 @@ declare function init(config: AuthHeroConfig): {
9521
9527
  hint?: string | undefined;
9522
9528
  messages?: {
9523
9529
  text: string;
9524
- type: "error" | "success" | "info" | "warning";
9530
+ type: "success" | "error" | "info" | "warning";
9525
9531
  id?: number | undefined;
9526
9532
  }[] | undefined;
9527
9533
  required?: boolean | undefined;
@@ -9540,7 +9546,7 @@ declare function init(config: AuthHeroConfig): {
9540
9546
  hint?: string | undefined;
9541
9547
  messages?: {
9542
9548
  text: string;
9543
- type: "error" | "success" | "info" | "warning";
9549
+ type: "success" | "error" | "info" | "warning";
9544
9550
  id?: number | undefined;
9545
9551
  }[] | undefined;
9546
9552
  required?: boolean | undefined;
@@ -9560,7 +9566,7 @@ declare function init(config: AuthHeroConfig): {
9560
9566
  hint?: string | undefined;
9561
9567
  messages?: {
9562
9568
  text: string;
9563
- type: "error" | "success" | "info" | "warning";
9569
+ type: "success" | "error" | "info" | "warning";
9564
9570
  id?: number | undefined;
9565
9571
  }[] | undefined;
9566
9572
  required?: boolean | undefined;
@@ -9579,7 +9585,7 @@ declare function init(config: AuthHeroConfig): {
9579
9585
  hint?: string | undefined;
9580
9586
  messages?: {
9581
9587
  text: string;
9582
- type: "error" | "success" | "info" | "warning";
9588
+ type: "success" | "error" | "info" | "warning";
9583
9589
  id?: number | undefined;
9584
9590
  }[] | undefined;
9585
9591
  required?: boolean | undefined;
@@ -9601,7 +9607,7 @@ declare function init(config: AuthHeroConfig): {
9601
9607
  hint?: string | undefined;
9602
9608
  messages?: {
9603
9609
  text: string;
9604
- type: "error" | "success" | "info" | "warning";
9610
+ type: "success" | "error" | "info" | "warning";
9605
9611
  id?: number | undefined;
9606
9612
  }[] | undefined;
9607
9613
  required?: boolean | undefined;
@@ -9623,7 +9629,7 @@ declare function init(config: AuthHeroConfig): {
9623
9629
  hint?: string | undefined;
9624
9630
  messages?: {
9625
9631
  text: string;
9626
- type: "error" | "success" | "info" | "warning";
9632
+ type: "success" | "error" | "info" | "warning";
9627
9633
  id?: number | undefined;
9628
9634
  }[] | undefined;
9629
9635
  required?: boolean | undefined;
@@ -9642,7 +9648,7 @@ declare function init(config: AuthHeroConfig): {
9642
9648
  hint?: string | undefined;
9643
9649
  messages?: {
9644
9650
  text: string;
9645
- type: "error" | "success" | "info" | "warning";
9651
+ type: "success" | "error" | "info" | "warning";
9646
9652
  id?: number | undefined;
9647
9653
  }[] | undefined;
9648
9654
  required?: boolean | undefined;
@@ -9669,7 +9675,7 @@ declare function init(config: AuthHeroConfig): {
9669
9675
  hint?: string | undefined;
9670
9676
  messages?: {
9671
9677
  text: string;
9672
- type: "error" | "success" | "info" | "warning";
9678
+ type: "success" | "error" | "info" | "warning";
9673
9679
  id?: number | undefined;
9674
9680
  }[] | undefined;
9675
9681
  required?: boolean | undefined;
@@ -9690,7 +9696,7 @@ declare function init(config: AuthHeroConfig): {
9690
9696
  hint?: string | undefined;
9691
9697
  messages?: {
9692
9698
  text: string;
9693
- type: "error" | "success" | "info" | "warning";
9699
+ type: "success" | "error" | "info" | "warning";
9694
9700
  id?: number | undefined;
9695
9701
  }[] | undefined;
9696
9702
  required?: boolean | undefined;
@@ -9711,7 +9717,7 @@ declare function init(config: AuthHeroConfig): {
9711
9717
  hint?: string | undefined;
9712
9718
  messages?: {
9713
9719
  text: string;
9714
- type: "error" | "success" | "info" | "warning";
9720
+ type: "success" | "error" | "info" | "warning";
9715
9721
  id?: number | undefined;
9716
9722
  }[] | undefined;
9717
9723
  required?: boolean | undefined;
@@ -9944,7 +9950,7 @@ declare function init(config: AuthHeroConfig): {
9944
9950
  hint?: string | undefined;
9945
9951
  messages?: {
9946
9952
  text: string;
9947
- type: "error" | "success" | "info" | "warning";
9953
+ type: "success" | "error" | "info" | "warning";
9948
9954
  id?: number | undefined;
9949
9955
  }[] | undefined;
9950
9956
  required?: boolean | undefined;
@@ -9962,7 +9968,7 @@ declare function init(config: AuthHeroConfig): {
9962
9968
  hint?: string | undefined;
9963
9969
  messages?: {
9964
9970
  text: string;
9965
- type: "error" | "success" | "info" | "warning";
9971
+ type: "success" | "error" | "info" | "warning";
9966
9972
  id?: number | undefined;
9967
9973
  }[] | undefined;
9968
9974
  required?: boolean | undefined;
@@ -9986,7 +9992,7 @@ declare function init(config: AuthHeroConfig): {
9986
9992
  hint?: string | undefined;
9987
9993
  messages?: {
9988
9994
  text: string;
9989
- type: "error" | "success" | "info" | "warning";
9995
+ type: "success" | "error" | "info" | "warning";
9990
9996
  id?: number | undefined;
9991
9997
  }[] | undefined;
9992
9998
  required?: boolean | undefined;
@@ -10010,7 +10016,7 @@ declare function init(config: AuthHeroConfig): {
10010
10016
  hint?: string | undefined;
10011
10017
  messages?: {
10012
10018
  text: string;
10013
- type: "error" | "success" | "info" | "warning";
10019
+ type: "success" | "error" | "info" | "warning";
10014
10020
  id?: number | undefined;
10015
10021
  }[] | undefined;
10016
10022
  required?: boolean | undefined;
@@ -10034,7 +10040,7 @@ declare function init(config: AuthHeroConfig): {
10034
10040
  hint?: string | undefined;
10035
10041
  messages?: {
10036
10042
  text: string;
10037
- type: "error" | "success" | "info" | "warning";
10043
+ type: "success" | "error" | "info" | "warning";
10038
10044
  id?: number | undefined;
10039
10045
  }[] | undefined;
10040
10046
  required?: boolean | undefined;
@@ -10059,7 +10065,7 @@ declare function init(config: AuthHeroConfig): {
10059
10065
  hint?: string | undefined;
10060
10066
  messages?: {
10061
10067
  text: string;
10062
- type: "error" | "success" | "info" | "warning";
10068
+ type: "success" | "error" | "info" | "warning";
10063
10069
  id?: number | undefined;
10064
10070
  }[] | undefined;
10065
10071
  required?: boolean | undefined;
@@ -10074,7 +10080,7 @@ declare function init(config: AuthHeroConfig): {
10074
10080
  hint?: string | undefined;
10075
10081
  messages?: {
10076
10082
  text: string;
10077
- type: "error" | "success" | "info" | "warning";
10083
+ type: "success" | "error" | "info" | "warning";
10078
10084
  id?: number | undefined;
10079
10085
  }[] | undefined;
10080
10086
  required?: boolean | undefined;
@@ -10095,7 +10101,7 @@ declare function init(config: AuthHeroConfig): {
10095
10101
  hint?: string | undefined;
10096
10102
  messages?: {
10097
10103
  text: string;
10098
- type: "error" | "success" | "info" | "warning";
10104
+ type: "success" | "error" | "info" | "warning";
10099
10105
  id?: number | undefined;
10100
10106
  }[] | undefined;
10101
10107
  required?: boolean | undefined;
@@ -10120,7 +10126,7 @@ declare function init(config: AuthHeroConfig): {
10120
10126
  hint?: string | undefined;
10121
10127
  messages?: {
10122
10128
  text: string;
10123
- type: "error" | "success" | "info" | "warning";
10129
+ type: "success" | "error" | "info" | "warning";
10124
10130
  id?: number | undefined;
10125
10131
  }[] | undefined;
10126
10132
  required?: boolean | undefined;
@@ -10139,7 +10145,7 @@ declare function init(config: AuthHeroConfig): {
10139
10145
  hint?: string | undefined;
10140
10146
  messages?: {
10141
10147
  text: string;
10142
- type: "error" | "success" | "info" | "warning";
10148
+ type: "success" | "error" | "info" | "warning";
10143
10149
  id?: number | undefined;
10144
10150
  }[] | undefined;
10145
10151
  required?: boolean | undefined;
@@ -10159,7 +10165,7 @@ declare function init(config: AuthHeroConfig): {
10159
10165
  hint?: string | undefined;
10160
10166
  messages?: {
10161
10167
  text: string;
10162
- type: "error" | "success" | "info" | "warning";
10168
+ type: "success" | "error" | "info" | "warning";
10163
10169
  id?: number | undefined;
10164
10170
  }[] | undefined;
10165
10171
  required?: boolean | undefined;
@@ -10178,7 +10184,7 @@ declare function init(config: AuthHeroConfig): {
10178
10184
  hint?: string | undefined;
10179
10185
  messages?: {
10180
10186
  text: string;
10181
- type: "error" | "success" | "info" | "warning";
10187
+ type: "success" | "error" | "info" | "warning";
10182
10188
  id?: number | undefined;
10183
10189
  }[] | undefined;
10184
10190
  required?: boolean | undefined;
@@ -10200,7 +10206,7 @@ declare function init(config: AuthHeroConfig): {
10200
10206
  hint?: string | undefined;
10201
10207
  messages?: {
10202
10208
  text: string;
10203
- type: "error" | "success" | "info" | "warning";
10209
+ type: "success" | "error" | "info" | "warning";
10204
10210
  id?: number | undefined;
10205
10211
  }[] | undefined;
10206
10212
  required?: boolean | undefined;
@@ -10222,7 +10228,7 @@ declare function init(config: AuthHeroConfig): {
10222
10228
  hint?: string | undefined;
10223
10229
  messages?: {
10224
10230
  text: string;
10225
- type: "error" | "success" | "info" | "warning";
10231
+ type: "success" | "error" | "info" | "warning";
10226
10232
  id?: number | undefined;
10227
10233
  }[] | undefined;
10228
10234
  required?: boolean | undefined;
@@ -10241,7 +10247,7 @@ declare function init(config: AuthHeroConfig): {
10241
10247
  hint?: string | undefined;
10242
10248
  messages?: {
10243
10249
  text: string;
10244
- type: "error" | "success" | "info" | "warning";
10250
+ type: "success" | "error" | "info" | "warning";
10245
10251
  id?: number | undefined;
10246
10252
  }[] | undefined;
10247
10253
  required?: boolean | undefined;
@@ -10268,7 +10274,7 @@ declare function init(config: AuthHeroConfig): {
10268
10274
  hint?: string | undefined;
10269
10275
  messages?: {
10270
10276
  text: string;
10271
- type: "error" | "success" | "info" | "warning";
10277
+ type: "success" | "error" | "info" | "warning";
10272
10278
  id?: number | undefined;
10273
10279
  }[] | undefined;
10274
10280
  required?: boolean | undefined;
@@ -10289,7 +10295,7 @@ declare function init(config: AuthHeroConfig): {
10289
10295
  hint?: string | undefined;
10290
10296
  messages?: {
10291
10297
  text: string;
10292
- type: "error" | "success" | "info" | "warning";
10298
+ type: "success" | "error" | "info" | "warning";
10293
10299
  id?: number | undefined;
10294
10300
  }[] | undefined;
10295
10301
  required?: boolean | undefined;
@@ -10310,7 +10316,7 @@ declare function init(config: AuthHeroConfig): {
10310
10316
  hint?: string | undefined;
10311
10317
  messages?: {
10312
10318
  text: string;
10313
- type: "error" | "success" | "info" | "warning";
10319
+ type: "success" | "error" | "info" | "warning";
10314
10320
  id?: number | undefined;
10315
10321
  }[] | undefined;
10316
10322
  required?: boolean | undefined;
@@ -10541,7 +10547,7 @@ declare function init(config: AuthHeroConfig): {
10541
10547
  hint?: string | undefined;
10542
10548
  messages?: {
10543
10549
  text: string;
10544
- type: "error" | "success" | "info" | "warning";
10550
+ type: "success" | "error" | "info" | "warning";
10545
10551
  id?: number | undefined;
10546
10552
  }[] | undefined;
10547
10553
  required?: boolean | undefined;
@@ -10559,7 +10565,7 @@ declare function init(config: AuthHeroConfig): {
10559
10565
  hint?: string | undefined;
10560
10566
  messages?: {
10561
10567
  text: string;
10562
- type: "error" | "success" | "info" | "warning";
10568
+ type: "success" | "error" | "info" | "warning";
10563
10569
  id?: number | undefined;
10564
10570
  }[] | undefined;
10565
10571
  required?: boolean | undefined;
@@ -10583,7 +10589,7 @@ declare function init(config: AuthHeroConfig): {
10583
10589
  hint?: string | undefined;
10584
10590
  messages?: {
10585
10591
  text: string;
10586
- type: "error" | "success" | "info" | "warning";
10592
+ type: "success" | "error" | "info" | "warning";
10587
10593
  id?: number | undefined;
10588
10594
  }[] | undefined;
10589
10595
  required?: boolean | undefined;
@@ -10607,7 +10613,7 @@ declare function init(config: AuthHeroConfig): {
10607
10613
  hint?: string | undefined;
10608
10614
  messages?: {
10609
10615
  text: string;
10610
- type: "error" | "success" | "info" | "warning";
10616
+ type: "success" | "error" | "info" | "warning";
10611
10617
  id?: number | undefined;
10612
10618
  }[] | undefined;
10613
10619
  required?: boolean | undefined;
@@ -10631,7 +10637,7 @@ declare function init(config: AuthHeroConfig): {
10631
10637
  hint?: string | undefined;
10632
10638
  messages?: {
10633
10639
  text: string;
10634
- type: "error" | "success" | "info" | "warning";
10640
+ type: "success" | "error" | "info" | "warning";
10635
10641
  id?: number | undefined;
10636
10642
  }[] | undefined;
10637
10643
  required?: boolean | undefined;
@@ -10660,7 +10666,7 @@ declare function init(config: AuthHeroConfig): {
10660
10666
  hint?: string | undefined;
10661
10667
  messages?: {
10662
10668
  text: string;
10663
- type: "error" | "success" | "info" | "warning";
10669
+ type: "success" | "error" | "info" | "warning";
10664
10670
  id?: number | undefined;
10665
10671
  }[] | undefined;
10666
10672
  required?: boolean | undefined;
@@ -10675,7 +10681,7 @@ declare function init(config: AuthHeroConfig): {
10675
10681
  hint?: string | undefined;
10676
10682
  messages?: {
10677
10683
  text: string;
10678
- type: "error" | "success" | "info" | "warning";
10684
+ type: "success" | "error" | "info" | "warning";
10679
10685
  id?: number | undefined;
10680
10686
  }[] | undefined;
10681
10687
  required?: boolean | undefined;
@@ -10696,7 +10702,7 @@ declare function init(config: AuthHeroConfig): {
10696
10702
  hint?: string | undefined;
10697
10703
  messages?: {
10698
10704
  text: string;
10699
- type: "error" | "success" | "info" | "warning";
10705
+ type: "success" | "error" | "info" | "warning";
10700
10706
  id?: number | undefined;
10701
10707
  }[] | undefined;
10702
10708
  required?: boolean | undefined;
@@ -10721,7 +10727,7 @@ declare function init(config: AuthHeroConfig): {
10721
10727
  hint?: string | undefined;
10722
10728
  messages?: {
10723
10729
  text: string;
10724
- type: "error" | "success" | "info" | "warning";
10730
+ type: "success" | "error" | "info" | "warning";
10725
10731
  id?: number | undefined;
10726
10732
  }[] | undefined;
10727
10733
  required?: boolean | undefined;
@@ -10740,7 +10746,7 @@ declare function init(config: AuthHeroConfig): {
10740
10746
  hint?: string | undefined;
10741
10747
  messages?: {
10742
10748
  text: string;
10743
- type: "error" | "success" | "info" | "warning";
10749
+ type: "success" | "error" | "info" | "warning";
10744
10750
  id?: number | undefined;
10745
10751
  }[] | undefined;
10746
10752
  required?: boolean | undefined;
@@ -10760,7 +10766,7 @@ declare function init(config: AuthHeroConfig): {
10760
10766
  hint?: string | undefined;
10761
10767
  messages?: {
10762
10768
  text: string;
10763
- type: "error" | "success" | "info" | "warning";
10769
+ type: "success" | "error" | "info" | "warning";
10764
10770
  id?: number | undefined;
10765
10771
  }[] | undefined;
10766
10772
  required?: boolean | undefined;
@@ -10779,7 +10785,7 @@ declare function init(config: AuthHeroConfig): {
10779
10785
  hint?: string | undefined;
10780
10786
  messages?: {
10781
10787
  text: string;
10782
- type: "error" | "success" | "info" | "warning";
10788
+ type: "success" | "error" | "info" | "warning";
10783
10789
  id?: number | undefined;
10784
10790
  }[] | undefined;
10785
10791
  required?: boolean | undefined;
@@ -10801,7 +10807,7 @@ declare function init(config: AuthHeroConfig): {
10801
10807
  hint?: string | undefined;
10802
10808
  messages?: {
10803
10809
  text: string;
10804
- type: "error" | "success" | "info" | "warning";
10810
+ type: "success" | "error" | "info" | "warning";
10805
10811
  id?: number | undefined;
10806
10812
  }[] | undefined;
10807
10813
  required?: boolean | undefined;
@@ -10823,7 +10829,7 @@ declare function init(config: AuthHeroConfig): {
10823
10829
  hint?: string | undefined;
10824
10830
  messages?: {
10825
10831
  text: string;
10826
- type: "error" | "success" | "info" | "warning";
10832
+ type: "success" | "error" | "info" | "warning";
10827
10833
  id?: number | undefined;
10828
10834
  }[] | undefined;
10829
10835
  required?: boolean | undefined;
@@ -10842,7 +10848,7 @@ declare function init(config: AuthHeroConfig): {
10842
10848
  hint?: string | undefined;
10843
10849
  messages?: {
10844
10850
  text: string;
10845
- type: "error" | "success" | "info" | "warning";
10851
+ type: "success" | "error" | "info" | "warning";
10846
10852
  id?: number | undefined;
10847
10853
  }[] | undefined;
10848
10854
  required?: boolean | undefined;
@@ -10869,7 +10875,7 @@ declare function init(config: AuthHeroConfig): {
10869
10875
  hint?: string | undefined;
10870
10876
  messages?: {
10871
10877
  text: string;
10872
- type: "error" | "success" | "info" | "warning";
10878
+ type: "success" | "error" | "info" | "warning";
10873
10879
  id?: number | undefined;
10874
10880
  }[] | undefined;
10875
10881
  required?: boolean | undefined;
@@ -10890,7 +10896,7 @@ declare function init(config: AuthHeroConfig): {
10890
10896
  hint?: string | undefined;
10891
10897
  messages?: {
10892
10898
  text: string;
10893
- type: "error" | "success" | "info" | "warning";
10899
+ type: "success" | "error" | "info" | "warning";
10894
10900
  id?: number | undefined;
10895
10901
  }[] | undefined;
10896
10902
  required?: boolean | undefined;
@@ -10911,7 +10917,7 @@ declare function init(config: AuthHeroConfig): {
10911
10917
  hint?: string | undefined;
10912
10918
  messages?: {
10913
10919
  text: string;
10914
- type: "error" | "success" | "info" | "warning";
10920
+ type: "success" | "error" | "info" | "warning";
10915
10921
  id?: number | undefined;
10916
10922
  }[] | undefined;
10917
10923
  required?: boolean | undefined;
@@ -11143,7 +11149,7 @@ declare function init(config: AuthHeroConfig): {
11143
11149
  };
11144
11150
  };
11145
11151
  output: {
11146
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11152
+ prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
11147
11153
  language: string;
11148
11154
  }[];
11149
11155
  outputFormat: "json";
@@ -11181,7 +11187,7 @@ declare function init(config: AuthHeroConfig): {
11181
11187
  $get: {
11182
11188
  input: {
11183
11189
  param: {
11184
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11190
+ prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
11185
11191
  language: string;
11186
11192
  };
11187
11193
  } & {
@@ -11203,7 +11209,7 @@ declare function init(config: AuthHeroConfig): {
11203
11209
  $put: {
11204
11210
  input: {
11205
11211
  param: {
11206
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11212
+ prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
11207
11213
  language: string;
11208
11214
  };
11209
11215
  } & {
@@ -11227,7 +11233,7 @@ declare function init(config: AuthHeroConfig): {
11227
11233
  $delete: {
11228
11234
  input: {
11229
11235
  param: {
11230
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11236
+ prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
11231
11237
  language: string;
11232
11238
  };
11233
11239
  } & {
@@ -12090,7 +12096,7 @@ declare function init(config: AuthHeroConfig): {
12090
12096
  };
12091
12097
  } | {
12092
12098
  mode: "inline";
12093
- status: "error" | "success";
12099
+ status: "success" | "error";
12094
12100
  connection_id: string;
12095
12101
  connection_name: string;
12096
12102
  strategy: string;
@@ -12730,7 +12736,7 @@ declare function init(config: AuthHeroConfig): {
12730
12736
  log_type: string;
12731
12737
  category: "user_action" | "admin_action" | "system" | "api";
12732
12738
  actor: {
12733
- type: "user" | "client_credentials" | "api_key" | "system" | "admin";
12739
+ type: "client_credentials" | "user" | "api_key" | "system" | "admin";
12734
12740
  id?: string | undefined;
12735
12741
  email?: string | undefined;
12736
12742
  org_id?: string | undefined;
@@ -13041,7 +13047,7 @@ declare function init(config: AuthHeroConfig): {
13041
13047
  created_at: string;
13042
13048
  updated_at: string;
13043
13049
  name: string;
13044
- provider: "auth0" | "oidc" | "okta" | "cognito";
13050
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13045
13051
  connection: string;
13046
13052
  enabled: boolean;
13047
13053
  credentials: {
@@ -13073,7 +13079,7 @@ declare function init(config: AuthHeroConfig): {
13073
13079
  created_at: string;
13074
13080
  updated_at: string;
13075
13081
  name: string;
13076
- provider: "auth0" | "oidc" | "okta" | "cognito";
13082
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13077
13083
  connection: string;
13078
13084
  enabled: boolean;
13079
13085
  credentials: {
@@ -13099,7 +13105,7 @@ declare function init(config: AuthHeroConfig): {
13099
13105
  } & {
13100
13106
  json: {
13101
13107
  name: string;
13102
- provider: "auth0" | "oidc" | "okta" | "cognito";
13108
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13103
13109
  connection: string;
13104
13110
  credentials: {
13105
13111
  domain: string;
@@ -13116,7 +13122,7 @@ declare function init(config: AuthHeroConfig): {
13116
13122
  created_at: string;
13117
13123
  updated_at: string;
13118
13124
  name: string;
13119
- provider: "auth0" | "oidc" | "okta" | "cognito";
13125
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13120
13126
  connection: string;
13121
13127
  enabled: boolean;
13122
13128
  credentials: {
@@ -13147,7 +13153,7 @@ declare function init(config: AuthHeroConfig): {
13147
13153
  json: {
13148
13154
  id?: string | undefined;
13149
13155
  name?: string | undefined;
13150
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
13156
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
13151
13157
  connection?: string | undefined;
13152
13158
  enabled?: boolean | undefined;
13153
13159
  credentials?: {
@@ -13163,7 +13169,7 @@ declare function init(config: AuthHeroConfig): {
13163
13169
  created_at: string;
13164
13170
  updated_at: string;
13165
13171
  name: string;
13166
- provider: "auth0" | "oidc" | "okta" | "cognito";
13172
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13167
13173
  connection: string;
13168
13174
  enabled: boolean;
13169
13175
  credentials: {
@@ -13381,7 +13387,7 @@ declare function init(config: AuthHeroConfig): {
13381
13387
  };
13382
13388
  };
13383
13389
  output: {
13384
- type: "cs" | "fi" | "sv" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13390
+ type: "fh" | "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" | "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" | "w" | "wn" | "wum";
13385
13391
  date: string;
13386
13392
  isMobile: boolean;
13387
13393
  log_id: string;
@@ -13420,7 +13426,7 @@ declare function init(config: AuthHeroConfig): {
13420
13426
  limit: number;
13421
13427
  length: number;
13422
13428
  logs: {
13423
- type: "cs" | "fi" | "sv" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13429
+ type: "fh" | "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" | "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" | "w" | "wn" | "wum";
13424
13430
  date: string;
13425
13431
  isMobile: boolean;
13426
13432
  log_id: string;
@@ -13459,7 +13465,7 @@ declare function init(config: AuthHeroConfig): {
13459
13465
  next?: string | undefined;
13460
13466
  } | {
13461
13467
  logs: {
13462
- type: "cs" | "fi" | "sv" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13468
+ type: "fh" | "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" | "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" | "w" | "wn" | "wum";
13463
13469
  date: string;
13464
13470
  isMobile: boolean;
13465
13471
  log_id: string;
@@ -13513,7 +13519,7 @@ declare function init(config: AuthHeroConfig): {
13513
13519
  };
13514
13520
  };
13515
13521
  output: {
13516
- type: "cs" | "fi" | "sv" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13522
+ type: "fh" | "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" | "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" | "w" | "wn" | "wum";
13517
13523
  date: string;
13518
13524
  isMobile: boolean;
13519
13525
  log_id: string;
@@ -15977,7 +15983,7 @@ declare function init(config: AuthHeroConfig): {
15977
15983
  };
15978
15984
  };
15979
15985
  output: {
15980
- type: "cs" | "fi" | "sv" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
15986
+ type: "fh" | "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" | "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" | "w" | "wn" | "wum";
15981
15987
  date: string;
15982
15988
  isMobile: boolean;
15983
15989
  log_id: string;
@@ -16016,7 +16022,7 @@ declare function init(config: AuthHeroConfig): {
16016
16022
  limit: number;
16017
16023
  length: number;
16018
16024
  logs: {
16019
- type: "cs" | "fi" | "sv" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
16025
+ type: "fh" | "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" | "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" | "w" | "wn" | "wum";
16020
16026
  date: string;
16021
16027
  isMobile: boolean;
16022
16028
  log_id: string;
@@ -16335,7 +16341,7 @@ declare function init(config: AuthHeroConfig): {
16335
16341
  };
16336
16342
  } & {
16337
16343
  json: {
16338
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16344
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16339
16345
  body: string;
16340
16346
  from: string;
16341
16347
  subject: string;
@@ -16356,7 +16362,7 @@ declare function init(config: AuthHeroConfig): {
16356
16362
  };
16357
16363
  } & {
16358
16364
  json: {
16359
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16365
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16360
16366
  body: string;
16361
16367
  from: string;
16362
16368
  subject: string;
@@ -16368,7 +16374,7 @@ declare function init(config: AuthHeroConfig): {
16368
16374
  };
16369
16375
  };
16370
16376
  output: {
16371
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16377
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16372
16378
  body: string;
16373
16379
  from: string;
16374
16380
  subject: string;
@@ -16391,7 +16397,7 @@ declare function init(config: AuthHeroConfig): {
16391
16397
  };
16392
16398
  };
16393
16399
  output: {
16394
- name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16400
+ name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16395
16401
  body: string;
16396
16402
  subject: string;
16397
16403
  }[];
@@ -16404,7 +16410,7 @@ declare function init(config: AuthHeroConfig): {
16404
16410
  $get: {
16405
16411
  input: {
16406
16412
  param: {
16407
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16413
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16408
16414
  };
16409
16415
  } & {
16410
16416
  header: {
@@ -16417,7 +16423,7 @@ declare function init(config: AuthHeroConfig): {
16417
16423
  } | {
16418
16424
  input: {
16419
16425
  param: {
16420
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16426
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16421
16427
  };
16422
16428
  } & {
16423
16429
  header: {
@@ -16425,7 +16431,7 @@ declare function init(config: AuthHeroConfig): {
16425
16431
  };
16426
16432
  };
16427
16433
  output: {
16428
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16434
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16429
16435
  body: string;
16430
16436
  from: string;
16431
16437
  subject: string;
@@ -16444,7 +16450,7 @@ declare function init(config: AuthHeroConfig): {
16444
16450
  $put: {
16445
16451
  input: {
16446
16452
  param: {
16447
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16453
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16448
16454
  };
16449
16455
  } & {
16450
16456
  header: {
@@ -16452,7 +16458,7 @@ declare function init(config: AuthHeroConfig): {
16452
16458
  };
16453
16459
  } & {
16454
16460
  json: {
16455
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16461
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16456
16462
  body: string;
16457
16463
  subject: string;
16458
16464
  syntax?: "liquid" | undefined;
@@ -16464,7 +16470,7 @@ declare function init(config: AuthHeroConfig): {
16464
16470
  };
16465
16471
  };
16466
16472
  output: {
16467
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16473
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16468
16474
  body: string;
16469
16475
  from: string;
16470
16476
  subject: string;
@@ -16483,7 +16489,7 @@ declare function init(config: AuthHeroConfig): {
16483
16489
  $patch: {
16484
16490
  input: {
16485
16491
  param: {
16486
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16492
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16487
16493
  };
16488
16494
  } & {
16489
16495
  header: {
@@ -16491,7 +16497,7 @@ declare function init(config: AuthHeroConfig): {
16491
16497
  };
16492
16498
  } & {
16493
16499
  json: {
16494
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16500
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16495
16501
  body?: string | undefined;
16496
16502
  from?: string | undefined;
16497
16503
  subject?: string | undefined;
@@ -16508,7 +16514,7 @@ declare function init(config: AuthHeroConfig): {
16508
16514
  } | {
16509
16515
  input: {
16510
16516
  param: {
16511
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16517
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16512
16518
  };
16513
16519
  } & {
16514
16520
  header: {
@@ -16516,7 +16522,7 @@ declare function init(config: AuthHeroConfig): {
16516
16522
  };
16517
16523
  } & {
16518
16524
  json: {
16519
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16525
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16520
16526
  body?: string | undefined;
16521
16527
  from?: string | undefined;
16522
16528
  subject?: string | undefined;
@@ -16528,7 +16534,7 @@ declare function init(config: AuthHeroConfig): {
16528
16534
  };
16529
16535
  };
16530
16536
  output: {
16531
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16537
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16532
16538
  body: string;
16533
16539
  from: string;
16534
16540
  subject: string;
@@ -16547,7 +16553,7 @@ declare function init(config: AuthHeroConfig): {
16547
16553
  $delete: {
16548
16554
  input: {
16549
16555
  param: {
16550
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16556
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16551
16557
  };
16552
16558
  } & {
16553
16559
  header: {
@@ -16560,7 +16566,7 @@ declare function init(config: AuthHeroConfig): {
16560
16566
  } | {
16561
16567
  input: {
16562
16568
  param: {
16563
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16569
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16564
16570
  };
16565
16571
  } & {
16566
16572
  header: {
@@ -16577,7 +16583,7 @@ declare function init(config: AuthHeroConfig): {
16577
16583
  $post: {
16578
16584
  input: {
16579
16585
  param: {
16580
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16586
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16581
16587
  };
16582
16588
  } & {
16583
16589
  header: {
@@ -17698,7 +17704,7 @@ declare function init(config: AuthHeroConfig): {
17698
17704
  json: {
17699
17705
  bindings: {
17700
17706
  ref: {
17701
- type?: "action_id" | "action_name" | undefined;
17707
+ type?: "action_name" | "action_id" | undefined;
17702
17708
  value?: string | undefined;
17703
17709
  id?: string | undefined;
17704
17710
  name?: string | undefined;
@@ -17820,7 +17826,7 @@ declare function init(config: AuthHeroConfig): {
17820
17826
  logs: {
17821
17827
  action_name: string;
17822
17828
  lines: {
17823
- level: "error" | "log" | "info" | "warn" | "debug";
17829
+ level: "log" | "error" | "info" | "warn" | "debug";
17824
17830
  message: string;
17825
17831
  }[];
17826
17832
  }[];
@@ -18489,7 +18495,7 @@ declare function init(config: AuthHeroConfig): {
18489
18495
  args: hono_utils_types.JSONValue[];
18490
18496
  }[];
18491
18497
  logs: {
18492
- level: "error" | "log" | "info" | "warn" | "debug";
18498
+ level: "log" | "error" | "info" | "warn" | "debug";
18493
18499
  message: string;
18494
18500
  }[];
18495
18501
  error?: string | undefined;
@@ -19235,19 +19241,19 @@ declare function init(config: AuthHeroConfig): {
19235
19241
  email: string;
19236
19242
  send: "code" | "link";
19237
19243
  authParams: {
19238
- code_challenge?: string | undefined;
19239
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19240
- redirect_uri?: string | undefined;
19241
- nonce?: string | undefined;
19244
+ username?: string | undefined;
19242
19245
  state?: string | undefined;
19243
19246
  act_as?: string | undefined;
19244
19247
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19245
19248
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19249
+ redirect_uri?: string | undefined;
19246
19250
  audience?: string | undefined;
19247
19251
  organization?: string | undefined;
19252
+ nonce?: string | undefined;
19248
19253
  scope?: string | undefined;
19249
19254
  prompt?: string | undefined;
19250
- username?: string | undefined;
19255
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19256
+ code_challenge?: string | undefined;
19251
19257
  ui_locales?: string | undefined;
19252
19258
  max_age?: number | undefined;
19253
19259
  acr_values?: string | undefined;
@@ -19271,19 +19277,19 @@ declare function init(config: AuthHeroConfig): {
19271
19277
  phone_number: string;
19272
19278
  send: "code" | "link";
19273
19279
  authParams: {
19274
- code_challenge?: string | undefined;
19275
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19276
- redirect_uri?: string | undefined;
19277
- nonce?: string | undefined;
19280
+ username?: string | undefined;
19278
19281
  state?: string | undefined;
19279
19282
  act_as?: string | undefined;
19280
19283
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19281
19284
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19285
+ redirect_uri?: string | undefined;
19282
19286
  audience?: string | undefined;
19283
19287
  organization?: string | undefined;
19288
+ nonce?: string | undefined;
19284
19289
  scope?: string | undefined;
19285
19290
  prompt?: string | undefined;
19286
- username?: string | undefined;
19291
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19292
+ code_challenge?: string | undefined;
19287
19293
  ui_locales?: string | undefined;
19288
19294
  max_age?: number | undefined;
19289
19295
  acr_values?: string | undefined;
@@ -21194,7 +21200,7 @@ declare function init(config: AuthHeroConfig): {
21194
21200
  $get: {
21195
21201
  input: {
21196
21202
  param: {
21197
- screen: "login" | "signup" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21203
+ screen: "login" | "account" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21198
21204
  };
21199
21205
  } & {
21200
21206
  query: {
@@ -21210,7 +21216,7 @@ declare function init(config: AuthHeroConfig): {
21210
21216
  } | {
21211
21217
  input: {
21212
21218
  param: {
21213
- screen: "login" | "signup" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21219
+ screen: "login" | "account" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21214
21220
  };
21215
21221
  } & {
21216
21222
  query: {
@@ -21226,7 +21232,7 @@ declare function init(config: AuthHeroConfig): {
21226
21232
  } | {
21227
21233
  input: {
21228
21234
  param: {
21229
- screen: "login" | "signup" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21235
+ screen: "login" | "account" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21230
21236
  };
21231
21237
  } & {
21232
21238
  query: {
@@ -21246,7 +21252,7 @@ declare function init(config: AuthHeroConfig): {
21246
21252
  $post: {
21247
21253
  input: {
21248
21254
  param: {
21249
- screen: "login" | "signup" | "consent" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21255
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21250
21256
  };
21251
21257
  } & {
21252
21258
  query: {
@@ -21264,7 +21270,7 @@ declare function init(config: AuthHeroConfig): {
21264
21270
  } | {
21265
21271
  input: {
21266
21272
  param: {
21267
- screen: "login" | "signup" | "consent" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21273
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21268
21274
  };
21269
21275
  } & {
21270
21276
  query: {