authhero 9.7.0 → 9.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/authhero.cjs +132 -132
  2. package/dist/authhero.d.ts +361 -249
  3. package/dist/authhero.mjs +11713 -11450
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +31 -8
  6. package/dist/types/constants.d.ts +2 -0
  7. package/dist/types/helpers/revoke-session-refresh-tokens.d.ts +33 -0
  8. package/dist/types/helpers/signing-keys.d.ts +11 -0
  9. package/dist/types/index.d.ts +351 -249
  10. package/dist/types/routes/auth-api/index.d.ts +32 -12
  11. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  12. package/dist/types/routes/auth-api/token.d.ts +20 -0
  13. package/dist/types/routes/management-api/clients.d.ts +6 -6
  14. package/dist/types/routes/management-api/connections.d.ts +16 -16
  15. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  16. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  17. package/dist/types/routes/management-api/forms.d.ts +126 -126
  18. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  19. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  20. package/dist/types/routes/management-api/index.d.ts +312 -230
  21. package/dist/types/routes/management-api/keys.d.ts +92 -10
  22. package/dist/types/routes/management-api/logs.d.ts +4 -4
  23. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  24. package/dist/types/routes/management-api/organizations.d.ts +5 -5
  25. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  26. package/dist/types/routes/management-api/roles.d.ts +1 -1
  27. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  28. package/dist/types/routes/management-api/tenants.d.ts +4 -4
  29. package/dist/types/routes/management-api/users.d.ts +18 -18
  30. package/dist/types/routes/universal-login/common.d.ts +6 -6
  31. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  32. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  33. package/dist/types/routes/universal-login/index.d.ts +2 -2
  34. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  35. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  36. package/dist/types/state-machines/login-session.d.ts +1 -1
  37. package/dist/types/utils/encryption.d.ts +51 -0
  38. package/package.json +6 -6
@@ -2143,6 +2143,16 @@ interface CreateX509CertificateParams {
2143
2143
  * backwards compatibility with existing tenants.
2144
2144
  */
2145
2145
  keyType?: SigningKeyType;
2146
+ /**
2147
+ * How long the certificate stays valid, in days. Defaults to
2148
+ * `DEFAULT_CERT_VALIDITY_DAYS` (one year).
2149
+ *
2150
+ * Relying parties that fetch JWKS re-read the key on every rotation, so a
2151
+ * short life is cheap there. A SAML service provider, by contrast, pins the
2152
+ * certificate out-of-band and only learns about a new one when someone
2153
+ * emails it over — so SAML keys want years, not months.
2154
+ */
2155
+ validityDays?: number;
2146
2156
  }
2147
2157
  declare function createX509Certificate(params: CreateX509CertificateParams): Promise<SigningKey>;
2148
2158
 
@@ -4265,8 +4275,8 @@ declare function init(config: AuthHeroConfig): {
4265
4275
  $get: {
4266
4276
  input: {
4267
4277
  query: {
4268
- include_password_hashes?: "false" | "true" | undefined;
4269
- gzip?: "false" | "true" | undefined;
4278
+ include_password_hashes?: "true" | "false" | undefined;
4279
+ gzip?: "true" | "false" | undefined;
4270
4280
  };
4271
4281
  } & {
4272
4282
  header: {
@@ -4279,8 +4289,8 @@ declare function init(config: AuthHeroConfig): {
4279
4289
  } | {
4280
4290
  input: {
4281
4291
  query: {
4282
- include_password_hashes?: "false" | "true" | undefined;
4283
- gzip?: "false" | "true" | undefined;
4292
+ include_password_hashes?: "true" | "false" | undefined;
4293
+ gzip?: "true" | "false" | undefined;
4284
4294
  };
4285
4295
  } & {
4286
4296
  header: {
@@ -4299,7 +4309,7 @@ declare function init(config: AuthHeroConfig): {
4299
4309
  $post: {
4300
4310
  input: {
4301
4311
  query: {
4302
- include_password_hashes?: "false" | "true" | undefined;
4312
+ include_password_hashes?: "true" | "false" | undefined;
4303
4313
  };
4304
4314
  } & {
4305
4315
  header: {
@@ -4493,7 +4503,7 @@ declare function init(config: AuthHeroConfig): {
4493
4503
  };
4494
4504
  };
4495
4505
  output: {
4496
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4506
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4497
4507
  enabled: boolean;
4498
4508
  trial_expired?: boolean | undefined;
4499
4509
  }[];
@@ -4648,7 +4658,7 @@ declare function init(config: AuthHeroConfig): {
4648
4658
  $get: {
4649
4659
  input: {
4650
4660
  param: {
4651
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4661
+ factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4652
4662
  };
4653
4663
  } & {
4654
4664
  header: {
@@ -4656,7 +4666,7 @@ declare function init(config: AuthHeroConfig): {
4656
4666
  };
4657
4667
  };
4658
4668
  output: {
4659
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4669
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4660
4670
  enabled: boolean;
4661
4671
  trial_expired?: boolean | undefined;
4662
4672
  };
@@ -4669,7 +4679,7 @@ declare function init(config: AuthHeroConfig): {
4669
4679
  $put: {
4670
4680
  input: {
4671
4681
  param: {
4672
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4682
+ factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4673
4683
  };
4674
4684
  } & {
4675
4685
  header: {
@@ -4681,7 +4691,7 @@ declare function init(config: AuthHeroConfig): {
4681
4691
  };
4682
4692
  };
4683
4693
  output: {
4684
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4694
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4685
4695
  enabled: boolean;
4686
4696
  trial_expired?: boolean | undefined;
4687
4697
  };
@@ -5453,19 +5463,19 @@ declare function init(config: AuthHeroConfig): {
5453
5463
  } & {
5454
5464
  json: {
5455
5465
  client_id: string;
5456
- inviter: {
5457
- name?: string | undefined;
5458
- };
5459
5466
  invitee: {
5460
5467
  email?: string | undefined;
5461
5468
  };
5469
+ inviter: {
5470
+ name?: string | undefined;
5471
+ };
5462
5472
  id?: string | undefined;
5463
5473
  app_metadata?: Record<string, any> | undefined;
5464
5474
  user_metadata?: Record<string, any> | undefined;
5465
5475
  connection_id?: string | undefined;
5466
5476
  roles?: string[] | undefined;
5467
- ttl_sec?: number | undefined;
5468
5477
  send_invitation_email?: boolean | undefined;
5478
+ ttl_sec?: number | undefined;
5469
5479
  };
5470
5480
  };
5471
5481
  output: {
@@ -5648,8 +5658,8 @@ declare function init(config: AuthHeroConfig): {
5648
5658
  };
5649
5659
  } & {
5650
5660
  json: {
5651
- assign_membership_on_login?: boolean | undefined;
5652
5661
  show_as_button?: boolean | undefined;
5662
+ assign_membership_on_login?: boolean | undefined;
5653
5663
  is_signup_enabled?: boolean | undefined;
5654
5664
  };
5655
5665
  };
@@ -6221,8 +6231,8 @@ declare function init(config: AuthHeroConfig): {
6221
6231
  } & {
6222
6232
  query: {
6223
6233
  page?: string | undefined;
6224
- include_totals?: string | undefined;
6225
6234
  from?: string | undefined;
6235
+ include_totals?: string | undefined;
6226
6236
  per_page?: string | undefined;
6227
6237
  take?: string | undefined;
6228
6238
  };
@@ -6945,7 +6955,7 @@ declare function init(config: AuthHeroConfig): {
6945
6955
  hint?: string | undefined;
6946
6956
  messages?: {
6947
6957
  text: string;
6948
- type: "error" | "success" | "info" | "warning";
6958
+ type: "success" | "error" | "info" | "warning";
6949
6959
  id?: number | undefined;
6950
6960
  }[] | undefined;
6951
6961
  required?: boolean | undefined;
@@ -6963,7 +6973,7 @@ declare function init(config: AuthHeroConfig): {
6963
6973
  hint?: string | undefined;
6964
6974
  messages?: {
6965
6975
  text: string;
6966
- type: "error" | "success" | "info" | "warning";
6976
+ type: "success" | "error" | "info" | "warning";
6967
6977
  id?: number | undefined;
6968
6978
  }[] | undefined;
6969
6979
  required?: boolean | undefined;
@@ -6987,7 +6997,7 @@ declare function init(config: AuthHeroConfig): {
6987
6997
  hint?: string | undefined;
6988
6998
  messages?: {
6989
6999
  text: string;
6990
- type: "error" | "success" | "info" | "warning";
7000
+ type: "success" | "error" | "info" | "warning";
6991
7001
  id?: number | undefined;
6992
7002
  }[] | undefined;
6993
7003
  required?: boolean | undefined;
@@ -7011,7 +7021,7 @@ declare function init(config: AuthHeroConfig): {
7011
7021
  hint?: string | undefined;
7012
7022
  messages?: {
7013
7023
  text: string;
7014
- type: "error" | "success" | "info" | "warning";
7024
+ type: "success" | "error" | "info" | "warning";
7015
7025
  id?: number | undefined;
7016
7026
  }[] | undefined;
7017
7027
  required?: boolean | undefined;
@@ -7035,7 +7045,7 @@ declare function init(config: AuthHeroConfig): {
7035
7045
  hint?: string | undefined;
7036
7046
  messages?: {
7037
7047
  text: string;
7038
- type: "error" | "success" | "info" | "warning";
7048
+ type: "success" | "error" | "info" | "warning";
7039
7049
  id?: number | undefined;
7040
7050
  }[] | undefined;
7041
7051
  required?: boolean | undefined;
@@ -7064,7 +7074,7 @@ declare function init(config: AuthHeroConfig): {
7064
7074
  hint?: string | undefined;
7065
7075
  messages?: {
7066
7076
  text: string;
7067
- type: "error" | "success" | "info" | "warning";
7077
+ type: "success" | "error" | "info" | "warning";
7068
7078
  id?: number | undefined;
7069
7079
  }[] | undefined;
7070
7080
  required?: boolean | undefined;
@@ -7079,7 +7089,7 @@ declare function init(config: AuthHeroConfig): {
7079
7089
  hint?: string | undefined;
7080
7090
  messages?: {
7081
7091
  text: string;
7082
- type: "error" | "success" | "info" | "warning";
7092
+ type: "success" | "error" | "info" | "warning";
7083
7093
  id?: number | undefined;
7084
7094
  }[] | undefined;
7085
7095
  required?: boolean | undefined;
@@ -7100,7 +7110,7 @@ declare function init(config: AuthHeroConfig): {
7100
7110
  hint?: string | undefined;
7101
7111
  messages?: {
7102
7112
  text: string;
7103
- type: "error" | "success" | "info" | "warning";
7113
+ type: "success" | "error" | "info" | "warning";
7104
7114
  id?: number | undefined;
7105
7115
  }[] | undefined;
7106
7116
  required?: boolean | undefined;
@@ -7125,7 +7135,7 @@ declare function init(config: AuthHeroConfig): {
7125
7135
  hint?: string | undefined;
7126
7136
  messages?: {
7127
7137
  text: string;
7128
- type: "error" | "success" | "info" | "warning";
7138
+ type: "success" | "error" | "info" | "warning";
7129
7139
  id?: number | undefined;
7130
7140
  }[] | undefined;
7131
7141
  required?: boolean | undefined;
@@ -7146,7 +7156,7 @@ declare function init(config: AuthHeroConfig): {
7146
7156
  hint?: string | undefined;
7147
7157
  messages?: {
7148
7158
  text: string;
7149
- type: "error" | "success" | "info" | "warning";
7159
+ type: "success" | "error" | "info" | "warning";
7150
7160
  id?: number | undefined;
7151
7161
  }[] | undefined;
7152
7162
  required?: boolean | undefined;
@@ -7166,7 +7176,7 @@ declare function init(config: AuthHeroConfig): {
7166
7176
  hint?: string | undefined;
7167
7177
  messages?: {
7168
7178
  text: string;
7169
- type: "error" | "success" | "info" | "warning";
7179
+ type: "success" | "error" | "info" | "warning";
7170
7180
  id?: number | undefined;
7171
7181
  }[] | undefined;
7172
7182
  required?: boolean | undefined;
@@ -7185,7 +7195,7 @@ declare function init(config: AuthHeroConfig): {
7185
7195
  hint?: string | undefined;
7186
7196
  messages?: {
7187
7197
  text: string;
7188
- type: "error" | "success" | "info" | "warning";
7198
+ type: "success" | "error" | "info" | "warning";
7189
7199
  id?: number | undefined;
7190
7200
  }[] | undefined;
7191
7201
  required?: boolean | undefined;
@@ -7207,7 +7217,7 @@ declare function init(config: AuthHeroConfig): {
7207
7217
  hint?: string | undefined;
7208
7218
  messages?: {
7209
7219
  text: string;
7210
- type: "error" | "success" | "info" | "warning";
7220
+ type: "success" | "error" | "info" | "warning";
7211
7221
  id?: number | undefined;
7212
7222
  }[] | undefined;
7213
7223
  required?: boolean | undefined;
@@ -7229,7 +7239,7 @@ declare function init(config: AuthHeroConfig): {
7229
7239
  hint?: string | undefined;
7230
7240
  messages?: {
7231
7241
  text: string;
7232
- type: "error" | "success" | "info" | "warning";
7242
+ type: "success" | "error" | "info" | "warning";
7233
7243
  id?: number | undefined;
7234
7244
  }[] | undefined;
7235
7245
  required?: boolean | undefined;
@@ -7248,7 +7258,7 @@ declare function init(config: AuthHeroConfig): {
7248
7258
  hint?: string | undefined;
7249
7259
  messages?: {
7250
7260
  text: string;
7251
- type: "error" | "success" | "info" | "warning";
7261
+ type: "success" | "error" | "info" | "warning";
7252
7262
  id?: number | undefined;
7253
7263
  }[] | undefined;
7254
7264
  required?: boolean | undefined;
@@ -7275,7 +7285,7 @@ declare function init(config: AuthHeroConfig): {
7275
7285
  hint?: string | undefined;
7276
7286
  messages?: {
7277
7287
  text: string;
7278
- type: "error" | "success" | "info" | "warning";
7288
+ type: "success" | "error" | "info" | "warning";
7279
7289
  id?: number | undefined;
7280
7290
  }[] | undefined;
7281
7291
  required?: boolean | undefined;
@@ -7296,7 +7306,7 @@ declare function init(config: AuthHeroConfig): {
7296
7306
  hint?: string | undefined;
7297
7307
  messages?: {
7298
7308
  text: string;
7299
- type: "error" | "success" | "info" | "warning";
7309
+ type: "success" | "error" | "info" | "warning";
7300
7310
  id?: number | undefined;
7301
7311
  }[] | undefined;
7302
7312
  required?: boolean | undefined;
@@ -7319,7 +7329,7 @@ declare function init(config: AuthHeroConfig): {
7319
7329
  hint?: string | undefined;
7320
7330
  messages?: {
7321
7331
  text: string;
7322
- type: "error" | "success" | "info" | "warning";
7332
+ type: "success" | "error" | "info" | "warning";
7323
7333
  id?: number | undefined;
7324
7334
  }[] | undefined;
7325
7335
  required?: boolean | undefined;
@@ -7552,7 +7562,7 @@ declare function init(config: AuthHeroConfig): {
7552
7562
  hint?: string | undefined;
7553
7563
  messages?: {
7554
7564
  text: string;
7555
- type: "error" | "success" | "info" | "warning";
7565
+ type: "success" | "error" | "info" | "warning";
7556
7566
  id?: number | undefined;
7557
7567
  }[] | undefined;
7558
7568
  required?: boolean | undefined;
@@ -7570,7 +7580,7 @@ declare function init(config: AuthHeroConfig): {
7570
7580
  hint?: string | undefined;
7571
7581
  messages?: {
7572
7582
  text: string;
7573
- type: "error" | "success" | "info" | "warning";
7583
+ type: "success" | "error" | "info" | "warning";
7574
7584
  id?: number | undefined;
7575
7585
  }[] | undefined;
7576
7586
  required?: boolean | undefined;
@@ -7594,7 +7604,7 @@ declare function init(config: AuthHeroConfig): {
7594
7604
  hint?: string | undefined;
7595
7605
  messages?: {
7596
7606
  text: string;
7597
- type: "error" | "success" | "info" | "warning";
7607
+ type: "success" | "error" | "info" | "warning";
7598
7608
  id?: number | undefined;
7599
7609
  }[] | undefined;
7600
7610
  required?: boolean | undefined;
@@ -7618,7 +7628,7 @@ declare function init(config: AuthHeroConfig): {
7618
7628
  hint?: string | undefined;
7619
7629
  messages?: {
7620
7630
  text: string;
7621
- type: "error" | "success" | "info" | "warning";
7631
+ type: "success" | "error" | "info" | "warning";
7622
7632
  id?: number | undefined;
7623
7633
  }[] | undefined;
7624
7634
  required?: boolean | undefined;
@@ -7642,7 +7652,7 @@ declare function init(config: AuthHeroConfig): {
7642
7652
  hint?: string | undefined;
7643
7653
  messages?: {
7644
7654
  text: string;
7645
- type: "error" | "success" | "info" | "warning";
7655
+ type: "success" | "error" | "info" | "warning";
7646
7656
  id?: number | undefined;
7647
7657
  }[] | undefined;
7648
7658
  required?: boolean | undefined;
@@ -7671,7 +7681,7 @@ declare function init(config: AuthHeroConfig): {
7671
7681
  hint?: string | undefined;
7672
7682
  messages?: {
7673
7683
  text: string;
7674
- type: "error" | "success" | "info" | "warning";
7684
+ type: "success" | "error" | "info" | "warning";
7675
7685
  id?: number | undefined;
7676
7686
  }[] | undefined;
7677
7687
  required?: boolean | undefined;
@@ -7686,7 +7696,7 @@ declare function init(config: AuthHeroConfig): {
7686
7696
  hint?: string | undefined;
7687
7697
  messages?: {
7688
7698
  text: string;
7689
- type: "error" | "success" | "info" | "warning";
7699
+ type: "success" | "error" | "info" | "warning";
7690
7700
  id?: number | undefined;
7691
7701
  }[] | undefined;
7692
7702
  required?: boolean | undefined;
@@ -7707,7 +7717,7 @@ declare function init(config: AuthHeroConfig): {
7707
7717
  hint?: string | undefined;
7708
7718
  messages?: {
7709
7719
  text: string;
7710
- type: "error" | "success" | "info" | "warning";
7720
+ type: "success" | "error" | "info" | "warning";
7711
7721
  id?: number | undefined;
7712
7722
  }[] | undefined;
7713
7723
  required?: boolean | undefined;
@@ -7732,7 +7742,7 @@ declare function init(config: AuthHeroConfig): {
7732
7742
  hint?: string | undefined;
7733
7743
  messages?: {
7734
7744
  text: string;
7735
- type: "error" | "success" | "info" | "warning";
7745
+ type: "success" | "error" | "info" | "warning";
7736
7746
  id?: number | undefined;
7737
7747
  }[] | undefined;
7738
7748
  required?: boolean | undefined;
@@ -7753,7 +7763,7 @@ declare function init(config: AuthHeroConfig): {
7753
7763
  hint?: string | undefined;
7754
7764
  messages?: {
7755
7765
  text: string;
7756
- type: "error" | "success" | "info" | "warning";
7766
+ type: "success" | "error" | "info" | "warning";
7757
7767
  id?: number | undefined;
7758
7768
  }[] | undefined;
7759
7769
  required?: boolean | undefined;
@@ -7773,7 +7783,7 @@ declare function init(config: AuthHeroConfig): {
7773
7783
  hint?: string | undefined;
7774
7784
  messages?: {
7775
7785
  text: string;
7776
- type: "error" | "success" | "info" | "warning";
7786
+ type: "success" | "error" | "info" | "warning";
7777
7787
  id?: number | undefined;
7778
7788
  }[] | undefined;
7779
7789
  required?: boolean | undefined;
@@ -7792,7 +7802,7 @@ declare function init(config: AuthHeroConfig): {
7792
7802
  hint?: string | undefined;
7793
7803
  messages?: {
7794
7804
  text: string;
7795
- type: "error" | "success" | "info" | "warning";
7805
+ type: "success" | "error" | "info" | "warning";
7796
7806
  id?: number | undefined;
7797
7807
  }[] | undefined;
7798
7808
  required?: boolean | undefined;
@@ -7814,7 +7824,7 @@ declare function init(config: AuthHeroConfig): {
7814
7824
  hint?: string | undefined;
7815
7825
  messages?: {
7816
7826
  text: string;
7817
- type: "error" | "success" | "info" | "warning";
7827
+ type: "success" | "error" | "info" | "warning";
7818
7828
  id?: number | undefined;
7819
7829
  }[] | undefined;
7820
7830
  required?: boolean | undefined;
@@ -7836,7 +7846,7 @@ declare function init(config: AuthHeroConfig): {
7836
7846
  hint?: string | undefined;
7837
7847
  messages?: {
7838
7848
  text: string;
7839
- type: "error" | "success" | "info" | "warning";
7849
+ type: "success" | "error" | "info" | "warning";
7840
7850
  id?: number | undefined;
7841
7851
  }[] | undefined;
7842
7852
  required?: boolean | undefined;
@@ -7855,7 +7865,7 @@ declare function init(config: AuthHeroConfig): {
7855
7865
  hint?: string | undefined;
7856
7866
  messages?: {
7857
7867
  text: string;
7858
- type: "error" | "success" | "info" | "warning";
7868
+ type: "success" | "error" | "info" | "warning";
7859
7869
  id?: number | undefined;
7860
7870
  }[] | undefined;
7861
7871
  required?: boolean | undefined;
@@ -7882,7 +7892,7 @@ declare function init(config: AuthHeroConfig): {
7882
7892
  hint?: string | undefined;
7883
7893
  messages?: {
7884
7894
  text: string;
7885
- type: "error" | "success" | "info" | "warning";
7895
+ type: "success" | "error" | "info" | "warning";
7886
7896
  id?: number | undefined;
7887
7897
  }[] | undefined;
7888
7898
  required?: boolean | undefined;
@@ -7903,7 +7913,7 @@ declare function init(config: AuthHeroConfig): {
7903
7913
  hint?: string | undefined;
7904
7914
  messages?: {
7905
7915
  text: string;
7906
- type: "error" | "success" | "info" | "warning";
7916
+ type: "success" | "error" | "info" | "warning";
7907
7917
  id?: number | undefined;
7908
7918
  }[] | undefined;
7909
7919
  required?: boolean | undefined;
@@ -7926,7 +7936,7 @@ declare function init(config: AuthHeroConfig): {
7926
7936
  hint?: string | undefined;
7927
7937
  messages?: {
7928
7938
  text: string;
7929
- type: "error" | "success" | "info" | "warning";
7939
+ type: "success" | "error" | "info" | "warning";
7930
7940
  id?: number | undefined;
7931
7941
  }[] | undefined;
7932
7942
  required?: boolean | undefined;
@@ -8175,7 +8185,7 @@ declare function init(config: AuthHeroConfig): {
8175
8185
  hint?: string | undefined;
8176
8186
  messages?: {
8177
8187
  text: string;
8178
- type: "error" | "success" | "info" | "warning";
8188
+ type: "success" | "error" | "info" | "warning";
8179
8189
  id?: number | undefined;
8180
8190
  }[] | undefined;
8181
8191
  required?: boolean | undefined;
@@ -8193,7 +8203,7 @@ declare function init(config: AuthHeroConfig): {
8193
8203
  hint?: string | undefined;
8194
8204
  messages?: {
8195
8205
  text: string;
8196
- type: "error" | "success" | "info" | "warning";
8206
+ type: "success" | "error" | "info" | "warning";
8197
8207
  id?: number | undefined;
8198
8208
  }[] | undefined;
8199
8209
  required?: boolean | undefined;
@@ -8217,7 +8227,7 @@ declare function init(config: AuthHeroConfig): {
8217
8227
  hint?: string | undefined;
8218
8228
  messages?: {
8219
8229
  text: string;
8220
- type: "error" | "success" | "info" | "warning";
8230
+ type: "success" | "error" | "info" | "warning";
8221
8231
  id?: number | undefined;
8222
8232
  }[] | undefined;
8223
8233
  required?: boolean | undefined;
@@ -8241,7 +8251,7 @@ declare function init(config: AuthHeroConfig): {
8241
8251
  hint?: string | undefined;
8242
8252
  messages?: {
8243
8253
  text: string;
8244
- type: "error" | "success" | "info" | "warning";
8254
+ type: "success" | "error" | "info" | "warning";
8245
8255
  id?: number | undefined;
8246
8256
  }[] | undefined;
8247
8257
  required?: boolean | undefined;
@@ -8265,7 +8275,7 @@ declare function init(config: AuthHeroConfig): {
8265
8275
  hint?: string | undefined;
8266
8276
  messages?: {
8267
8277
  text: string;
8268
- type: "error" | "success" | "info" | "warning";
8278
+ type: "success" | "error" | "info" | "warning";
8269
8279
  id?: number | undefined;
8270
8280
  }[] | undefined;
8271
8281
  required?: boolean | undefined;
@@ -8294,7 +8304,7 @@ declare function init(config: AuthHeroConfig): {
8294
8304
  hint?: string | undefined;
8295
8305
  messages?: {
8296
8306
  text: string;
8297
- type: "error" | "success" | "info" | "warning";
8307
+ type: "success" | "error" | "info" | "warning";
8298
8308
  id?: number | undefined;
8299
8309
  }[] | undefined;
8300
8310
  required?: boolean | undefined;
@@ -8309,7 +8319,7 @@ declare function init(config: AuthHeroConfig): {
8309
8319
  hint?: string | undefined;
8310
8320
  messages?: {
8311
8321
  text: string;
8312
- type: "error" | "success" | "info" | "warning";
8322
+ type: "success" | "error" | "info" | "warning";
8313
8323
  id?: number | undefined;
8314
8324
  }[] | undefined;
8315
8325
  required?: boolean | undefined;
@@ -8330,7 +8340,7 @@ declare function init(config: AuthHeroConfig): {
8330
8340
  hint?: string | undefined;
8331
8341
  messages?: {
8332
8342
  text: string;
8333
- type: "error" | "success" | "info" | "warning";
8343
+ type: "success" | "error" | "info" | "warning";
8334
8344
  id?: number | undefined;
8335
8345
  }[] | undefined;
8336
8346
  required?: boolean | undefined;
@@ -8355,7 +8365,7 @@ declare function init(config: AuthHeroConfig): {
8355
8365
  hint?: string | undefined;
8356
8366
  messages?: {
8357
8367
  text: string;
8358
- type: "error" | "success" | "info" | "warning";
8368
+ type: "success" | "error" | "info" | "warning";
8359
8369
  id?: number | undefined;
8360
8370
  }[] | undefined;
8361
8371
  required?: boolean | undefined;
@@ -8376,7 +8386,7 @@ declare function init(config: AuthHeroConfig): {
8376
8386
  hint?: string | undefined;
8377
8387
  messages?: {
8378
8388
  text: string;
8379
- type: "error" | "success" | "info" | "warning";
8389
+ type: "success" | "error" | "info" | "warning";
8380
8390
  id?: number | undefined;
8381
8391
  }[] | undefined;
8382
8392
  required?: boolean | undefined;
@@ -8396,7 +8406,7 @@ declare function init(config: AuthHeroConfig): {
8396
8406
  hint?: string | undefined;
8397
8407
  messages?: {
8398
8408
  text: string;
8399
- type: "error" | "success" | "info" | "warning";
8409
+ type: "success" | "error" | "info" | "warning";
8400
8410
  id?: number | undefined;
8401
8411
  }[] | undefined;
8402
8412
  required?: boolean | undefined;
@@ -8415,7 +8425,7 @@ declare function init(config: AuthHeroConfig): {
8415
8425
  hint?: string | undefined;
8416
8426
  messages?: {
8417
8427
  text: string;
8418
- type: "error" | "success" | "info" | "warning";
8428
+ type: "success" | "error" | "info" | "warning";
8419
8429
  id?: number | undefined;
8420
8430
  }[] | undefined;
8421
8431
  required?: boolean | undefined;
@@ -8437,7 +8447,7 @@ declare function init(config: AuthHeroConfig): {
8437
8447
  hint?: string | undefined;
8438
8448
  messages?: {
8439
8449
  text: string;
8440
- type: "error" | "success" | "info" | "warning";
8450
+ type: "success" | "error" | "info" | "warning";
8441
8451
  id?: number | undefined;
8442
8452
  }[] | undefined;
8443
8453
  required?: boolean | undefined;
@@ -8459,7 +8469,7 @@ declare function init(config: AuthHeroConfig): {
8459
8469
  hint?: string | undefined;
8460
8470
  messages?: {
8461
8471
  text: string;
8462
- type: "error" | "success" | "info" | "warning";
8472
+ type: "success" | "error" | "info" | "warning";
8463
8473
  id?: number | undefined;
8464
8474
  }[] | undefined;
8465
8475
  required?: boolean | undefined;
@@ -8478,7 +8488,7 @@ declare function init(config: AuthHeroConfig): {
8478
8488
  hint?: string | undefined;
8479
8489
  messages?: {
8480
8490
  text: string;
8481
- type: "error" | "success" | "info" | "warning";
8491
+ type: "success" | "error" | "info" | "warning";
8482
8492
  id?: number | undefined;
8483
8493
  }[] | undefined;
8484
8494
  required?: boolean | undefined;
@@ -8505,7 +8515,7 @@ declare function init(config: AuthHeroConfig): {
8505
8515
  hint?: string | undefined;
8506
8516
  messages?: {
8507
8517
  text: string;
8508
- type: "error" | "success" | "info" | "warning";
8518
+ type: "success" | "error" | "info" | "warning";
8509
8519
  id?: number | undefined;
8510
8520
  }[] | undefined;
8511
8521
  required?: boolean | undefined;
@@ -8526,7 +8536,7 @@ declare function init(config: AuthHeroConfig): {
8526
8536
  hint?: string | undefined;
8527
8537
  messages?: {
8528
8538
  text: string;
8529
- type: "error" | "success" | "info" | "warning";
8539
+ type: "success" | "error" | "info" | "warning";
8530
8540
  id?: number | undefined;
8531
8541
  }[] | undefined;
8532
8542
  required?: boolean | undefined;
@@ -8549,7 +8559,7 @@ declare function init(config: AuthHeroConfig): {
8549
8559
  hint?: string | undefined;
8550
8560
  messages?: {
8551
8561
  text: string;
8552
- type: "error" | "success" | "info" | "warning";
8562
+ type: "success" | "error" | "info" | "warning";
8553
8563
  id?: number | undefined;
8554
8564
  }[] | undefined;
8555
8565
  required?: boolean | undefined;
@@ -8803,7 +8813,7 @@ declare function init(config: AuthHeroConfig): {
8803
8813
  hint?: string | undefined;
8804
8814
  messages?: {
8805
8815
  text: string;
8806
- type: "error" | "success" | "info" | "warning";
8816
+ type: "success" | "error" | "info" | "warning";
8807
8817
  id?: number | undefined;
8808
8818
  }[] | undefined;
8809
8819
  required?: boolean | undefined;
@@ -8821,7 +8831,7 @@ declare function init(config: AuthHeroConfig): {
8821
8831
  hint?: string | undefined;
8822
8832
  messages?: {
8823
8833
  text: string;
8824
- type: "error" | "success" | "info" | "warning";
8834
+ type: "success" | "error" | "info" | "warning";
8825
8835
  id?: number | undefined;
8826
8836
  }[] | undefined;
8827
8837
  required?: boolean | undefined;
@@ -8845,7 +8855,7 @@ declare function init(config: AuthHeroConfig): {
8845
8855
  hint?: string | undefined;
8846
8856
  messages?: {
8847
8857
  text: string;
8848
- type: "error" | "success" | "info" | "warning";
8858
+ type: "success" | "error" | "info" | "warning";
8849
8859
  id?: number | undefined;
8850
8860
  }[] | undefined;
8851
8861
  required?: boolean | undefined;
@@ -8869,7 +8879,7 @@ declare function init(config: AuthHeroConfig): {
8869
8879
  hint?: string | undefined;
8870
8880
  messages?: {
8871
8881
  text: string;
8872
- type: "error" | "success" | "info" | "warning";
8882
+ type: "success" | "error" | "info" | "warning";
8873
8883
  id?: number | undefined;
8874
8884
  }[] | undefined;
8875
8885
  required?: boolean | undefined;
@@ -8893,7 +8903,7 @@ declare function init(config: AuthHeroConfig): {
8893
8903
  hint?: string | undefined;
8894
8904
  messages?: {
8895
8905
  text: string;
8896
- type: "error" | "success" | "info" | "warning";
8906
+ type: "success" | "error" | "info" | "warning";
8897
8907
  id?: number | undefined;
8898
8908
  }[] | undefined;
8899
8909
  required?: boolean | undefined;
@@ -8918,7 +8928,7 @@ declare function init(config: AuthHeroConfig): {
8918
8928
  hint?: string | undefined;
8919
8929
  messages?: {
8920
8930
  text: string;
8921
- type: "error" | "success" | "info" | "warning";
8931
+ type: "success" | "error" | "info" | "warning";
8922
8932
  id?: number | undefined;
8923
8933
  }[] | undefined;
8924
8934
  required?: boolean | undefined;
@@ -8933,7 +8943,7 @@ declare function init(config: AuthHeroConfig): {
8933
8943
  hint?: string | undefined;
8934
8944
  messages?: {
8935
8945
  text: string;
8936
- type: "error" | "success" | "info" | "warning";
8946
+ type: "success" | "error" | "info" | "warning";
8937
8947
  id?: number | undefined;
8938
8948
  }[] | undefined;
8939
8949
  required?: boolean | undefined;
@@ -8954,7 +8964,7 @@ declare function init(config: AuthHeroConfig): {
8954
8964
  hint?: string | undefined;
8955
8965
  messages?: {
8956
8966
  text: string;
8957
- type: "error" | "success" | "info" | "warning";
8967
+ type: "success" | "error" | "info" | "warning";
8958
8968
  id?: number | undefined;
8959
8969
  }[] | undefined;
8960
8970
  required?: boolean | undefined;
@@ -8979,7 +8989,7 @@ declare function init(config: AuthHeroConfig): {
8979
8989
  hint?: string | undefined;
8980
8990
  messages?: {
8981
8991
  text: string;
8982
- type: "error" | "success" | "info" | "warning";
8992
+ type: "success" | "error" | "info" | "warning";
8983
8993
  id?: number | undefined;
8984
8994
  }[] | undefined;
8985
8995
  required?: boolean | undefined;
@@ -9000,7 +9010,7 @@ declare function init(config: AuthHeroConfig): {
9000
9010
  hint?: string | undefined;
9001
9011
  messages?: {
9002
9012
  text: string;
9003
- type: "error" | "success" | "info" | "warning";
9013
+ type: "success" | "error" | "info" | "warning";
9004
9014
  id?: number | undefined;
9005
9015
  }[] | undefined;
9006
9016
  required?: boolean | undefined;
@@ -9020,7 +9030,7 @@ declare function init(config: AuthHeroConfig): {
9020
9030
  hint?: string | undefined;
9021
9031
  messages?: {
9022
9032
  text: string;
9023
- type: "error" | "success" | "info" | "warning";
9033
+ type: "success" | "error" | "info" | "warning";
9024
9034
  id?: number | undefined;
9025
9035
  }[] | undefined;
9026
9036
  required?: boolean | undefined;
@@ -9039,7 +9049,7 @@ declare function init(config: AuthHeroConfig): {
9039
9049
  hint?: string | undefined;
9040
9050
  messages?: {
9041
9051
  text: string;
9042
- type: "error" | "success" | "info" | "warning";
9052
+ type: "success" | "error" | "info" | "warning";
9043
9053
  id?: number | undefined;
9044
9054
  }[] | undefined;
9045
9055
  required?: boolean | undefined;
@@ -9061,7 +9071,7 @@ declare function init(config: AuthHeroConfig): {
9061
9071
  hint?: string | undefined;
9062
9072
  messages?: {
9063
9073
  text: string;
9064
- type: "error" | "success" | "info" | "warning";
9074
+ type: "success" | "error" | "info" | "warning";
9065
9075
  id?: number | undefined;
9066
9076
  }[] | undefined;
9067
9077
  required?: boolean | undefined;
@@ -9083,7 +9093,7 @@ declare function init(config: AuthHeroConfig): {
9083
9093
  hint?: string | undefined;
9084
9094
  messages?: {
9085
9095
  text: string;
9086
- type: "error" | "success" | "info" | "warning";
9096
+ type: "success" | "error" | "info" | "warning";
9087
9097
  id?: number | undefined;
9088
9098
  }[] | undefined;
9089
9099
  required?: boolean | undefined;
@@ -9102,7 +9112,7 @@ declare function init(config: AuthHeroConfig): {
9102
9112
  hint?: string | undefined;
9103
9113
  messages?: {
9104
9114
  text: string;
9105
- type: "error" | "success" | "info" | "warning";
9115
+ type: "success" | "error" | "info" | "warning";
9106
9116
  id?: number | undefined;
9107
9117
  }[] | undefined;
9108
9118
  required?: boolean | undefined;
@@ -9129,7 +9139,7 @@ declare function init(config: AuthHeroConfig): {
9129
9139
  hint?: string | undefined;
9130
9140
  messages?: {
9131
9141
  text: string;
9132
- type: "error" | "success" | "info" | "warning";
9142
+ type: "success" | "error" | "info" | "warning";
9133
9143
  id?: number | undefined;
9134
9144
  }[] | undefined;
9135
9145
  required?: boolean | undefined;
@@ -9150,7 +9160,7 @@ declare function init(config: AuthHeroConfig): {
9150
9160
  hint?: string | undefined;
9151
9161
  messages?: {
9152
9162
  text: string;
9153
- type: "error" | "success" | "info" | "warning";
9163
+ type: "success" | "error" | "info" | "warning";
9154
9164
  id?: number | undefined;
9155
9165
  }[] | undefined;
9156
9166
  required?: boolean | undefined;
@@ -9173,7 +9183,7 @@ declare function init(config: AuthHeroConfig): {
9173
9183
  hint?: string | undefined;
9174
9184
  messages?: {
9175
9185
  text: string;
9176
- type: "error" | "success" | "info" | "warning";
9186
+ type: "success" | "error" | "info" | "warning";
9177
9187
  id?: number | undefined;
9178
9188
  }[] | undefined;
9179
9189
  required?: boolean | undefined;
@@ -9404,7 +9414,7 @@ declare function init(config: AuthHeroConfig): {
9404
9414
  hint?: string | undefined;
9405
9415
  messages?: {
9406
9416
  text: string;
9407
- type: "error" | "success" | "info" | "warning";
9417
+ type: "success" | "error" | "info" | "warning";
9408
9418
  id?: number | undefined;
9409
9419
  }[] | undefined;
9410
9420
  required?: boolean | undefined;
@@ -9422,7 +9432,7 @@ declare function init(config: AuthHeroConfig): {
9422
9432
  hint?: string | undefined;
9423
9433
  messages?: {
9424
9434
  text: string;
9425
- type: "error" | "success" | "info" | "warning";
9435
+ type: "success" | "error" | "info" | "warning";
9426
9436
  id?: number | undefined;
9427
9437
  }[] | undefined;
9428
9438
  required?: boolean | undefined;
@@ -9446,7 +9456,7 @@ declare function init(config: AuthHeroConfig): {
9446
9456
  hint?: string | undefined;
9447
9457
  messages?: {
9448
9458
  text: string;
9449
- type: "error" | "success" | "info" | "warning";
9459
+ type: "success" | "error" | "info" | "warning";
9450
9460
  id?: number | undefined;
9451
9461
  }[] | undefined;
9452
9462
  required?: boolean | undefined;
@@ -9470,7 +9480,7 @@ declare function init(config: AuthHeroConfig): {
9470
9480
  hint?: string | undefined;
9471
9481
  messages?: {
9472
9482
  text: string;
9473
- type: "error" | "success" | "info" | "warning";
9483
+ type: "success" | "error" | "info" | "warning";
9474
9484
  id?: number | undefined;
9475
9485
  }[] | undefined;
9476
9486
  required?: boolean | undefined;
@@ -9494,7 +9504,7 @@ declare function init(config: AuthHeroConfig): {
9494
9504
  hint?: string | undefined;
9495
9505
  messages?: {
9496
9506
  text: string;
9497
- type: "error" | "success" | "info" | "warning";
9507
+ type: "success" | "error" | "info" | "warning";
9498
9508
  id?: number | undefined;
9499
9509
  }[] | undefined;
9500
9510
  required?: boolean | undefined;
@@ -9523,7 +9533,7 @@ declare function init(config: AuthHeroConfig): {
9523
9533
  hint?: string | undefined;
9524
9534
  messages?: {
9525
9535
  text: string;
9526
- type: "error" | "success" | "info" | "warning";
9536
+ type: "success" | "error" | "info" | "warning";
9527
9537
  id?: number | undefined;
9528
9538
  }[] | undefined;
9529
9539
  required?: boolean | undefined;
@@ -9538,7 +9548,7 @@ declare function init(config: AuthHeroConfig): {
9538
9548
  hint?: string | undefined;
9539
9549
  messages?: {
9540
9550
  text: string;
9541
- type: "error" | "success" | "info" | "warning";
9551
+ type: "success" | "error" | "info" | "warning";
9542
9552
  id?: number | undefined;
9543
9553
  }[] | undefined;
9544
9554
  required?: boolean | undefined;
@@ -9559,7 +9569,7 @@ declare function init(config: AuthHeroConfig): {
9559
9569
  hint?: string | undefined;
9560
9570
  messages?: {
9561
9571
  text: string;
9562
- type: "error" | "success" | "info" | "warning";
9572
+ type: "success" | "error" | "info" | "warning";
9563
9573
  id?: number | undefined;
9564
9574
  }[] | undefined;
9565
9575
  required?: boolean | undefined;
@@ -9584,7 +9594,7 @@ declare function init(config: AuthHeroConfig): {
9584
9594
  hint?: string | undefined;
9585
9595
  messages?: {
9586
9596
  text: string;
9587
- type: "error" | "success" | "info" | "warning";
9597
+ type: "success" | "error" | "info" | "warning";
9588
9598
  id?: number | undefined;
9589
9599
  }[] | undefined;
9590
9600
  required?: boolean | undefined;
@@ -9605,7 +9615,7 @@ declare function init(config: AuthHeroConfig): {
9605
9615
  hint?: string | undefined;
9606
9616
  messages?: {
9607
9617
  text: string;
9608
- type: "error" | "success" | "info" | "warning";
9618
+ type: "success" | "error" | "info" | "warning";
9609
9619
  id?: number | undefined;
9610
9620
  }[] | undefined;
9611
9621
  required?: boolean | undefined;
@@ -9625,7 +9635,7 @@ declare function init(config: AuthHeroConfig): {
9625
9635
  hint?: string | undefined;
9626
9636
  messages?: {
9627
9637
  text: string;
9628
- type: "error" | "success" | "info" | "warning";
9638
+ type: "success" | "error" | "info" | "warning";
9629
9639
  id?: number | undefined;
9630
9640
  }[] | undefined;
9631
9641
  required?: boolean | undefined;
@@ -9644,7 +9654,7 @@ declare function init(config: AuthHeroConfig): {
9644
9654
  hint?: string | undefined;
9645
9655
  messages?: {
9646
9656
  text: string;
9647
- type: "error" | "success" | "info" | "warning";
9657
+ type: "success" | "error" | "info" | "warning";
9648
9658
  id?: number | undefined;
9649
9659
  }[] | undefined;
9650
9660
  required?: boolean | undefined;
@@ -9666,7 +9676,7 @@ declare function init(config: AuthHeroConfig): {
9666
9676
  hint?: string | undefined;
9667
9677
  messages?: {
9668
9678
  text: string;
9669
- type: "error" | "success" | "info" | "warning";
9679
+ type: "success" | "error" | "info" | "warning";
9670
9680
  id?: number | undefined;
9671
9681
  }[] | undefined;
9672
9682
  required?: boolean | undefined;
@@ -9688,7 +9698,7 @@ declare function init(config: AuthHeroConfig): {
9688
9698
  hint?: string | undefined;
9689
9699
  messages?: {
9690
9700
  text: string;
9691
- type: "error" | "success" | "info" | "warning";
9701
+ type: "success" | "error" | "info" | "warning";
9692
9702
  id?: number | undefined;
9693
9703
  }[] | undefined;
9694
9704
  required?: boolean | undefined;
@@ -9707,7 +9717,7 @@ declare function init(config: AuthHeroConfig): {
9707
9717
  hint?: string | undefined;
9708
9718
  messages?: {
9709
9719
  text: string;
9710
- type: "error" | "success" | "info" | "warning";
9720
+ type: "success" | "error" | "info" | "warning";
9711
9721
  id?: number | undefined;
9712
9722
  }[] | undefined;
9713
9723
  required?: boolean | undefined;
@@ -9734,7 +9744,7 @@ declare function init(config: AuthHeroConfig): {
9734
9744
  hint?: string | undefined;
9735
9745
  messages?: {
9736
9746
  text: string;
9737
- type: "error" | "success" | "info" | "warning";
9747
+ type: "success" | "error" | "info" | "warning";
9738
9748
  id?: number | undefined;
9739
9749
  }[] | undefined;
9740
9750
  required?: boolean | undefined;
@@ -9755,7 +9765,7 @@ declare function init(config: AuthHeroConfig): {
9755
9765
  hint?: string | undefined;
9756
9766
  messages?: {
9757
9767
  text: string;
9758
- type: "error" | "success" | "info" | "warning";
9768
+ type: "success" | "error" | "info" | "warning";
9759
9769
  id?: number | undefined;
9760
9770
  }[] | undefined;
9761
9771
  required?: boolean | undefined;
@@ -9778,7 +9788,7 @@ declare function init(config: AuthHeroConfig): {
9778
9788
  hint?: string | undefined;
9779
9789
  messages?: {
9780
9790
  text: string;
9781
- type: "error" | "success" | "info" | "warning";
9791
+ type: "success" | "error" | "info" | "warning";
9782
9792
  id?: number | undefined;
9783
9793
  }[] | undefined;
9784
9794
  required?: boolean | undefined;
@@ -10011,7 +10021,7 @@ declare function init(config: AuthHeroConfig): {
10011
10021
  hint?: string | undefined;
10012
10022
  messages?: {
10013
10023
  text: string;
10014
- type: "error" | "success" | "info" | "warning";
10024
+ type: "success" | "error" | "info" | "warning";
10015
10025
  id?: number | undefined;
10016
10026
  }[] | undefined;
10017
10027
  required?: boolean | undefined;
@@ -10029,7 +10039,7 @@ declare function init(config: AuthHeroConfig): {
10029
10039
  hint?: string | undefined;
10030
10040
  messages?: {
10031
10041
  text: string;
10032
- type: "error" | "success" | "info" | "warning";
10042
+ type: "success" | "error" | "info" | "warning";
10033
10043
  id?: number | undefined;
10034
10044
  }[] | undefined;
10035
10045
  required?: boolean | undefined;
@@ -10053,7 +10063,7 @@ declare function init(config: AuthHeroConfig): {
10053
10063
  hint?: string | undefined;
10054
10064
  messages?: {
10055
10065
  text: string;
10056
- type: "error" | "success" | "info" | "warning";
10066
+ type: "success" | "error" | "info" | "warning";
10057
10067
  id?: number | undefined;
10058
10068
  }[] | undefined;
10059
10069
  required?: boolean | undefined;
@@ -10077,7 +10087,7 @@ declare function init(config: AuthHeroConfig): {
10077
10087
  hint?: string | undefined;
10078
10088
  messages?: {
10079
10089
  text: string;
10080
- type: "error" | "success" | "info" | "warning";
10090
+ type: "success" | "error" | "info" | "warning";
10081
10091
  id?: number | undefined;
10082
10092
  }[] | undefined;
10083
10093
  required?: boolean | undefined;
@@ -10101,7 +10111,7 @@ declare function init(config: AuthHeroConfig): {
10101
10111
  hint?: string | undefined;
10102
10112
  messages?: {
10103
10113
  text: string;
10104
- type: "error" | "success" | "info" | "warning";
10114
+ type: "success" | "error" | "info" | "warning";
10105
10115
  id?: number | undefined;
10106
10116
  }[] | undefined;
10107
10117
  required?: boolean | undefined;
@@ -10126,7 +10136,7 @@ declare function init(config: AuthHeroConfig): {
10126
10136
  hint?: string | undefined;
10127
10137
  messages?: {
10128
10138
  text: string;
10129
- type: "error" | "success" | "info" | "warning";
10139
+ type: "success" | "error" | "info" | "warning";
10130
10140
  id?: number | undefined;
10131
10141
  }[] | undefined;
10132
10142
  required?: boolean | undefined;
@@ -10141,7 +10151,7 @@ declare function init(config: AuthHeroConfig): {
10141
10151
  hint?: string | undefined;
10142
10152
  messages?: {
10143
10153
  text: string;
10144
- type: "error" | "success" | "info" | "warning";
10154
+ type: "success" | "error" | "info" | "warning";
10145
10155
  id?: number | undefined;
10146
10156
  }[] | undefined;
10147
10157
  required?: boolean | undefined;
@@ -10162,7 +10172,7 @@ declare function init(config: AuthHeroConfig): {
10162
10172
  hint?: string | undefined;
10163
10173
  messages?: {
10164
10174
  text: string;
10165
- type: "error" | "success" | "info" | "warning";
10175
+ type: "success" | "error" | "info" | "warning";
10166
10176
  id?: number | undefined;
10167
10177
  }[] | undefined;
10168
10178
  required?: boolean | undefined;
@@ -10187,7 +10197,7 @@ declare function init(config: AuthHeroConfig): {
10187
10197
  hint?: string | undefined;
10188
10198
  messages?: {
10189
10199
  text: string;
10190
- type: "error" | "success" | "info" | "warning";
10200
+ type: "success" | "error" | "info" | "warning";
10191
10201
  id?: number | undefined;
10192
10202
  }[] | undefined;
10193
10203
  required?: boolean | undefined;
@@ -10208,7 +10218,7 @@ declare function init(config: AuthHeroConfig): {
10208
10218
  hint?: string | undefined;
10209
10219
  messages?: {
10210
10220
  text: string;
10211
- type: "error" | "success" | "info" | "warning";
10221
+ type: "success" | "error" | "info" | "warning";
10212
10222
  id?: number | undefined;
10213
10223
  }[] | undefined;
10214
10224
  required?: boolean | undefined;
@@ -10228,7 +10238,7 @@ declare function init(config: AuthHeroConfig): {
10228
10238
  hint?: string | undefined;
10229
10239
  messages?: {
10230
10240
  text: string;
10231
- type: "error" | "success" | "info" | "warning";
10241
+ type: "success" | "error" | "info" | "warning";
10232
10242
  id?: number | undefined;
10233
10243
  }[] | undefined;
10234
10244
  required?: boolean | undefined;
@@ -10247,7 +10257,7 @@ declare function init(config: AuthHeroConfig): {
10247
10257
  hint?: string | undefined;
10248
10258
  messages?: {
10249
10259
  text: string;
10250
- type: "error" | "success" | "info" | "warning";
10260
+ type: "success" | "error" | "info" | "warning";
10251
10261
  id?: number | undefined;
10252
10262
  }[] | undefined;
10253
10263
  required?: boolean | undefined;
@@ -10269,7 +10279,7 @@ declare function init(config: AuthHeroConfig): {
10269
10279
  hint?: string | undefined;
10270
10280
  messages?: {
10271
10281
  text: string;
10272
- type: "error" | "success" | "info" | "warning";
10282
+ type: "success" | "error" | "info" | "warning";
10273
10283
  id?: number | undefined;
10274
10284
  }[] | undefined;
10275
10285
  required?: boolean | undefined;
@@ -10291,7 +10301,7 @@ declare function init(config: AuthHeroConfig): {
10291
10301
  hint?: string | undefined;
10292
10302
  messages?: {
10293
10303
  text: string;
10294
- type: "error" | "success" | "info" | "warning";
10304
+ type: "success" | "error" | "info" | "warning";
10295
10305
  id?: number | undefined;
10296
10306
  }[] | undefined;
10297
10307
  required?: boolean | undefined;
@@ -10310,7 +10320,7 @@ declare function init(config: AuthHeroConfig): {
10310
10320
  hint?: string | undefined;
10311
10321
  messages?: {
10312
10322
  text: string;
10313
- type: "error" | "success" | "info" | "warning";
10323
+ type: "success" | "error" | "info" | "warning";
10314
10324
  id?: number | undefined;
10315
10325
  }[] | undefined;
10316
10326
  required?: boolean | undefined;
@@ -10337,7 +10347,7 @@ declare function init(config: AuthHeroConfig): {
10337
10347
  hint?: string | undefined;
10338
10348
  messages?: {
10339
10349
  text: string;
10340
- type: "error" | "success" | "info" | "warning";
10350
+ type: "success" | "error" | "info" | "warning";
10341
10351
  id?: number | undefined;
10342
10352
  }[] | undefined;
10343
10353
  required?: boolean | undefined;
@@ -10358,7 +10368,7 @@ declare function init(config: AuthHeroConfig): {
10358
10368
  hint?: string | undefined;
10359
10369
  messages?: {
10360
10370
  text: string;
10361
- type: "error" | "success" | "info" | "warning";
10371
+ type: "success" | "error" | "info" | "warning";
10362
10372
  id?: number | undefined;
10363
10373
  }[] | undefined;
10364
10374
  required?: boolean | undefined;
@@ -10381,7 +10391,7 @@ declare function init(config: AuthHeroConfig): {
10381
10391
  hint?: string | undefined;
10382
10392
  messages?: {
10383
10393
  text: string;
10384
- type: "error" | "success" | "info" | "warning";
10394
+ type: "success" | "error" | "info" | "warning";
10385
10395
  id?: number | undefined;
10386
10396
  }[] | undefined;
10387
10397
  required?: boolean | undefined;
@@ -10612,7 +10622,7 @@ declare function init(config: AuthHeroConfig): {
10612
10622
  hint?: string | undefined;
10613
10623
  messages?: {
10614
10624
  text: string;
10615
- type: "error" | "success" | "info" | "warning";
10625
+ type: "success" | "error" | "info" | "warning";
10616
10626
  id?: number | undefined;
10617
10627
  }[] | undefined;
10618
10628
  required?: boolean | undefined;
@@ -10630,7 +10640,7 @@ declare function init(config: AuthHeroConfig): {
10630
10640
  hint?: string | undefined;
10631
10641
  messages?: {
10632
10642
  text: string;
10633
- type: "error" | "success" | "info" | "warning";
10643
+ type: "success" | "error" | "info" | "warning";
10634
10644
  id?: number | undefined;
10635
10645
  }[] | undefined;
10636
10646
  required?: boolean | undefined;
@@ -10654,7 +10664,7 @@ declare function init(config: AuthHeroConfig): {
10654
10664
  hint?: string | undefined;
10655
10665
  messages?: {
10656
10666
  text: string;
10657
- type: "error" | "success" | "info" | "warning";
10667
+ type: "success" | "error" | "info" | "warning";
10658
10668
  id?: number | undefined;
10659
10669
  }[] | undefined;
10660
10670
  required?: boolean | undefined;
@@ -10678,7 +10688,7 @@ declare function init(config: AuthHeroConfig): {
10678
10688
  hint?: string | undefined;
10679
10689
  messages?: {
10680
10690
  text: string;
10681
- type: "error" | "success" | "info" | "warning";
10691
+ type: "success" | "error" | "info" | "warning";
10682
10692
  id?: number | undefined;
10683
10693
  }[] | undefined;
10684
10694
  required?: boolean | undefined;
@@ -10702,7 +10712,7 @@ declare function init(config: AuthHeroConfig): {
10702
10712
  hint?: string | undefined;
10703
10713
  messages?: {
10704
10714
  text: string;
10705
- type: "error" | "success" | "info" | "warning";
10715
+ type: "success" | "error" | "info" | "warning";
10706
10716
  id?: number | undefined;
10707
10717
  }[] | undefined;
10708
10718
  required?: boolean | undefined;
@@ -10731,7 +10741,7 @@ declare function init(config: AuthHeroConfig): {
10731
10741
  hint?: string | undefined;
10732
10742
  messages?: {
10733
10743
  text: string;
10734
- type: "error" | "success" | "info" | "warning";
10744
+ type: "success" | "error" | "info" | "warning";
10735
10745
  id?: number | undefined;
10736
10746
  }[] | undefined;
10737
10747
  required?: boolean | undefined;
@@ -10746,7 +10756,7 @@ declare function init(config: AuthHeroConfig): {
10746
10756
  hint?: string | undefined;
10747
10757
  messages?: {
10748
10758
  text: string;
10749
- type: "error" | "success" | "info" | "warning";
10759
+ type: "success" | "error" | "info" | "warning";
10750
10760
  id?: number | undefined;
10751
10761
  }[] | undefined;
10752
10762
  required?: boolean | undefined;
@@ -10767,7 +10777,7 @@ declare function init(config: AuthHeroConfig): {
10767
10777
  hint?: string | undefined;
10768
10778
  messages?: {
10769
10779
  text: string;
10770
- type: "error" | "success" | "info" | "warning";
10780
+ type: "success" | "error" | "info" | "warning";
10771
10781
  id?: number | undefined;
10772
10782
  }[] | undefined;
10773
10783
  required?: boolean | undefined;
@@ -10792,7 +10802,7 @@ declare function init(config: AuthHeroConfig): {
10792
10802
  hint?: string | undefined;
10793
10803
  messages?: {
10794
10804
  text: string;
10795
- type: "error" | "success" | "info" | "warning";
10805
+ type: "success" | "error" | "info" | "warning";
10796
10806
  id?: number | undefined;
10797
10807
  }[] | undefined;
10798
10808
  required?: boolean | undefined;
@@ -10813,7 +10823,7 @@ declare function init(config: AuthHeroConfig): {
10813
10823
  hint?: string | undefined;
10814
10824
  messages?: {
10815
10825
  text: string;
10816
- type: "error" | "success" | "info" | "warning";
10826
+ type: "success" | "error" | "info" | "warning";
10817
10827
  id?: number | undefined;
10818
10828
  }[] | undefined;
10819
10829
  required?: boolean | undefined;
@@ -10833,7 +10843,7 @@ declare function init(config: AuthHeroConfig): {
10833
10843
  hint?: string | undefined;
10834
10844
  messages?: {
10835
10845
  text: string;
10836
- type: "error" | "success" | "info" | "warning";
10846
+ type: "success" | "error" | "info" | "warning";
10837
10847
  id?: number | undefined;
10838
10848
  }[] | undefined;
10839
10849
  required?: boolean | undefined;
@@ -10852,7 +10862,7 @@ declare function init(config: AuthHeroConfig): {
10852
10862
  hint?: string | undefined;
10853
10863
  messages?: {
10854
10864
  text: string;
10855
- type: "error" | "success" | "info" | "warning";
10865
+ type: "success" | "error" | "info" | "warning";
10856
10866
  id?: number | undefined;
10857
10867
  }[] | undefined;
10858
10868
  required?: boolean | undefined;
@@ -10874,7 +10884,7 @@ declare function init(config: AuthHeroConfig): {
10874
10884
  hint?: string | undefined;
10875
10885
  messages?: {
10876
10886
  text: string;
10877
- type: "error" | "success" | "info" | "warning";
10887
+ type: "success" | "error" | "info" | "warning";
10878
10888
  id?: number | undefined;
10879
10889
  }[] | undefined;
10880
10890
  required?: boolean | undefined;
@@ -10896,7 +10906,7 @@ declare function init(config: AuthHeroConfig): {
10896
10906
  hint?: string | undefined;
10897
10907
  messages?: {
10898
10908
  text: string;
10899
- type: "error" | "success" | "info" | "warning";
10909
+ type: "success" | "error" | "info" | "warning";
10900
10910
  id?: number | undefined;
10901
10911
  }[] | undefined;
10902
10912
  required?: boolean | undefined;
@@ -10915,7 +10925,7 @@ declare function init(config: AuthHeroConfig): {
10915
10925
  hint?: string | undefined;
10916
10926
  messages?: {
10917
10927
  text: string;
10918
- type: "error" | "success" | "info" | "warning";
10928
+ type: "success" | "error" | "info" | "warning";
10919
10929
  id?: number | undefined;
10920
10930
  }[] | undefined;
10921
10931
  required?: boolean | undefined;
@@ -10942,7 +10952,7 @@ declare function init(config: AuthHeroConfig): {
10942
10952
  hint?: string | undefined;
10943
10953
  messages?: {
10944
10954
  text: string;
10945
- type: "error" | "success" | "info" | "warning";
10955
+ type: "success" | "error" | "info" | "warning";
10946
10956
  id?: number | undefined;
10947
10957
  }[] | undefined;
10948
10958
  required?: boolean | undefined;
@@ -10963,7 +10973,7 @@ declare function init(config: AuthHeroConfig): {
10963
10973
  hint?: string | undefined;
10964
10974
  messages?: {
10965
10975
  text: string;
10966
- type: "error" | "success" | "info" | "warning";
10976
+ type: "success" | "error" | "info" | "warning";
10967
10977
  id?: number | undefined;
10968
10978
  }[] | undefined;
10969
10979
  required?: boolean | undefined;
@@ -10986,7 +10996,7 @@ declare function init(config: AuthHeroConfig): {
10986
10996
  hint?: string | undefined;
10987
10997
  messages?: {
10988
10998
  text: string;
10989
- type: "error" | "success" | "info" | "warning";
10999
+ type: "success" | "error" | "info" | "warning";
10990
11000
  id?: number | undefined;
10991
11001
  }[] | undefined;
10992
11002
  required?: boolean | undefined;
@@ -11292,7 +11302,7 @@ declare function init(config: AuthHeroConfig): {
11292
11302
  };
11293
11303
  };
11294
11304
  output: {
11295
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11305
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11296
11306
  language: string;
11297
11307
  }[];
11298
11308
  outputFormat: "json";
@@ -11330,7 +11340,7 @@ declare function init(config: AuthHeroConfig): {
11330
11340
  $get: {
11331
11341
  input: {
11332
11342
  param: {
11333
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11343
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11334
11344
  language: string;
11335
11345
  };
11336
11346
  } & {
@@ -11352,7 +11362,7 @@ declare function init(config: AuthHeroConfig): {
11352
11362
  $put: {
11353
11363
  input: {
11354
11364
  param: {
11355
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11365
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11356
11366
  language: string;
11357
11367
  };
11358
11368
  } & {
@@ -11376,7 +11386,7 @@ declare function init(config: AuthHeroConfig): {
11376
11386
  $delete: {
11377
11387
  input: {
11378
11388
  param: {
11379
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11389
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11380
11390
  language: string;
11381
11391
  };
11382
11392
  } & {
@@ -11472,7 +11482,7 @@ declare function init(config: AuthHeroConfig): {
11472
11482
  active?: boolean | undefined;
11473
11483
  } | undefined;
11474
11484
  signup?: {
11475
- status?: "required" | "optional" | "disabled" | undefined;
11485
+ status?: "optional" | "required" | "disabled" | undefined;
11476
11486
  verification?: {
11477
11487
  active?: boolean | undefined;
11478
11488
  } | undefined;
@@ -11489,7 +11499,7 @@ declare function init(config: AuthHeroConfig): {
11489
11499
  active?: boolean | undefined;
11490
11500
  } | undefined;
11491
11501
  signup?: {
11492
- status?: "required" | "optional" | "disabled" | undefined;
11502
+ status?: "optional" | "required" | "disabled" | undefined;
11493
11503
  } | undefined;
11494
11504
  validation?: {
11495
11505
  max_length?: number | undefined;
@@ -11506,7 +11516,7 @@ declare function init(config: AuthHeroConfig): {
11506
11516
  active?: boolean | undefined;
11507
11517
  } | undefined;
11508
11518
  signup?: {
11509
- status?: "required" | "optional" | "disabled" | undefined;
11519
+ status?: "optional" | "required" | "disabled" | undefined;
11510
11520
  } | undefined;
11511
11521
  } | undefined;
11512
11522
  } | undefined;
@@ -11610,7 +11620,7 @@ declare function init(config: AuthHeroConfig): {
11610
11620
  active?: boolean | undefined;
11611
11621
  } | undefined;
11612
11622
  signup?: {
11613
- status?: "required" | "optional" | "disabled" | undefined;
11623
+ status?: "optional" | "required" | "disabled" | undefined;
11614
11624
  verification?: {
11615
11625
  active?: boolean | undefined;
11616
11626
  } | undefined;
@@ -11627,7 +11637,7 @@ declare function init(config: AuthHeroConfig): {
11627
11637
  active?: boolean | undefined;
11628
11638
  } | undefined;
11629
11639
  signup?: {
11630
- status?: "required" | "optional" | "disabled" | undefined;
11640
+ status?: "optional" | "required" | "disabled" | undefined;
11631
11641
  } | undefined;
11632
11642
  validation?: {
11633
11643
  max_length?: number | undefined;
@@ -11644,7 +11654,7 @@ declare function init(config: AuthHeroConfig): {
11644
11654
  active?: boolean | undefined;
11645
11655
  } | undefined;
11646
11656
  signup?: {
11647
- status?: "required" | "optional" | "disabled" | undefined;
11657
+ status?: "optional" | "required" | "disabled" | undefined;
11648
11658
  } | undefined;
11649
11659
  } | undefined;
11650
11660
  } | undefined;
@@ -11764,7 +11774,7 @@ declare function init(config: AuthHeroConfig): {
11764
11774
  active?: boolean | undefined;
11765
11775
  } | undefined;
11766
11776
  signup?: {
11767
- status?: "required" | "optional" | "disabled" | undefined;
11777
+ status?: "optional" | "required" | "disabled" | undefined;
11768
11778
  verification?: {
11769
11779
  active?: boolean | undefined;
11770
11780
  } | undefined;
@@ -11781,7 +11791,7 @@ declare function init(config: AuthHeroConfig): {
11781
11791
  active?: boolean | undefined;
11782
11792
  } | undefined;
11783
11793
  signup?: {
11784
- status?: "required" | "optional" | "disabled" | undefined;
11794
+ status?: "optional" | "required" | "disabled" | undefined;
11785
11795
  } | undefined;
11786
11796
  validation?: {
11787
11797
  max_length?: number | undefined;
@@ -11798,7 +11808,7 @@ declare function init(config: AuthHeroConfig): {
11798
11808
  active?: boolean | undefined;
11799
11809
  } | undefined;
11800
11810
  signup?: {
11801
- status?: "required" | "optional" | "disabled" | undefined;
11811
+ status?: "optional" | "required" | "disabled" | undefined;
11802
11812
  } | undefined;
11803
11813
  } | undefined;
11804
11814
  } | undefined;
@@ -11947,7 +11957,7 @@ declare function init(config: AuthHeroConfig): {
11947
11957
  active?: boolean | undefined;
11948
11958
  } | undefined;
11949
11959
  signup?: {
11950
- status?: "required" | "optional" | "disabled" | undefined;
11960
+ status?: "optional" | "required" | "disabled" | undefined;
11951
11961
  verification?: {
11952
11962
  active?: boolean | undefined;
11953
11963
  } | undefined;
@@ -11964,7 +11974,7 @@ declare function init(config: AuthHeroConfig): {
11964
11974
  active?: boolean | undefined;
11965
11975
  } | undefined;
11966
11976
  signup?: {
11967
- status?: "required" | "optional" | "disabled" | undefined;
11977
+ status?: "optional" | "required" | "disabled" | undefined;
11968
11978
  } | undefined;
11969
11979
  validation?: {
11970
11980
  max_length?: number | undefined;
@@ -11981,7 +11991,7 @@ declare function init(config: AuthHeroConfig): {
11981
11991
  active?: boolean | undefined;
11982
11992
  } | undefined;
11983
11993
  signup?: {
11984
- status?: "required" | "optional" | "disabled" | undefined;
11994
+ status?: "optional" | "required" | "disabled" | undefined;
11985
11995
  } | undefined;
11986
11996
  } | undefined;
11987
11997
  } | undefined;
@@ -12109,7 +12119,7 @@ declare function init(config: AuthHeroConfig): {
12109
12119
  active?: boolean | undefined;
12110
12120
  } | undefined;
12111
12121
  signup?: {
12112
- status?: "required" | "optional" | "disabled" | undefined;
12122
+ status?: "optional" | "required" | "disabled" | undefined;
12113
12123
  verification?: {
12114
12124
  active?: boolean | undefined;
12115
12125
  } | undefined;
@@ -12126,7 +12136,7 @@ declare function init(config: AuthHeroConfig): {
12126
12136
  active?: boolean | undefined;
12127
12137
  } | undefined;
12128
12138
  signup?: {
12129
- status?: "required" | "optional" | "disabled" | undefined;
12139
+ status?: "optional" | "required" | "disabled" | undefined;
12130
12140
  } | undefined;
12131
12141
  validation?: {
12132
12142
  max_length?: number | undefined;
@@ -12143,7 +12153,7 @@ declare function init(config: AuthHeroConfig): {
12143
12153
  active?: boolean | undefined;
12144
12154
  } | undefined;
12145
12155
  signup?: {
12146
- status?: "required" | "optional" | "disabled" | undefined;
12156
+ status?: "optional" | "required" | "disabled" | undefined;
12147
12157
  } | undefined;
12148
12158
  } | undefined;
12149
12159
  } | undefined;
@@ -12259,7 +12269,7 @@ declare function init(config: AuthHeroConfig): {
12259
12269
  };
12260
12270
  } | {
12261
12271
  mode: "inline";
12262
- status: "error" | "success";
12272
+ status: "success" | "error";
12263
12273
  connection_id: string;
12264
12274
  connection_name: string;
12265
12275
  strategy: string;
@@ -13299,7 +13309,7 @@ declare function init(config: AuthHeroConfig): {
13299
13309
  created_at: string;
13300
13310
  updated_at: string;
13301
13311
  name: string;
13302
- provider: "auth0" | "cognito" | "okta" | "oidc";
13312
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13303
13313
  connection: string;
13304
13314
  enabled: boolean;
13305
13315
  credentials: {
@@ -13331,7 +13341,7 @@ declare function init(config: AuthHeroConfig): {
13331
13341
  created_at: string;
13332
13342
  updated_at: string;
13333
13343
  name: string;
13334
- provider: "auth0" | "cognito" | "okta" | "oidc";
13344
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13335
13345
  connection: string;
13336
13346
  enabled: boolean;
13337
13347
  credentials: {
@@ -13357,7 +13367,7 @@ declare function init(config: AuthHeroConfig): {
13357
13367
  } & {
13358
13368
  json: {
13359
13369
  name: string;
13360
- provider: "auth0" | "cognito" | "okta" | "oidc";
13370
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13361
13371
  connection: string;
13362
13372
  credentials: {
13363
13373
  domain: string;
@@ -13374,7 +13384,7 @@ declare function init(config: AuthHeroConfig): {
13374
13384
  created_at: string;
13375
13385
  updated_at: string;
13376
13386
  name: string;
13377
- provider: "auth0" | "cognito" | "okta" | "oidc";
13387
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13378
13388
  connection: string;
13379
13389
  enabled: boolean;
13380
13390
  credentials: {
@@ -13405,7 +13415,7 @@ declare function init(config: AuthHeroConfig): {
13405
13415
  json: {
13406
13416
  id?: string | undefined;
13407
13417
  name?: string | undefined;
13408
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
13418
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
13409
13419
  connection?: string | undefined;
13410
13420
  enabled?: boolean | undefined;
13411
13421
  credentials?: {
@@ -13421,7 +13431,7 @@ declare function init(config: AuthHeroConfig): {
13421
13431
  created_at: string;
13422
13432
  updated_at: string;
13423
13433
  name: string;
13424
- provider: "auth0" | "cognito" | "okta" | "oidc";
13434
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13425
13435
  connection: string;
13426
13436
  enabled: boolean;
13427
13437
  credentials: {
@@ -13639,7 +13649,7 @@ declare function init(config: AuthHeroConfig): {
13639
13649
  };
13640
13650
  };
13641
13651
  output: {
13642
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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";
13652
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
13643
13653
  date: string;
13644
13654
  isMobile: boolean;
13645
13655
  log_id: string;
@@ -13678,7 +13688,7 @@ declare function init(config: AuthHeroConfig): {
13678
13688
  limit: number;
13679
13689
  length: number;
13680
13690
  logs: {
13681
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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";
13691
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
13682
13692
  date: string;
13683
13693
  isMobile: boolean;
13684
13694
  log_id: string;
@@ -13717,7 +13727,7 @@ declare function init(config: AuthHeroConfig): {
13717
13727
  next?: string | undefined;
13718
13728
  } | {
13719
13729
  logs: {
13720
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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";
13730
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
13721
13731
  date: string;
13722
13732
  isMobile: boolean;
13723
13733
  log_id: string;
@@ -13771,7 +13781,7 @@ declare function init(config: AuthHeroConfig): {
13771
13781
  };
13772
13782
  };
13773
13783
  output: {
13774
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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";
13784
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
13775
13785
  date: string;
13776
13786
  isMobile: boolean;
13777
13787
  log_id: string;
@@ -15016,7 +15026,7 @@ declare function init(config: AuthHeroConfig): {
15016
15026
  active?: boolean | undefined;
15017
15027
  } | undefined;
15018
15028
  signup?: {
15019
- status?: "required" | "optional" | "disabled" | undefined;
15029
+ status?: "optional" | "required" | "disabled" | undefined;
15020
15030
  verification?: {
15021
15031
  active?: boolean | undefined;
15022
15032
  } | undefined;
@@ -15033,7 +15043,7 @@ declare function init(config: AuthHeroConfig): {
15033
15043
  active?: boolean | undefined;
15034
15044
  } | undefined;
15035
15045
  signup?: {
15036
- status?: "required" | "optional" | "disabled" | undefined;
15046
+ status?: "optional" | "required" | "disabled" | undefined;
15037
15047
  } | undefined;
15038
15048
  validation?: {
15039
15049
  max_length?: number | undefined;
@@ -15050,7 +15060,7 @@ declare function init(config: AuthHeroConfig): {
15050
15060
  active?: boolean | undefined;
15051
15061
  } | undefined;
15052
15062
  signup?: {
15053
- status?: "required" | "optional" | "disabled" | undefined;
15063
+ status?: "optional" | "required" | "disabled" | undefined;
15054
15064
  } | undefined;
15055
15065
  } | undefined;
15056
15066
  } | undefined;
@@ -15174,7 +15184,7 @@ declare function init(config: AuthHeroConfig): {
15174
15184
  active?: boolean | undefined;
15175
15185
  } | undefined;
15176
15186
  signup?: {
15177
- status?: "required" | "optional" | "disabled" | undefined;
15187
+ status?: "optional" | "required" | "disabled" | undefined;
15178
15188
  verification?: {
15179
15189
  active?: boolean | undefined;
15180
15190
  } | undefined;
@@ -15191,7 +15201,7 @@ declare function init(config: AuthHeroConfig): {
15191
15201
  active?: boolean | undefined;
15192
15202
  } | undefined;
15193
15203
  signup?: {
15194
- status?: "required" | "optional" | "disabled" | undefined;
15204
+ status?: "optional" | "required" | "disabled" | undefined;
15195
15205
  } | undefined;
15196
15206
  validation?: {
15197
15207
  max_length?: number | undefined;
@@ -15208,7 +15218,7 @@ declare function init(config: AuthHeroConfig): {
15208
15218
  active?: boolean | undefined;
15209
15219
  } | undefined;
15210
15220
  signup?: {
15211
- status?: "required" | "optional" | "disabled" | undefined;
15221
+ status?: "optional" | "required" | "disabled" | undefined;
15212
15222
  } | undefined;
15213
15223
  } | undefined;
15214
15224
  } | undefined;
@@ -15341,26 +15351,32 @@ declare function init(config: AuthHeroConfig): {
15341
15351
  "/signing": {
15342
15352
  $get: {
15343
15353
  input: {
15354
+ query: {
15355
+ type?: "jwt_signing" | "saml_encryption" | undefined;
15356
+ };
15357
+ } & {
15344
15358
  header: {
15345
15359
  "tenant-id"?: string | undefined;
15346
15360
  };
15347
15361
  };
15348
15362
  output: {
15363
+ type: "jwt_signing" | "saml_encryption";
15349
15364
  kid: string;
15350
15365
  cert: string;
15351
15366
  fingerprint: string;
15352
15367
  thumbprint: string;
15353
- type: "jwt_signing" | "saml_encryption";
15368
+ revoked_at?: string | undefined;
15354
15369
  tenant_id?: string | undefined;
15355
- pkcs7?: string | undefined;
15370
+ connection?: string | undefined;
15356
15371
  current?: boolean | undefined;
15357
15372
  next?: boolean | undefined;
15358
15373
  previous?: boolean | undefined;
15359
15374
  current_since?: string | undefined;
15360
15375
  current_until?: string | undefined;
15361
15376
  revoked?: boolean | undefined;
15362
- revoked_at?: string | undefined;
15363
- connection?: string | undefined;
15377
+ expires_at?: string | undefined;
15378
+ expired?: boolean | undefined;
15379
+ inherited?: boolean | undefined;
15364
15380
  }[];
15365
15381
  outputFormat: "json";
15366
15382
  status: 200;
@@ -15373,27 +15389,33 @@ declare function init(config: AuthHeroConfig): {
15373
15389
  param: {
15374
15390
  kid: string;
15375
15391
  };
15392
+ } & {
15393
+ query: {
15394
+ type?: "jwt_signing" | "saml_encryption" | undefined;
15395
+ };
15376
15396
  } & {
15377
15397
  header: {
15378
15398
  "tenant-id"?: string | undefined;
15379
15399
  };
15380
15400
  };
15381
15401
  output: {
15402
+ type: "jwt_signing" | "saml_encryption";
15382
15403
  kid: string;
15383
15404
  cert: string;
15384
15405
  fingerprint: string;
15385
15406
  thumbprint: string;
15386
- type: "jwt_signing" | "saml_encryption";
15407
+ revoked_at?: string | undefined;
15387
15408
  tenant_id?: string | undefined;
15388
- pkcs7?: string | undefined;
15409
+ connection?: string | undefined;
15389
15410
  current?: boolean | undefined;
15390
15411
  next?: boolean | undefined;
15391
15412
  previous?: boolean | undefined;
15392
15413
  current_since?: string | undefined;
15393
15414
  current_until?: string | undefined;
15394
15415
  revoked?: boolean | undefined;
15395
- revoked_at?: string | undefined;
15396
- connection?: string | undefined;
15416
+ expires_at?: string | undefined;
15417
+ expired?: boolean | undefined;
15418
+ inherited?: boolean | undefined;
15397
15419
  };
15398
15420
  outputFormat: "json";
15399
15421
  status: 200;
@@ -15403,15 +15425,80 @@ declare function init(config: AuthHeroConfig): {
15403
15425
  "/signing/rotate": {
15404
15426
  $post: {
15405
15427
  input: {
15428
+ query: {
15429
+ type?: "jwt_signing" | "saml_encryption" | undefined;
15430
+ validity_days?: unknown;
15431
+ activate_in_days?: unknown;
15432
+ grace_days?: unknown;
15433
+ };
15434
+ } & {
15406
15435
  header: {
15407
15436
  "tenant-id"?: string | undefined;
15408
15437
  };
15409
15438
  };
15410
- output: {};
15411
- outputFormat: string;
15439
+ output: {
15440
+ type: "jwt_signing" | "saml_encryption";
15441
+ kid: string;
15442
+ cert: string;
15443
+ fingerprint: string;
15444
+ thumbprint: string;
15445
+ revoked_at?: string | undefined;
15446
+ tenant_id?: string | undefined;
15447
+ connection?: string | undefined;
15448
+ current?: boolean | undefined;
15449
+ next?: boolean | undefined;
15450
+ previous?: boolean | undefined;
15451
+ current_since?: string | undefined;
15452
+ current_until?: string | undefined;
15453
+ revoked?: boolean | undefined;
15454
+ expires_at?: string | undefined;
15455
+ expired?: boolean | undefined;
15456
+ inherited?: boolean | undefined;
15457
+ };
15458
+ outputFormat: "json";
15412
15459
  status: 201;
15413
15460
  };
15414
15461
  };
15462
+ } & {
15463
+ "/signing/:kid/renew": {
15464
+ $post: {
15465
+ input: {
15466
+ param: {
15467
+ kid: string;
15468
+ };
15469
+ } & {
15470
+ query: {
15471
+ type?: "jwt_signing" | "saml_encryption" | undefined;
15472
+ validity_days?: unknown;
15473
+ };
15474
+ } & {
15475
+ header: {
15476
+ "tenant-id"?: string | undefined;
15477
+ };
15478
+ };
15479
+ output: {
15480
+ type: "jwt_signing" | "saml_encryption";
15481
+ kid: string;
15482
+ cert: string;
15483
+ fingerprint: string;
15484
+ thumbprint: string;
15485
+ revoked_at?: string | undefined;
15486
+ tenant_id?: string | undefined;
15487
+ connection?: string | undefined;
15488
+ current?: boolean | undefined;
15489
+ next?: boolean | undefined;
15490
+ previous?: boolean | undefined;
15491
+ current_since?: string | undefined;
15492
+ current_until?: string | undefined;
15493
+ revoked?: boolean | undefined;
15494
+ expires_at?: string | undefined;
15495
+ expired?: boolean | undefined;
15496
+ inherited?: boolean | undefined;
15497
+ };
15498
+ outputFormat: "json";
15499
+ status: 200;
15500
+ };
15501
+ };
15415
15502
  } & {
15416
15503
  "/signing/:kid/revoke": {
15417
15504
  $put: {
@@ -15419,6 +15506,11 @@ declare function init(config: AuthHeroConfig): {
15419
15506
  param: {
15420
15507
  kid: string;
15421
15508
  };
15509
+ } & {
15510
+ query: {
15511
+ type?: "jwt_signing" | "saml_encryption" | undefined;
15512
+ validity_days?: unknown;
15513
+ };
15422
15514
  } & {
15423
15515
  header: {
15424
15516
  "tenant-id"?: string | undefined;
@@ -16243,11 +16335,9 @@ declare function init(config: AuthHeroConfig): {
16243
16335
  };
16244
16336
  };
16245
16337
  output: {
16246
- id: string;
16247
16338
  created_at: string;
16339
+ id: string;
16248
16340
  user_id: string;
16249
- client_id: string;
16250
- rotating: boolean;
16251
16341
  device: {
16252
16342
  initial_user_agent: string;
16253
16343
  initial_ip: string;
@@ -16256,6 +16346,8 @@ declare function init(config: AuthHeroConfig): {
16256
16346
  last_ip: string;
16257
16347
  last_asn: string;
16258
16348
  };
16349
+ client_id: string;
16350
+ rotating: boolean;
16259
16351
  login_id: string;
16260
16352
  resource_servers: {
16261
16353
  audience: string;
@@ -16265,20 +16357,21 @@ declare function init(config: AuthHeroConfig): {
16265
16357
  expires_at?: string | undefined;
16266
16358
  idle_expires_at?: string | undefined;
16267
16359
  session_id?: string | undefined;
16268
- organization?: string | undefined;
16269
16360
  auth_connection?: string | undefined;
16270
16361
  auth_strategy?: {
16271
16362
  strategy: string;
16272
16363
  strategy_type: string;
16273
16364
  } | undefined;
16365
+ organization?: string | undefined;
16274
16366
  last_exchanged_at?: string | undefined;
16275
16367
  }[] | {
16368
+ start: number;
16369
+ limit: number;
16370
+ length: number;
16276
16371
  tokens: {
16277
- id: string;
16278
16372
  created_at: string;
16373
+ id: string;
16279
16374
  user_id: string;
16280
- client_id: string;
16281
- rotating: boolean;
16282
16375
  device: {
16283
16376
  initial_user_agent: string;
16284
16377
  initial_ip: string;
@@ -16287,6 +16380,8 @@ declare function init(config: AuthHeroConfig): {
16287
16380
  last_ip: string;
16288
16381
  last_asn: string;
16289
16382
  };
16383
+ client_id: string;
16384
+ rotating: boolean;
16290
16385
  login_id: string;
16291
16386
  resource_servers: {
16292
16387
  audience: string;
@@ -16296,25 +16391,21 @@ declare function init(config: AuthHeroConfig): {
16296
16391
  expires_at?: string | undefined;
16297
16392
  idle_expires_at?: string | undefined;
16298
16393
  session_id?: string | undefined;
16299
- organization?: string | undefined;
16300
16394
  auth_connection?: string | undefined;
16301
16395
  auth_strategy?: {
16302
16396
  strategy: string;
16303
16397
  strategy_type: string;
16304
16398
  } | undefined;
16399
+ organization?: string | undefined;
16305
16400
  last_exchanged_at?: string | undefined;
16306
16401
  }[];
16402
+ total?: number | undefined;
16307
16403
  next?: string | undefined;
16308
16404
  } | {
16309
- start: number;
16310
- limit: number;
16311
- length: number;
16312
16405
  tokens: {
16313
- id: string;
16314
16406
  created_at: string;
16407
+ id: string;
16315
16408
  user_id: string;
16316
- client_id: string;
16317
- rotating: boolean;
16318
16409
  device: {
16319
16410
  initial_user_agent: string;
16320
16411
  initial_ip: string;
@@ -16323,6 +16414,8 @@ declare function init(config: AuthHeroConfig): {
16323
16414
  last_ip: string;
16324
16415
  last_asn: string;
16325
16416
  };
16417
+ client_id: string;
16418
+ rotating: boolean;
16326
16419
  login_id: string;
16327
16420
  resource_servers: {
16328
16421
  audience: string;
@@ -16332,15 +16425,14 @@ declare function init(config: AuthHeroConfig): {
16332
16425
  expires_at?: string | undefined;
16333
16426
  idle_expires_at?: string | undefined;
16334
16427
  session_id?: string | undefined;
16335
- organization?: string | undefined;
16336
16428
  auth_connection?: string | undefined;
16337
16429
  auth_strategy?: {
16338
16430
  strategy: string;
16339
16431
  strategy_type: string;
16340
16432
  } | undefined;
16433
+ organization?: string | undefined;
16341
16434
  last_exchanged_at?: string | undefined;
16342
16435
  }[];
16343
- total?: number | undefined;
16344
16436
  next?: string | undefined;
16345
16437
  };
16346
16438
  outputFormat: "json";
@@ -16389,7 +16481,7 @@ declare function init(config: AuthHeroConfig): {
16389
16481
  };
16390
16482
  };
16391
16483
  output: {
16392
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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";
16484
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
16393
16485
  date: string;
16394
16486
  isMobile: boolean;
16395
16487
  log_id: string;
@@ -16428,7 +16520,7 @@ declare function init(config: AuthHeroConfig): {
16428
16520
  limit: number;
16429
16521
  length: number;
16430
16522
  logs: {
16431
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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";
16523
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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";
16432
16524
  date: string;
16433
16525
  isMobile: boolean;
16434
16526
  log_id: string;
@@ -16747,7 +16839,7 @@ declare function init(config: AuthHeroConfig): {
16747
16839
  };
16748
16840
  } & {
16749
16841
  json: {
16750
- 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";
16842
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16751
16843
  body: string;
16752
16844
  from: string;
16753
16845
  subject: string;
@@ -16768,7 +16860,7 @@ declare function init(config: AuthHeroConfig): {
16768
16860
  };
16769
16861
  } & {
16770
16862
  json: {
16771
- 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";
16863
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16772
16864
  body: string;
16773
16865
  from: string;
16774
16866
  subject: string;
@@ -16780,7 +16872,7 @@ declare function init(config: AuthHeroConfig): {
16780
16872
  };
16781
16873
  };
16782
16874
  output: {
16783
- 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";
16875
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16784
16876
  body: string;
16785
16877
  from: string;
16786
16878
  subject: string;
@@ -16803,7 +16895,7 @@ declare function init(config: AuthHeroConfig): {
16803
16895
  };
16804
16896
  };
16805
16897
  output: {
16806
- 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";
16898
+ name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16807
16899
  body: string;
16808
16900
  subject: string;
16809
16901
  }[];
@@ -16816,7 +16908,7 @@ declare function init(config: AuthHeroConfig): {
16816
16908
  $get: {
16817
16909
  input: {
16818
16910
  param: {
16819
- 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";
16911
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16820
16912
  };
16821
16913
  } & {
16822
16914
  header: {
@@ -16829,7 +16921,7 @@ declare function init(config: AuthHeroConfig): {
16829
16921
  } | {
16830
16922
  input: {
16831
16923
  param: {
16832
- 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";
16924
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16833
16925
  };
16834
16926
  } & {
16835
16927
  header: {
@@ -16837,7 +16929,7 @@ declare function init(config: AuthHeroConfig): {
16837
16929
  };
16838
16930
  };
16839
16931
  output: {
16840
- 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";
16932
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16841
16933
  body: string;
16842
16934
  from: string;
16843
16935
  subject: string;
@@ -16856,7 +16948,7 @@ declare function init(config: AuthHeroConfig): {
16856
16948
  $put: {
16857
16949
  input: {
16858
16950
  param: {
16859
- 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";
16951
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16860
16952
  };
16861
16953
  } & {
16862
16954
  header: {
@@ -16864,7 +16956,7 @@ declare function init(config: AuthHeroConfig): {
16864
16956
  };
16865
16957
  } & {
16866
16958
  json: {
16867
- 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";
16959
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16868
16960
  body: string;
16869
16961
  subject: string;
16870
16962
  syntax?: "liquid" | undefined;
@@ -16876,7 +16968,7 @@ declare function init(config: AuthHeroConfig): {
16876
16968
  };
16877
16969
  };
16878
16970
  output: {
16879
- 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";
16971
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16880
16972
  body: string;
16881
16973
  from: string;
16882
16974
  subject: string;
@@ -16895,7 +16987,7 @@ declare function init(config: AuthHeroConfig): {
16895
16987
  $patch: {
16896
16988
  input: {
16897
16989
  param: {
16898
- 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";
16990
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16899
16991
  };
16900
16992
  } & {
16901
16993
  header: {
@@ -16903,7 +16995,7 @@ declare function init(config: AuthHeroConfig): {
16903
16995
  };
16904
16996
  } & {
16905
16997
  json: {
16906
- 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;
16998
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16907
16999
  body?: string | undefined;
16908
17000
  from?: string | undefined;
16909
17001
  subject?: string | undefined;
@@ -16920,7 +17012,7 @@ declare function init(config: AuthHeroConfig): {
16920
17012
  } | {
16921
17013
  input: {
16922
17014
  param: {
16923
- 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";
17015
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16924
17016
  };
16925
17017
  } & {
16926
17018
  header: {
@@ -16928,7 +17020,7 @@ declare function init(config: AuthHeroConfig): {
16928
17020
  };
16929
17021
  } & {
16930
17022
  json: {
16931
- 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;
17023
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16932
17024
  body?: string | undefined;
16933
17025
  from?: string | undefined;
16934
17026
  subject?: string | undefined;
@@ -16940,7 +17032,7 @@ declare function init(config: AuthHeroConfig): {
16940
17032
  };
16941
17033
  };
16942
17034
  output: {
16943
- 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";
17035
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16944
17036
  body: string;
16945
17037
  from: string;
16946
17038
  subject: string;
@@ -16959,7 +17051,7 @@ declare function init(config: AuthHeroConfig): {
16959
17051
  $delete: {
16960
17052
  input: {
16961
17053
  param: {
16962
- 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";
17054
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16963
17055
  };
16964
17056
  } & {
16965
17057
  header: {
@@ -16972,7 +17064,7 @@ declare function init(config: AuthHeroConfig): {
16972
17064
  } | {
16973
17065
  input: {
16974
17066
  param: {
16975
- 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";
17067
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16976
17068
  };
16977
17069
  } & {
16978
17070
  header: {
@@ -16989,7 +17081,7 @@ declare function init(config: AuthHeroConfig): {
16989
17081
  $post: {
16990
17082
  input: {
16991
17083
  param: {
16992
- 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";
17084
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16993
17085
  };
16994
17086
  } & {
16995
17087
  header: {
@@ -17272,7 +17364,7 @@ declare function init(config: AuthHeroConfig): {
17272
17364
  type: "auth0_managed_certs" | "self_managed_certs";
17273
17365
  custom_domain_id: string;
17274
17366
  primary: boolean;
17275
- status: "disabled" | "pending" | "ready" | "pending_verification";
17367
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17276
17368
  verification_method?: "txt" | undefined;
17277
17369
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17278
17370
  domain_metadata?: {
@@ -17313,7 +17405,7 @@ declare function init(config: AuthHeroConfig): {
17313
17405
  type: "auth0_managed_certs" | "self_managed_certs";
17314
17406
  custom_domain_id: string;
17315
17407
  primary: boolean;
17316
- status: "disabled" | "pending" | "ready" | "pending_verification";
17408
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17317
17409
  verification_method?: "txt" | undefined;
17318
17410
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17319
17411
  domain_metadata?: {
@@ -17377,7 +17469,7 @@ declare function init(config: AuthHeroConfig): {
17377
17469
  type: "auth0_managed_certs" | "self_managed_certs";
17378
17470
  custom_domain_id: string;
17379
17471
  primary: boolean;
17380
- status: "disabled" | "pending" | "ready" | "pending_verification";
17472
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17381
17473
  verification_method?: "txt" | undefined;
17382
17474
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17383
17475
  domain_metadata?: {
@@ -17424,7 +17516,7 @@ declare function init(config: AuthHeroConfig): {
17424
17516
  type: "auth0_managed_certs" | "self_managed_certs";
17425
17517
  custom_domain_id: string;
17426
17518
  primary: boolean;
17427
- status: "disabled" | "pending" | "ready" | "pending_verification";
17519
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17428
17520
  verification_method?: "txt" | undefined;
17429
17521
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17430
17522
  domain_metadata?: {
@@ -17470,7 +17562,7 @@ declare function init(config: AuthHeroConfig): {
17470
17562
  type: "auth0_managed_certs" | "self_managed_certs";
17471
17563
  custom_domain_id: string;
17472
17564
  primary: boolean;
17473
- status: "disabled" | "pending" | "ready" | "pending_verification";
17565
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17474
17566
  verification_method?: "txt" | undefined;
17475
17567
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17476
17568
  domain_metadata?: {
@@ -17511,7 +17603,7 @@ declare function init(config: AuthHeroConfig): {
17511
17603
  type: "auth0_managed_certs" | "self_managed_certs";
17512
17604
  custom_domain_id: string;
17513
17605
  primary: boolean;
17514
- status: "disabled" | "pending" | "ready" | "pending_verification";
17606
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17515
17607
  verification_method?: "txt" | undefined;
17516
17608
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17517
17609
  domain_metadata?: {
@@ -19648,18 +19740,18 @@ declare function init(config: AuthHeroConfig): {
19648
19740
  send: "code" | "link";
19649
19741
  authParams: {
19650
19742
  username?: string | undefined;
19651
- organization?: string | undefined;
19652
- audience?: string | undefined;
19653
19743
  scope?: string | undefined;
19744
+ audience?: string | undefined;
19745
+ state?: string | undefined;
19746
+ act_as?: string | undefined;
19654
19747
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19655
19748
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19656
- state?: string | undefined;
19657
- code_challenge?: string | undefined;
19658
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19659
19749
  redirect_uri?: string | undefined;
19750
+ organization?: string | undefined;
19660
19751
  nonce?: string | undefined;
19661
- act_as?: string | undefined;
19662
19752
  prompt?: string | undefined;
19753
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19754
+ code_challenge?: string | undefined;
19663
19755
  ui_locales?: string | undefined;
19664
19756
  max_age?: number | undefined;
19665
19757
  acr_values?: string | undefined;
@@ -19684,18 +19776,18 @@ declare function init(config: AuthHeroConfig): {
19684
19776
  send: "code" | "link";
19685
19777
  authParams: {
19686
19778
  username?: string | undefined;
19687
- organization?: string | undefined;
19688
- audience?: string | undefined;
19689
19779
  scope?: string | undefined;
19780
+ audience?: string | undefined;
19781
+ state?: string | undefined;
19782
+ act_as?: string | undefined;
19690
19783
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19691
19784
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19692
- state?: string | undefined;
19693
- code_challenge?: string | undefined;
19694
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19695
19785
  redirect_uri?: string | undefined;
19786
+ organization?: string | undefined;
19696
19787
  nonce?: string | undefined;
19697
- act_as?: string | undefined;
19698
19788
  prompt?: string | undefined;
19789
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19790
+ code_challenge?: string | undefined;
19699
19791
  ui_locales?: string | undefined;
19700
19792
  max_age?: number | undefined;
19701
19793
  acr_values?: string | undefined;
@@ -19926,6 +20018,8 @@ declare function init(config: AuthHeroConfig): {
19926
20018
  username: string;
19927
20019
  otp: string;
19928
20020
  realm: "email" | "sms";
20021
+ scope?: string | undefined;
20022
+ audience?: string | undefined;
19929
20023
  } | {
19930
20024
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19931
20025
  subject_token: string;
@@ -19973,6 +20067,8 @@ declare function init(config: AuthHeroConfig): {
19973
20067
  username: string;
19974
20068
  otp: string;
19975
20069
  realm: "email" | "sms";
20070
+ scope?: string | undefined;
20071
+ audience?: string | undefined;
19976
20072
  } | {
19977
20073
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
19978
20074
  subject_token: string;
@@ -20025,6 +20121,8 @@ declare function init(config: AuthHeroConfig): {
20025
20121
  username: string;
20026
20122
  otp: string;
20027
20123
  realm: "email" | "sms";
20124
+ scope?: string | undefined;
20125
+ audience?: string | undefined;
20028
20126
  } | {
20029
20127
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20030
20128
  subject_token: string;
@@ -20072,6 +20170,8 @@ declare function init(config: AuthHeroConfig): {
20072
20170
  username: string;
20073
20171
  otp: string;
20074
20172
  realm: "email" | "sms";
20173
+ scope?: string | undefined;
20174
+ audience?: string | undefined;
20075
20175
  } | {
20076
20176
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20077
20177
  subject_token: string;
@@ -20132,6 +20232,8 @@ declare function init(config: AuthHeroConfig): {
20132
20232
  username: string;
20133
20233
  otp: string;
20134
20234
  realm: "email" | "sms";
20235
+ scope?: string | undefined;
20236
+ audience?: string | undefined;
20135
20237
  } | {
20136
20238
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20137
20239
  subject_token: string;
@@ -20179,6 +20281,8 @@ declare function init(config: AuthHeroConfig): {
20179
20281
  username: string;
20180
20282
  otp: string;
20181
20283
  realm: "email" | "sms";
20284
+ scope?: string | undefined;
20285
+ audience?: string | undefined;
20182
20286
  } | {
20183
20287
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20184
20288
  subject_token: string;
@@ -20234,6 +20338,8 @@ declare function init(config: AuthHeroConfig): {
20234
20338
  username: string;
20235
20339
  otp: string;
20236
20340
  realm: "email" | "sms";
20341
+ scope?: string | undefined;
20342
+ audience?: string | undefined;
20237
20343
  } | {
20238
20344
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20239
20345
  subject_token: string;
@@ -20281,6 +20387,8 @@ declare function init(config: AuthHeroConfig): {
20281
20387
  username: string;
20282
20388
  otp: string;
20283
20389
  realm: "email" | "sms";
20390
+ scope?: string | undefined;
20391
+ audience?: string | undefined;
20284
20392
  } | {
20285
20393
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20286
20394
  subject_token: string;
@@ -20336,6 +20444,8 @@ declare function init(config: AuthHeroConfig): {
20336
20444
  username: string;
20337
20445
  otp: string;
20338
20446
  realm: "email" | "sms";
20447
+ scope?: string | undefined;
20448
+ audience?: string | undefined;
20339
20449
  } | {
20340
20450
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20341
20451
  subject_token: string;
@@ -20383,6 +20493,8 @@ declare function init(config: AuthHeroConfig): {
20383
20493
  username: string;
20384
20494
  otp: string;
20385
20495
  realm: "email" | "sms";
20496
+ scope?: string | undefined;
20497
+ audience?: string | undefined;
20386
20498
  } | {
20387
20499
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20388
20500
  subject_token: string;
@@ -21227,7 +21339,7 @@ declare function init(config: AuthHeroConfig): {
21227
21339
  } & {
21228
21340
  form: {
21229
21341
  username: string;
21230
- login_selection?: "password" | "code" | undefined;
21342
+ login_selection?: "code" | "password" | undefined;
21231
21343
  };
21232
21344
  };
21233
21345
  output: {};
@@ -21241,7 +21353,7 @@ declare function init(config: AuthHeroConfig): {
21241
21353
  } & {
21242
21354
  form: {
21243
21355
  username: string;
21244
- login_selection?: "password" | "code" | undefined;
21356
+ login_selection?: "code" | "password" | undefined;
21245
21357
  };
21246
21358
  };
21247
21359
  output: {};
@@ -21606,7 +21718,7 @@ declare function init(config: AuthHeroConfig): {
21606
21718
  $get: {
21607
21719
  input: {
21608
21720
  param: {
21609
- screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21721
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21610
21722
  };
21611
21723
  } & {
21612
21724
  query: {
@@ -21622,7 +21734,7 @@ declare function init(config: AuthHeroConfig): {
21622
21734
  } | {
21623
21735
  input: {
21624
21736
  param: {
21625
- screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21737
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21626
21738
  };
21627
21739
  } & {
21628
21740
  query: {
@@ -21638,7 +21750,7 @@ declare function init(config: AuthHeroConfig): {
21638
21750
  } | {
21639
21751
  input: {
21640
21752
  param: {
21641
- screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21753
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21642
21754
  };
21643
21755
  } & {
21644
21756
  query: {
@@ -21658,7 +21770,7 @@ declare function init(config: AuthHeroConfig): {
21658
21770
  $post: {
21659
21771
  input: {
21660
21772
  param: {
21661
- screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21773
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21662
21774
  };
21663
21775
  } & {
21664
21776
  query: {
@@ -21676,7 +21788,7 @@ declare function init(config: AuthHeroConfig): {
21676
21788
  } | {
21677
21789
  input: {
21678
21790
  param: {
21679
- screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21791
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21680
21792
  };
21681
21793
  } & {
21682
21794
  query: {