authhero 4.37.0 → 4.38.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.
@@ -34114,6 +34114,117 @@ export declare const tenantInsertSchema: z.ZodObject<{
34114
34114
  }>>;
34115
34115
  pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
34116
34116
  authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
34117
+ mfa: z.ZodOptional<z.ZodObject<{
34118
+ factors: z.ZodOptional<z.ZodObject<{
34119
+ sms: z.ZodDefault<z.ZodBoolean>;
34120
+ otp: z.ZodDefault<z.ZodBoolean>;
34121
+ email: z.ZodDefault<z.ZodBoolean>;
34122
+ push_notification: z.ZodDefault<z.ZodBoolean>;
34123
+ webauthn_roaming: z.ZodDefault<z.ZodBoolean>;
34124
+ webauthn_platform: z.ZodDefault<z.ZodBoolean>;
34125
+ recovery_code: z.ZodDefault<z.ZodBoolean>;
34126
+ duo: z.ZodDefault<z.ZodBoolean>;
34127
+ }, "strip", z.ZodTypeAny, {
34128
+ email: boolean;
34129
+ otp: boolean;
34130
+ sms: boolean;
34131
+ push_notification: boolean;
34132
+ webauthn_roaming: boolean;
34133
+ webauthn_platform: boolean;
34134
+ recovery_code: boolean;
34135
+ duo: boolean;
34136
+ }, {
34137
+ email?: boolean | undefined;
34138
+ otp?: boolean | undefined;
34139
+ sms?: boolean | undefined;
34140
+ push_notification?: boolean | undefined;
34141
+ webauthn_roaming?: boolean | undefined;
34142
+ webauthn_platform?: boolean | undefined;
34143
+ recovery_code?: boolean | undefined;
34144
+ duo?: boolean | undefined;
34145
+ }>>;
34146
+ sms_provider: z.ZodOptional<z.ZodObject<{
34147
+ provider: z.ZodOptional<z.ZodEnum<[
34148
+ "twilio",
34149
+ "vonage",
34150
+ "aws_sns",
34151
+ "phone_message_hook"
34152
+ ]>>;
34153
+ }, "strip", z.ZodTypeAny, {
34154
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34155
+ }, {
34156
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34157
+ }>>;
34158
+ twilio: z.ZodOptional<z.ZodObject<{
34159
+ sid: z.ZodOptional<z.ZodString>;
34160
+ auth_token: z.ZodOptional<z.ZodString>;
34161
+ from: z.ZodOptional<z.ZodString>;
34162
+ messaging_service_sid: z.ZodOptional<z.ZodString>;
34163
+ }, "strip", z.ZodTypeAny, {
34164
+ from?: string | undefined;
34165
+ sid?: string | undefined;
34166
+ auth_token?: string | undefined;
34167
+ messaging_service_sid?: string | undefined;
34168
+ }, {
34169
+ from?: string | undefined;
34170
+ sid?: string | undefined;
34171
+ auth_token?: string | undefined;
34172
+ messaging_service_sid?: string | undefined;
34173
+ }>>;
34174
+ phone_message: z.ZodOptional<z.ZodObject<{
34175
+ message: z.ZodOptional<z.ZodString>;
34176
+ }, "strip", z.ZodTypeAny, {
34177
+ message?: string | undefined;
34178
+ }, {
34179
+ message?: string | undefined;
34180
+ }>>;
34181
+ }, "strip", z.ZodTypeAny, {
34182
+ factors?: {
34183
+ email: boolean;
34184
+ otp: boolean;
34185
+ sms: boolean;
34186
+ push_notification: boolean;
34187
+ webauthn_roaming: boolean;
34188
+ webauthn_platform: boolean;
34189
+ recovery_code: boolean;
34190
+ duo: boolean;
34191
+ } | undefined;
34192
+ twilio?: {
34193
+ from?: string | undefined;
34194
+ sid?: string | undefined;
34195
+ auth_token?: string | undefined;
34196
+ messaging_service_sid?: string | undefined;
34197
+ } | undefined;
34198
+ sms_provider?: {
34199
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34200
+ } | undefined;
34201
+ phone_message?: {
34202
+ message?: string | undefined;
34203
+ } | undefined;
34204
+ }, {
34205
+ factors?: {
34206
+ email?: boolean | undefined;
34207
+ otp?: boolean | undefined;
34208
+ sms?: boolean | undefined;
34209
+ push_notification?: boolean | undefined;
34210
+ webauthn_roaming?: boolean | undefined;
34211
+ webauthn_platform?: boolean | undefined;
34212
+ recovery_code?: boolean | undefined;
34213
+ duo?: boolean | undefined;
34214
+ } | undefined;
34215
+ twilio?: {
34216
+ from?: string | undefined;
34217
+ sid?: string | undefined;
34218
+ auth_token?: string | undefined;
34219
+ messaging_service_sid?: string | undefined;
34220
+ } | undefined;
34221
+ sms_provider?: {
34222
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34223
+ } | undefined;
34224
+ phone_message?: {
34225
+ message?: string | undefined;
34226
+ } | undefined;
34227
+ }>>;
34117
34228
  }, "strip", z.ZodTypeAny, {
34118
34229
  audience: string;
34119
34230
  friendly_name: string;
@@ -34213,6 +34324,30 @@ export declare const tenantInsertSchema: z.ZodObject<{
34213
34324
  } | undefined;
34214
34325
  pushed_authorization_requests_supported?: boolean | undefined;
34215
34326
  authorization_response_iss_parameter_supported?: boolean | undefined;
34327
+ mfa?: {
34328
+ factors?: {
34329
+ email: boolean;
34330
+ otp: boolean;
34331
+ sms: boolean;
34332
+ push_notification: boolean;
34333
+ webauthn_roaming: boolean;
34334
+ webauthn_platform: boolean;
34335
+ recovery_code: boolean;
34336
+ duo: boolean;
34337
+ } | undefined;
34338
+ twilio?: {
34339
+ from?: string | undefined;
34340
+ sid?: string | undefined;
34341
+ auth_token?: string | undefined;
34342
+ messaging_service_sid?: string | undefined;
34343
+ } | undefined;
34344
+ sms_provider?: {
34345
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34346
+ } | undefined;
34347
+ phone_message?: {
34348
+ message?: string | undefined;
34349
+ } | undefined;
34350
+ } | undefined;
34216
34351
  }, {
34217
34352
  audience: string;
34218
34353
  friendly_name: string;
@@ -34312,6 +34447,30 @@ export declare const tenantInsertSchema: z.ZodObject<{
34312
34447
  } | undefined;
34313
34448
  pushed_authorization_requests_supported?: boolean | undefined;
34314
34449
  authorization_response_iss_parameter_supported?: boolean | undefined;
34450
+ mfa?: {
34451
+ factors?: {
34452
+ email?: boolean | undefined;
34453
+ otp?: boolean | undefined;
34454
+ sms?: boolean | undefined;
34455
+ push_notification?: boolean | undefined;
34456
+ webauthn_roaming?: boolean | undefined;
34457
+ webauthn_platform?: boolean | undefined;
34458
+ recovery_code?: boolean | undefined;
34459
+ duo?: boolean | undefined;
34460
+ } | undefined;
34461
+ twilio?: {
34462
+ from?: string | undefined;
34463
+ sid?: string | undefined;
34464
+ auth_token?: string | undefined;
34465
+ messaging_service_sid?: string | undefined;
34466
+ } | undefined;
34467
+ sms_provider?: {
34468
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34469
+ } | undefined;
34470
+ phone_message?: {
34471
+ message?: string | undefined;
34472
+ } | undefined;
34473
+ } | undefined;
34315
34474
  }>;
34316
34475
  export declare const tenantSchema: z.ZodObject<{
34317
34476
  id: z.ZodString;
@@ -34550,6 +34709,117 @@ export declare const tenantSchema: z.ZodObject<{
34550
34709
  }>>;
34551
34710
  pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
34552
34711
  authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
34712
+ mfa: z.ZodOptional<z.ZodObject<{
34713
+ factors: z.ZodOptional<z.ZodObject<{
34714
+ sms: z.ZodDefault<z.ZodBoolean>;
34715
+ otp: z.ZodDefault<z.ZodBoolean>;
34716
+ email: z.ZodDefault<z.ZodBoolean>;
34717
+ push_notification: z.ZodDefault<z.ZodBoolean>;
34718
+ webauthn_roaming: z.ZodDefault<z.ZodBoolean>;
34719
+ webauthn_platform: z.ZodDefault<z.ZodBoolean>;
34720
+ recovery_code: z.ZodDefault<z.ZodBoolean>;
34721
+ duo: z.ZodDefault<z.ZodBoolean>;
34722
+ }, "strip", z.ZodTypeAny, {
34723
+ email: boolean;
34724
+ otp: boolean;
34725
+ sms: boolean;
34726
+ push_notification: boolean;
34727
+ webauthn_roaming: boolean;
34728
+ webauthn_platform: boolean;
34729
+ recovery_code: boolean;
34730
+ duo: boolean;
34731
+ }, {
34732
+ email?: boolean | undefined;
34733
+ otp?: boolean | undefined;
34734
+ sms?: boolean | undefined;
34735
+ push_notification?: boolean | undefined;
34736
+ webauthn_roaming?: boolean | undefined;
34737
+ webauthn_platform?: boolean | undefined;
34738
+ recovery_code?: boolean | undefined;
34739
+ duo?: boolean | undefined;
34740
+ }>>;
34741
+ sms_provider: z.ZodOptional<z.ZodObject<{
34742
+ provider: z.ZodOptional<z.ZodEnum<[
34743
+ "twilio",
34744
+ "vonage",
34745
+ "aws_sns",
34746
+ "phone_message_hook"
34747
+ ]>>;
34748
+ }, "strip", z.ZodTypeAny, {
34749
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34750
+ }, {
34751
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34752
+ }>>;
34753
+ twilio: z.ZodOptional<z.ZodObject<{
34754
+ sid: z.ZodOptional<z.ZodString>;
34755
+ auth_token: z.ZodOptional<z.ZodString>;
34756
+ from: z.ZodOptional<z.ZodString>;
34757
+ messaging_service_sid: z.ZodOptional<z.ZodString>;
34758
+ }, "strip", z.ZodTypeAny, {
34759
+ from?: string | undefined;
34760
+ sid?: string | undefined;
34761
+ auth_token?: string | undefined;
34762
+ messaging_service_sid?: string | undefined;
34763
+ }, {
34764
+ from?: string | undefined;
34765
+ sid?: string | undefined;
34766
+ auth_token?: string | undefined;
34767
+ messaging_service_sid?: string | undefined;
34768
+ }>>;
34769
+ phone_message: z.ZodOptional<z.ZodObject<{
34770
+ message: z.ZodOptional<z.ZodString>;
34771
+ }, "strip", z.ZodTypeAny, {
34772
+ message?: string | undefined;
34773
+ }, {
34774
+ message?: string | undefined;
34775
+ }>>;
34776
+ }, "strip", z.ZodTypeAny, {
34777
+ factors?: {
34778
+ email: boolean;
34779
+ otp: boolean;
34780
+ sms: boolean;
34781
+ push_notification: boolean;
34782
+ webauthn_roaming: boolean;
34783
+ webauthn_platform: boolean;
34784
+ recovery_code: boolean;
34785
+ duo: boolean;
34786
+ } | undefined;
34787
+ twilio?: {
34788
+ from?: string | undefined;
34789
+ sid?: string | undefined;
34790
+ auth_token?: string | undefined;
34791
+ messaging_service_sid?: string | undefined;
34792
+ } | undefined;
34793
+ sms_provider?: {
34794
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34795
+ } | undefined;
34796
+ phone_message?: {
34797
+ message?: string | undefined;
34798
+ } | undefined;
34799
+ }, {
34800
+ factors?: {
34801
+ email?: boolean | undefined;
34802
+ otp?: boolean | undefined;
34803
+ sms?: boolean | undefined;
34804
+ push_notification?: boolean | undefined;
34805
+ webauthn_roaming?: boolean | undefined;
34806
+ webauthn_platform?: boolean | undefined;
34807
+ recovery_code?: boolean | undefined;
34808
+ duo?: boolean | undefined;
34809
+ } | undefined;
34810
+ twilio?: {
34811
+ from?: string | undefined;
34812
+ sid?: string | undefined;
34813
+ auth_token?: string | undefined;
34814
+ messaging_service_sid?: string | undefined;
34815
+ } | undefined;
34816
+ sms_provider?: {
34817
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34818
+ } | undefined;
34819
+ phone_message?: {
34820
+ message?: string | undefined;
34821
+ } | undefined;
34822
+ }>>;
34553
34823
  created_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
34554
34824
  updated_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
34555
34825
  }, "strip", z.ZodTypeAny, {
@@ -34653,6 +34923,30 @@ export declare const tenantSchema: z.ZodObject<{
34653
34923
  } | undefined;
34654
34924
  pushed_authorization_requests_supported?: boolean | undefined;
34655
34925
  authorization_response_iss_parameter_supported?: boolean | undefined;
34926
+ mfa?: {
34927
+ factors?: {
34928
+ email: boolean;
34929
+ otp: boolean;
34930
+ sms: boolean;
34931
+ push_notification: boolean;
34932
+ webauthn_roaming: boolean;
34933
+ webauthn_platform: boolean;
34934
+ recovery_code: boolean;
34935
+ duo: boolean;
34936
+ } | undefined;
34937
+ twilio?: {
34938
+ from?: string | undefined;
34939
+ sid?: string | undefined;
34940
+ auth_token?: string | undefined;
34941
+ messaging_service_sid?: string | undefined;
34942
+ } | undefined;
34943
+ sms_provider?: {
34944
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
34945
+ } | undefined;
34946
+ phone_message?: {
34947
+ message?: string | undefined;
34948
+ } | undefined;
34949
+ } | undefined;
34656
34950
  }, {
34657
34951
  created_at: string | null;
34658
34952
  updated_at: string | null;
@@ -34754,6 +35048,30 @@ export declare const tenantSchema: z.ZodObject<{
34754
35048
  } | undefined;
34755
35049
  pushed_authorization_requests_supported?: boolean | undefined;
34756
35050
  authorization_response_iss_parameter_supported?: boolean | undefined;
35051
+ mfa?: {
35052
+ factors?: {
35053
+ email?: boolean | undefined;
35054
+ otp?: boolean | undefined;
35055
+ sms?: boolean | undefined;
35056
+ push_notification?: boolean | undefined;
35057
+ webauthn_roaming?: boolean | undefined;
35058
+ webauthn_platform?: boolean | undefined;
35059
+ recovery_code?: boolean | undefined;
35060
+ duo?: boolean | undefined;
35061
+ } | undefined;
35062
+ twilio?: {
35063
+ from?: string | undefined;
35064
+ sid?: string | undefined;
35065
+ auth_token?: string | undefined;
35066
+ messaging_service_sid?: string | undefined;
35067
+ } | undefined;
35068
+ sms_provider?: {
35069
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
35070
+ } | undefined;
35071
+ phone_message?: {
35072
+ message?: string | undefined;
35073
+ } | undefined;
35074
+ } | undefined;
34757
35075
  }>;
34758
35076
  export type Tenant = z.infer<typeof tenantSchema>;
34759
35077
  export declare enum GrantType {
@@ -37479,6 +37797,117 @@ export declare const tenantSettingsSchema: z.ZodObject<{
37479
37797
  }, {
37480
37798
  oidc_logout_prompt_enabled?: boolean | undefined;
37481
37799
  }>>;
37800
+ mfa: z.ZodOptional<z.ZodObject<{
37801
+ factors: z.ZodOptional<z.ZodObject<{
37802
+ sms: z.ZodDefault<z.ZodBoolean>;
37803
+ otp: z.ZodDefault<z.ZodBoolean>;
37804
+ email: z.ZodDefault<z.ZodBoolean>;
37805
+ push_notification: z.ZodDefault<z.ZodBoolean>;
37806
+ webauthn_roaming: z.ZodDefault<z.ZodBoolean>;
37807
+ webauthn_platform: z.ZodDefault<z.ZodBoolean>;
37808
+ recovery_code: z.ZodDefault<z.ZodBoolean>;
37809
+ duo: z.ZodDefault<z.ZodBoolean>;
37810
+ }, "strip", z.ZodTypeAny, {
37811
+ email: boolean;
37812
+ otp: boolean;
37813
+ sms: boolean;
37814
+ push_notification: boolean;
37815
+ webauthn_roaming: boolean;
37816
+ webauthn_platform: boolean;
37817
+ recovery_code: boolean;
37818
+ duo: boolean;
37819
+ }, {
37820
+ email?: boolean | undefined;
37821
+ otp?: boolean | undefined;
37822
+ sms?: boolean | undefined;
37823
+ push_notification?: boolean | undefined;
37824
+ webauthn_roaming?: boolean | undefined;
37825
+ webauthn_platform?: boolean | undefined;
37826
+ recovery_code?: boolean | undefined;
37827
+ duo?: boolean | undefined;
37828
+ }>>;
37829
+ sms_provider: z.ZodOptional<z.ZodObject<{
37830
+ provider: z.ZodOptional<z.ZodEnum<[
37831
+ "twilio",
37832
+ "vonage",
37833
+ "aws_sns",
37834
+ "phone_message_hook"
37835
+ ]>>;
37836
+ }, "strip", z.ZodTypeAny, {
37837
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
37838
+ }, {
37839
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
37840
+ }>>;
37841
+ twilio: z.ZodOptional<z.ZodObject<{
37842
+ sid: z.ZodOptional<z.ZodString>;
37843
+ auth_token: z.ZodOptional<z.ZodString>;
37844
+ from: z.ZodOptional<z.ZodString>;
37845
+ messaging_service_sid: z.ZodOptional<z.ZodString>;
37846
+ }, "strip", z.ZodTypeAny, {
37847
+ from?: string | undefined;
37848
+ sid?: string | undefined;
37849
+ auth_token?: string | undefined;
37850
+ messaging_service_sid?: string | undefined;
37851
+ }, {
37852
+ from?: string | undefined;
37853
+ sid?: string | undefined;
37854
+ auth_token?: string | undefined;
37855
+ messaging_service_sid?: string | undefined;
37856
+ }>>;
37857
+ phone_message: z.ZodOptional<z.ZodObject<{
37858
+ message: z.ZodOptional<z.ZodString>;
37859
+ }, "strip", z.ZodTypeAny, {
37860
+ message?: string | undefined;
37861
+ }, {
37862
+ message?: string | undefined;
37863
+ }>>;
37864
+ }, "strip", z.ZodTypeAny, {
37865
+ factors?: {
37866
+ email: boolean;
37867
+ otp: boolean;
37868
+ sms: boolean;
37869
+ push_notification: boolean;
37870
+ webauthn_roaming: boolean;
37871
+ webauthn_platform: boolean;
37872
+ recovery_code: boolean;
37873
+ duo: boolean;
37874
+ } | undefined;
37875
+ twilio?: {
37876
+ from?: string | undefined;
37877
+ sid?: string | undefined;
37878
+ auth_token?: string | undefined;
37879
+ messaging_service_sid?: string | undefined;
37880
+ } | undefined;
37881
+ sms_provider?: {
37882
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
37883
+ } | undefined;
37884
+ phone_message?: {
37885
+ message?: string | undefined;
37886
+ } | undefined;
37887
+ }, {
37888
+ factors?: {
37889
+ email?: boolean | undefined;
37890
+ otp?: boolean | undefined;
37891
+ sms?: boolean | undefined;
37892
+ push_notification?: boolean | undefined;
37893
+ webauthn_roaming?: boolean | undefined;
37894
+ webauthn_platform?: boolean | undefined;
37895
+ recovery_code?: boolean | undefined;
37896
+ duo?: boolean | undefined;
37897
+ } | undefined;
37898
+ twilio?: {
37899
+ from?: string | undefined;
37900
+ sid?: string | undefined;
37901
+ auth_token?: string | undefined;
37902
+ messaging_service_sid?: string | undefined;
37903
+ } | undefined;
37904
+ sms_provider?: {
37905
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
37906
+ } | undefined;
37907
+ phone_message?: {
37908
+ message?: string | undefined;
37909
+ } | undefined;
37910
+ }>>;
37482
37911
  }, "strip", z.ZodTypeAny, {
37483
37912
  default_organization?: string | undefined;
37484
37913
  friendly_name?: string | undefined;
@@ -37536,6 +37965,30 @@ export declare const tenantSettingsSchema: z.ZodObject<{
37536
37965
  sessions?: {
37537
37966
  oidc_logout_prompt_enabled?: boolean | undefined;
37538
37967
  } | undefined;
37968
+ mfa?: {
37969
+ factors?: {
37970
+ email: boolean;
37971
+ otp: boolean;
37972
+ sms: boolean;
37973
+ push_notification: boolean;
37974
+ webauthn_roaming: boolean;
37975
+ webauthn_platform: boolean;
37976
+ recovery_code: boolean;
37977
+ duo: boolean;
37978
+ } | undefined;
37979
+ twilio?: {
37980
+ from?: string | undefined;
37981
+ sid?: string | undefined;
37982
+ auth_token?: string | undefined;
37983
+ messaging_service_sid?: string | undefined;
37984
+ } | undefined;
37985
+ sms_provider?: {
37986
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
37987
+ } | undefined;
37988
+ phone_message?: {
37989
+ message?: string | undefined;
37990
+ } | undefined;
37991
+ } | undefined;
37539
37992
  }, {
37540
37993
  default_organization?: string | undefined;
37541
37994
  friendly_name?: string | undefined;
@@ -37593,6 +38046,30 @@ export declare const tenantSettingsSchema: z.ZodObject<{
37593
38046
  sessions?: {
37594
38047
  oidc_logout_prompt_enabled?: boolean | undefined;
37595
38048
  } | undefined;
38049
+ mfa?: {
38050
+ factors?: {
38051
+ email?: boolean | undefined;
38052
+ otp?: boolean | undefined;
38053
+ sms?: boolean | undefined;
38054
+ push_notification?: boolean | undefined;
38055
+ webauthn_roaming?: boolean | undefined;
38056
+ webauthn_platform?: boolean | undefined;
38057
+ recovery_code?: boolean | undefined;
38058
+ duo?: boolean | undefined;
38059
+ } | undefined;
38060
+ twilio?: {
38061
+ from?: string | undefined;
38062
+ sid?: string | undefined;
38063
+ auth_token?: string | undefined;
38064
+ messaging_service_sid?: string | undefined;
38065
+ } | undefined;
38066
+ sms_provider?: {
38067
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
38068
+ } | undefined;
38069
+ phone_message?: {
38070
+ message?: string | undefined;
38071
+ } | undefined;
38072
+ } | undefined;
37596
38073
  }>;
37597
38074
  export type TenantSettings = z.infer<typeof tenantSettingsSchema>;
37598
38075
  export declare const dailyStatsSchema: z.ZodObject<{
@@ -37697,11 +38174,11 @@ export declare const customTextEntrySchema: z.ZodObject<{
37697
38174
  language: z.ZodString;
37698
38175
  custom_text: z.ZodRecord<z.ZodString, z.ZodString>;
37699
38176
  }, "strip", z.ZodTypeAny, {
37700
- prompt: "status" | "organizations" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form";
38177
+ prompt: "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form";
37701
38178
  language: string;
37702
38179
  custom_text: Record<string, string>;
37703
38180
  }, {
37704
- prompt: "status" | "organizations" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form";
38181
+ prompt: "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form";
37705
38182
  language: string;
37706
38183
  custom_text: Record<string, string>;
37707
38184
  }>;
@@ -38580,6 +39057,117 @@ declare const enrichedClientSchema: z.ZodObject<{
38580
39057
  }>>;
38581
39058
  pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
38582
39059
  authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
39060
+ mfa: z.ZodOptional<z.ZodObject<{
39061
+ factors: z.ZodOptional<z.ZodObject<{
39062
+ sms: z.ZodDefault<z.ZodBoolean>;
39063
+ otp: z.ZodDefault<z.ZodBoolean>;
39064
+ email: z.ZodDefault<z.ZodBoolean>;
39065
+ push_notification: z.ZodDefault<z.ZodBoolean>;
39066
+ webauthn_roaming: z.ZodDefault<z.ZodBoolean>;
39067
+ webauthn_platform: z.ZodDefault<z.ZodBoolean>;
39068
+ recovery_code: z.ZodDefault<z.ZodBoolean>;
39069
+ duo: z.ZodDefault<z.ZodBoolean>;
39070
+ }, "strip", z.ZodTypeAny, {
39071
+ email: boolean;
39072
+ otp: boolean;
39073
+ sms: boolean;
39074
+ push_notification: boolean;
39075
+ webauthn_roaming: boolean;
39076
+ webauthn_platform: boolean;
39077
+ recovery_code: boolean;
39078
+ duo: boolean;
39079
+ }, {
39080
+ email?: boolean | undefined;
39081
+ otp?: boolean | undefined;
39082
+ sms?: boolean | undefined;
39083
+ push_notification?: boolean | undefined;
39084
+ webauthn_roaming?: boolean | undefined;
39085
+ webauthn_platform?: boolean | undefined;
39086
+ recovery_code?: boolean | undefined;
39087
+ duo?: boolean | undefined;
39088
+ }>>;
39089
+ sms_provider: z.ZodOptional<z.ZodObject<{
39090
+ provider: z.ZodOptional<z.ZodEnum<[
39091
+ "twilio",
39092
+ "vonage",
39093
+ "aws_sns",
39094
+ "phone_message_hook"
39095
+ ]>>;
39096
+ }, "strip", z.ZodTypeAny, {
39097
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
39098
+ }, {
39099
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
39100
+ }>>;
39101
+ twilio: z.ZodOptional<z.ZodObject<{
39102
+ sid: z.ZodOptional<z.ZodString>;
39103
+ auth_token: z.ZodOptional<z.ZodString>;
39104
+ from: z.ZodOptional<z.ZodString>;
39105
+ messaging_service_sid: z.ZodOptional<z.ZodString>;
39106
+ }, "strip", z.ZodTypeAny, {
39107
+ from?: string | undefined;
39108
+ sid?: string | undefined;
39109
+ auth_token?: string | undefined;
39110
+ messaging_service_sid?: string | undefined;
39111
+ }, {
39112
+ from?: string | undefined;
39113
+ sid?: string | undefined;
39114
+ auth_token?: string | undefined;
39115
+ messaging_service_sid?: string | undefined;
39116
+ }>>;
39117
+ phone_message: z.ZodOptional<z.ZodObject<{
39118
+ message: z.ZodOptional<z.ZodString>;
39119
+ }, "strip", z.ZodTypeAny, {
39120
+ message?: string | undefined;
39121
+ }, {
39122
+ message?: string | undefined;
39123
+ }>>;
39124
+ }, "strip", z.ZodTypeAny, {
39125
+ factors?: {
39126
+ email: boolean;
39127
+ otp: boolean;
39128
+ sms: boolean;
39129
+ push_notification: boolean;
39130
+ webauthn_roaming: boolean;
39131
+ webauthn_platform: boolean;
39132
+ recovery_code: boolean;
39133
+ duo: boolean;
39134
+ } | undefined;
39135
+ twilio?: {
39136
+ from?: string | undefined;
39137
+ sid?: string | undefined;
39138
+ auth_token?: string | undefined;
39139
+ messaging_service_sid?: string | undefined;
39140
+ } | undefined;
39141
+ sms_provider?: {
39142
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
39143
+ } | undefined;
39144
+ phone_message?: {
39145
+ message?: string | undefined;
39146
+ } | undefined;
39147
+ }, {
39148
+ factors?: {
39149
+ email?: boolean | undefined;
39150
+ otp?: boolean | undefined;
39151
+ sms?: boolean | undefined;
39152
+ push_notification?: boolean | undefined;
39153
+ webauthn_roaming?: boolean | undefined;
39154
+ webauthn_platform?: boolean | undefined;
39155
+ recovery_code?: boolean | undefined;
39156
+ duo?: boolean | undefined;
39157
+ } | undefined;
39158
+ twilio?: {
39159
+ from?: string | undefined;
39160
+ sid?: string | undefined;
39161
+ auth_token?: string | undefined;
39162
+ messaging_service_sid?: string | undefined;
39163
+ } | undefined;
39164
+ sms_provider?: {
39165
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
39166
+ } | undefined;
39167
+ phone_message?: {
39168
+ message?: string | undefined;
39169
+ } | undefined;
39170
+ }>>;
38583
39171
  created_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
38584
39172
  updated_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
38585
39173
  }, "strip", z.ZodTypeAny, {
@@ -38683,6 +39271,30 @@ declare const enrichedClientSchema: z.ZodObject<{
38683
39271
  } | undefined;
38684
39272
  pushed_authorization_requests_supported?: boolean | undefined;
38685
39273
  authorization_response_iss_parameter_supported?: boolean | undefined;
39274
+ mfa?: {
39275
+ factors?: {
39276
+ email: boolean;
39277
+ otp: boolean;
39278
+ sms: boolean;
39279
+ push_notification: boolean;
39280
+ webauthn_roaming: boolean;
39281
+ webauthn_platform: boolean;
39282
+ recovery_code: boolean;
39283
+ duo: boolean;
39284
+ } | undefined;
39285
+ twilio?: {
39286
+ from?: string | undefined;
39287
+ sid?: string | undefined;
39288
+ auth_token?: string | undefined;
39289
+ messaging_service_sid?: string | undefined;
39290
+ } | undefined;
39291
+ sms_provider?: {
39292
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
39293
+ } | undefined;
39294
+ phone_message?: {
39295
+ message?: string | undefined;
39296
+ } | undefined;
39297
+ } | undefined;
38686
39298
  }, {
38687
39299
  created_at: string | null;
38688
39300
  updated_at: string | null;
@@ -38784,6 +39396,30 @@ declare const enrichedClientSchema: z.ZodObject<{
38784
39396
  } | undefined;
38785
39397
  pushed_authorization_requests_supported?: boolean | undefined;
38786
39398
  authorization_response_iss_parameter_supported?: boolean | undefined;
39399
+ mfa?: {
39400
+ factors?: {
39401
+ email?: boolean | undefined;
39402
+ otp?: boolean | undefined;
39403
+ sms?: boolean | undefined;
39404
+ push_notification?: boolean | undefined;
39405
+ webauthn_roaming?: boolean | undefined;
39406
+ webauthn_platform?: boolean | undefined;
39407
+ recovery_code?: boolean | undefined;
39408
+ duo?: boolean | undefined;
39409
+ } | undefined;
39410
+ twilio?: {
39411
+ from?: string | undefined;
39412
+ sid?: string | undefined;
39413
+ auth_token?: string | undefined;
39414
+ messaging_service_sid?: string | undefined;
39415
+ } | undefined;
39416
+ sms_provider?: {
39417
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
39418
+ } | undefined;
39419
+ phone_message?: {
39420
+ message?: string | undefined;
39421
+ } | undefined;
39422
+ } | undefined;
38787
39423
  }>;
38788
39424
  connections: z.ZodArray<z.ZodObject<{
38789
39425
  created_at: z.ZodEffects<z.ZodString, string, string>;
@@ -39229,6 +39865,30 @@ declare const enrichedClientSchema: z.ZodObject<{
39229
39865
  } | undefined;
39230
39866
  pushed_authorization_requests_supported?: boolean | undefined;
39231
39867
  authorization_response_iss_parameter_supported?: boolean | undefined;
39868
+ mfa?: {
39869
+ factors?: {
39870
+ email: boolean;
39871
+ otp: boolean;
39872
+ sms: boolean;
39873
+ push_notification: boolean;
39874
+ webauthn_roaming: boolean;
39875
+ webauthn_platform: boolean;
39876
+ recovery_code: boolean;
39877
+ duo: boolean;
39878
+ } | undefined;
39879
+ twilio?: {
39880
+ from?: string | undefined;
39881
+ sid?: string | undefined;
39882
+ auth_token?: string | undefined;
39883
+ messaging_service_sid?: string | undefined;
39884
+ } | undefined;
39885
+ sms_provider?: {
39886
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
39887
+ } | undefined;
39888
+ phone_message?: {
39889
+ message?: string | undefined;
39890
+ } | undefined;
39891
+ } | undefined;
39232
39892
  };
39233
39893
  connections: {
39234
39894
  created_at: string;
@@ -39432,6 +40092,30 @@ declare const enrichedClientSchema: z.ZodObject<{
39432
40092
  } | undefined;
39433
40093
  pushed_authorization_requests_supported?: boolean | undefined;
39434
40094
  authorization_response_iss_parameter_supported?: boolean | undefined;
40095
+ mfa?: {
40096
+ factors?: {
40097
+ email?: boolean | undefined;
40098
+ otp?: boolean | undefined;
40099
+ sms?: boolean | undefined;
40100
+ push_notification?: boolean | undefined;
40101
+ webauthn_roaming?: boolean | undefined;
40102
+ webauthn_platform?: boolean | undefined;
40103
+ recovery_code?: boolean | undefined;
40104
+ duo?: boolean | undefined;
40105
+ } | undefined;
40106
+ twilio?: {
40107
+ from?: string | undefined;
40108
+ sid?: string | undefined;
40109
+ auth_token?: string | undefined;
40110
+ messaging_service_sid?: string | undefined;
40111
+ } | undefined;
40112
+ sms_provider?: {
40113
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
40114
+ } | undefined;
40115
+ phone_message?: {
40116
+ message?: string | undefined;
40117
+ } | undefined;
40118
+ } | undefined;
39435
40119
  };
39436
40120
  connections: {
39437
40121
  created_at: string;
@@ -40558,6 +41242,161 @@ export declare function init(config: AuthHeroConfig): {
40558
41242
  Bindings: Bindings;
40559
41243
  Variables: Variables;
40560
41244
  }, import("hono/types").MergeSchemaPath<{
41245
+ "/factors": {
41246
+ $get: {
41247
+ input: {
41248
+ header: {
41249
+ "tenant-id"?: string | undefined;
41250
+ };
41251
+ };
41252
+ output: {
41253
+ name: "email" | "otp" | "sms" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
41254
+ enabled: boolean;
41255
+ trial_expired?: boolean | undefined;
41256
+ }[];
41257
+ outputFormat: "json";
41258
+ status: 200;
41259
+ };
41260
+ };
41261
+ } & {
41262
+ "/factors/sms/selected-provider": {
41263
+ $get: {
41264
+ input: {
41265
+ header: {
41266
+ "tenant-id"?: string | undefined;
41267
+ };
41268
+ };
41269
+ output: {
41270
+ provider: "twilio" | "vonage" | "aws_sns" | "phone_message_hook";
41271
+ };
41272
+ outputFormat: "json";
41273
+ status: 200;
41274
+ };
41275
+ };
41276
+ } & {
41277
+ "/factors/sms/selected-provider": {
41278
+ $put: {
41279
+ input: {
41280
+ header: {
41281
+ "tenant-id"?: string | undefined;
41282
+ };
41283
+ } & {
41284
+ json: {
41285
+ provider: "twilio" | "vonage" | "aws_sns" | "phone_message_hook";
41286
+ };
41287
+ };
41288
+ output: {
41289
+ provider: "twilio" | "vonage" | "aws_sns" | "phone_message_hook";
41290
+ };
41291
+ outputFormat: "json";
41292
+ status: 200;
41293
+ };
41294
+ };
41295
+ } & {
41296
+ "/factors/sms/providers/twilio": {
41297
+ $get: {
41298
+ input: {
41299
+ header: {
41300
+ "tenant-id"?: string | undefined;
41301
+ };
41302
+ };
41303
+ output: {
41304
+ from?: string | undefined;
41305
+ sid?: string | undefined;
41306
+ auth_token?: string | undefined;
41307
+ messaging_service_sid?: string | undefined;
41308
+ };
41309
+ outputFormat: "json";
41310
+ status: 200;
41311
+ };
41312
+ };
41313
+ } & {
41314
+ "/factors/sms/providers/twilio": {
41315
+ $put: {
41316
+ input: {
41317
+ header: {
41318
+ "tenant-id"?: string | undefined;
41319
+ };
41320
+ } & {
41321
+ json: {
41322
+ from?: string | undefined;
41323
+ sid?: string | undefined;
41324
+ auth_token?: string | undefined;
41325
+ messaging_service_sid?: string | undefined;
41326
+ };
41327
+ };
41328
+ output: {
41329
+ from?: string | undefined;
41330
+ sid?: string | undefined;
41331
+ auth_token?: string | undefined;
41332
+ messaging_service_sid?: string | undefined;
41333
+ };
41334
+ outputFormat: "json";
41335
+ status: 200;
41336
+ };
41337
+ };
41338
+ } & {
41339
+ "/factors/phone/message-types": {
41340
+ $get: {
41341
+ input: {
41342
+ header: {
41343
+ "tenant-id"?: string | undefined;
41344
+ };
41345
+ };
41346
+ output: {
41347
+ message_type: "sms" | "voice";
41348
+ }[];
41349
+ outputFormat: "json";
41350
+ status: 200;
41351
+ };
41352
+ };
41353
+ } & {
41354
+ "/factors/:factor_name": {
41355
+ $get: {
41356
+ input: {
41357
+ param: {
41358
+ factor_name: "email" | "otp" | "sms" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
41359
+ };
41360
+ } & {
41361
+ header: {
41362
+ "tenant-id"?: string | undefined;
41363
+ };
41364
+ };
41365
+ output: {
41366
+ name: "email" | "otp" | "sms" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
41367
+ enabled: boolean;
41368
+ trial_expired?: boolean | undefined;
41369
+ };
41370
+ outputFormat: "json";
41371
+ status: 200;
41372
+ };
41373
+ };
41374
+ } & {
41375
+ "/factors/:factor_name": {
41376
+ $put: {
41377
+ input: {
41378
+ param: {
41379
+ factor_name: "email" | "otp" | "sms" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
41380
+ };
41381
+ } & {
41382
+ header: {
41383
+ "tenant-id"?: string | undefined;
41384
+ };
41385
+ } & {
41386
+ json: {
41387
+ enabled: boolean;
41388
+ };
41389
+ };
41390
+ output: {
41391
+ name: "email" | "otp" | "sms" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
41392
+ enabled: boolean;
41393
+ trial_expired?: boolean | undefined;
41394
+ };
41395
+ outputFormat: "json";
41396
+ status: 200;
41397
+ };
41398
+ };
41399
+ }, "/guardian"> & import("hono/types").MergeSchemaPath<{
40561
41400
  "/daily": {
40562
41401
  $get: {
40563
41402
  input: {
@@ -45787,7 +46626,7 @@ export declare function init(config: AuthHeroConfig): {
45787
46626
  };
45788
46627
  };
45789
46628
  output: {
45790
- prompt: "status" | "common" | "signup" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form";
46629
+ prompt: "status" | "common" | "signup" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form";
45791
46630
  language: string;
45792
46631
  }[];
45793
46632
  outputFormat: "json";
@@ -45799,7 +46638,7 @@ export declare function init(config: AuthHeroConfig): {
45799
46638
  $get: {
45800
46639
  input: {
45801
46640
  param: {
45802
- prompt: "status" | "common" | "signup" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form";
46641
+ prompt: "status" | "common" | "signup" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form";
45803
46642
  language: string;
45804
46643
  };
45805
46644
  } & {
@@ -45819,7 +46658,7 @@ export declare function init(config: AuthHeroConfig): {
45819
46658
  $put: {
45820
46659
  input: {
45821
46660
  param: {
45822
- prompt: "status" | "common" | "signup" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form";
46661
+ prompt: "status" | "common" | "signup" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form";
45823
46662
  language: string;
45824
46663
  };
45825
46664
  } & {
@@ -45841,7 +46680,7 @@ export declare function init(config: AuthHeroConfig): {
45841
46680
  $delete: {
45842
46681
  input: {
45843
46682
  param: {
45844
- prompt: "status" | "common" | "signup" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form";
46683
+ prompt: "status" | "common" | "signup" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form";
45845
46684
  language: string;
45846
46685
  };
45847
46686
  } & {
@@ -46868,6 +47707,30 @@ export declare function init(config: AuthHeroConfig): {
46868
47707
  } | undefined;
46869
47708
  pushed_authorization_requests_supported?: boolean | undefined | undefined;
46870
47709
  authorization_response_iss_parameter_supported?: boolean | undefined | undefined;
47710
+ mfa?: {
47711
+ factors?: {
47712
+ email: boolean;
47713
+ otp: boolean;
47714
+ sms: boolean;
47715
+ push_notification: boolean;
47716
+ webauthn_roaming: boolean;
47717
+ webauthn_platform: boolean;
47718
+ recovery_code: boolean;
47719
+ duo: boolean;
47720
+ } | undefined;
47721
+ twilio?: {
47722
+ from?: string | undefined | undefined;
47723
+ sid?: string | undefined | undefined;
47724
+ auth_token?: string | undefined | undefined;
47725
+ messaging_service_sid?: string | undefined | undefined;
47726
+ } | undefined;
47727
+ sms_provider?: {
47728
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined | undefined;
47729
+ } | undefined;
47730
+ phone_message?: {
47731
+ message?: string | undefined | undefined;
47732
+ } | undefined;
47733
+ } | undefined;
46871
47734
  };
46872
47735
  outputFormat: "json";
46873
47736
  status: 200;
@@ -46980,6 +47843,30 @@ export declare function init(config: AuthHeroConfig): {
46980
47843
  } | undefined;
46981
47844
  pushed_authorization_requests_supported?: boolean | undefined;
46982
47845
  authorization_response_iss_parameter_supported?: boolean | undefined;
47846
+ mfa?: {
47847
+ factors?: {
47848
+ email?: boolean | undefined;
47849
+ otp?: boolean | undefined;
47850
+ sms?: boolean | undefined;
47851
+ push_notification?: boolean | undefined;
47852
+ webauthn_roaming?: boolean | undefined;
47853
+ webauthn_platform?: boolean | undefined;
47854
+ recovery_code?: boolean | undefined;
47855
+ duo?: boolean | undefined;
47856
+ } | undefined;
47857
+ twilio?: {
47858
+ from?: string | undefined;
47859
+ sid?: string | undefined;
47860
+ auth_token?: string | undefined;
47861
+ messaging_service_sid?: string | undefined;
47862
+ } | undefined;
47863
+ sms_provider?: {
47864
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
47865
+ } | undefined;
47866
+ phone_message?: {
47867
+ message?: string | undefined;
47868
+ } | undefined;
47869
+ } | undefined;
46983
47870
  };
46984
47871
  };
46985
47872
  output: {
@@ -47087,6 +47974,30 @@ export declare function init(config: AuthHeroConfig): {
47087
47974
  } | undefined;
47088
47975
  pushed_authorization_requests_supported?: boolean | undefined | undefined;
47089
47976
  authorization_response_iss_parameter_supported?: boolean | undefined | undefined;
47977
+ mfa?: {
47978
+ factors?: {
47979
+ email: boolean;
47980
+ otp: boolean;
47981
+ sms: boolean;
47982
+ push_notification: boolean;
47983
+ webauthn_roaming: boolean;
47984
+ webauthn_platform: boolean;
47985
+ recovery_code: boolean;
47986
+ duo: boolean;
47987
+ } | undefined;
47988
+ twilio?: {
47989
+ from?: string | undefined | undefined;
47990
+ sid?: string | undefined | undefined;
47991
+ auth_token?: string | undefined | undefined;
47992
+ messaging_service_sid?: string | undefined | undefined;
47993
+ } | undefined;
47994
+ sms_provider?: {
47995
+ provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined | undefined;
47996
+ } | undefined;
47997
+ phone_message?: {
47998
+ message?: string | undefined | undefined;
47999
+ } | undefined;
48000
+ } | undefined;
47090
48001
  };
47091
48002
  outputFormat: "json";
47092
48003
  status: 200;