authhero 5.19.0 → 5.20.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 (45) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +2701 -107
  3. package/dist/authhero.d.ts +381 -214
  4. package/dist/authhero.mjs +7273 -6982
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/common.d.ts +8 -0
  8. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  9. package/dist/types/authentication-flows/token-exchange.d.ts +19 -0
  10. package/dist/types/emails/defaults/BlockedAccount.d.ts +1 -0
  11. package/dist/types/emails/defaults/ChangePassword.d.ts +6 -0
  12. package/dist/types/emails/defaults/EnrollmentEmail.d.ts +1 -0
  13. package/dist/types/emails/defaults/MfaOobCode.d.ts +1 -0
  14. package/dist/types/emails/defaults/PasswordReset.d.ts +5 -0
  15. package/dist/types/emails/defaults/StolenCredentials.d.ts +1 -0
  16. package/dist/types/emails/index.d.ts +21 -1
  17. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  18. package/dist/types/helpers/scopes-permissions.d.ts +1 -1
  19. package/dist/types/index.d.ts +381 -214
  20. package/dist/types/routes/auth-api/index.d.ts +137 -27
  21. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  22. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  23. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  24. package/dist/types/routes/auth-api/token.d.ts +120 -10
  25. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  26. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  27. package/dist/types/routes/management-api/actions.d.ts +4 -4
  28. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  29. package/dist/types/routes/management-api/clients.d.ts +7 -7
  30. package/dist/types/routes/management-api/connections.d.ts +1 -1
  31. package/dist/types/routes/management-api/email-templates.d.ts +88 -31
  32. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  33. package/dist/types/routes/management-api/forms.d.ts +126 -126
  34. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  35. package/dist/types/routes/management-api/index.d.ts +244 -187
  36. package/dist/types/routes/management-api/logs.d.ts +3 -3
  37. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  38. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  39. package/dist/types/routes/management-api/users.d.ts +2 -2
  40. package/dist/types/routes/universal-login/common.d.ts +2 -2
  41. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  42. package/dist/types/types/GrantFlowResult.d.ts +8 -0
  43. package/dist/types/utils/jwks.d.ts +2 -2
  44. package/dist/types/utils/jwt.d.ts +4 -0
  45. package/package.json +5 -5
@@ -2655,7 +2655,7 @@ declare function init(config: AuthHeroConfig): {
2655
2655
  };
2656
2656
  } & {
2657
2657
  json: {
2658
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2658
+ type: "push" | "email" | "phone" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
2659
2659
  phone_number?: string | undefined;
2660
2660
  totp_secret?: string | undefined;
2661
2661
  credential_id?: string | undefined;
@@ -2795,7 +2795,7 @@ declare function init(config: AuthHeroConfig): {
2795
2795
  };
2796
2796
  };
2797
2797
  output: {
2798
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2798
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2799
2799
  enabled: boolean;
2800
2800
  trial_expired?: boolean | undefined;
2801
2801
  }[];
@@ -2950,7 +2950,7 @@ declare function init(config: AuthHeroConfig): {
2950
2950
  $get: {
2951
2951
  input: {
2952
2952
  param: {
2953
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2953
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2954
2954
  };
2955
2955
  } & {
2956
2956
  header: {
@@ -2958,7 +2958,7 @@ declare function init(config: AuthHeroConfig): {
2958
2958
  };
2959
2959
  };
2960
2960
  output: {
2961
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2961
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2962
2962
  enabled: boolean;
2963
2963
  trial_expired?: boolean | undefined;
2964
2964
  };
@@ -2971,7 +2971,7 @@ declare function init(config: AuthHeroConfig): {
2971
2971
  $put: {
2972
2972
  input: {
2973
2973
  param: {
2974
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2974
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2975
2975
  };
2976
2976
  } & {
2977
2977
  header: {
@@ -2983,7 +2983,7 @@ declare function init(config: AuthHeroConfig): {
2983
2983
  };
2984
2984
  };
2985
2985
  output: {
2986
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2986
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2987
2987
  enabled: boolean;
2988
2988
  trial_expired?: boolean | undefined;
2989
2989
  };
@@ -3728,9 +3728,9 @@ declare function init(config: AuthHeroConfig): {
3728
3728
  invitee: {
3729
3729
  email?: string | undefined;
3730
3730
  };
3731
- id?: string | undefined;
3732
3731
  app_metadata?: Record<string, any> | undefined;
3733
3732
  user_metadata?: Record<string, any> | undefined;
3733
+ id?: string | undefined;
3734
3734
  connection_id?: string | undefined;
3735
3735
  roles?: string[] | undefined;
3736
3736
  ttl_sec?: number | undefined;
@@ -5159,7 +5159,7 @@ declare function init(config: AuthHeroConfig): {
5159
5159
  hint?: string | undefined;
5160
5160
  messages?: {
5161
5161
  text: string;
5162
- type: "error" | "success" | "info" | "warning";
5162
+ type: "success" | "error" | "info" | "warning";
5163
5163
  id?: number | undefined;
5164
5164
  }[] | undefined;
5165
5165
  required?: boolean | undefined;
@@ -5177,7 +5177,7 @@ declare function init(config: AuthHeroConfig): {
5177
5177
  hint?: string | undefined;
5178
5178
  messages?: {
5179
5179
  text: string;
5180
- type: "error" | "success" | "info" | "warning";
5180
+ type: "success" | "error" | "info" | "warning";
5181
5181
  id?: number | undefined;
5182
5182
  }[] | undefined;
5183
5183
  required?: boolean | undefined;
@@ -5201,7 +5201,7 @@ declare function init(config: AuthHeroConfig): {
5201
5201
  hint?: string | undefined;
5202
5202
  messages?: {
5203
5203
  text: string;
5204
- type: "error" | "success" | "info" | "warning";
5204
+ type: "success" | "error" | "info" | "warning";
5205
5205
  id?: number | undefined;
5206
5206
  }[] | undefined;
5207
5207
  required?: boolean | undefined;
@@ -5211,7 +5211,7 @@ declare function init(config: AuthHeroConfig): {
5211
5211
  value: string;
5212
5212
  label: string;
5213
5213
  }[] | undefined;
5214
- display?: "radio" | "checkbox" | undefined;
5214
+ display?: "checkbox" | "radio" | undefined;
5215
5215
  multiple?: boolean | undefined;
5216
5216
  default_value?: string | string[] | undefined;
5217
5217
  } | undefined;
@@ -5225,7 +5225,7 @@ declare function init(config: AuthHeroConfig): {
5225
5225
  hint?: string | undefined;
5226
5226
  messages?: {
5227
5227
  text: string;
5228
- type: "error" | "success" | "info" | "warning";
5228
+ type: "success" | "error" | "info" | "warning";
5229
5229
  id?: number | undefined;
5230
5230
  }[] | undefined;
5231
5231
  required?: boolean | undefined;
@@ -5254,7 +5254,7 @@ declare function init(config: AuthHeroConfig): {
5254
5254
  hint?: string | undefined;
5255
5255
  messages?: {
5256
5256
  text: string;
5257
- type: "error" | "success" | "info" | "warning";
5257
+ type: "success" | "error" | "info" | "warning";
5258
5258
  id?: number | undefined;
5259
5259
  }[] | undefined;
5260
5260
  required?: boolean | undefined;
@@ -5269,7 +5269,7 @@ declare function init(config: AuthHeroConfig): {
5269
5269
  hint?: string | undefined;
5270
5270
  messages?: {
5271
5271
  text: string;
5272
- type: "error" | "success" | "info" | "warning";
5272
+ type: "success" | "error" | "info" | "warning";
5273
5273
  id?: number | undefined;
5274
5274
  }[] | undefined;
5275
5275
  required?: boolean | undefined;
@@ -5290,7 +5290,7 @@ declare function init(config: AuthHeroConfig): {
5290
5290
  hint?: string | undefined;
5291
5291
  messages?: {
5292
5292
  text: string;
5293
- type: "error" | "success" | "info" | "warning";
5293
+ type: "success" | "error" | "info" | "warning";
5294
5294
  id?: number | undefined;
5295
5295
  }[] | undefined;
5296
5296
  required?: boolean | undefined;
@@ -5315,7 +5315,7 @@ declare function init(config: AuthHeroConfig): {
5315
5315
  hint?: string | undefined;
5316
5316
  messages?: {
5317
5317
  text: string;
5318
- type: "error" | "success" | "info" | "warning";
5318
+ type: "success" | "error" | "info" | "warning";
5319
5319
  id?: number | undefined;
5320
5320
  }[] | undefined;
5321
5321
  required?: boolean | undefined;
@@ -5334,7 +5334,7 @@ declare function init(config: AuthHeroConfig): {
5334
5334
  hint?: string | undefined;
5335
5335
  messages?: {
5336
5336
  text: string;
5337
- type: "error" | "success" | "info" | "warning";
5337
+ type: "success" | "error" | "info" | "warning";
5338
5338
  id?: number | undefined;
5339
5339
  }[] | undefined;
5340
5340
  required?: boolean | undefined;
@@ -5354,7 +5354,7 @@ declare function init(config: AuthHeroConfig): {
5354
5354
  hint?: string | undefined;
5355
5355
  messages?: {
5356
5356
  text: string;
5357
- type: "error" | "success" | "info" | "warning";
5357
+ type: "success" | "error" | "info" | "warning";
5358
5358
  id?: number | undefined;
5359
5359
  }[] | undefined;
5360
5360
  required?: boolean | undefined;
@@ -5373,7 +5373,7 @@ declare function init(config: AuthHeroConfig): {
5373
5373
  hint?: string | undefined;
5374
5374
  messages?: {
5375
5375
  text: string;
5376
- type: "error" | "success" | "info" | "warning";
5376
+ type: "success" | "error" | "info" | "warning";
5377
5377
  id?: number | undefined;
5378
5378
  }[] | undefined;
5379
5379
  required?: boolean | undefined;
@@ -5395,7 +5395,7 @@ declare function init(config: AuthHeroConfig): {
5395
5395
  hint?: string | undefined;
5396
5396
  messages?: {
5397
5397
  text: string;
5398
- type: "error" | "success" | "info" | "warning";
5398
+ type: "success" | "error" | "info" | "warning";
5399
5399
  id?: number | undefined;
5400
5400
  }[] | undefined;
5401
5401
  required?: boolean | undefined;
@@ -5417,7 +5417,7 @@ declare function init(config: AuthHeroConfig): {
5417
5417
  hint?: string | undefined;
5418
5418
  messages?: {
5419
5419
  text: string;
5420
- type: "error" | "success" | "info" | "warning";
5420
+ type: "success" | "error" | "info" | "warning";
5421
5421
  id?: number | undefined;
5422
5422
  }[] | undefined;
5423
5423
  required?: boolean | undefined;
@@ -5436,7 +5436,7 @@ declare function init(config: AuthHeroConfig): {
5436
5436
  hint?: string | undefined;
5437
5437
  messages?: {
5438
5438
  text: string;
5439
- type: "error" | "success" | "info" | "warning";
5439
+ type: "success" | "error" | "info" | "warning";
5440
5440
  id?: number | undefined;
5441
5441
  }[] | undefined;
5442
5442
  required?: boolean | undefined;
@@ -5461,7 +5461,7 @@ declare function init(config: AuthHeroConfig): {
5461
5461
  hint?: string | undefined;
5462
5462
  messages?: {
5463
5463
  text: string;
5464
- type: "error" | "success" | "info" | "warning";
5464
+ type: "success" | "error" | "info" | "warning";
5465
5465
  id?: number | undefined;
5466
5466
  }[] | undefined;
5467
5467
  required?: boolean | undefined;
@@ -5482,7 +5482,7 @@ declare function init(config: AuthHeroConfig): {
5482
5482
  hint?: string | undefined;
5483
5483
  messages?: {
5484
5484
  text: string;
5485
- type: "error" | "success" | "info" | "warning";
5485
+ type: "success" | "error" | "info" | "warning";
5486
5486
  id?: number | undefined;
5487
5487
  }[] | undefined;
5488
5488
  required?: boolean | undefined;
@@ -5503,7 +5503,7 @@ declare function init(config: AuthHeroConfig): {
5503
5503
  hint?: string | undefined;
5504
5504
  messages?: {
5505
5505
  text: string;
5506
- type: "error" | "success" | "info" | "warning";
5506
+ type: "success" | "error" | "info" | "warning";
5507
5507
  id?: number | undefined;
5508
5508
  }[] | undefined;
5509
5509
  required?: boolean | undefined;
@@ -5736,7 +5736,7 @@ declare function init(config: AuthHeroConfig): {
5736
5736
  hint?: string | undefined;
5737
5737
  messages?: {
5738
5738
  text: string;
5739
- type: "error" | "success" | "info" | "warning";
5739
+ type: "success" | "error" | "info" | "warning";
5740
5740
  id?: number | undefined;
5741
5741
  }[] | undefined;
5742
5742
  required?: boolean | undefined;
@@ -5754,7 +5754,7 @@ declare function init(config: AuthHeroConfig): {
5754
5754
  hint?: string | undefined;
5755
5755
  messages?: {
5756
5756
  text: string;
5757
- type: "error" | "success" | "info" | "warning";
5757
+ type: "success" | "error" | "info" | "warning";
5758
5758
  id?: number | undefined;
5759
5759
  }[] | undefined;
5760
5760
  required?: boolean | undefined;
@@ -5778,7 +5778,7 @@ declare function init(config: AuthHeroConfig): {
5778
5778
  hint?: string | undefined;
5779
5779
  messages?: {
5780
5780
  text: string;
5781
- type: "error" | "success" | "info" | "warning";
5781
+ type: "success" | "error" | "info" | "warning";
5782
5782
  id?: number | undefined;
5783
5783
  }[] | undefined;
5784
5784
  required?: boolean | undefined;
@@ -5788,7 +5788,7 @@ declare function init(config: AuthHeroConfig): {
5788
5788
  value: string;
5789
5789
  label: string;
5790
5790
  }[] | undefined;
5791
- display?: "radio" | "checkbox" | undefined;
5791
+ display?: "checkbox" | "radio" | undefined;
5792
5792
  multiple?: boolean | undefined;
5793
5793
  default_value?: string | string[] | undefined;
5794
5794
  } | undefined;
@@ -5802,7 +5802,7 @@ declare function init(config: AuthHeroConfig): {
5802
5802
  hint?: string | undefined;
5803
5803
  messages?: {
5804
5804
  text: string;
5805
- type: "error" | "success" | "info" | "warning";
5805
+ type: "success" | "error" | "info" | "warning";
5806
5806
  id?: number | undefined;
5807
5807
  }[] | undefined;
5808
5808
  required?: boolean | undefined;
@@ -5831,7 +5831,7 @@ declare function init(config: AuthHeroConfig): {
5831
5831
  hint?: string | undefined;
5832
5832
  messages?: {
5833
5833
  text: string;
5834
- type: "error" | "success" | "info" | "warning";
5834
+ type: "success" | "error" | "info" | "warning";
5835
5835
  id?: number | undefined;
5836
5836
  }[] | undefined;
5837
5837
  required?: boolean | undefined;
@@ -5846,7 +5846,7 @@ declare function init(config: AuthHeroConfig): {
5846
5846
  hint?: string | undefined;
5847
5847
  messages?: {
5848
5848
  text: string;
5849
- type: "error" | "success" | "info" | "warning";
5849
+ type: "success" | "error" | "info" | "warning";
5850
5850
  id?: number | undefined;
5851
5851
  }[] | undefined;
5852
5852
  required?: boolean | undefined;
@@ -5867,7 +5867,7 @@ declare function init(config: AuthHeroConfig): {
5867
5867
  hint?: string | undefined;
5868
5868
  messages?: {
5869
5869
  text: string;
5870
- type: "error" | "success" | "info" | "warning";
5870
+ type: "success" | "error" | "info" | "warning";
5871
5871
  id?: number | undefined;
5872
5872
  }[] | undefined;
5873
5873
  required?: boolean | undefined;
@@ -5892,7 +5892,7 @@ declare function init(config: AuthHeroConfig): {
5892
5892
  hint?: string | undefined;
5893
5893
  messages?: {
5894
5894
  text: string;
5895
- type: "error" | "success" | "info" | "warning";
5895
+ type: "success" | "error" | "info" | "warning";
5896
5896
  id?: number | undefined;
5897
5897
  }[] | undefined;
5898
5898
  required?: boolean | undefined;
@@ -5911,7 +5911,7 @@ declare function init(config: AuthHeroConfig): {
5911
5911
  hint?: string | undefined;
5912
5912
  messages?: {
5913
5913
  text: string;
5914
- type: "error" | "success" | "info" | "warning";
5914
+ type: "success" | "error" | "info" | "warning";
5915
5915
  id?: number | undefined;
5916
5916
  }[] | undefined;
5917
5917
  required?: boolean | undefined;
@@ -5931,7 +5931,7 @@ declare function init(config: AuthHeroConfig): {
5931
5931
  hint?: string | undefined;
5932
5932
  messages?: {
5933
5933
  text: string;
5934
- type: "error" | "success" | "info" | "warning";
5934
+ type: "success" | "error" | "info" | "warning";
5935
5935
  id?: number | undefined;
5936
5936
  }[] | undefined;
5937
5937
  required?: boolean | undefined;
@@ -5950,7 +5950,7 @@ declare function init(config: AuthHeroConfig): {
5950
5950
  hint?: string | undefined;
5951
5951
  messages?: {
5952
5952
  text: string;
5953
- type: "error" | "success" | "info" | "warning";
5953
+ type: "success" | "error" | "info" | "warning";
5954
5954
  id?: number | undefined;
5955
5955
  }[] | undefined;
5956
5956
  required?: boolean | undefined;
@@ -5972,7 +5972,7 @@ declare function init(config: AuthHeroConfig): {
5972
5972
  hint?: string | undefined;
5973
5973
  messages?: {
5974
5974
  text: string;
5975
- type: "error" | "success" | "info" | "warning";
5975
+ type: "success" | "error" | "info" | "warning";
5976
5976
  id?: number | undefined;
5977
5977
  }[] | undefined;
5978
5978
  required?: boolean | undefined;
@@ -5994,7 +5994,7 @@ declare function init(config: AuthHeroConfig): {
5994
5994
  hint?: string | undefined;
5995
5995
  messages?: {
5996
5996
  text: string;
5997
- type: "error" | "success" | "info" | "warning";
5997
+ type: "success" | "error" | "info" | "warning";
5998
5998
  id?: number | undefined;
5999
5999
  }[] | undefined;
6000
6000
  required?: boolean | undefined;
@@ -6013,7 +6013,7 @@ declare function init(config: AuthHeroConfig): {
6013
6013
  hint?: string | undefined;
6014
6014
  messages?: {
6015
6015
  text: string;
6016
- type: "error" | "success" | "info" | "warning";
6016
+ type: "success" | "error" | "info" | "warning";
6017
6017
  id?: number | undefined;
6018
6018
  }[] | undefined;
6019
6019
  required?: boolean | undefined;
@@ -6038,7 +6038,7 @@ declare function init(config: AuthHeroConfig): {
6038
6038
  hint?: string | undefined;
6039
6039
  messages?: {
6040
6040
  text: string;
6041
- type: "error" | "success" | "info" | "warning";
6041
+ type: "success" | "error" | "info" | "warning";
6042
6042
  id?: number | undefined;
6043
6043
  }[] | undefined;
6044
6044
  required?: boolean | undefined;
@@ -6059,7 +6059,7 @@ declare function init(config: AuthHeroConfig): {
6059
6059
  hint?: string | undefined;
6060
6060
  messages?: {
6061
6061
  text: string;
6062
- type: "error" | "success" | "info" | "warning";
6062
+ type: "success" | "error" | "info" | "warning";
6063
6063
  id?: number | undefined;
6064
6064
  }[] | undefined;
6065
6065
  required?: boolean | undefined;
@@ -6080,7 +6080,7 @@ declare function init(config: AuthHeroConfig): {
6080
6080
  hint?: string | undefined;
6081
6081
  messages?: {
6082
6082
  text: string;
6083
- type: "error" | "success" | "info" | "warning";
6083
+ type: "success" | "error" | "info" | "warning";
6084
6084
  id?: number | undefined;
6085
6085
  }[] | undefined;
6086
6086
  required?: boolean | undefined;
@@ -6328,7 +6328,7 @@ declare function init(config: AuthHeroConfig): {
6328
6328
  hint?: string | undefined;
6329
6329
  messages?: {
6330
6330
  text: string;
6331
- type: "error" | "success" | "info" | "warning";
6331
+ type: "success" | "error" | "info" | "warning";
6332
6332
  id?: number | undefined;
6333
6333
  }[] | undefined;
6334
6334
  required?: boolean | undefined;
@@ -6346,7 +6346,7 @@ declare function init(config: AuthHeroConfig): {
6346
6346
  hint?: string | undefined;
6347
6347
  messages?: {
6348
6348
  text: string;
6349
- type: "error" | "success" | "info" | "warning";
6349
+ type: "success" | "error" | "info" | "warning";
6350
6350
  id?: number | undefined;
6351
6351
  }[] | undefined;
6352
6352
  required?: boolean | undefined;
@@ -6370,7 +6370,7 @@ declare function init(config: AuthHeroConfig): {
6370
6370
  hint?: string | undefined;
6371
6371
  messages?: {
6372
6372
  text: string;
6373
- type: "error" | "success" | "info" | "warning";
6373
+ type: "success" | "error" | "info" | "warning";
6374
6374
  id?: number | undefined;
6375
6375
  }[] | undefined;
6376
6376
  required?: boolean | undefined;
@@ -6380,7 +6380,7 @@ declare function init(config: AuthHeroConfig): {
6380
6380
  value: string;
6381
6381
  label: string;
6382
6382
  }[] | undefined;
6383
- display?: "radio" | "checkbox" | undefined;
6383
+ display?: "checkbox" | "radio" | undefined;
6384
6384
  multiple?: boolean | undefined;
6385
6385
  default_value?: string | string[] | undefined;
6386
6386
  } | undefined;
@@ -6394,7 +6394,7 @@ declare function init(config: AuthHeroConfig): {
6394
6394
  hint?: string | undefined;
6395
6395
  messages?: {
6396
6396
  text: string;
6397
- type: "error" | "success" | "info" | "warning";
6397
+ type: "success" | "error" | "info" | "warning";
6398
6398
  id?: number | undefined;
6399
6399
  }[] | undefined;
6400
6400
  required?: boolean | undefined;
@@ -6423,7 +6423,7 @@ declare function init(config: AuthHeroConfig): {
6423
6423
  hint?: string | undefined;
6424
6424
  messages?: {
6425
6425
  text: string;
6426
- type: "error" | "success" | "info" | "warning";
6426
+ type: "success" | "error" | "info" | "warning";
6427
6427
  id?: number | undefined;
6428
6428
  }[] | undefined;
6429
6429
  required?: boolean | undefined;
@@ -6438,7 +6438,7 @@ declare function init(config: AuthHeroConfig): {
6438
6438
  hint?: string | undefined;
6439
6439
  messages?: {
6440
6440
  text: string;
6441
- type: "error" | "success" | "info" | "warning";
6441
+ type: "success" | "error" | "info" | "warning";
6442
6442
  id?: number | undefined;
6443
6443
  }[] | undefined;
6444
6444
  required?: boolean | undefined;
@@ -6459,7 +6459,7 @@ declare function init(config: AuthHeroConfig): {
6459
6459
  hint?: string | undefined;
6460
6460
  messages?: {
6461
6461
  text: string;
6462
- type: "error" | "success" | "info" | "warning";
6462
+ type: "success" | "error" | "info" | "warning";
6463
6463
  id?: number | undefined;
6464
6464
  }[] | undefined;
6465
6465
  required?: boolean | undefined;
@@ -6484,7 +6484,7 @@ declare function init(config: AuthHeroConfig): {
6484
6484
  hint?: string | undefined;
6485
6485
  messages?: {
6486
6486
  text: string;
6487
- type: "error" | "success" | "info" | "warning";
6487
+ type: "success" | "error" | "info" | "warning";
6488
6488
  id?: number | undefined;
6489
6489
  }[] | undefined;
6490
6490
  required?: boolean | undefined;
@@ -6503,7 +6503,7 @@ declare function init(config: AuthHeroConfig): {
6503
6503
  hint?: string | undefined;
6504
6504
  messages?: {
6505
6505
  text: string;
6506
- type: "error" | "success" | "info" | "warning";
6506
+ type: "success" | "error" | "info" | "warning";
6507
6507
  id?: number | undefined;
6508
6508
  }[] | undefined;
6509
6509
  required?: boolean | undefined;
@@ -6523,7 +6523,7 @@ declare function init(config: AuthHeroConfig): {
6523
6523
  hint?: string | undefined;
6524
6524
  messages?: {
6525
6525
  text: string;
6526
- type: "error" | "success" | "info" | "warning";
6526
+ type: "success" | "error" | "info" | "warning";
6527
6527
  id?: number | undefined;
6528
6528
  }[] | undefined;
6529
6529
  required?: boolean | undefined;
@@ -6542,7 +6542,7 @@ declare function init(config: AuthHeroConfig): {
6542
6542
  hint?: string | undefined;
6543
6543
  messages?: {
6544
6544
  text: string;
6545
- type: "error" | "success" | "info" | "warning";
6545
+ type: "success" | "error" | "info" | "warning";
6546
6546
  id?: number | undefined;
6547
6547
  }[] | undefined;
6548
6548
  required?: boolean | undefined;
@@ -6564,7 +6564,7 @@ declare function init(config: AuthHeroConfig): {
6564
6564
  hint?: string | undefined;
6565
6565
  messages?: {
6566
6566
  text: string;
6567
- type: "error" | "success" | "info" | "warning";
6567
+ type: "success" | "error" | "info" | "warning";
6568
6568
  id?: number | undefined;
6569
6569
  }[] | undefined;
6570
6570
  required?: boolean | undefined;
@@ -6586,7 +6586,7 @@ declare function init(config: AuthHeroConfig): {
6586
6586
  hint?: string | undefined;
6587
6587
  messages?: {
6588
6588
  text: string;
6589
- type: "error" | "success" | "info" | "warning";
6589
+ type: "success" | "error" | "info" | "warning";
6590
6590
  id?: number | undefined;
6591
6591
  }[] | undefined;
6592
6592
  required?: boolean | undefined;
@@ -6605,7 +6605,7 @@ declare function init(config: AuthHeroConfig): {
6605
6605
  hint?: string | undefined;
6606
6606
  messages?: {
6607
6607
  text: string;
6608
- type: "error" | "success" | "info" | "warning";
6608
+ type: "success" | "error" | "info" | "warning";
6609
6609
  id?: number | undefined;
6610
6610
  }[] | undefined;
6611
6611
  required?: boolean | undefined;
@@ -6630,7 +6630,7 @@ declare function init(config: AuthHeroConfig): {
6630
6630
  hint?: string | undefined;
6631
6631
  messages?: {
6632
6632
  text: string;
6633
- type: "error" | "success" | "info" | "warning";
6633
+ type: "success" | "error" | "info" | "warning";
6634
6634
  id?: number | undefined;
6635
6635
  }[] | undefined;
6636
6636
  required?: boolean | undefined;
@@ -6651,7 +6651,7 @@ declare function init(config: AuthHeroConfig): {
6651
6651
  hint?: string | undefined;
6652
6652
  messages?: {
6653
6653
  text: string;
6654
- type: "error" | "success" | "info" | "warning";
6654
+ type: "success" | "error" | "info" | "warning";
6655
6655
  id?: number | undefined;
6656
6656
  }[] | undefined;
6657
6657
  required?: boolean | undefined;
@@ -6672,7 +6672,7 @@ declare function init(config: AuthHeroConfig): {
6672
6672
  hint?: string | undefined;
6673
6673
  messages?: {
6674
6674
  text: string;
6675
- type: "error" | "success" | "info" | "warning";
6675
+ type: "success" | "error" | "info" | "warning";
6676
6676
  id?: number | undefined;
6677
6677
  }[] | undefined;
6678
6678
  required?: boolean | undefined;
@@ -6926,7 +6926,7 @@ declare function init(config: AuthHeroConfig): {
6926
6926
  hint?: string | undefined;
6927
6927
  messages?: {
6928
6928
  text: string;
6929
- type: "error" | "success" | "info" | "warning";
6929
+ type: "success" | "error" | "info" | "warning";
6930
6930
  id?: number | undefined;
6931
6931
  }[] | undefined;
6932
6932
  required?: boolean | undefined;
@@ -6944,7 +6944,7 @@ declare function init(config: AuthHeroConfig): {
6944
6944
  hint?: string | undefined;
6945
6945
  messages?: {
6946
6946
  text: string;
6947
- type: "error" | "success" | "info" | "warning";
6947
+ type: "success" | "error" | "info" | "warning";
6948
6948
  id?: number | undefined;
6949
6949
  }[] | undefined;
6950
6950
  required?: boolean | undefined;
@@ -6968,7 +6968,7 @@ declare function init(config: AuthHeroConfig): {
6968
6968
  hint?: string | undefined;
6969
6969
  messages?: {
6970
6970
  text: string;
6971
- type: "error" | "success" | "info" | "warning";
6971
+ type: "success" | "error" | "info" | "warning";
6972
6972
  id?: number | undefined;
6973
6973
  }[] | undefined;
6974
6974
  required?: boolean | undefined;
@@ -6978,7 +6978,7 @@ declare function init(config: AuthHeroConfig): {
6978
6978
  value: string;
6979
6979
  label: string;
6980
6980
  }[] | undefined;
6981
- display?: "radio" | "checkbox" | undefined;
6981
+ display?: "checkbox" | "radio" | undefined;
6982
6982
  multiple?: boolean | undefined;
6983
6983
  default_value?: string | string[] | undefined;
6984
6984
  } | undefined;
@@ -6992,7 +6992,7 @@ declare function init(config: AuthHeroConfig): {
6992
6992
  hint?: string | undefined;
6993
6993
  messages?: {
6994
6994
  text: string;
6995
- type: "error" | "success" | "info" | "warning";
6995
+ type: "success" | "error" | "info" | "warning";
6996
6996
  id?: number | undefined;
6997
6997
  }[] | undefined;
6998
6998
  required?: boolean | undefined;
@@ -7017,7 +7017,7 @@ declare function init(config: AuthHeroConfig): {
7017
7017
  hint?: string | undefined;
7018
7018
  messages?: {
7019
7019
  text: string;
7020
- type: "error" | "success" | "info" | "warning";
7020
+ type: "success" | "error" | "info" | "warning";
7021
7021
  id?: number | undefined;
7022
7022
  }[] | undefined;
7023
7023
  required?: boolean | undefined;
@@ -7032,7 +7032,7 @@ declare function init(config: AuthHeroConfig): {
7032
7032
  hint?: string | undefined;
7033
7033
  messages?: {
7034
7034
  text: string;
7035
- type: "error" | "success" | "info" | "warning";
7035
+ type: "success" | "error" | "info" | "warning";
7036
7036
  id?: number | undefined;
7037
7037
  }[] | undefined;
7038
7038
  required?: boolean | undefined;
@@ -7053,7 +7053,7 @@ declare function init(config: AuthHeroConfig): {
7053
7053
  hint?: string | undefined;
7054
7054
  messages?: {
7055
7055
  text: string;
7056
- type: "error" | "success" | "info" | "warning";
7056
+ type: "success" | "error" | "info" | "warning";
7057
7057
  id?: number | undefined;
7058
7058
  }[] | undefined;
7059
7059
  required?: boolean | undefined;
@@ -7078,7 +7078,7 @@ declare function init(config: AuthHeroConfig): {
7078
7078
  hint?: string | undefined;
7079
7079
  messages?: {
7080
7080
  text: string;
7081
- type: "error" | "success" | "info" | "warning";
7081
+ type: "success" | "error" | "info" | "warning";
7082
7082
  id?: number | undefined;
7083
7083
  }[] | undefined;
7084
7084
  required?: boolean | undefined;
@@ -7097,7 +7097,7 @@ declare function init(config: AuthHeroConfig): {
7097
7097
  hint?: string | undefined;
7098
7098
  messages?: {
7099
7099
  text: string;
7100
- type: "error" | "success" | "info" | "warning";
7100
+ type: "success" | "error" | "info" | "warning";
7101
7101
  id?: number | undefined;
7102
7102
  }[] | undefined;
7103
7103
  required?: boolean | undefined;
@@ -7117,7 +7117,7 @@ declare function init(config: AuthHeroConfig): {
7117
7117
  hint?: string | undefined;
7118
7118
  messages?: {
7119
7119
  text: string;
7120
- type: "error" | "success" | "info" | "warning";
7120
+ type: "success" | "error" | "info" | "warning";
7121
7121
  id?: number | undefined;
7122
7122
  }[] | undefined;
7123
7123
  required?: boolean | undefined;
@@ -7136,7 +7136,7 @@ declare function init(config: AuthHeroConfig): {
7136
7136
  hint?: string | undefined;
7137
7137
  messages?: {
7138
7138
  text: string;
7139
- type: "error" | "success" | "info" | "warning";
7139
+ type: "success" | "error" | "info" | "warning";
7140
7140
  id?: number | undefined;
7141
7141
  }[] | undefined;
7142
7142
  required?: boolean | undefined;
@@ -7158,7 +7158,7 @@ declare function init(config: AuthHeroConfig): {
7158
7158
  hint?: string | undefined;
7159
7159
  messages?: {
7160
7160
  text: string;
7161
- type: "error" | "success" | "info" | "warning";
7161
+ type: "success" | "error" | "info" | "warning";
7162
7162
  id?: number | undefined;
7163
7163
  }[] | undefined;
7164
7164
  required?: boolean | undefined;
@@ -7180,7 +7180,7 @@ declare function init(config: AuthHeroConfig): {
7180
7180
  hint?: string | undefined;
7181
7181
  messages?: {
7182
7182
  text: string;
7183
- type: "error" | "success" | "info" | "warning";
7183
+ type: "success" | "error" | "info" | "warning";
7184
7184
  id?: number | undefined;
7185
7185
  }[] | undefined;
7186
7186
  required?: boolean | undefined;
@@ -7199,7 +7199,7 @@ declare function init(config: AuthHeroConfig): {
7199
7199
  hint?: string | undefined;
7200
7200
  messages?: {
7201
7201
  text: string;
7202
- type: "error" | "success" | "info" | "warning";
7202
+ type: "success" | "error" | "info" | "warning";
7203
7203
  id?: number | undefined;
7204
7204
  }[] | undefined;
7205
7205
  required?: boolean | undefined;
@@ -7224,7 +7224,7 @@ declare function init(config: AuthHeroConfig): {
7224
7224
  hint?: string | undefined;
7225
7225
  messages?: {
7226
7226
  text: string;
7227
- type: "error" | "success" | "info" | "warning";
7227
+ type: "success" | "error" | "info" | "warning";
7228
7228
  id?: number | undefined;
7229
7229
  }[] | undefined;
7230
7230
  required?: boolean | undefined;
@@ -7245,7 +7245,7 @@ declare function init(config: AuthHeroConfig): {
7245
7245
  hint?: string | undefined;
7246
7246
  messages?: {
7247
7247
  text: string;
7248
- type: "error" | "success" | "info" | "warning";
7248
+ type: "success" | "error" | "info" | "warning";
7249
7249
  id?: number | undefined;
7250
7250
  }[] | undefined;
7251
7251
  required?: boolean | undefined;
@@ -7266,7 +7266,7 @@ declare function init(config: AuthHeroConfig): {
7266
7266
  hint?: string | undefined;
7267
7267
  messages?: {
7268
7268
  text: string;
7269
- type: "error" | "success" | "info" | "warning";
7269
+ type: "success" | "error" | "info" | "warning";
7270
7270
  id?: number | undefined;
7271
7271
  }[] | undefined;
7272
7272
  required?: boolean | undefined;
@@ -7497,7 +7497,7 @@ declare function init(config: AuthHeroConfig): {
7497
7497
  hint?: string | undefined;
7498
7498
  messages?: {
7499
7499
  text: string;
7500
- type: "error" | "success" | "info" | "warning";
7500
+ type: "success" | "error" | "info" | "warning";
7501
7501
  id?: number | undefined;
7502
7502
  }[] | undefined;
7503
7503
  required?: boolean | undefined;
@@ -7515,7 +7515,7 @@ declare function init(config: AuthHeroConfig): {
7515
7515
  hint?: string | undefined;
7516
7516
  messages?: {
7517
7517
  text: string;
7518
- type: "error" | "success" | "info" | "warning";
7518
+ type: "success" | "error" | "info" | "warning";
7519
7519
  id?: number | undefined;
7520
7520
  }[] | undefined;
7521
7521
  required?: boolean | undefined;
@@ -7539,7 +7539,7 @@ declare function init(config: AuthHeroConfig): {
7539
7539
  hint?: string | undefined;
7540
7540
  messages?: {
7541
7541
  text: string;
7542
- type: "error" | "success" | "info" | "warning";
7542
+ type: "success" | "error" | "info" | "warning";
7543
7543
  id?: number | undefined;
7544
7544
  }[] | undefined;
7545
7545
  required?: boolean | undefined;
@@ -7549,7 +7549,7 @@ declare function init(config: AuthHeroConfig): {
7549
7549
  value: string;
7550
7550
  label: string;
7551
7551
  }[] | undefined;
7552
- display?: "radio" | "checkbox" | undefined;
7552
+ display?: "checkbox" | "radio" | undefined;
7553
7553
  multiple?: boolean | undefined;
7554
7554
  default_value?: string | string[] | undefined;
7555
7555
  } | undefined;
@@ -7563,7 +7563,7 @@ declare function init(config: AuthHeroConfig): {
7563
7563
  hint?: string | undefined;
7564
7564
  messages?: {
7565
7565
  text: string;
7566
- type: "error" | "success" | "info" | "warning";
7566
+ type: "success" | "error" | "info" | "warning";
7567
7567
  id?: number | undefined;
7568
7568
  }[] | undefined;
7569
7569
  required?: boolean | undefined;
@@ -7592,7 +7592,7 @@ declare function init(config: AuthHeroConfig): {
7592
7592
  hint?: string | undefined;
7593
7593
  messages?: {
7594
7594
  text: string;
7595
- type: "error" | "success" | "info" | "warning";
7595
+ type: "success" | "error" | "info" | "warning";
7596
7596
  id?: number | undefined;
7597
7597
  }[] | undefined;
7598
7598
  required?: boolean | undefined;
@@ -7607,7 +7607,7 @@ declare function init(config: AuthHeroConfig): {
7607
7607
  hint?: string | undefined;
7608
7608
  messages?: {
7609
7609
  text: string;
7610
- type: "error" | "success" | "info" | "warning";
7610
+ type: "success" | "error" | "info" | "warning";
7611
7611
  id?: number | undefined;
7612
7612
  }[] | undefined;
7613
7613
  required?: boolean | undefined;
@@ -7628,7 +7628,7 @@ declare function init(config: AuthHeroConfig): {
7628
7628
  hint?: string | undefined;
7629
7629
  messages?: {
7630
7630
  text: string;
7631
- type: "error" | "success" | "info" | "warning";
7631
+ type: "success" | "error" | "info" | "warning";
7632
7632
  id?: number | undefined;
7633
7633
  }[] | undefined;
7634
7634
  required?: boolean | undefined;
@@ -7653,7 +7653,7 @@ declare function init(config: AuthHeroConfig): {
7653
7653
  hint?: string | undefined;
7654
7654
  messages?: {
7655
7655
  text: string;
7656
- type: "error" | "success" | "info" | "warning";
7656
+ type: "success" | "error" | "info" | "warning";
7657
7657
  id?: number | undefined;
7658
7658
  }[] | undefined;
7659
7659
  required?: boolean | undefined;
@@ -7672,7 +7672,7 @@ declare function init(config: AuthHeroConfig): {
7672
7672
  hint?: string | undefined;
7673
7673
  messages?: {
7674
7674
  text: string;
7675
- type: "error" | "success" | "info" | "warning";
7675
+ type: "success" | "error" | "info" | "warning";
7676
7676
  id?: number | undefined;
7677
7677
  }[] | undefined;
7678
7678
  required?: boolean | undefined;
@@ -7692,7 +7692,7 @@ declare function init(config: AuthHeroConfig): {
7692
7692
  hint?: string | undefined;
7693
7693
  messages?: {
7694
7694
  text: string;
7695
- type: "error" | "success" | "info" | "warning";
7695
+ type: "success" | "error" | "info" | "warning";
7696
7696
  id?: number | undefined;
7697
7697
  }[] | undefined;
7698
7698
  required?: boolean | undefined;
@@ -7711,7 +7711,7 @@ declare function init(config: AuthHeroConfig): {
7711
7711
  hint?: string | undefined;
7712
7712
  messages?: {
7713
7713
  text: string;
7714
- type: "error" | "success" | "info" | "warning";
7714
+ type: "success" | "error" | "info" | "warning";
7715
7715
  id?: number | undefined;
7716
7716
  }[] | undefined;
7717
7717
  required?: boolean | undefined;
@@ -7733,7 +7733,7 @@ declare function init(config: AuthHeroConfig): {
7733
7733
  hint?: string | undefined;
7734
7734
  messages?: {
7735
7735
  text: string;
7736
- type: "error" | "success" | "info" | "warning";
7736
+ type: "success" | "error" | "info" | "warning";
7737
7737
  id?: number | undefined;
7738
7738
  }[] | undefined;
7739
7739
  required?: boolean | undefined;
@@ -7755,7 +7755,7 @@ declare function init(config: AuthHeroConfig): {
7755
7755
  hint?: string | undefined;
7756
7756
  messages?: {
7757
7757
  text: string;
7758
- type: "error" | "success" | "info" | "warning";
7758
+ type: "success" | "error" | "info" | "warning";
7759
7759
  id?: number | undefined;
7760
7760
  }[] | undefined;
7761
7761
  required?: boolean | undefined;
@@ -7774,7 +7774,7 @@ declare function init(config: AuthHeroConfig): {
7774
7774
  hint?: string | undefined;
7775
7775
  messages?: {
7776
7776
  text: string;
7777
- type: "error" | "success" | "info" | "warning";
7777
+ type: "success" | "error" | "info" | "warning";
7778
7778
  id?: number | undefined;
7779
7779
  }[] | undefined;
7780
7780
  required?: boolean | undefined;
@@ -7799,7 +7799,7 @@ declare function init(config: AuthHeroConfig): {
7799
7799
  hint?: string | undefined;
7800
7800
  messages?: {
7801
7801
  text: string;
7802
- type: "error" | "success" | "info" | "warning";
7802
+ type: "success" | "error" | "info" | "warning";
7803
7803
  id?: number | undefined;
7804
7804
  }[] | undefined;
7805
7805
  required?: boolean | undefined;
@@ -7820,7 +7820,7 @@ declare function init(config: AuthHeroConfig): {
7820
7820
  hint?: string | undefined;
7821
7821
  messages?: {
7822
7822
  text: string;
7823
- type: "error" | "success" | "info" | "warning";
7823
+ type: "success" | "error" | "info" | "warning";
7824
7824
  id?: number | undefined;
7825
7825
  }[] | undefined;
7826
7826
  required?: boolean | undefined;
@@ -7841,7 +7841,7 @@ declare function init(config: AuthHeroConfig): {
7841
7841
  hint?: string | undefined;
7842
7842
  messages?: {
7843
7843
  text: string;
7844
- type: "error" | "success" | "info" | "warning";
7844
+ type: "success" | "error" | "info" | "warning";
7845
7845
  id?: number | undefined;
7846
7846
  }[] | undefined;
7847
7847
  required?: boolean | undefined;
@@ -8074,7 +8074,7 @@ declare function init(config: AuthHeroConfig): {
8074
8074
  hint?: string | undefined;
8075
8075
  messages?: {
8076
8076
  text: string;
8077
- type: "error" | "success" | "info" | "warning";
8077
+ type: "success" | "error" | "info" | "warning";
8078
8078
  id?: number | undefined;
8079
8079
  }[] | undefined;
8080
8080
  required?: boolean | undefined;
@@ -8092,7 +8092,7 @@ declare function init(config: AuthHeroConfig): {
8092
8092
  hint?: string | undefined;
8093
8093
  messages?: {
8094
8094
  text: string;
8095
- type: "error" | "success" | "info" | "warning";
8095
+ type: "success" | "error" | "info" | "warning";
8096
8096
  id?: number | undefined;
8097
8097
  }[] | undefined;
8098
8098
  required?: boolean | undefined;
@@ -8116,7 +8116,7 @@ declare function init(config: AuthHeroConfig): {
8116
8116
  hint?: string | undefined;
8117
8117
  messages?: {
8118
8118
  text: string;
8119
- type: "error" | "success" | "info" | "warning";
8119
+ type: "success" | "error" | "info" | "warning";
8120
8120
  id?: number | undefined;
8121
8121
  }[] | undefined;
8122
8122
  required?: boolean | undefined;
@@ -8126,7 +8126,7 @@ declare function init(config: AuthHeroConfig): {
8126
8126
  value: string;
8127
8127
  label: string;
8128
8128
  }[] | undefined;
8129
- display?: "radio" | "checkbox" | undefined;
8129
+ display?: "checkbox" | "radio" | undefined;
8130
8130
  multiple?: boolean | undefined;
8131
8131
  default_value?: string | string[] | undefined;
8132
8132
  } | undefined;
@@ -8140,7 +8140,7 @@ declare function init(config: AuthHeroConfig): {
8140
8140
  hint?: string | undefined;
8141
8141
  messages?: {
8142
8142
  text: string;
8143
- type: "error" | "success" | "info" | "warning";
8143
+ type: "success" | "error" | "info" | "warning";
8144
8144
  id?: number | undefined;
8145
8145
  }[] | undefined;
8146
8146
  required?: boolean | undefined;
@@ -8165,7 +8165,7 @@ declare function init(config: AuthHeroConfig): {
8165
8165
  hint?: string | undefined;
8166
8166
  messages?: {
8167
8167
  text: string;
8168
- type: "error" | "success" | "info" | "warning";
8168
+ type: "success" | "error" | "info" | "warning";
8169
8169
  id?: number | undefined;
8170
8170
  }[] | undefined;
8171
8171
  required?: boolean | undefined;
@@ -8180,7 +8180,7 @@ declare function init(config: AuthHeroConfig): {
8180
8180
  hint?: string | undefined;
8181
8181
  messages?: {
8182
8182
  text: string;
8183
- type: "error" | "success" | "info" | "warning";
8183
+ type: "success" | "error" | "info" | "warning";
8184
8184
  id?: number | undefined;
8185
8185
  }[] | undefined;
8186
8186
  required?: boolean | undefined;
@@ -8201,7 +8201,7 @@ declare function init(config: AuthHeroConfig): {
8201
8201
  hint?: string | undefined;
8202
8202
  messages?: {
8203
8203
  text: string;
8204
- type: "error" | "success" | "info" | "warning";
8204
+ type: "success" | "error" | "info" | "warning";
8205
8205
  id?: number | undefined;
8206
8206
  }[] | undefined;
8207
8207
  required?: boolean | undefined;
@@ -8226,7 +8226,7 @@ declare function init(config: AuthHeroConfig): {
8226
8226
  hint?: string | undefined;
8227
8227
  messages?: {
8228
8228
  text: string;
8229
- type: "error" | "success" | "info" | "warning";
8229
+ type: "success" | "error" | "info" | "warning";
8230
8230
  id?: number | undefined;
8231
8231
  }[] | undefined;
8232
8232
  required?: boolean | undefined;
@@ -8245,7 +8245,7 @@ declare function init(config: AuthHeroConfig): {
8245
8245
  hint?: string | undefined;
8246
8246
  messages?: {
8247
8247
  text: string;
8248
- type: "error" | "success" | "info" | "warning";
8248
+ type: "success" | "error" | "info" | "warning";
8249
8249
  id?: number | undefined;
8250
8250
  }[] | undefined;
8251
8251
  required?: boolean | undefined;
@@ -8265,7 +8265,7 @@ declare function init(config: AuthHeroConfig): {
8265
8265
  hint?: string | undefined;
8266
8266
  messages?: {
8267
8267
  text: string;
8268
- type: "error" | "success" | "info" | "warning";
8268
+ type: "success" | "error" | "info" | "warning";
8269
8269
  id?: number | undefined;
8270
8270
  }[] | undefined;
8271
8271
  required?: boolean | undefined;
@@ -8284,7 +8284,7 @@ declare function init(config: AuthHeroConfig): {
8284
8284
  hint?: string | undefined;
8285
8285
  messages?: {
8286
8286
  text: string;
8287
- type: "error" | "success" | "info" | "warning";
8287
+ type: "success" | "error" | "info" | "warning";
8288
8288
  id?: number | undefined;
8289
8289
  }[] | undefined;
8290
8290
  required?: boolean | undefined;
@@ -8306,7 +8306,7 @@ declare function init(config: AuthHeroConfig): {
8306
8306
  hint?: string | undefined;
8307
8307
  messages?: {
8308
8308
  text: string;
8309
- type: "error" | "success" | "info" | "warning";
8309
+ type: "success" | "error" | "info" | "warning";
8310
8310
  id?: number | undefined;
8311
8311
  }[] | undefined;
8312
8312
  required?: boolean | undefined;
@@ -8328,7 +8328,7 @@ declare function init(config: AuthHeroConfig): {
8328
8328
  hint?: string | undefined;
8329
8329
  messages?: {
8330
8330
  text: string;
8331
- type: "error" | "success" | "info" | "warning";
8331
+ type: "success" | "error" | "info" | "warning";
8332
8332
  id?: number | undefined;
8333
8333
  }[] | undefined;
8334
8334
  required?: boolean | undefined;
@@ -8347,7 +8347,7 @@ declare function init(config: AuthHeroConfig): {
8347
8347
  hint?: string | undefined;
8348
8348
  messages?: {
8349
8349
  text: string;
8350
- type: "error" | "success" | "info" | "warning";
8350
+ type: "success" | "error" | "info" | "warning";
8351
8351
  id?: number | undefined;
8352
8352
  }[] | undefined;
8353
8353
  required?: boolean | undefined;
@@ -8372,7 +8372,7 @@ declare function init(config: AuthHeroConfig): {
8372
8372
  hint?: string | undefined;
8373
8373
  messages?: {
8374
8374
  text: string;
8375
- type: "error" | "success" | "info" | "warning";
8375
+ type: "success" | "error" | "info" | "warning";
8376
8376
  id?: number | undefined;
8377
8377
  }[] | undefined;
8378
8378
  required?: boolean | undefined;
@@ -8393,7 +8393,7 @@ declare function init(config: AuthHeroConfig): {
8393
8393
  hint?: string | undefined;
8394
8394
  messages?: {
8395
8395
  text: string;
8396
- type: "error" | "success" | "info" | "warning";
8396
+ type: "success" | "error" | "info" | "warning";
8397
8397
  id?: number | undefined;
8398
8398
  }[] | undefined;
8399
8399
  required?: boolean | undefined;
@@ -8414,7 +8414,7 @@ declare function init(config: AuthHeroConfig): {
8414
8414
  hint?: string | undefined;
8415
8415
  messages?: {
8416
8416
  text: string;
8417
- type: "error" | "success" | "info" | "warning";
8417
+ type: "success" | "error" | "info" | "warning";
8418
8418
  id?: number | undefined;
8419
8419
  }[] | undefined;
8420
8420
  required?: boolean | undefined;
@@ -8645,7 +8645,7 @@ declare function init(config: AuthHeroConfig): {
8645
8645
  hint?: string | undefined;
8646
8646
  messages?: {
8647
8647
  text: string;
8648
- type: "error" | "success" | "info" | "warning";
8648
+ type: "success" | "error" | "info" | "warning";
8649
8649
  id?: number | undefined;
8650
8650
  }[] | undefined;
8651
8651
  required?: boolean | undefined;
@@ -8663,7 +8663,7 @@ declare function init(config: AuthHeroConfig): {
8663
8663
  hint?: string | undefined;
8664
8664
  messages?: {
8665
8665
  text: string;
8666
- type: "error" | "success" | "info" | "warning";
8666
+ type: "success" | "error" | "info" | "warning";
8667
8667
  id?: number | undefined;
8668
8668
  }[] | undefined;
8669
8669
  required?: boolean | undefined;
@@ -8687,7 +8687,7 @@ declare function init(config: AuthHeroConfig): {
8687
8687
  hint?: string | undefined;
8688
8688
  messages?: {
8689
8689
  text: string;
8690
- type: "error" | "success" | "info" | "warning";
8690
+ type: "success" | "error" | "info" | "warning";
8691
8691
  id?: number | undefined;
8692
8692
  }[] | undefined;
8693
8693
  required?: boolean | undefined;
@@ -8697,7 +8697,7 @@ declare function init(config: AuthHeroConfig): {
8697
8697
  value: string;
8698
8698
  label: string;
8699
8699
  }[] | undefined;
8700
- display?: "radio" | "checkbox" | undefined;
8700
+ display?: "checkbox" | "radio" | undefined;
8701
8701
  multiple?: boolean | undefined;
8702
8702
  default_value?: string | string[] | undefined;
8703
8703
  } | undefined;
@@ -8711,7 +8711,7 @@ declare function init(config: AuthHeroConfig): {
8711
8711
  hint?: string | undefined;
8712
8712
  messages?: {
8713
8713
  text: string;
8714
- type: "error" | "success" | "info" | "warning";
8714
+ type: "success" | "error" | "info" | "warning";
8715
8715
  id?: number | undefined;
8716
8716
  }[] | undefined;
8717
8717
  required?: boolean | undefined;
@@ -8740,7 +8740,7 @@ declare function init(config: AuthHeroConfig): {
8740
8740
  hint?: string | undefined;
8741
8741
  messages?: {
8742
8742
  text: string;
8743
- type: "error" | "success" | "info" | "warning";
8743
+ type: "success" | "error" | "info" | "warning";
8744
8744
  id?: number | undefined;
8745
8745
  }[] | undefined;
8746
8746
  required?: boolean | undefined;
@@ -8755,7 +8755,7 @@ declare function init(config: AuthHeroConfig): {
8755
8755
  hint?: string | undefined;
8756
8756
  messages?: {
8757
8757
  text: string;
8758
- type: "error" | "success" | "info" | "warning";
8758
+ type: "success" | "error" | "info" | "warning";
8759
8759
  id?: number | undefined;
8760
8760
  }[] | undefined;
8761
8761
  required?: boolean | undefined;
@@ -8776,7 +8776,7 @@ declare function init(config: AuthHeroConfig): {
8776
8776
  hint?: string | undefined;
8777
8777
  messages?: {
8778
8778
  text: string;
8779
- type: "error" | "success" | "info" | "warning";
8779
+ type: "success" | "error" | "info" | "warning";
8780
8780
  id?: number | undefined;
8781
8781
  }[] | undefined;
8782
8782
  required?: boolean | undefined;
@@ -8801,7 +8801,7 @@ declare function init(config: AuthHeroConfig): {
8801
8801
  hint?: string | undefined;
8802
8802
  messages?: {
8803
8803
  text: string;
8804
- type: "error" | "success" | "info" | "warning";
8804
+ type: "success" | "error" | "info" | "warning";
8805
8805
  id?: number | undefined;
8806
8806
  }[] | undefined;
8807
8807
  required?: boolean | undefined;
@@ -8820,7 +8820,7 @@ declare function init(config: AuthHeroConfig): {
8820
8820
  hint?: string | undefined;
8821
8821
  messages?: {
8822
8822
  text: string;
8823
- type: "error" | "success" | "info" | "warning";
8823
+ type: "success" | "error" | "info" | "warning";
8824
8824
  id?: number | undefined;
8825
8825
  }[] | undefined;
8826
8826
  required?: boolean | undefined;
@@ -8840,7 +8840,7 @@ declare function init(config: AuthHeroConfig): {
8840
8840
  hint?: string | undefined;
8841
8841
  messages?: {
8842
8842
  text: string;
8843
- type: "error" | "success" | "info" | "warning";
8843
+ type: "success" | "error" | "info" | "warning";
8844
8844
  id?: number | undefined;
8845
8845
  }[] | undefined;
8846
8846
  required?: boolean | undefined;
@@ -8859,7 +8859,7 @@ declare function init(config: AuthHeroConfig): {
8859
8859
  hint?: string | undefined;
8860
8860
  messages?: {
8861
8861
  text: string;
8862
- type: "error" | "success" | "info" | "warning";
8862
+ type: "success" | "error" | "info" | "warning";
8863
8863
  id?: number | undefined;
8864
8864
  }[] | undefined;
8865
8865
  required?: boolean | undefined;
@@ -8881,7 +8881,7 @@ declare function init(config: AuthHeroConfig): {
8881
8881
  hint?: string | undefined;
8882
8882
  messages?: {
8883
8883
  text: string;
8884
- type: "error" | "success" | "info" | "warning";
8884
+ type: "success" | "error" | "info" | "warning";
8885
8885
  id?: number | undefined;
8886
8886
  }[] | undefined;
8887
8887
  required?: boolean | undefined;
@@ -8903,7 +8903,7 @@ declare function init(config: AuthHeroConfig): {
8903
8903
  hint?: string | undefined;
8904
8904
  messages?: {
8905
8905
  text: string;
8906
- type: "error" | "success" | "info" | "warning";
8906
+ type: "success" | "error" | "info" | "warning";
8907
8907
  id?: number | undefined;
8908
8908
  }[] | undefined;
8909
8909
  required?: boolean | undefined;
@@ -8922,7 +8922,7 @@ declare function init(config: AuthHeroConfig): {
8922
8922
  hint?: string | undefined;
8923
8923
  messages?: {
8924
8924
  text: string;
8925
- type: "error" | "success" | "info" | "warning";
8925
+ type: "success" | "error" | "info" | "warning";
8926
8926
  id?: number | undefined;
8927
8927
  }[] | undefined;
8928
8928
  required?: boolean | undefined;
@@ -8947,7 +8947,7 @@ declare function init(config: AuthHeroConfig): {
8947
8947
  hint?: string | undefined;
8948
8948
  messages?: {
8949
8949
  text: string;
8950
- type: "error" | "success" | "info" | "warning";
8950
+ type: "success" | "error" | "info" | "warning";
8951
8951
  id?: number | undefined;
8952
8952
  }[] | undefined;
8953
8953
  required?: boolean | undefined;
@@ -8968,7 +8968,7 @@ declare function init(config: AuthHeroConfig): {
8968
8968
  hint?: string | undefined;
8969
8969
  messages?: {
8970
8970
  text: string;
8971
- type: "error" | "success" | "info" | "warning";
8971
+ type: "success" | "error" | "info" | "warning";
8972
8972
  id?: number | undefined;
8973
8973
  }[] | undefined;
8974
8974
  required?: boolean | undefined;
@@ -8989,7 +8989,7 @@ declare function init(config: AuthHeroConfig): {
8989
8989
  hint?: string | undefined;
8990
8990
  messages?: {
8991
8991
  text: string;
8992
- type: "error" | "success" | "info" | "warning";
8992
+ type: "success" | "error" | "info" | "warning";
8993
8993
  id?: number | undefined;
8994
8994
  }[] | undefined;
8995
8995
  required?: boolean | undefined;
@@ -9219,7 +9219,7 @@ declare function init(config: AuthHeroConfig): {
9219
9219
  };
9220
9220
  };
9221
9221
  output: {
9222
- 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";
9222
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9223
9223
  language: string;
9224
9224
  }[];
9225
9225
  outputFormat: "json";
@@ -9257,7 +9257,7 @@ declare function init(config: AuthHeroConfig): {
9257
9257
  $get: {
9258
9258
  input: {
9259
9259
  param: {
9260
- 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";
9260
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9261
9261
  language: string;
9262
9262
  };
9263
9263
  } & {
@@ -9279,7 +9279,7 @@ declare function init(config: AuthHeroConfig): {
9279
9279
  $put: {
9280
9280
  input: {
9281
9281
  param: {
9282
- 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";
9282
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9283
9283
  language: string;
9284
9284
  };
9285
9285
  } & {
@@ -9303,7 +9303,7 @@ declare function init(config: AuthHeroConfig): {
9303
9303
  $delete: {
9304
9304
  input: {
9305
9305
  param: {
9306
- 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";
9306
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9307
9307
  language: string;
9308
9308
  };
9309
9309
  } & {
@@ -10165,7 +10165,7 @@ declare function init(config: AuthHeroConfig): {
10165
10165
  };
10166
10166
  } | {
10167
10167
  mode: "inline";
10168
- status: "error" | "success";
10168
+ status: "success" | "error";
10169
10169
  connection_id: string;
10170
10170
  connection_name: string;
10171
10171
  strategy: string;
@@ -10744,7 +10744,7 @@ declare function init(config: AuthHeroConfig): {
10744
10744
  log_type: string;
10745
10745
  category: "user_action" | "admin_action" | "system" | "api";
10746
10746
  actor: {
10747
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
10747
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
10748
10748
  id?: string | undefined;
10749
10749
  email?: string | undefined;
10750
10750
  org_id?: string | undefined;
@@ -11392,7 +11392,7 @@ declare function init(config: AuthHeroConfig): {
11392
11392
  };
11393
11393
  };
11394
11394
  output: {
11395
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11395
+ type: "s" | "w" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11396
11396
  date: string;
11397
11397
  isMobile: boolean;
11398
11398
  log_id: string;
@@ -11431,7 +11431,7 @@ declare function init(config: AuthHeroConfig): {
11431
11431
  limit: number;
11432
11432
  length: number;
11433
11433
  logs: {
11434
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11434
+ type: "s" | "w" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11435
11435
  date: string;
11436
11436
  isMobile: boolean;
11437
11437
  log_id: string;
@@ -11485,7 +11485,7 @@ declare function init(config: AuthHeroConfig): {
11485
11485
  };
11486
11486
  };
11487
11487
  output: {
11488
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11488
+ type: "s" | "w" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11489
11489
  date: string;
11490
11490
  isMobile: boolean;
11491
11491
  log_id: string;
@@ -11873,7 +11873,7 @@ declare function init(config: AuthHeroConfig): {
11873
11873
  addons?: {
11874
11874
  [x: string]: any;
11875
11875
  } | undefined;
11876
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
11876
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11877
11877
  client_metadata?: {
11878
11878
  [x: string]: string;
11879
11879
  } | undefined;
@@ -11969,7 +11969,7 @@ declare function init(config: AuthHeroConfig): {
11969
11969
  addons?: {
11970
11970
  [x: string]: any;
11971
11971
  } | undefined;
11972
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
11972
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11973
11973
  client_metadata?: {
11974
11974
  [x: string]: string;
11975
11975
  } | undefined;
@@ -12080,7 +12080,7 @@ declare function init(config: AuthHeroConfig): {
12080
12080
  addons?: {
12081
12081
  [x: string]: any;
12082
12082
  } | undefined;
12083
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12083
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12084
12084
  client_metadata?: {
12085
12085
  [x: string]: string;
12086
12086
  } | undefined;
@@ -12190,7 +12190,7 @@ declare function init(config: AuthHeroConfig): {
12190
12190
  custom_login_page_preview?: string | undefined;
12191
12191
  form_template?: string | undefined;
12192
12192
  addons?: Record<string, any> | undefined;
12193
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12193
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12194
12194
  client_metadata?: Record<string, string> | undefined;
12195
12195
  hide_sign_up_disabled_error?: boolean | undefined;
12196
12196
  mobile?: Record<string, any> | undefined;
@@ -12270,7 +12270,7 @@ declare function init(config: AuthHeroConfig): {
12270
12270
  addons?: {
12271
12271
  [x: string]: any;
12272
12272
  } | undefined;
12273
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12273
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12274
12274
  client_metadata?: {
12275
12275
  [x: string]: string;
12276
12276
  } | undefined;
@@ -12359,7 +12359,7 @@ declare function init(config: AuthHeroConfig): {
12359
12359
  custom_login_page_preview?: string | undefined;
12360
12360
  form_template?: string | undefined;
12361
12361
  addons?: Record<string, any> | undefined;
12362
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12362
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12363
12363
  client_metadata?: Record<string, string> | undefined;
12364
12364
  hide_sign_up_disabled_error?: boolean | undefined;
12365
12365
  mobile?: Record<string, any> | undefined;
@@ -12439,7 +12439,7 @@ declare function init(config: AuthHeroConfig): {
12439
12439
  addons?: {
12440
12440
  [x: string]: any;
12441
12441
  } | undefined;
12442
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12442
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12443
12443
  client_metadata?: {
12444
12444
  [x: string]: string;
12445
12445
  } | undefined;
@@ -13703,7 +13703,7 @@ declare function init(config: AuthHeroConfig): {
13703
13703
  };
13704
13704
  };
13705
13705
  output: {
13706
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13706
+ type: "s" | "w" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
13707
13707
  date: string;
13708
13708
  isMobile: boolean;
13709
13709
  log_id: string;
@@ -13742,7 +13742,7 @@ declare function init(config: AuthHeroConfig): {
13742
13742
  limit: number;
13743
13743
  length: number;
13744
13744
  logs: {
13745
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13745
+ type: "s" | "w" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
13746
13746
  date: string;
13747
13747
  isMobile: boolean;
13748
13748
  log_id: string;
@@ -14057,7 +14057,7 @@ declare function init(config: AuthHeroConfig): {
14057
14057
  };
14058
14058
  } & {
14059
14059
  json: {
14060
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14060
+ 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";
14061
14061
  body: string;
14062
14062
  from: string;
14063
14063
  subject: string;
@@ -14068,9 +14068,19 @@ declare function init(config: AuthHeroConfig): {
14068
14068
  enabled?: boolean | undefined;
14069
14069
  };
14070
14070
  };
14071
- output: {};
14072
- outputFormat: string;
14073
- status: 409;
14071
+ output: {
14072
+ 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";
14073
+ body: string;
14074
+ from: string;
14075
+ subject: string;
14076
+ syntax: "liquid";
14077
+ includeEmailInRedirect: boolean;
14078
+ enabled: boolean;
14079
+ resultUrl?: string | undefined;
14080
+ urlLifetimeInSeconds?: number | undefined;
14081
+ };
14082
+ outputFormat: "json";
14083
+ status: 201;
14074
14084
  } | {
14075
14085
  input: {
14076
14086
  header: {
@@ -14078,7 +14088,7 @@ declare function init(config: AuthHeroConfig): {
14078
14088
  };
14079
14089
  } & {
14080
14090
  json: {
14081
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14091
+ 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";
14082
14092
  body: string;
14083
14093
  from: string;
14084
14094
  subject: string;
@@ -14089,19 +14099,9 @@ declare function init(config: AuthHeroConfig): {
14089
14099
  enabled?: boolean | undefined;
14090
14100
  };
14091
14101
  };
14092
- output: {
14093
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14094
- body: string;
14095
- from: string;
14096
- subject: string;
14097
- syntax: "liquid";
14098
- includeEmailInRedirect: boolean;
14099
- enabled: boolean;
14100
- resultUrl?: string | undefined;
14101
- urlLifetimeInSeconds?: number | undefined;
14102
- };
14103
- outputFormat: "json";
14104
- status: 201;
14102
+ output: {};
14103
+ outputFormat: string;
14104
+ status: 409;
14105
14105
  };
14106
14106
  };
14107
14107
  } & {
@@ -14113,7 +14113,7 @@ declare function init(config: AuthHeroConfig): {
14113
14113
  };
14114
14114
  };
14115
14115
  output: {
14116
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14116
+ 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";
14117
14117
  body: string;
14118
14118
  subject: string;
14119
14119
  }[];
@@ -14126,7 +14126,7 @@ declare function init(config: AuthHeroConfig): {
14126
14126
  $get: {
14127
14127
  input: {
14128
14128
  param: {
14129
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14129
+ 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";
14130
14130
  };
14131
14131
  } & {
14132
14132
  header: {
@@ -14139,7 +14139,7 @@ declare function init(config: AuthHeroConfig): {
14139
14139
  } | {
14140
14140
  input: {
14141
14141
  param: {
14142
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14142
+ 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";
14143
14143
  };
14144
14144
  } & {
14145
14145
  header: {
@@ -14147,7 +14147,7 @@ declare function init(config: AuthHeroConfig): {
14147
14147
  };
14148
14148
  };
14149
14149
  output: {
14150
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14150
+ 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";
14151
14151
  body: string;
14152
14152
  from: string;
14153
14153
  subject: string;
@@ -14166,7 +14166,7 @@ declare function init(config: AuthHeroConfig): {
14166
14166
  $put: {
14167
14167
  input: {
14168
14168
  param: {
14169
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14169
+ 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";
14170
14170
  };
14171
14171
  } & {
14172
14172
  header: {
@@ -14174,19 +14174,19 @@ declare function init(config: AuthHeroConfig): {
14174
14174
  };
14175
14175
  } & {
14176
14176
  json: {
14177
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14177
+ 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";
14178
14178
  body: string;
14179
- from: string;
14180
14179
  subject: string;
14181
14180
  syntax?: "liquid" | undefined;
14182
14181
  resultUrl?: string | undefined;
14183
14182
  urlLifetimeInSeconds?: number | undefined;
14184
14183
  includeEmailInRedirect?: boolean | undefined;
14185
14184
  enabled?: boolean | undefined;
14185
+ from?: string | undefined;
14186
14186
  };
14187
14187
  };
14188
14188
  output: {
14189
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14189
+ 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";
14190
14190
  body: string;
14191
14191
  from: string;
14192
14192
  subject: string;
@@ -14205,7 +14205,7 @@ declare function init(config: AuthHeroConfig): {
14205
14205
  $patch: {
14206
14206
  input: {
14207
14207
  param: {
14208
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14208
+ 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";
14209
14209
  };
14210
14210
  } & {
14211
14211
  header: {
@@ -14213,7 +14213,7 @@ declare function init(config: AuthHeroConfig): {
14213
14213
  };
14214
14214
  } & {
14215
14215
  json: {
14216
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14216
+ 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;
14217
14217
  body?: string | undefined;
14218
14218
  from?: string | undefined;
14219
14219
  subject?: string | undefined;
@@ -14230,7 +14230,7 @@ declare function init(config: AuthHeroConfig): {
14230
14230
  } | {
14231
14231
  input: {
14232
14232
  param: {
14233
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14233
+ 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";
14234
14234
  };
14235
14235
  } & {
14236
14236
  header: {
@@ -14238,7 +14238,7 @@ declare function init(config: AuthHeroConfig): {
14238
14238
  };
14239
14239
  } & {
14240
14240
  json: {
14241
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14241
+ 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;
14242
14242
  body?: string | undefined;
14243
14243
  from?: string | undefined;
14244
14244
  subject?: string | undefined;
@@ -14250,7 +14250,7 @@ declare function init(config: AuthHeroConfig): {
14250
14250
  };
14251
14251
  };
14252
14252
  output: {
14253
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14253
+ 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";
14254
14254
  body: string;
14255
14255
  from: string;
14256
14256
  subject: string;
@@ -14264,6 +14264,63 @@ declare function init(config: AuthHeroConfig): {
14264
14264
  status: 200;
14265
14265
  };
14266
14266
  };
14267
+ } & {
14268
+ "/:templateName": {
14269
+ $delete: {
14270
+ input: {
14271
+ param: {
14272
+ 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";
14273
+ };
14274
+ } & {
14275
+ header: {
14276
+ "tenant-id"?: string | undefined;
14277
+ };
14278
+ };
14279
+ output: {};
14280
+ outputFormat: string;
14281
+ status: 204;
14282
+ } | {
14283
+ input: {
14284
+ param: {
14285
+ 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";
14286
+ };
14287
+ } & {
14288
+ header: {
14289
+ "tenant-id"?: string | undefined;
14290
+ };
14291
+ };
14292
+ output: {};
14293
+ outputFormat: string;
14294
+ status: 404;
14295
+ };
14296
+ };
14297
+ } & {
14298
+ "/:templateName/try": {
14299
+ $post: {
14300
+ input: {
14301
+ param: {
14302
+ 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";
14303
+ };
14304
+ } & {
14305
+ header: {
14306
+ "tenant-id"?: string | undefined;
14307
+ };
14308
+ } & {
14309
+ json: {
14310
+ to: string;
14311
+ body?: string | undefined;
14312
+ subject?: string | undefined;
14313
+ from?: string | undefined;
14314
+ language?: string | undefined;
14315
+ };
14316
+ };
14317
+ output: {
14318
+ sent: boolean;
14319
+ };
14320
+ outputFormat: "json";
14321
+ status: 200;
14322
+ };
14323
+ };
14267
14324
  }, "/email-templates"> & hono_types.MergeSchemaPath<{
14268
14325
  "/": {
14269
14326
  $get: {
@@ -15389,7 +15446,7 @@ declare function init(config: AuthHeroConfig): {
15389
15446
  logs: {
15390
15447
  action_name: string;
15391
15448
  lines: {
15392
- level: "log" | "error" | "info" | "warn" | "debug";
15449
+ level: "error" | "log" | "info" | "warn" | "debug";
15393
15450
  message: string;
15394
15451
  }[];
15395
15452
  }[];
@@ -15696,7 +15753,7 @@ declare function init(config: AuthHeroConfig): {
15696
15753
  };
15697
15754
  output: {};
15698
15755
  outputFormat: string;
15699
- status: 200;
15756
+ status: 409;
15700
15757
  } | {
15701
15758
  input: {
15702
15759
  param: {
@@ -15709,7 +15766,7 @@ declare function init(config: AuthHeroConfig): {
15709
15766
  };
15710
15767
  output: {};
15711
15768
  outputFormat: string;
15712
- status: 404;
15769
+ status: 200;
15713
15770
  } | {
15714
15771
  input: {
15715
15772
  param: {
@@ -15722,7 +15779,7 @@ declare function init(config: AuthHeroConfig): {
15722
15779
  };
15723
15780
  output: {};
15724
15781
  outputFormat: string;
15725
- status: 409;
15782
+ status: 404;
15726
15783
  };
15727
15784
  };
15728
15785
  } & {
@@ -16056,7 +16113,7 @@ declare function init(config: AuthHeroConfig): {
16056
16113
  args: hono_utils_types.JSONValue[];
16057
16114
  }[];
16058
16115
  logs: {
16059
- level: "log" | "error" | "info" | "warn" | "debug";
16116
+ level: "error" | "log" | "info" | "warn" | "debug";
16060
16117
  message: string;
16061
16118
  }[];
16062
16119
  error?: string | undefined;
@@ -16354,7 +16411,7 @@ declare function init(config: AuthHeroConfig): {
16354
16411
  scope?: string | undefined;
16355
16412
  grant_types?: string[] | undefined;
16356
16413
  response_types?: string[] | undefined;
16357
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16414
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16358
16415
  jwks_uri?: string | undefined;
16359
16416
  jwks?: Record<string, unknown> | undefined;
16360
16417
  software_id?: string | undefined;
@@ -16443,7 +16500,7 @@ declare function init(config: AuthHeroConfig): {
16443
16500
  scope?: string | undefined;
16444
16501
  grant_types?: string[] | undefined;
16445
16502
  response_types?: string[] | undefined;
16446
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16503
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16447
16504
  jwks_uri?: string | undefined;
16448
16505
  jwks?: Record<string, unknown> | undefined;
16449
16506
  software_id?: string | undefined;
@@ -16791,14 +16848,14 @@ declare function init(config: AuthHeroConfig): {
16791
16848
  authParams: {
16792
16849
  username?: string | undefined;
16793
16850
  state?: string | undefined;
16794
- audience?: string | undefined;
16851
+ act_as?: string | undefined;
16795
16852
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16796
16853
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16797
- scope?: string | undefined;
16854
+ redirect_uri?: string | undefined;
16855
+ audience?: string | undefined;
16798
16856
  organization?: string | undefined;
16799
16857
  nonce?: string | undefined;
16800
- redirect_uri?: string | undefined;
16801
- act_as?: string | undefined;
16858
+ scope?: string | undefined;
16802
16859
  prompt?: string | undefined;
16803
16860
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16804
16861
  code_challenge?: string | undefined;
@@ -16827,14 +16884,14 @@ declare function init(config: AuthHeroConfig): {
16827
16884
  authParams: {
16828
16885
  username?: string | undefined;
16829
16886
  state?: string | undefined;
16830
- audience?: string | undefined;
16887
+ act_as?: string | undefined;
16831
16888
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16832
16889
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16833
- scope?: string | undefined;
16890
+ redirect_uri?: string | undefined;
16891
+ audience?: string | undefined;
16834
16892
  organization?: string | undefined;
16835
16893
  nonce?: string | undefined;
16836
- redirect_uri?: string | undefined;
16837
- act_as?: string | undefined;
16894
+ scope?: string | undefined;
16838
16895
  prompt?: string | undefined;
16839
16896
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16840
16897
  code_challenge?: string | undefined;
@@ -16969,14 +17026,14 @@ declare function init(config: AuthHeroConfig): {
16969
17026
  input: {
16970
17027
  form: {
16971
17028
  token: string;
16972
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17029
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
16973
17030
  client_id?: string | undefined;
16974
17031
  client_secret?: string | undefined;
16975
17032
  };
16976
17033
  } & {
16977
17034
  json: {
16978
17035
  token: string;
16979
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17036
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
16980
17037
  client_id?: string | undefined;
16981
17038
  client_secret?: string | undefined;
16982
17039
  };
@@ -16988,14 +17045,14 @@ declare function init(config: AuthHeroConfig): {
16988
17045
  input: {
16989
17046
  form: {
16990
17047
  token: string;
16991
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17048
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
16992
17049
  client_id?: string | undefined;
16993
17050
  client_secret?: string | undefined;
16994
17051
  };
16995
17052
  } & {
16996
17053
  json: {
16997
17054
  token: string;
16998
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17055
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
16999
17056
  client_id?: string | undefined;
17000
17057
  client_secret?: string | undefined;
17001
17058
  };
@@ -17010,14 +17067,14 @@ declare function init(config: AuthHeroConfig): {
17010
17067
  input: {
17011
17068
  form: {
17012
17069
  token: string;
17013
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17070
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17014
17071
  client_id?: string | undefined;
17015
17072
  client_secret?: string | undefined;
17016
17073
  };
17017
17074
  } & {
17018
17075
  json: {
17019
17076
  token: string;
17020
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17077
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17021
17078
  client_id?: string | undefined;
17022
17079
  client_secret?: string | undefined;
17023
17080
  };
@@ -17067,7 +17124,18 @@ declare function init(config: AuthHeroConfig): {
17067
17124
  client_id: string;
17068
17125
  username: string;
17069
17126
  otp: string;
17070
- realm: "sms" | "email";
17127
+ realm: "email" | "sms";
17128
+ } | {
17129
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17130
+ subject_token: string;
17131
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
17132
+ organization: string;
17133
+ audience?: string | undefined;
17134
+ scope?: string | undefined;
17135
+ client_id?: string | undefined;
17136
+ client_secret?: string | undefined;
17137
+ client_assertion?: string | undefined;
17138
+ client_assertion_type?: string | undefined;
17071
17139
  };
17072
17140
  } & {
17073
17141
  json: {
@@ -17103,7 +17171,18 @@ declare function init(config: AuthHeroConfig): {
17103
17171
  client_id: string;
17104
17172
  username: string;
17105
17173
  otp: string;
17106
- realm: "sms" | "email";
17174
+ realm: "email" | "sms";
17175
+ } | {
17176
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17177
+ subject_token: string;
17178
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
17179
+ organization: string;
17180
+ audience?: string | undefined;
17181
+ scope?: string | undefined;
17182
+ client_id?: string | undefined;
17183
+ client_secret?: string | undefined;
17184
+ client_assertion?: string | undefined;
17185
+ client_assertion_type?: string | undefined;
17107
17186
  };
17108
17187
  };
17109
17188
  output: {};
@@ -17144,7 +17223,18 @@ declare function init(config: AuthHeroConfig): {
17144
17223
  client_id: string;
17145
17224
  username: string;
17146
17225
  otp: string;
17147
- realm: "sms" | "email";
17226
+ realm: "email" | "sms";
17227
+ } | {
17228
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17229
+ subject_token: string;
17230
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
17231
+ organization: string;
17232
+ audience?: string | undefined;
17233
+ scope?: string | undefined;
17234
+ client_id?: string | undefined;
17235
+ client_secret?: string | undefined;
17236
+ client_assertion?: string | undefined;
17237
+ client_assertion_type?: string | undefined;
17148
17238
  };
17149
17239
  } & {
17150
17240
  json: {
@@ -17180,7 +17270,18 @@ declare function init(config: AuthHeroConfig): {
17180
17270
  client_id: string;
17181
17271
  username: string;
17182
17272
  otp: string;
17183
- realm: "sms" | "email";
17273
+ realm: "email" | "sms";
17274
+ } | {
17275
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17276
+ subject_token: string;
17277
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
17278
+ organization: string;
17279
+ audience?: string | undefined;
17280
+ scope?: string | undefined;
17281
+ client_id?: string | undefined;
17282
+ client_secret?: string | undefined;
17283
+ client_assertion?: string | undefined;
17284
+ client_assertion_type?: string | undefined;
17184
17285
  };
17185
17286
  };
17186
17287
  output: {
@@ -17229,7 +17330,18 @@ declare function init(config: AuthHeroConfig): {
17229
17330
  client_id: string;
17230
17331
  username: string;
17231
17332
  otp: string;
17232
- realm: "sms" | "email";
17333
+ realm: "email" | "sms";
17334
+ } | {
17335
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17336
+ subject_token: string;
17337
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
17338
+ organization: string;
17339
+ audience?: string | undefined;
17340
+ scope?: string | undefined;
17341
+ client_id?: string | undefined;
17342
+ client_secret?: string | undefined;
17343
+ client_assertion?: string | undefined;
17344
+ client_assertion_type?: string | undefined;
17233
17345
  };
17234
17346
  } & {
17235
17347
  json: {
@@ -17265,7 +17377,18 @@ declare function init(config: AuthHeroConfig): {
17265
17377
  client_id: string;
17266
17378
  username: string;
17267
17379
  otp: string;
17268
- realm: "sms" | "email";
17380
+ realm: "email" | "sms";
17381
+ } | {
17382
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17383
+ subject_token: string;
17384
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
17385
+ organization: string;
17386
+ audience?: string | undefined;
17387
+ scope?: string | undefined;
17388
+ client_id?: string | undefined;
17389
+ client_secret?: string | undefined;
17390
+ client_assertion?: string | undefined;
17391
+ client_assertion_type?: string | undefined;
17269
17392
  };
17270
17393
  };
17271
17394
  output: {
@@ -17309,7 +17432,18 @@ declare function init(config: AuthHeroConfig): {
17309
17432
  client_id: string;
17310
17433
  username: string;
17311
17434
  otp: string;
17312
- realm: "sms" | "email";
17435
+ realm: "email" | "sms";
17436
+ } | {
17437
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17438
+ subject_token: string;
17439
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
17440
+ organization: string;
17441
+ audience?: string | undefined;
17442
+ scope?: string | undefined;
17443
+ client_id?: string | undefined;
17444
+ client_secret?: string | undefined;
17445
+ client_assertion?: string | undefined;
17446
+ client_assertion_type?: string | undefined;
17313
17447
  };
17314
17448
  } & {
17315
17449
  json: {
@@ -17345,7 +17479,18 @@ declare function init(config: AuthHeroConfig): {
17345
17479
  client_id: string;
17346
17480
  username: string;
17347
17481
  otp: string;
17348
- realm: "sms" | "email";
17482
+ realm: "email" | "sms";
17483
+ } | {
17484
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17485
+ subject_token: string;
17486
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
17487
+ organization: string;
17488
+ audience?: string | undefined;
17489
+ scope?: string | undefined;
17490
+ client_id?: string | undefined;
17491
+ client_secret?: string | undefined;
17492
+ client_assertion?: string | undefined;
17493
+ client_assertion_type?: string | undefined;
17349
17494
  };
17350
17495
  };
17351
17496
  output: {
@@ -17389,7 +17534,18 @@ declare function init(config: AuthHeroConfig): {
17389
17534
  client_id: string;
17390
17535
  username: string;
17391
17536
  otp: string;
17392
- realm: "sms" | "email";
17537
+ realm: "email" | "sms";
17538
+ } | {
17539
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17540
+ subject_token: string;
17541
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
17542
+ organization: string;
17543
+ audience?: string | undefined;
17544
+ scope?: string | undefined;
17545
+ client_id?: string | undefined;
17546
+ client_secret?: string | undefined;
17547
+ client_assertion?: string | undefined;
17548
+ client_assertion_type?: string | undefined;
17393
17549
  };
17394
17550
  } & {
17395
17551
  json: {
@@ -17425,7 +17581,18 @@ declare function init(config: AuthHeroConfig): {
17425
17581
  client_id: string;
17426
17582
  username: string;
17427
17583
  otp: string;
17428
- realm: "sms" | "email";
17584
+ realm: "email" | "sms";
17585
+ } | {
17586
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17587
+ subject_token: string;
17588
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
17589
+ organization: string;
17590
+ audience?: string | undefined;
17591
+ scope?: string | undefined;
17592
+ client_id?: string | undefined;
17593
+ client_secret?: string | undefined;
17594
+ client_assertion?: string | undefined;
17595
+ client_assertion_type?: string | undefined;
17429
17596
  };
17430
17597
  };
17431
17598
  output: {
@@ -17444,7 +17611,7 @@ declare function init(config: AuthHeroConfig): {
17444
17611
  keys: {
17445
17612
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
17446
17613
  kid: string;
17447
- kty: "EC" | "RSA" | "oct";
17614
+ kty: "RSA" | "EC" | "oct";
17448
17615
  use?: "sig" | "enc" | undefined;
17449
17616
  n?: string | undefined;
17450
17617
  e?: string | undefined;