authhero 8.4.0 → 8.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/{p-aa120307.entry.js → p-1fc7fcdb.entry.js} +1 -1
- package/dist/assets/u/widget/p-5f7b7943.entry.js +1 -0
- package/dist/authhero.cjs +105 -105
- package/dist/authhero.d.ts +197 -197
- package/dist/authhero.mjs +1456 -1403
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/emails/defaults/BlockedAccount.d.ts +1 -1
- package/dist/types/emails/defaults/ChangePassword.d.ts +1 -1
- package/dist/types/emails/defaults/EnrollmentEmail.d.ts +1 -1
- package/dist/types/emails/defaults/Layout.d.ts +1 -1
- package/dist/types/emails/defaults/MfaOobCode.d.ts +1 -1
- package/dist/types/emails/defaults/PasswordReset.d.ts +1 -1
- package/dist/types/emails/defaults/PrimaryButton.d.ts +1 -1
- package/dist/types/emails/defaults/ResetEmail.d.ts +1 -1
- package/dist/types/emails/defaults/ResetEmailByCode.d.ts +1 -1
- package/dist/types/emails/defaults/StolenCredentials.d.ts +1 -1
- package/dist/types/emails/defaults/UserInvitation.d.ts +1 -1
- package/dist/types/emails/defaults/VerifyEmail.d.ts +1 -1
- package/dist/types/emails/defaults/VerifyEmailByCode.d.ts +1 -1
- package/dist/types/emails/defaults/WelcomeEmail.d.ts +1 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/hooks/post-user-login.d.ts +2 -0
- package/dist/types/index.d.ts +197 -197
- package/dist/types/routes/auth-api/index.d.ts +13 -13
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +6 -6
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +178 -178
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/IdToken.d.ts +1 -1
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +3 -3
- package/dist/assets/u/widget/p-35c8b265.entry.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -2867,7 +2867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2867
2867
|
};
|
|
2868
2868
|
} & {
|
|
2869
2869
|
json: {
|
|
2870
|
-
type: "
|
|
2870
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2871
2871
|
phone_number?: string | undefined;
|
|
2872
2872
|
totp_secret?: string | undefined;
|
|
2873
2873
|
credential_id?: string | undefined;
|
|
@@ -3007,7 +3007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3007
3007
|
};
|
|
3008
3008
|
};
|
|
3009
3009
|
output: {
|
|
3010
|
-
name: "email" | "
|
|
3010
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3011
3011
|
enabled: boolean;
|
|
3012
3012
|
trial_expired?: boolean | undefined;
|
|
3013
3013
|
}[];
|
|
@@ -3162,7 +3162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3162
3162
|
$get: {
|
|
3163
3163
|
input: {
|
|
3164
3164
|
param: {
|
|
3165
|
-
factor_name: "email" | "
|
|
3165
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3166
3166
|
};
|
|
3167
3167
|
} & {
|
|
3168
3168
|
header: {
|
|
@@ -3170,7 +3170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3170
3170
|
};
|
|
3171
3171
|
};
|
|
3172
3172
|
output: {
|
|
3173
|
-
name: "email" | "
|
|
3173
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3174
3174
|
enabled: boolean;
|
|
3175
3175
|
trial_expired?: boolean | undefined;
|
|
3176
3176
|
};
|
|
@@ -3183,7 +3183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3183
3183
|
$put: {
|
|
3184
3184
|
input: {
|
|
3185
3185
|
param: {
|
|
3186
|
-
factor_name: "email" | "
|
|
3186
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3187
3187
|
};
|
|
3188
3188
|
} & {
|
|
3189
3189
|
header: {
|
|
@@ -3195,7 +3195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3195
3195
|
};
|
|
3196
3196
|
};
|
|
3197
3197
|
output: {
|
|
3198
|
-
name: "email" | "
|
|
3198
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3199
3199
|
enabled: boolean;
|
|
3200
3200
|
trial_expired?: boolean | undefined;
|
|
3201
3201
|
};
|
|
@@ -3940,12 +3940,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3940
3940
|
invitee: {
|
|
3941
3941
|
email?: string | undefined;
|
|
3942
3942
|
};
|
|
3943
|
-
id?: string | undefined;
|
|
3944
3943
|
app_metadata?: Record<string, any> | undefined;
|
|
3945
3944
|
user_metadata?: Record<string, any> | undefined;
|
|
3945
|
+
id?: string | undefined;
|
|
3946
3946
|
connection_id?: string | undefined;
|
|
3947
|
-
roles?: string[] | undefined;
|
|
3948
3947
|
ttl_sec?: number | undefined;
|
|
3948
|
+
roles?: string[] | undefined;
|
|
3949
3949
|
send_invitation_email?: boolean | undefined;
|
|
3950
3950
|
};
|
|
3951
3951
|
};
|
|
@@ -4128,8 +4128,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4128
4128
|
};
|
|
4129
4129
|
} & {
|
|
4130
4130
|
json: {
|
|
4131
|
-
show_as_button?: boolean | undefined;
|
|
4132
4131
|
assign_membership_on_login?: boolean | undefined;
|
|
4132
|
+
show_as_button?: boolean | undefined;
|
|
4133
4133
|
is_signup_enabled?: boolean | undefined;
|
|
4134
4134
|
};
|
|
4135
4135
|
};
|
|
@@ -5371,7 +5371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5371
5371
|
hint?: string | undefined;
|
|
5372
5372
|
messages?: {
|
|
5373
5373
|
text: string;
|
|
5374
|
-
type: "
|
|
5374
|
+
type: "success" | "error" | "info" | "warning";
|
|
5375
5375
|
id?: number | undefined;
|
|
5376
5376
|
}[] | undefined;
|
|
5377
5377
|
required?: boolean | undefined;
|
|
@@ -5389,7 +5389,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5389
5389
|
hint?: string | undefined;
|
|
5390
5390
|
messages?: {
|
|
5391
5391
|
text: string;
|
|
5392
|
-
type: "
|
|
5392
|
+
type: "success" | "error" | "info" | "warning";
|
|
5393
5393
|
id?: number | undefined;
|
|
5394
5394
|
}[] | undefined;
|
|
5395
5395
|
required?: boolean | undefined;
|
|
@@ -5413,7 +5413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5413
5413
|
hint?: string | undefined;
|
|
5414
5414
|
messages?: {
|
|
5415
5415
|
text: string;
|
|
5416
|
-
type: "
|
|
5416
|
+
type: "success" | "error" | "info" | "warning";
|
|
5417
5417
|
id?: number | undefined;
|
|
5418
5418
|
}[] | undefined;
|
|
5419
5419
|
required?: boolean | undefined;
|
|
@@ -5437,7 +5437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5437
5437
|
hint?: string | undefined;
|
|
5438
5438
|
messages?: {
|
|
5439
5439
|
text: string;
|
|
5440
|
-
type: "
|
|
5440
|
+
type: "success" | "error" | "info" | "warning";
|
|
5441
5441
|
id?: number | undefined;
|
|
5442
5442
|
}[] | undefined;
|
|
5443
5443
|
required?: boolean | undefined;
|
|
@@ -5466,7 +5466,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5466
5466
|
hint?: string | undefined;
|
|
5467
5467
|
messages?: {
|
|
5468
5468
|
text: string;
|
|
5469
|
-
type: "
|
|
5469
|
+
type: "success" | "error" | "info" | "warning";
|
|
5470
5470
|
id?: number | undefined;
|
|
5471
5471
|
}[] | undefined;
|
|
5472
5472
|
required?: boolean | undefined;
|
|
@@ -5481,7 +5481,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5481
5481
|
hint?: string | undefined;
|
|
5482
5482
|
messages?: {
|
|
5483
5483
|
text: string;
|
|
5484
|
-
type: "
|
|
5484
|
+
type: "success" | "error" | "info" | "warning";
|
|
5485
5485
|
id?: number | undefined;
|
|
5486
5486
|
}[] | undefined;
|
|
5487
5487
|
required?: boolean | undefined;
|
|
@@ -5502,7 +5502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5502
5502
|
hint?: string | undefined;
|
|
5503
5503
|
messages?: {
|
|
5504
5504
|
text: string;
|
|
5505
|
-
type: "
|
|
5505
|
+
type: "success" | "error" | "info" | "warning";
|
|
5506
5506
|
id?: number | undefined;
|
|
5507
5507
|
}[] | undefined;
|
|
5508
5508
|
required?: boolean | undefined;
|
|
@@ -5527,7 +5527,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5527
5527
|
hint?: string | undefined;
|
|
5528
5528
|
messages?: {
|
|
5529
5529
|
text: string;
|
|
5530
|
-
type: "
|
|
5530
|
+
type: "success" | "error" | "info" | "warning";
|
|
5531
5531
|
id?: number | undefined;
|
|
5532
5532
|
}[] | undefined;
|
|
5533
5533
|
required?: boolean | undefined;
|
|
@@ -5546,7 +5546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5546
5546
|
hint?: string | undefined;
|
|
5547
5547
|
messages?: {
|
|
5548
5548
|
text: string;
|
|
5549
|
-
type: "
|
|
5549
|
+
type: "success" | "error" | "info" | "warning";
|
|
5550
5550
|
id?: number | undefined;
|
|
5551
5551
|
}[] | undefined;
|
|
5552
5552
|
required?: boolean | undefined;
|
|
@@ -5566,7 +5566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5566
5566
|
hint?: string | undefined;
|
|
5567
5567
|
messages?: {
|
|
5568
5568
|
text: string;
|
|
5569
|
-
type: "
|
|
5569
|
+
type: "success" | "error" | "info" | "warning";
|
|
5570
5570
|
id?: number | undefined;
|
|
5571
5571
|
}[] | undefined;
|
|
5572
5572
|
required?: boolean | undefined;
|
|
@@ -5585,7 +5585,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5585
5585
|
hint?: string | undefined;
|
|
5586
5586
|
messages?: {
|
|
5587
5587
|
text: string;
|
|
5588
|
-
type: "
|
|
5588
|
+
type: "success" | "error" | "info" | "warning";
|
|
5589
5589
|
id?: number | undefined;
|
|
5590
5590
|
}[] | undefined;
|
|
5591
5591
|
required?: boolean | undefined;
|
|
@@ -5607,7 +5607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5607
5607
|
hint?: string | undefined;
|
|
5608
5608
|
messages?: {
|
|
5609
5609
|
text: string;
|
|
5610
|
-
type: "
|
|
5610
|
+
type: "success" | "error" | "info" | "warning";
|
|
5611
5611
|
id?: number | undefined;
|
|
5612
5612
|
}[] | undefined;
|
|
5613
5613
|
required?: boolean | undefined;
|
|
@@ -5629,7 +5629,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5629
5629
|
hint?: string | undefined;
|
|
5630
5630
|
messages?: {
|
|
5631
5631
|
text: string;
|
|
5632
|
-
type: "
|
|
5632
|
+
type: "success" | "error" | "info" | "warning";
|
|
5633
5633
|
id?: number | undefined;
|
|
5634
5634
|
}[] | undefined;
|
|
5635
5635
|
required?: boolean | undefined;
|
|
@@ -5648,7 +5648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5648
5648
|
hint?: string | undefined;
|
|
5649
5649
|
messages?: {
|
|
5650
5650
|
text: string;
|
|
5651
|
-
type: "
|
|
5651
|
+
type: "success" | "error" | "info" | "warning";
|
|
5652
5652
|
id?: number | undefined;
|
|
5653
5653
|
}[] | undefined;
|
|
5654
5654
|
required?: boolean | undefined;
|
|
@@ -5673,7 +5673,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5673
5673
|
hint?: string | undefined;
|
|
5674
5674
|
messages?: {
|
|
5675
5675
|
text: string;
|
|
5676
|
-
type: "
|
|
5676
|
+
type: "success" | "error" | "info" | "warning";
|
|
5677
5677
|
id?: number | undefined;
|
|
5678
5678
|
}[] | undefined;
|
|
5679
5679
|
required?: boolean | undefined;
|
|
@@ -5694,7 +5694,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5694
5694
|
hint?: string | undefined;
|
|
5695
5695
|
messages?: {
|
|
5696
5696
|
text: string;
|
|
5697
|
-
type: "
|
|
5697
|
+
type: "success" | "error" | "info" | "warning";
|
|
5698
5698
|
id?: number | undefined;
|
|
5699
5699
|
}[] | undefined;
|
|
5700
5700
|
required?: boolean | undefined;
|
|
@@ -5715,7 +5715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5715
5715
|
hint?: string | undefined;
|
|
5716
5716
|
messages?: {
|
|
5717
5717
|
text: string;
|
|
5718
|
-
type: "
|
|
5718
|
+
type: "success" | "error" | "info" | "warning";
|
|
5719
5719
|
id?: number | undefined;
|
|
5720
5720
|
}[] | undefined;
|
|
5721
5721
|
required?: boolean | undefined;
|
|
@@ -5948,7 +5948,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5948
5948
|
hint?: string | undefined;
|
|
5949
5949
|
messages?: {
|
|
5950
5950
|
text: string;
|
|
5951
|
-
type: "
|
|
5951
|
+
type: "success" | "error" | "info" | "warning";
|
|
5952
5952
|
id?: number | undefined;
|
|
5953
5953
|
}[] | undefined;
|
|
5954
5954
|
required?: boolean | undefined;
|
|
@@ -5966,7 +5966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5966
5966
|
hint?: string | undefined;
|
|
5967
5967
|
messages?: {
|
|
5968
5968
|
text: string;
|
|
5969
|
-
type: "
|
|
5969
|
+
type: "success" | "error" | "info" | "warning";
|
|
5970
5970
|
id?: number | undefined;
|
|
5971
5971
|
}[] | undefined;
|
|
5972
5972
|
required?: boolean | undefined;
|
|
@@ -5990,7 +5990,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5990
5990
|
hint?: string | undefined;
|
|
5991
5991
|
messages?: {
|
|
5992
5992
|
text: string;
|
|
5993
|
-
type: "
|
|
5993
|
+
type: "success" | "error" | "info" | "warning";
|
|
5994
5994
|
id?: number | undefined;
|
|
5995
5995
|
}[] | undefined;
|
|
5996
5996
|
required?: boolean | undefined;
|
|
@@ -6014,7 +6014,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6014
6014
|
hint?: string | undefined;
|
|
6015
6015
|
messages?: {
|
|
6016
6016
|
text: string;
|
|
6017
|
-
type: "
|
|
6017
|
+
type: "success" | "error" | "info" | "warning";
|
|
6018
6018
|
id?: number | undefined;
|
|
6019
6019
|
}[] | undefined;
|
|
6020
6020
|
required?: boolean | undefined;
|
|
@@ -6043,7 +6043,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6043
6043
|
hint?: string | undefined;
|
|
6044
6044
|
messages?: {
|
|
6045
6045
|
text: string;
|
|
6046
|
-
type: "
|
|
6046
|
+
type: "success" | "error" | "info" | "warning";
|
|
6047
6047
|
id?: number | undefined;
|
|
6048
6048
|
}[] | undefined;
|
|
6049
6049
|
required?: boolean | undefined;
|
|
@@ -6058,7 +6058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6058
6058
|
hint?: string | undefined;
|
|
6059
6059
|
messages?: {
|
|
6060
6060
|
text: string;
|
|
6061
|
-
type: "
|
|
6061
|
+
type: "success" | "error" | "info" | "warning";
|
|
6062
6062
|
id?: number | undefined;
|
|
6063
6063
|
}[] | undefined;
|
|
6064
6064
|
required?: boolean | undefined;
|
|
@@ -6079,7 +6079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6079
6079
|
hint?: string | undefined;
|
|
6080
6080
|
messages?: {
|
|
6081
6081
|
text: string;
|
|
6082
|
-
type: "
|
|
6082
|
+
type: "success" | "error" | "info" | "warning";
|
|
6083
6083
|
id?: number | undefined;
|
|
6084
6084
|
}[] | undefined;
|
|
6085
6085
|
required?: boolean | undefined;
|
|
@@ -6104,7 +6104,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6104
6104
|
hint?: string | undefined;
|
|
6105
6105
|
messages?: {
|
|
6106
6106
|
text: string;
|
|
6107
|
-
type: "
|
|
6107
|
+
type: "success" | "error" | "info" | "warning";
|
|
6108
6108
|
id?: number | undefined;
|
|
6109
6109
|
}[] | undefined;
|
|
6110
6110
|
required?: boolean | undefined;
|
|
@@ -6123,7 +6123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6123
6123
|
hint?: string | undefined;
|
|
6124
6124
|
messages?: {
|
|
6125
6125
|
text: string;
|
|
6126
|
-
type: "
|
|
6126
|
+
type: "success" | "error" | "info" | "warning";
|
|
6127
6127
|
id?: number | undefined;
|
|
6128
6128
|
}[] | undefined;
|
|
6129
6129
|
required?: boolean | undefined;
|
|
@@ -6143,7 +6143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6143
6143
|
hint?: string | undefined;
|
|
6144
6144
|
messages?: {
|
|
6145
6145
|
text: string;
|
|
6146
|
-
type: "
|
|
6146
|
+
type: "success" | "error" | "info" | "warning";
|
|
6147
6147
|
id?: number | undefined;
|
|
6148
6148
|
}[] | undefined;
|
|
6149
6149
|
required?: boolean | undefined;
|
|
@@ -6162,7 +6162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6162
6162
|
hint?: string | undefined;
|
|
6163
6163
|
messages?: {
|
|
6164
6164
|
text: string;
|
|
6165
|
-
type: "
|
|
6165
|
+
type: "success" | "error" | "info" | "warning";
|
|
6166
6166
|
id?: number | undefined;
|
|
6167
6167
|
}[] | undefined;
|
|
6168
6168
|
required?: boolean | undefined;
|
|
@@ -6184,7 +6184,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6184
6184
|
hint?: string | undefined;
|
|
6185
6185
|
messages?: {
|
|
6186
6186
|
text: string;
|
|
6187
|
-
type: "
|
|
6187
|
+
type: "success" | "error" | "info" | "warning";
|
|
6188
6188
|
id?: number | undefined;
|
|
6189
6189
|
}[] | undefined;
|
|
6190
6190
|
required?: boolean | undefined;
|
|
@@ -6206,7 +6206,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6206
6206
|
hint?: string | undefined;
|
|
6207
6207
|
messages?: {
|
|
6208
6208
|
text: string;
|
|
6209
|
-
type: "
|
|
6209
|
+
type: "success" | "error" | "info" | "warning";
|
|
6210
6210
|
id?: number | undefined;
|
|
6211
6211
|
}[] | undefined;
|
|
6212
6212
|
required?: boolean | undefined;
|
|
@@ -6225,7 +6225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6225
6225
|
hint?: string | undefined;
|
|
6226
6226
|
messages?: {
|
|
6227
6227
|
text: string;
|
|
6228
|
-
type: "
|
|
6228
|
+
type: "success" | "error" | "info" | "warning";
|
|
6229
6229
|
id?: number | undefined;
|
|
6230
6230
|
}[] | undefined;
|
|
6231
6231
|
required?: boolean | undefined;
|
|
@@ -6250,7 +6250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6250
6250
|
hint?: string | undefined;
|
|
6251
6251
|
messages?: {
|
|
6252
6252
|
text: string;
|
|
6253
|
-
type: "
|
|
6253
|
+
type: "success" | "error" | "info" | "warning";
|
|
6254
6254
|
id?: number | undefined;
|
|
6255
6255
|
}[] | undefined;
|
|
6256
6256
|
required?: boolean | undefined;
|
|
@@ -6271,7 +6271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6271
6271
|
hint?: string | undefined;
|
|
6272
6272
|
messages?: {
|
|
6273
6273
|
text: string;
|
|
6274
|
-
type: "
|
|
6274
|
+
type: "success" | "error" | "info" | "warning";
|
|
6275
6275
|
id?: number | undefined;
|
|
6276
6276
|
}[] | undefined;
|
|
6277
6277
|
required?: boolean | undefined;
|
|
@@ -6292,7 +6292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6292
6292
|
hint?: string | undefined;
|
|
6293
6293
|
messages?: {
|
|
6294
6294
|
text: string;
|
|
6295
|
-
type: "
|
|
6295
|
+
type: "success" | "error" | "info" | "warning";
|
|
6296
6296
|
id?: number | undefined;
|
|
6297
6297
|
}[] | undefined;
|
|
6298
6298
|
required?: boolean | undefined;
|
|
@@ -6540,7 +6540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6540
6540
|
hint?: string | undefined;
|
|
6541
6541
|
messages?: {
|
|
6542
6542
|
text: string;
|
|
6543
|
-
type: "
|
|
6543
|
+
type: "success" | "error" | "info" | "warning";
|
|
6544
6544
|
id?: number | undefined;
|
|
6545
6545
|
}[] | undefined;
|
|
6546
6546
|
required?: boolean | undefined;
|
|
@@ -6558,7 +6558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6558
6558
|
hint?: string | undefined;
|
|
6559
6559
|
messages?: {
|
|
6560
6560
|
text: string;
|
|
6561
|
-
type: "
|
|
6561
|
+
type: "success" | "error" | "info" | "warning";
|
|
6562
6562
|
id?: number | undefined;
|
|
6563
6563
|
}[] | undefined;
|
|
6564
6564
|
required?: boolean | undefined;
|
|
@@ -6582,7 +6582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6582
6582
|
hint?: string | undefined;
|
|
6583
6583
|
messages?: {
|
|
6584
6584
|
text: string;
|
|
6585
|
-
type: "
|
|
6585
|
+
type: "success" | "error" | "info" | "warning";
|
|
6586
6586
|
id?: number | undefined;
|
|
6587
6587
|
}[] | undefined;
|
|
6588
6588
|
required?: boolean | undefined;
|
|
@@ -6606,7 +6606,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6606
6606
|
hint?: string | undefined;
|
|
6607
6607
|
messages?: {
|
|
6608
6608
|
text: string;
|
|
6609
|
-
type: "
|
|
6609
|
+
type: "success" | "error" | "info" | "warning";
|
|
6610
6610
|
id?: number | undefined;
|
|
6611
6611
|
}[] | undefined;
|
|
6612
6612
|
required?: boolean | undefined;
|
|
@@ -6635,7 +6635,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6635
6635
|
hint?: string | undefined;
|
|
6636
6636
|
messages?: {
|
|
6637
6637
|
text: string;
|
|
6638
|
-
type: "
|
|
6638
|
+
type: "success" | "error" | "info" | "warning";
|
|
6639
6639
|
id?: number | undefined;
|
|
6640
6640
|
}[] | undefined;
|
|
6641
6641
|
required?: boolean | undefined;
|
|
@@ -6650,7 +6650,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6650
6650
|
hint?: string | undefined;
|
|
6651
6651
|
messages?: {
|
|
6652
6652
|
text: string;
|
|
6653
|
-
type: "
|
|
6653
|
+
type: "success" | "error" | "info" | "warning";
|
|
6654
6654
|
id?: number | undefined;
|
|
6655
6655
|
}[] | undefined;
|
|
6656
6656
|
required?: boolean | undefined;
|
|
@@ -6671,7 +6671,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6671
6671
|
hint?: string | undefined;
|
|
6672
6672
|
messages?: {
|
|
6673
6673
|
text: string;
|
|
6674
|
-
type: "
|
|
6674
|
+
type: "success" | "error" | "info" | "warning";
|
|
6675
6675
|
id?: number | undefined;
|
|
6676
6676
|
}[] | undefined;
|
|
6677
6677
|
required?: boolean | undefined;
|
|
@@ -6696,7 +6696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6696
6696
|
hint?: string | undefined;
|
|
6697
6697
|
messages?: {
|
|
6698
6698
|
text: string;
|
|
6699
|
-
type: "
|
|
6699
|
+
type: "success" | "error" | "info" | "warning";
|
|
6700
6700
|
id?: number | undefined;
|
|
6701
6701
|
}[] | undefined;
|
|
6702
6702
|
required?: boolean | undefined;
|
|
@@ -6715,7 +6715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6715
6715
|
hint?: string | undefined;
|
|
6716
6716
|
messages?: {
|
|
6717
6717
|
text: string;
|
|
6718
|
-
type: "
|
|
6718
|
+
type: "success" | "error" | "info" | "warning";
|
|
6719
6719
|
id?: number | undefined;
|
|
6720
6720
|
}[] | undefined;
|
|
6721
6721
|
required?: boolean | undefined;
|
|
@@ -6735,7 +6735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6735
6735
|
hint?: string | undefined;
|
|
6736
6736
|
messages?: {
|
|
6737
6737
|
text: string;
|
|
6738
|
-
type: "
|
|
6738
|
+
type: "success" | "error" | "info" | "warning";
|
|
6739
6739
|
id?: number | undefined;
|
|
6740
6740
|
}[] | undefined;
|
|
6741
6741
|
required?: boolean | undefined;
|
|
@@ -6754,7 +6754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6754
6754
|
hint?: string | undefined;
|
|
6755
6755
|
messages?: {
|
|
6756
6756
|
text: string;
|
|
6757
|
-
type: "
|
|
6757
|
+
type: "success" | "error" | "info" | "warning";
|
|
6758
6758
|
id?: number | undefined;
|
|
6759
6759
|
}[] | undefined;
|
|
6760
6760
|
required?: boolean | undefined;
|
|
@@ -6776,7 +6776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6776
6776
|
hint?: string | undefined;
|
|
6777
6777
|
messages?: {
|
|
6778
6778
|
text: string;
|
|
6779
|
-
type: "
|
|
6779
|
+
type: "success" | "error" | "info" | "warning";
|
|
6780
6780
|
id?: number | undefined;
|
|
6781
6781
|
}[] | undefined;
|
|
6782
6782
|
required?: boolean | undefined;
|
|
@@ -6798,7 +6798,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6798
6798
|
hint?: string | undefined;
|
|
6799
6799
|
messages?: {
|
|
6800
6800
|
text: string;
|
|
6801
|
-
type: "
|
|
6801
|
+
type: "success" | "error" | "info" | "warning";
|
|
6802
6802
|
id?: number | undefined;
|
|
6803
6803
|
}[] | undefined;
|
|
6804
6804
|
required?: boolean | undefined;
|
|
@@ -6817,7 +6817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6817
6817
|
hint?: string | undefined;
|
|
6818
6818
|
messages?: {
|
|
6819
6819
|
text: string;
|
|
6820
|
-
type: "
|
|
6820
|
+
type: "success" | "error" | "info" | "warning";
|
|
6821
6821
|
id?: number | undefined;
|
|
6822
6822
|
}[] | undefined;
|
|
6823
6823
|
required?: boolean | undefined;
|
|
@@ -6842,7 +6842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6842
6842
|
hint?: string | undefined;
|
|
6843
6843
|
messages?: {
|
|
6844
6844
|
text: string;
|
|
6845
|
-
type: "
|
|
6845
|
+
type: "success" | "error" | "info" | "warning";
|
|
6846
6846
|
id?: number | undefined;
|
|
6847
6847
|
}[] | undefined;
|
|
6848
6848
|
required?: boolean | undefined;
|
|
@@ -6863,7 +6863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6863
6863
|
hint?: string | undefined;
|
|
6864
6864
|
messages?: {
|
|
6865
6865
|
text: string;
|
|
6866
|
-
type: "
|
|
6866
|
+
type: "success" | "error" | "info" | "warning";
|
|
6867
6867
|
id?: number | undefined;
|
|
6868
6868
|
}[] | undefined;
|
|
6869
6869
|
required?: boolean | undefined;
|
|
@@ -6884,7 +6884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6884
6884
|
hint?: string | undefined;
|
|
6885
6885
|
messages?: {
|
|
6886
6886
|
text: string;
|
|
6887
|
-
type: "
|
|
6887
|
+
type: "success" | "error" | "info" | "warning";
|
|
6888
6888
|
id?: number | undefined;
|
|
6889
6889
|
}[] | undefined;
|
|
6890
6890
|
required?: boolean | undefined;
|
|
@@ -7138,7 +7138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7138
7138
|
hint?: string | undefined;
|
|
7139
7139
|
messages?: {
|
|
7140
7140
|
text: string;
|
|
7141
|
-
type: "
|
|
7141
|
+
type: "success" | "error" | "info" | "warning";
|
|
7142
7142
|
id?: number | undefined;
|
|
7143
7143
|
}[] | undefined;
|
|
7144
7144
|
required?: boolean | undefined;
|
|
@@ -7156,7 +7156,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7156
7156
|
hint?: string | undefined;
|
|
7157
7157
|
messages?: {
|
|
7158
7158
|
text: string;
|
|
7159
|
-
type: "
|
|
7159
|
+
type: "success" | "error" | "info" | "warning";
|
|
7160
7160
|
id?: number | undefined;
|
|
7161
7161
|
}[] | undefined;
|
|
7162
7162
|
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: "
|
|
7183
|
+
type: "success" | "error" | "info" | "warning";
|
|
7184
7184
|
id?: number | undefined;
|
|
7185
7185
|
}[] | undefined;
|
|
7186
7186
|
required?: boolean | undefined;
|
|
@@ -7204,7 +7204,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7204
7204
|
hint?: string | undefined;
|
|
7205
7205
|
messages?: {
|
|
7206
7206
|
text: string;
|
|
7207
|
-
type: "
|
|
7207
|
+
type: "success" | "error" | "info" | "warning";
|
|
7208
7208
|
id?: number | undefined;
|
|
7209
7209
|
}[] | undefined;
|
|
7210
7210
|
required?: boolean | undefined;
|
|
@@ -7229,7 +7229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7229
7229
|
hint?: string | undefined;
|
|
7230
7230
|
messages?: {
|
|
7231
7231
|
text: string;
|
|
7232
|
-
type: "
|
|
7232
|
+
type: "success" | "error" | "info" | "warning";
|
|
7233
7233
|
id?: number | undefined;
|
|
7234
7234
|
}[] | undefined;
|
|
7235
7235
|
required?: boolean | undefined;
|
|
@@ -7244,7 +7244,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7244
7244
|
hint?: string | undefined;
|
|
7245
7245
|
messages?: {
|
|
7246
7246
|
text: string;
|
|
7247
|
-
type: "
|
|
7247
|
+
type: "success" | "error" | "info" | "warning";
|
|
7248
7248
|
id?: number | undefined;
|
|
7249
7249
|
}[] | undefined;
|
|
7250
7250
|
required?: boolean | undefined;
|
|
@@ -7265,7 +7265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7265
7265
|
hint?: string | undefined;
|
|
7266
7266
|
messages?: {
|
|
7267
7267
|
text: string;
|
|
7268
|
-
type: "
|
|
7268
|
+
type: "success" | "error" | "info" | "warning";
|
|
7269
7269
|
id?: number | undefined;
|
|
7270
7270
|
}[] | undefined;
|
|
7271
7271
|
required?: boolean | undefined;
|
|
@@ -7290,7 +7290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7290
7290
|
hint?: string | undefined;
|
|
7291
7291
|
messages?: {
|
|
7292
7292
|
text: string;
|
|
7293
|
-
type: "
|
|
7293
|
+
type: "success" | "error" | "info" | "warning";
|
|
7294
7294
|
id?: number | undefined;
|
|
7295
7295
|
}[] | undefined;
|
|
7296
7296
|
required?: boolean | undefined;
|
|
@@ -7309,7 +7309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7309
7309
|
hint?: string | undefined;
|
|
7310
7310
|
messages?: {
|
|
7311
7311
|
text: string;
|
|
7312
|
-
type: "
|
|
7312
|
+
type: "success" | "error" | "info" | "warning";
|
|
7313
7313
|
id?: number | undefined;
|
|
7314
7314
|
}[] | undefined;
|
|
7315
7315
|
required?: boolean | undefined;
|
|
@@ -7329,7 +7329,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7329
7329
|
hint?: string | undefined;
|
|
7330
7330
|
messages?: {
|
|
7331
7331
|
text: string;
|
|
7332
|
-
type: "
|
|
7332
|
+
type: "success" | "error" | "info" | "warning";
|
|
7333
7333
|
id?: number | undefined;
|
|
7334
7334
|
}[] | undefined;
|
|
7335
7335
|
required?: boolean | undefined;
|
|
@@ -7348,7 +7348,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7348
7348
|
hint?: string | undefined;
|
|
7349
7349
|
messages?: {
|
|
7350
7350
|
text: string;
|
|
7351
|
-
type: "
|
|
7351
|
+
type: "success" | "error" | "info" | "warning";
|
|
7352
7352
|
id?: number | undefined;
|
|
7353
7353
|
}[] | undefined;
|
|
7354
7354
|
required?: boolean | undefined;
|
|
@@ -7370,7 +7370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7370
7370
|
hint?: string | undefined;
|
|
7371
7371
|
messages?: {
|
|
7372
7372
|
text: string;
|
|
7373
|
-
type: "
|
|
7373
|
+
type: "success" | "error" | "info" | "warning";
|
|
7374
7374
|
id?: number | undefined;
|
|
7375
7375
|
}[] | undefined;
|
|
7376
7376
|
required?: boolean | undefined;
|
|
@@ -7392,7 +7392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7392
7392
|
hint?: string | undefined;
|
|
7393
7393
|
messages?: {
|
|
7394
7394
|
text: string;
|
|
7395
|
-
type: "
|
|
7395
|
+
type: "success" | "error" | "info" | "warning";
|
|
7396
7396
|
id?: number | undefined;
|
|
7397
7397
|
}[] | undefined;
|
|
7398
7398
|
required?: boolean | undefined;
|
|
@@ -7411,7 +7411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7411
7411
|
hint?: string | undefined;
|
|
7412
7412
|
messages?: {
|
|
7413
7413
|
text: string;
|
|
7414
|
-
type: "
|
|
7414
|
+
type: "success" | "error" | "info" | "warning";
|
|
7415
7415
|
id?: number | undefined;
|
|
7416
7416
|
}[] | undefined;
|
|
7417
7417
|
required?: boolean | undefined;
|
|
@@ -7436,7 +7436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7436
7436
|
hint?: string | undefined;
|
|
7437
7437
|
messages?: {
|
|
7438
7438
|
text: string;
|
|
7439
|
-
type: "
|
|
7439
|
+
type: "success" | "error" | "info" | "warning";
|
|
7440
7440
|
id?: number | undefined;
|
|
7441
7441
|
}[] | undefined;
|
|
7442
7442
|
required?: boolean | undefined;
|
|
@@ -7457,7 +7457,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7457
7457
|
hint?: string | undefined;
|
|
7458
7458
|
messages?: {
|
|
7459
7459
|
text: string;
|
|
7460
|
-
type: "
|
|
7460
|
+
type: "success" | "error" | "info" | "warning";
|
|
7461
7461
|
id?: number | undefined;
|
|
7462
7462
|
}[] | undefined;
|
|
7463
7463
|
required?: boolean | undefined;
|
|
@@ -7478,7 +7478,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7478
7478
|
hint?: string | undefined;
|
|
7479
7479
|
messages?: {
|
|
7480
7480
|
text: string;
|
|
7481
|
-
type: "
|
|
7481
|
+
type: "success" | "error" | "info" | "warning";
|
|
7482
7482
|
id?: number | undefined;
|
|
7483
7483
|
}[] | undefined;
|
|
7484
7484
|
required?: boolean | undefined;
|
|
@@ -7709,7 +7709,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7709
7709
|
hint?: string | undefined;
|
|
7710
7710
|
messages?: {
|
|
7711
7711
|
text: string;
|
|
7712
|
-
type: "
|
|
7712
|
+
type: "success" | "error" | "info" | "warning";
|
|
7713
7713
|
id?: number | undefined;
|
|
7714
7714
|
}[] | undefined;
|
|
7715
7715
|
required?: boolean | undefined;
|
|
@@ -7727,7 +7727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7727
7727
|
hint?: string | undefined;
|
|
7728
7728
|
messages?: {
|
|
7729
7729
|
text: string;
|
|
7730
|
-
type: "
|
|
7730
|
+
type: "success" | "error" | "info" | "warning";
|
|
7731
7731
|
id?: number | undefined;
|
|
7732
7732
|
}[] | undefined;
|
|
7733
7733
|
required?: boolean | undefined;
|
|
@@ -7751,7 +7751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7751
7751
|
hint?: string | undefined;
|
|
7752
7752
|
messages?: {
|
|
7753
7753
|
text: string;
|
|
7754
|
-
type: "
|
|
7754
|
+
type: "success" | "error" | "info" | "warning";
|
|
7755
7755
|
id?: number | undefined;
|
|
7756
7756
|
}[] | undefined;
|
|
7757
7757
|
required?: boolean | undefined;
|
|
@@ -7775,7 +7775,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7775
7775
|
hint?: string | undefined;
|
|
7776
7776
|
messages?: {
|
|
7777
7777
|
text: string;
|
|
7778
|
-
type: "
|
|
7778
|
+
type: "success" | "error" | "info" | "warning";
|
|
7779
7779
|
id?: number | undefined;
|
|
7780
7780
|
}[] | undefined;
|
|
7781
7781
|
required?: boolean | undefined;
|
|
@@ -7804,7 +7804,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7804
7804
|
hint?: string | undefined;
|
|
7805
7805
|
messages?: {
|
|
7806
7806
|
text: string;
|
|
7807
|
-
type: "
|
|
7807
|
+
type: "success" | "error" | "info" | "warning";
|
|
7808
7808
|
id?: number | undefined;
|
|
7809
7809
|
}[] | undefined;
|
|
7810
7810
|
required?: boolean | undefined;
|
|
@@ -7819,7 +7819,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7819
7819
|
hint?: string | undefined;
|
|
7820
7820
|
messages?: {
|
|
7821
7821
|
text: string;
|
|
7822
|
-
type: "
|
|
7822
|
+
type: "success" | "error" | "info" | "warning";
|
|
7823
7823
|
id?: number | undefined;
|
|
7824
7824
|
}[] | undefined;
|
|
7825
7825
|
required?: boolean | undefined;
|
|
@@ -7840,7 +7840,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7840
7840
|
hint?: string | undefined;
|
|
7841
7841
|
messages?: {
|
|
7842
7842
|
text: string;
|
|
7843
|
-
type: "
|
|
7843
|
+
type: "success" | "error" | "info" | "warning";
|
|
7844
7844
|
id?: number | undefined;
|
|
7845
7845
|
}[] | undefined;
|
|
7846
7846
|
required?: boolean | undefined;
|
|
@@ -7865,7 +7865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7865
7865
|
hint?: string | undefined;
|
|
7866
7866
|
messages?: {
|
|
7867
7867
|
text: string;
|
|
7868
|
-
type: "
|
|
7868
|
+
type: "success" | "error" | "info" | "warning";
|
|
7869
7869
|
id?: number | undefined;
|
|
7870
7870
|
}[] | undefined;
|
|
7871
7871
|
required?: boolean | undefined;
|
|
@@ -7884,7 +7884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7884
7884
|
hint?: string | undefined;
|
|
7885
7885
|
messages?: {
|
|
7886
7886
|
text: string;
|
|
7887
|
-
type: "
|
|
7887
|
+
type: "success" | "error" | "info" | "warning";
|
|
7888
7888
|
id?: number | undefined;
|
|
7889
7889
|
}[] | undefined;
|
|
7890
7890
|
required?: boolean | undefined;
|
|
@@ -7904,7 +7904,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7904
7904
|
hint?: string | undefined;
|
|
7905
7905
|
messages?: {
|
|
7906
7906
|
text: string;
|
|
7907
|
-
type: "
|
|
7907
|
+
type: "success" | "error" | "info" | "warning";
|
|
7908
7908
|
id?: number | undefined;
|
|
7909
7909
|
}[] | undefined;
|
|
7910
7910
|
required?: boolean | undefined;
|
|
@@ -7923,7 +7923,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7923
7923
|
hint?: string | undefined;
|
|
7924
7924
|
messages?: {
|
|
7925
7925
|
text: string;
|
|
7926
|
-
type: "
|
|
7926
|
+
type: "success" | "error" | "info" | "warning";
|
|
7927
7927
|
id?: number | undefined;
|
|
7928
7928
|
}[] | undefined;
|
|
7929
7929
|
required?: boolean | undefined;
|
|
@@ -7945,7 +7945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7945
7945
|
hint?: string | undefined;
|
|
7946
7946
|
messages?: {
|
|
7947
7947
|
text: string;
|
|
7948
|
-
type: "
|
|
7948
|
+
type: "success" | "error" | "info" | "warning";
|
|
7949
7949
|
id?: number | undefined;
|
|
7950
7950
|
}[] | undefined;
|
|
7951
7951
|
required?: boolean | undefined;
|
|
@@ -7967,7 +7967,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7967
7967
|
hint?: string | undefined;
|
|
7968
7968
|
messages?: {
|
|
7969
7969
|
text: string;
|
|
7970
|
-
type: "
|
|
7970
|
+
type: "success" | "error" | "info" | "warning";
|
|
7971
7971
|
id?: number | undefined;
|
|
7972
7972
|
}[] | undefined;
|
|
7973
7973
|
required?: boolean | undefined;
|
|
@@ -7986,7 +7986,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7986
7986
|
hint?: string | undefined;
|
|
7987
7987
|
messages?: {
|
|
7988
7988
|
text: string;
|
|
7989
|
-
type: "
|
|
7989
|
+
type: "success" | "error" | "info" | "warning";
|
|
7990
7990
|
id?: number | undefined;
|
|
7991
7991
|
}[] | undefined;
|
|
7992
7992
|
required?: boolean | undefined;
|
|
@@ -8011,7 +8011,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8011
8011
|
hint?: string | undefined;
|
|
8012
8012
|
messages?: {
|
|
8013
8013
|
text: string;
|
|
8014
|
-
type: "
|
|
8014
|
+
type: "success" | "error" | "info" | "warning";
|
|
8015
8015
|
id?: number | undefined;
|
|
8016
8016
|
}[] | undefined;
|
|
8017
8017
|
required?: boolean | undefined;
|
|
@@ -8032,7 +8032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8032
8032
|
hint?: string | undefined;
|
|
8033
8033
|
messages?: {
|
|
8034
8034
|
text: string;
|
|
8035
|
-
type: "
|
|
8035
|
+
type: "success" | "error" | "info" | "warning";
|
|
8036
8036
|
id?: number | undefined;
|
|
8037
8037
|
}[] | undefined;
|
|
8038
8038
|
required?: boolean | undefined;
|
|
@@ -8053,7 +8053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8053
8053
|
hint?: string | undefined;
|
|
8054
8054
|
messages?: {
|
|
8055
8055
|
text: string;
|
|
8056
|
-
type: "
|
|
8056
|
+
type: "success" | "error" | "info" | "warning";
|
|
8057
8057
|
id?: number | undefined;
|
|
8058
8058
|
}[] | undefined;
|
|
8059
8059
|
required?: boolean | undefined;
|
|
@@ -8286,7 +8286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8286
8286
|
hint?: string | undefined;
|
|
8287
8287
|
messages?: {
|
|
8288
8288
|
text: string;
|
|
8289
|
-
type: "
|
|
8289
|
+
type: "success" | "error" | "info" | "warning";
|
|
8290
8290
|
id?: number | undefined;
|
|
8291
8291
|
}[] | undefined;
|
|
8292
8292
|
required?: boolean | undefined;
|
|
@@ -8304,7 +8304,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8304
8304
|
hint?: string | undefined;
|
|
8305
8305
|
messages?: {
|
|
8306
8306
|
text: string;
|
|
8307
|
-
type: "
|
|
8307
|
+
type: "success" | "error" | "info" | "warning";
|
|
8308
8308
|
id?: number | undefined;
|
|
8309
8309
|
}[] | undefined;
|
|
8310
8310
|
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: "
|
|
8331
|
+
type: "success" | "error" | "info" | "warning";
|
|
8332
8332
|
id?: number | undefined;
|
|
8333
8333
|
}[] | undefined;
|
|
8334
8334
|
required?: boolean | undefined;
|
|
@@ -8352,7 +8352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8352
8352
|
hint?: string | undefined;
|
|
8353
8353
|
messages?: {
|
|
8354
8354
|
text: string;
|
|
8355
|
-
type: "
|
|
8355
|
+
type: "success" | "error" | "info" | "warning";
|
|
8356
8356
|
id?: number | undefined;
|
|
8357
8357
|
}[] | undefined;
|
|
8358
8358
|
required?: boolean | undefined;
|
|
@@ -8377,7 +8377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8377
8377
|
hint?: string | undefined;
|
|
8378
8378
|
messages?: {
|
|
8379
8379
|
text: string;
|
|
8380
|
-
type: "
|
|
8380
|
+
type: "success" | "error" | "info" | "warning";
|
|
8381
8381
|
id?: number | undefined;
|
|
8382
8382
|
}[] | undefined;
|
|
8383
8383
|
required?: boolean | undefined;
|
|
@@ -8392,7 +8392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8392
8392
|
hint?: string | undefined;
|
|
8393
8393
|
messages?: {
|
|
8394
8394
|
text: string;
|
|
8395
|
-
type: "
|
|
8395
|
+
type: "success" | "error" | "info" | "warning";
|
|
8396
8396
|
id?: number | undefined;
|
|
8397
8397
|
}[] | undefined;
|
|
8398
8398
|
required?: boolean | undefined;
|
|
@@ -8413,7 +8413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8413
8413
|
hint?: string | undefined;
|
|
8414
8414
|
messages?: {
|
|
8415
8415
|
text: string;
|
|
8416
|
-
type: "
|
|
8416
|
+
type: "success" | "error" | "info" | "warning";
|
|
8417
8417
|
id?: number | undefined;
|
|
8418
8418
|
}[] | undefined;
|
|
8419
8419
|
required?: boolean | undefined;
|
|
@@ -8438,7 +8438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8438
8438
|
hint?: string | undefined;
|
|
8439
8439
|
messages?: {
|
|
8440
8440
|
text: string;
|
|
8441
|
-
type: "
|
|
8441
|
+
type: "success" | "error" | "info" | "warning";
|
|
8442
8442
|
id?: number | undefined;
|
|
8443
8443
|
}[] | undefined;
|
|
8444
8444
|
required?: boolean | undefined;
|
|
@@ -8457,7 +8457,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8457
8457
|
hint?: string | undefined;
|
|
8458
8458
|
messages?: {
|
|
8459
8459
|
text: string;
|
|
8460
|
-
type: "
|
|
8460
|
+
type: "success" | "error" | "info" | "warning";
|
|
8461
8461
|
id?: number | undefined;
|
|
8462
8462
|
}[] | undefined;
|
|
8463
8463
|
required?: boolean | undefined;
|
|
@@ -8477,7 +8477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8477
8477
|
hint?: string | undefined;
|
|
8478
8478
|
messages?: {
|
|
8479
8479
|
text: string;
|
|
8480
|
-
type: "
|
|
8480
|
+
type: "success" | "error" | "info" | "warning";
|
|
8481
8481
|
id?: number | undefined;
|
|
8482
8482
|
}[] | undefined;
|
|
8483
8483
|
required?: boolean | undefined;
|
|
@@ -8496,7 +8496,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8496
8496
|
hint?: string | undefined;
|
|
8497
8497
|
messages?: {
|
|
8498
8498
|
text: string;
|
|
8499
|
-
type: "
|
|
8499
|
+
type: "success" | "error" | "info" | "warning";
|
|
8500
8500
|
id?: number | undefined;
|
|
8501
8501
|
}[] | undefined;
|
|
8502
8502
|
required?: boolean | undefined;
|
|
@@ -8518,7 +8518,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8518
8518
|
hint?: string | undefined;
|
|
8519
8519
|
messages?: {
|
|
8520
8520
|
text: string;
|
|
8521
|
-
type: "
|
|
8521
|
+
type: "success" | "error" | "info" | "warning";
|
|
8522
8522
|
id?: number | undefined;
|
|
8523
8523
|
}[] | undefined;
|
|
8524
8524
|
required?: boolean | undefined;
|
|
@@ -8540,7 +8540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8540
8540
|
hint?: string | undefined;
|
|
8541
8541
|
messages?: {
|
|
8542
8542
|
text: string;
|
|
8543
|
-
type: "
|
|
8543
|
+
type: "success" | "error" | "info" | "warning";
|
|
8544
8544
|
id?: number | undefined;
|
|
8545
8545
|
}[] | undefined;
|
|
8546
8546
|
required?: boolean | undefined;
|
|
@@ -8559,7 +8559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8559
8559
|
hint?: string | undefined;
|
|
8560
8560
|
messages?: {
|
|
8561
8561
|
text: string;
|
|
8562
|
-
type: "
|
|
8562
|
+
type: "success" | "error" | "info" | "warning";
|
|
8563
8563
|
id?: number | undefined;
|
|
8564
8564
|
}[] | undefined;
|
|
8565
8565
|
required?: boolean | undefined;
|
|
@@ -8584,7 +8584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8584
8584
|
hint?: string | undefined;
|
|
8585
8585
|
messages?: {
|
|
8586
8586
|
text: string;
|
|
8587
|
-
type: "
|
|
8587
|
+
type: "success" | "error" | "info" | "warning";
|
|
8588
8588
|
id?: number | undefined;
|
|
8589
8589
|
}[] | undefined;
|
|
8590
8590
|
required?: boolean | undefined;
|
|
@@ -8605,7 +8605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8605
8605
|
hint?: string | undefined;
|
|
8606
8606
|
messages?: {
|
|
8607
8607
|
text: string;
|
|
8608
|
-
type: "
|
|
8608
|
+
type: "success" | "error" | "info" | "warning";
|
|
8609
8609
|
id?: number | undefined;
|
|
8610
8610
|
}[] | undefined;
|
|
8611
8611
|
required?: boolean | undefined;
|
|
@@ -8626,7 +8626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8626
8626
|
hint?: string | undefined;
|
|
8627
8627
|
messages?: {
|
|
8628
8628
|
text: string;
|
|
8629
|
-
type: "
|
|
8629
|
+
type: "success" | "error" | "info" | "warning";
|
|
8630
8630
|
id?: number | undefined;
|
|
8631
8631
|
}[] | undefined;
|
|
8632
8632
|
required?: boolean | undefined;
|
|
@@ -8857,7 +8857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8857
8857
|
hint?: string | undefined;
|
|
8858
8858
|
messages?: {
|
|
8859
8859
|
text: string;
|
|
8860
|
-
type: "
|
|
8860
|
+
type: "success" | "error" | "info" | "warning";
|
|
8861
8861
|
id?: number | undefined;
|
|
8862
8862
|
}[] | undefined;
|
|
8863
8863
|
required?: boolean | undefined;
|
|
@@ -8875,7 +8875,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8875
8875
|
hint?: string | undefined;
|
|
8876
8876
|
messages?: {
|
|
8877
8877
|
text: string;
|
|
8878
|
-
type: "
|
|
8878
|
+
type: "success" | "error" | "info" | "warning";
|
|
8879
8879
|
id?: number | undefined;
|
|
8880
8880
|
}[] | undefined;
|
|
8881
8881
|
required?: boolean | undefined;
|
|
@@ -8899,7 +8899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8899
8899
|
hint?: string | undefined;
|
|
8900
8900
|
messages?: {
|
|
8901
8901
|
text: string;
|
|
8902
|
-
type: "
|
|
8902
|
+
type: "success" | "error" | "info" | "warning";
|
|
8903
8903
|
id?: number | undefined;
|
|
8904
8904
|
}[] | undefined;
|
|
8905
8905
|
required?: boolean | undefined;
|
|
@@ -8923,7 +8923,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8923
8923
|
hint?: string | undefined;
|
|
8924
8924
|
messages?: {
|
|
8925
8925
|
text: string;
|
|
8926
|
-
type: "
|
|
8926
|
+
type: "success" | "error" | "info" | "warning";
|
|
8927
8927
|
id?: number | undefined;
|
|
8928
8928
|
}[] | undefined;
|
|
8929
8929
|
required?: boolean | undefined;
|
|
@@ -8952,7 +8952,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8952
8952
|
hint?: string | undefined;
|
|
8953
8953
|
messages?: {
|
|
8954
8954
|
text: string;
|
|
8955
|
-
type: "
|
|
8955
|
+
type: "success" | "error" | "info" | "warning";
|
|
8956
8956
|
id?: number | undefined;
|
|
8957
8957
|
}[] | undefined;
|
|
8958
8958
|
required?: boolean | undefined;
|
|
@@ -8967,7 +8967,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8967
8967
|
hint?: string | undefined;
|
|
8968
8968
|
messages?: {
|
|
8969
8969
|
text: string;
|
|
8970
|
-
type: "
|
|
8970
|
+
type: "success" | "error" | "info" | "warning";
|
|
8971
8971
|
id?: number | undefined;
|
|
8972
8972
|
}[] | undefined;
|
|
8973
8973
|
required?: boolean | undefined;
|
|
@@ -8988,7 +8988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8988
8988
|
hint?: string | undefined;
|
|
8989
8989
|
messages?: {
|
|
8990
8990
|
text: string;
|
|
8991
|
-
type: "
|
|
8991
|
+
type: "success" | "error" | "info" | "warning";
|
|
8992
8992
|
id?: number | undefined;
|
|
8993
8993
|
}[] | undefined;
|
|
8994
8994
|
required?: boolean | undefined;
|
|
@@ -9013,7 +9013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9013
9013
|
hint?: string | undefined;
|
|
9014
9014
|
messages?: {
|
|
9015
9015
|
text: string;
|
|
9016
|
-
type: "
|
|
9016
|
+
type: "success" | "error" | "info" | "warning";
|
|
9017
9017
|
id?: number | undefined;
|
|
9018
9018
|
}[] | undefined;
|
|
9019
9019
|
required?: boolean | undefined;
|
|
@@ -9032,7 +9032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9032
9032
|
hint?: string | undefined;
|
|
9033
9033
|
messages?: {
|
|
9034
9034
|
text: string;
|
|
9035
|
-
type: "
|
|
9035
|
+
type: "success" | "error" | "info" | "warning";
|
|
9036
9036
|
id?: number | undefined;
|
|
9037
9037
|
}[] | undefined;
|
|
9038
9038
|
required?: boolean | undefined;
|
|
@@ -9052,7 +9052,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9052
9052
|
hint?: string | undefined;
|
|
9053
9053
|
messages?: {
|
|
9054
9054
|
text: string;
|
|
9055
|
-
type: "
|
|
9055
|
+
type: "success" | "error" | "info" | "warning";
|
|
9056
9056
|
id?: number | undefined;
|
|
9057
9057
|
}[] | undefined;
|
|
9058
9058
|
required?: boolean | undefined;
|
|
@@ -9071,7 +9071,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9071
9071
|
hint?: string | undefined;
|
|
9072
9072
|
messages?: {
|
|
9073
9073
|
text: string;
|
|
9074
|
-
type: "
|
|
9074
|
+
type: "success" | "error" | "info" | "warning";
|
|
9075
9075
|
id?: number | undefined;
|
|
9076
9076
|
}[] | undefined;
|
|
9077
9077
|
required?: boolean | undefined;
|
|
@@ -9093,7 +9093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9093
9093
|
hint?: string | undefined;
|
|
9094
9094
|
messages?: {
|
|
9095
9095
|
text: string;
|
|
9096
|
-
type: "
|
|
9096
|
+
type: "success" | "error" | "info" | "warning";
|
|
9097
9097
|
id?: number | undefined;
|
|
9098
9098
|
}[] | undefined;
|
|
9099
9099
|
required?: boolean | undefined;
|
|
@@ -9115,7 +9115,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9115
9115
|
hint?: string | undefined;
|
|
9116
9116
|
messages?: {
|
|
9117
9117
|
text: string;
|
|
9118
|
-
type: "
|
|
9118
|
+
type: "success" | "error" | "info" | "warning";
|
|
9119
9119
|
id?: number | undefined;
|
|
9120
9120
|
}[] | undefined;
|
|
9121
9121
|
required?: boolean | undefined;
|
|
@@ -9134,7 +9134,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9134
9134
|
hint?: string | undefined;
|
|
9135
9135
|
messages?: {
|
|
9136
9136
|
text: string;
|
|
9137
|
-
type: "
|
|
9137
|
+
type: "success" | "error" | "info" | "warning";
|
|
9138
9138
|
id?: number | undefined;
|
|
9139
9139
|
}[] | undefined;
|
|
9140
9140
|
required?: boolean | undefined;
|
|
@@ -9159,7 +9159,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9159
9159
|
hint?: string | undefined;
|
|
9160
9160
|
messages?: {
|
|
9161
9161
|
text: string;
|
|
9162
|
-
type: "
|
|
9162
|
+
type: "success" | "error" | "info" | "warning";
|
|
9163
9163
|
id?: number | undefined;
|
|
9164
9164
|
}[] | undefined;
|
|
9165
9165
|
required?: boolean | undefined;
|
|
@@ -9180,7 +9180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9180
9180
|
hint?: string | undefined;
|
|
9181
9181
|
messages?: {
|
|
9182
9182
|
text: string;
|
|
9183
|
-
type: "
|
|
9183
|
+
type: "success" | "error" | "info" | "warning";
|
|
9184
9184
|
id?: number | undefined;
|
|
9185
9185
|
}[] | undefined;
|
|
9186
9186
|
required?: boolean | undefined;
|
|
@@ -9201,7 +9201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9201
9201
|
hint?: string | undefined;
|
|
9202
9202
|
messages?: {
|
|
9203
9203
|
text: string;
|
|
9204
|
-
type: "
|
|
9204
|
+
type: "success" | "error" | "info" | "warning";
|
|
9205
9205
|
id?: number | undefined;
|
|
9206
9206
|
}[] | undefined;
|
|
9207
9207
|
required?: boolean | undefined;
|
|
@@ -9431,7 +9431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9431
9431
|
};
|
|
9432
9432
|
};
|
|
9433
9433
|
output: {
|
|
9434
|
-
prompt: "
|
|
9434
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9435
9435
|
language: string;
|
|
9436
9436
|
}[];
|
|
9437
9437
|
outputFormat: "json";
|
|
@@ -9469,7 +9469,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9469
9469
|
$get: {
|
|
9470
9470
|
input: {
|
|
9471
9471
|
param: {
|
|
9472
|
-
prompt: "
|
|
9472
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9473
9473
|
language: string;
|
|
9474
9474
|
};
|
|
9475
9475
|
} & {
|
|
@@ -9491,7 +9491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9491
9491
|
$put: {
|
|
9492
9492
|
input: {
|
|
9493
9493
|
param: {
|
|
9494
|
-
prompt: "
|
|
9494
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9495
9495
|
language: string;
|
|
9496
9496
|
};
|
|
9497
9497
|
} & {
|
|
@@ -9515,7 +9515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9515
9515
|
$delete: {
|
|
9516
9516
|
input: {
|
|
9517
9517
|
param: {
|
|
9518
|
-
prompt: "
|
|
9518
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9519
9519
|
language: string;
|
|
9520
9520
|
};
|
|
9521
9521
|
} & {
|
|
@@ -10377,7 +10377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10377
10377
|
};
|
|
10378
10378
|
} | {
|
|
10379
10379
|
mode: "inline";
|
|
10380
|
-
status: "
|
|
10380
|
+
status: "success" | "error";
|
|
10381
10381
|
connection_id: string;
|
|
10382
10382
|
connection_name: string;
|
|
10383
10383
|
strategy: string;
|
|
@@ -11664,7 +11664,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11664
11664
|
};
|
|
11665
11665
|
};
|
|
11666
11666
|
output: {
|
|
11667
|
-
type: "
|
|
11667
|
+
type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11668
11668
|
date: string;
|
|
11669
11669
|
isMobile: boolean;
|
|
11670
11670
|
log_id: string;
|
|
@@ -11703,7 +11703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11703
11703
|
limit: number;
|
|
11704
11704
|
length: number;
|
|
11705
11705
|
logs: {
|
|
11706
|
-
type: "
|
|
11706
|
+
type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11707
11707
|
date: string;
|
|
11708
11708
|
isMobile: boolean;
|
|
11709
11709
|
log_id: string;
|
|
@@ -11757,7 +11757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11757
11757
|
};
|
|
11758
11758
|
};
|
|
11759
11759
|
output: {
|
|
11760
|
-
type: "
|
|
11760
|
+
type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11761
11761
|
date: string;
|
|
11762
11762
|
isMobile: boolean;
|
|
11763
11763
|
log_id: string;
|
|
@@ -12145,7 +12145,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12145
12145
|
addons?: {
|
|
12146
12146
|
[x: string]: any;
|
|
12147
12147
|
} | undefined;
|
|
12148
|
-
token_endpoint_auth_method?: "
|
|
12148
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12149
12149
|
client_metadata?: {
|
|
12150
12150
|
[x: string]: string;
|
|
12151
12151
|
} | undefined;
|
|
@@ -12241,7 +12241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12241
12241
|
addons?: {
|
|
12242
12242
|
[x: string]: any;
|
|
12243
12243
|
} | undefined;
|
|
12244
|
-
token_endpoint_auth_method?: "
|
|
12244
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12245
12245
|
client_metadata?: {
|
|
12246
12246
|
[x: string]: string;
|
|
12247
12247
|
} | undefined;
|
|
@@ -12352,7 +12352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12352
12352
|
addons?: {
|
|
12353
12353
|
[x: string]: any;
|
|
12354
12354
|
} | undefined;
|
|
12355
|
-
token_endpoint_auth_method?: "
|
|
12355
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12356
12356
|
client_metadata?: {
|
|
12357
12357
|
[x: string]: string;
|
|
12358
12358
|
} | undefined;
|
|
@@ -12462,7 +12462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12462
12462
|
custom_login_page_preview?: string | undefined;
|
|
12463
12463
|
form_template?: string | undefined;
|
|
12464
12464
|
addons?: Record<string, any> | undefined;
|
|
12465
|
-
token_endpoint_auth_method?: "
|
|
12465
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12466
12466
|
client_metadata?: Record<string, string> | undefined;
|
|
12467
12467
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12468
12468
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12542,7 +12542,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12542
12542
|
addons?: {
|
|
12543
12543
|
[x: string]: any;
|
|
12544
12544
|
} | undefined;
|
|
12545
|
-
token_endpoint_auth_method?: "
|
|
12545
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12546
12546
|
client_metadata?: {
|
|
12547
12547
|
[x: string]: string;
|
|
12548
12548
|
} | undefined;
|
|
@@ -12631,7 +12631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12631
12631
|
custom_login_page_preview?: string | undefined;
|
|
12632
12632
|
form_template?: string | undefined;
|
|
12633
12633
|
addons?: Record<string, any> | undefined;
|
|
12634
|
-
token_endpoint_auth_method?: "
|
|
12634
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12635
12635
|
client_metadata?: Record<string, string> | undefined;
|
|
12636
12636
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12637
12637
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12711,7 +12711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12711
12711
|
addons?: {
|
|
12712
12712
|
[x: string]: any;
|
|
12713
12713
|
} | undefined;
|
|
12714
|
-
token_endpoint_auth_method?: "
|
|
12714
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12715
12715
|
client_metadata?: {
|
|
12716
12716
|
[x: string]: string;
|
|
12717
12717
|
} | undefined;
|
|
@@ -13975,7 +13975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13975
13975
|
};
|
|
13976
13976
|
};
|
|
13977
13977
|
output: {
|
|
13978
|
-
type: "
|
|
13978
|
+
type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13979
13979
|
date: string;
|
|
13980
13980
|
isMobile: boolean;
|
|
13981
13981
|
log_id: string;
|
|
@@ -14014,7 +14014,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14014
14014
|
limit: number;
|
|
14015
14015
|
length: number;
|
|
14016
14016
|
logs: {
|
|
14017
|
-
type: "
|
|
14017
|
+
type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14018
14018
|
date: string;
|
|
14019
14019
|
isMobile: boolean;
|
|
14020
14020
|
log_id: string;
|
|
@@ -14329,7 +14329,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14329
14329
|
};
|
|
14330
14330
|
} & {
|
|
14331
14331
|
json: {
|
|
14332
|
-
template: "
|
|
14332
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14333
14333
|
body: string;
|
|
14334
14334
|
from: string;
|
|
14335
14335
|
subject: string;
|
|
@@ -14350,7 +14350,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14350
14350
|
};
|
|
14351
14351
|
} & {
|
|
14352
14352
|
json: {
|
|
14353
|
-
template: "
|
|
14353
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14354
14354
|
body: string;
|
|
14355
14355
|
from: string;
|
|
14356
14356
|
subject: string;
|
|
@@ -14362,7 +14362,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14362
14362
|
};
|
|
14363
14363
|
};
|
|
14364
14364
|
output: {
|
|
14365
|
-
template: "
|
|
14365
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14366
14366
|
body: string;
|
|
14367
14367
|
from: string;
|
|
14368
14368
|
subject: string;
|
|
@@ -14385,7 +14385,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14385
14385
|
};
|
|
14386
14386
|
};
|
|
14387
14387
|
output: {
|
|
14388
|
-
name: "
|
|
14388
|
+
name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14389
14389
|
body: string;
|
|
14390
14390
|
subject: string;
|
|
14391
14391
|
}[];
|
|
@@ -14398,7 +14398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14398
14398
|
$get: {
|
|
14399
14399
|
input: {
|
|
14400
14400
|
param: {
|
|
14401
|
-
templateName: "
|
|
14401
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14402
14402
|
};
|
|
14403
14403
|
} & {
|
|
14404
14404
|
header: {
|
|
@@ -14411,7 +14411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14411
14411
|
} | {
|
|
14412
14412
|
input: {
|
|
14413
14413
|
param: {
|
|
14414
|
-
templateName: "
|
|
14414
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14415
14415
|
};
|
|
14416
14416
|
} & {
|
|
14417
14417
|
header: {
|
|
@@ -14419,7 +14419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14419
14419
|
};
|
|
14420
14420
|
};
|
|
14421
14421
|
output: {
|
|
14422
|
-
template: "
|
|
14422
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14423
14423
|
body: string;
|
|
14424
14424
|
from: string;
|
|
14425
14425
|
subject: string;
|
|
@@ -14438,7 +14438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14438
14438
|
$put: {
|
|
14439
14439
|
input: {
|
|
14440
14440
|
param: {
|
|
14441
|
-
templateName: "
|
|
14441
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14442
14442
|
};
|
|
14443
14443
|
} & {
|
|
14444
14444
|
header: {
|
|
@@ -14446,7 +14446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14446
14446
|
};
|
|
14447
14447
|
} & {
|
|
14448
14448
|
json: {
|
|
14449
|
-
template: "
|
|
14449
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14450
14450
|
body: string;
|
|
14451
14451
|
subject: string;
|
|
14452
14452
|
syntax?: "liquid" | undefined;
|
|
@@ -14458,7 +14458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14458
14458
|
};
|
|
14459
14459
|
};
|
|
14460
14460
|
output: {
|
|
14461
|
-
template: "
|
|
14461
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14462
14462
|
body: string;
|
|
14463
14463
|
from: string;
|
|
14464
14464
|
subject: string;
|
|
@@ -14477,7 +14477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14477
14477
|
$patch: {
|
|
14478
14478
|
input: {
|
|
14479
14479
|
param: {
|
|
14480
|
-
templateName: "
|
|
14480
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14481
14481
|
};
|
|
14482
14482
|
} & {
|
|
14483
14483
|
header: {
|
|
@@ -14485,7 +14485,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14485
14485
|
};
|
|
14486
14486
|
} & {
|
|
14487
14487
|
json: {
|
|
14488
|
-
template?: "
|
|
14488
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14489
14489
|
body?: string | undefined;
|
|
14490
14490
|
from?: string | undefined;
|
|
14491
14491
|
subject?: string | undefined;
|
|
@@ -14502,7 +14502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14502
14502
|
} | {
|
|
14503
14503
|
input: {
|
|
14504
14504
|
param: {
|
|
14505
|
-
templateName: "
|
|
14505
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14506
14506
|
};
|
|
14507
14507
|
} & {
|
|
14508
14508
|
header: {
|
|
@@ -14510,7 +14510,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14510
14510
|
};
|
|
14511
14511
|
} & {
|
|
14512
14512
|
json: {
|
|
14513
|
-
template?: "
|
|
14513
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14514
14514
|
body?: string | undefined;
|
|
14515
14515
|
from?: string | undefined;
|
|
14516
14516
|
subject?: string | undefined;
|
|
@@ -14522,7 +14522,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14522
14522
|
};
|
|
14523
14523
|
};
|
|
14524
14524
|
output: {
|
|
14525
|
-
template: "
|
|
14525
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14526
14526
|
body: string;
|
|
14527
14527
|
from: string;
|
|
14528
14528
|
subject: string;
|
|
@@ -14541,7 +14541,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14541
14541
|
$delete: {
|
|
14542
14542
|
input: {
|
|
14543
14543
|
param: {
|
|
14544
|
-
templateName: "
|
|
14544
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14545
14545
|
};
|
|
14546
14546
|
} & {
|
|
14547
14547
|
header: {
|
|
@@ -14554,7 +14554,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14554
14554
|
} | {
|
|
14555
14555
|
input: {
|
|
14556
14556
|
param: {
|
|
14557
|
-
templateName: "
|
|
14557
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14558
14558
|
};
|
|
14559
14559
|
} & {
|
|
14560
14560
|
header: {
|
|
@@ -14571,7 +14571,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14571
14571
|
$post: {
|
|
14572
14572
|
input: {
|
|
14573
14573
|
param: {
|
|
14574
|
-
templateName: "
|
|
14574
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14575
14575
|
};
|
|
14576
14576
|
} & {
|
|
14577
14577
|
header: {
|
|
@@ -14854,7 +14854,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14854
14854
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14855
14855
|
custom_domain_id: string;
|
|
14856
14856
|
primary: boolean;
|
|
14857
|
-
status: "
|
|
14857
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14858
14858
|
verification_method?: "txt" | undefined;
|
|
14859
14859
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14860
14860
|
domain_metadata?: {
|
|
@@ -14895,7 +14895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14895
14895
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14896
14896
|
custom_domain_id: string;
|
|
14897
14897
|
primary: boolean;
|
|
14898
|
-
status: "
|
|
14898
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14899
14899
|
verification_method?: "txt" | undefined;
|
|
14900
14900
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14901
14901
|
domain_metadata?: {
|
|
@@ -14959,7 +14959,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14959
14959
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14960
14960
|
custom_domain_id: string;
|
|
14961
14961
|
primary: boolean;
|
|
14962
|
-
status: "
|
|
14962
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14963
14963
|
verification_method?: "txt" | undefined;
|
|
14964
14964
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14965
14965
|
domain_metadata?: {
|
|
@@ -15006,7 +15006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15006
15006
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15007
15007
|
custom_domain_id: string;
|
|
15008
15008
|
primary: boolean;
|
|
15009
|
-
status: "
|
|
15009
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15010
15010
|
verification_method?: "txt" | undefined;
|
|
15011
15011
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15012
15012
|
domain_metadata?: {
|
|
@@ -15052,7 +15052,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15052
15052
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15053
15053
|
custom_domain_id: string;
|
|
15054
15054
|
primary: boolean;
|
|
15055
|
-
status: "
|
|
15055
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15056
15056
|
verification_method?: "txt" | undefined;
|
|
15057
15057
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15058
15058
|
domain_metadata?: {
|
|
@@ -15093,7 +15093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15093
15093
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15094
15094
|
custom_domain_id: string;
|
|
15095
15095
|
primary: boolean;
|
|
15096
|
-
status: "
|
|
15096
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15097
15097
|
verification_method?: "txt" | undefined;
|
|
15098
15098
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15099
15099
|
domain_metadata?: {
|
|
@@ -15141,7 +15141,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15141
15141
|
base_focus_color: string;
|
|
15142
15142
|
base_hover_color: string;
|
|
15143
15143
|
body_text: string;
|
|
15144
|
-
captcha_widget_theme: "
|
|
15144
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
15145
15145
|
error: string;
|
|
15146
15146
|
header: string;
|
|
15147
15147
|
icons: string;
|
|
@@ -15231,7 +15231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15231
15231
|
base_focus_color: string;
|
|
15232
15232
|
base_hover_color: string;
|
|
15233
15233
|
body_text: string;
|
|
15234
|
-
captcha_widget_theme: "
|
|
15234
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
15235
15235
|
error: string;
|
|
15236
15236
|
header: string;
|
|
15237
15237
|
icons: string;
|
|
@@ -15310,7 +15310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15310
15310
|
base_focus_color: string;
|
|
15311
15311
|
base_hover_color: string;
|
|
15312
15312
|
body_text: string;
|
|
15313
|
-
captcha_widget_theme: "
|
|
15313
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
15314
15314
|
error: string;
|
|
15315
15315
|
header: string;
|
|
15316
15316
|
icons: string;
|
|
@@ -15400,7 +15400,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15400
15400
|
font?: {
|
|
15401
15401
|
url: string;
|
|
15402
15402
|
} | undefined;
|
|
15403
|
-
dark_mode?: "
|
|
15403
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
15404
15404
|
};
|
|
15405
15405
|
outputFormat: "json";
|
|
15406
15406
|
status: 200;
|
|
@@ -15430,7 +15430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15430
15430
|
font?: {
|
|
15431
15431
|
url: string;
|
|
15432
15432
|
} | undefined;
|
|
15433
|
-
dark_mode?: "
|
|
15433
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
15434
15434
|
};
|
|
15435
15435
|
};
|
|
15436
15436
|
output: {
|
|
@@ -15449,7 +15449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15449
15449
|
font?: {
|
|
15450
15450
|
url: string;
|
|
15451
15451
|
} | undefined;
|
|
15452
|
-
dark_mode?: "
|
|
15452
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
15453
15453
|
};
|
|
15454
15454
|
outputFormat: "json";
|
|
15455
15455
|
status: 200;
|
|
@@ -15578,7 +15578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15578
15578
|
json: {
|
|
15579
15579
|
bindings: {
|
|
15580
15580
|
ref: {
|
|
15581
|
-
type?: "
|
|
15581
|
+
type?: "action_name" | "action_id" | undefined;
|
|
15582
15582
|
value?: string | undefined;
|
|
15583
15583
|
id?: string | undefined;
|
|
15584
15584
|
name?: string | undefined;
|
|
@@ -15700,7 +15700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15700
15700
|
logs: {
|
|
15701
15701
|
action_name: string;
|
|
15702
15702
|
lines: {
|
|
15703
|
-
level: "
|
|
15703
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
15704
15704
|
message: string;
|
|
15705
15705
|
}[];
|
|
15706
15706
|
}[];
|
|
@@ -16367,7 +16367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16367
16367
|
args: hono_utils_types.JSONValue[];
|
|
16368
16368
|
}[];
|
|
16369
16369
|
logs: {
|
|
16370
|
-
level: "
|
|
16370
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16371
16371
|
message: string;
|
|
16372
16372
|
}[];
|
|
16373
16373
|
error?: string | undefined;
|
|
@@ -16665,7 +16665,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16665
16665
|
scope?: string | undefined;
|
|
16666
16666
|
grant_types?: string[] | undefined;
|
|
16667
16667
|
response_types?: string[] | undefined;
|
|
16668
|
-
token_endpoint_auth_method?: "
|
|
16668
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16669
16669
|
jwks_uri?: string | undefined;
|
|
16670
16670
|
jwks?: Record<string, unknown> | undefined;
|
|
16671
16671
|
software_id?: string | undefined;
|
|
@@ -16754,7 +16754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16754
16754
|
scope?: string | undefined;
|
|
16755
16755
|
grant_types?: string[] | undefined;
|
|
16756
16756
|
response_types?: string[] | undefined;
|
|
16757
|
-
token_endpoint_auth_method?: "
|
|
16757
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16758
16758
|
jwks_uri?: string | undefined;
|
|
16759
16759
|
jwks?: Record<string, unknown> | undefined;
|
|
16760
16760
|
software_id?: string | undefined;
|
|
@@ -17100,17 +17100,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17100
17100
|
email: string;
|
|
17101
17101
|
send: "code" | "link";
|
|
17102
17102
|
authParams: {
|
|
17103
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17104
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17105
|
-
scope?: string | undefined;
|
|
17106
17103
|
username?: string | undefined;
|
|
17107
|
-
audience?: string | undefined;
|
|
17108
17104
|
state?: string | undefined;
|
|
17109
|
-
prompt?: string | undefined;
|
|
17110
17105
|
act_as?: string | undefined;
|
|
17106
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17107
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17111
17108
|
redirect_uri?: string | undefined;
|
|
17109
|
+
audience?: string | undefined;
|
|
17112
17110
|
organization?: string | undefined;
|
|
17113
17111
|
nonce?: string | undefined;
|
|
17112
|
+
scope?: string | undefined;
|
|
17113
|
+
prompt?: string | undefined;
|
|
17114
17114
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17115
17115
|
code_challenge?: string | undefined;
|
|
17116
17116
|
ui_locales?: string | undefined;
|
|
@@ -17136,17 +17136,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17136
17136
|
phone_number: string;
|
|
17137
17137
|
send: "code" | "link";
|
|
17138
17138
|
authParams: {
|
|
17139
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17140
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17141
|
-
scope?: string | undefined;
|
|
17142
17139
|
username?: string | undefined;
|
|
17143
|
-
audience?: string | undefined;
|
|
17144
17140
|
state?: string | undefined;
|
|
17145
|
-
prompt?: string | undefined;
|
|
17146
17141
|
act_as?: string | undefined;
|
|
17142
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17143
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17147
17144
|
redirect_uri?: string | undefined;
|
|
17145
|
+
audience?: string | undefined;
|
|
17148
17146
|
organization?: string | undefined;
|
|
17149
17147
|
nonce?: string | undefined;
|
|
17148
|
+
scope?: string | undefined;
|
|
17149
|
+
prompt?: string | undefined;
|
|
17150
17150
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17151
17151
|
code_challenge?: string | undefined;
|
|
17152
17152
|
ui_locales?: string | undefined;
|
|
@@ -17864,7 +17864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17864
17864
|
output: {
|
|
17865
17865
|
keys: {
|
|
17866
17866
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
17867
|
-
kty: "
|
|
17867
|
+
kty: "EC" | "RSA" | "oct";
|
|
17868
17868
|
kid?: string | undefined;
|
|
17869
17869
|
use?: "sig" | "enc" | undefined;
|
|
17870
17870
|
n?: string | undefined;
|
|
@@ -19055,7 +19055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19055
19055
|
$get: {
|
|
19056
19056
|
input: {
|
|
19057
19057
|
param: {
|
|
19058
|
-
screen: "signup" | "
|
|
19058
|
+
screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19059
19059
|
};
|
|
19060
19060
|
} & {
|
|
19061
19061
|
query: {
|
|
@@ -19071,7 +19071,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19071
19071
|
} | {
|
|
19072
19072
|
input: {
|
|
19073
19073
|
param: {
|
|
19074
|
-
screen: "signup" | "
|
|
19074
|
+
screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19075
19075
|
};
|
|
19076
19076
|
} & {
|
|
19077
19077
|
query: {
|
|
@@ -19087,7 +19087,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19087
19087
|
} | {
|
|
19088
19088
|
input: {
|
|
19089
19089
|
param: {
|
|
19090
|
-
screen: "signup" | "
|
|
19090
|
+
screen: "login" | "signup" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19091
19091
|
};
|
|
19092
19092
|
} & {
|
|
19093
19093
|
query: {
|
|
@@ -19107,7 +19107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19107
19107
|
$post: {
|
|
19108
19108
|
input: {
|
|
19109
19109
|
param: {
|
|
19110
|
-
screen: "
|
|
19110
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19111
19111
|
};
|
|
19112
19112
|
} & {
|
|
19113
19113
|
query: {
|
|
@@ -19125,7 +19125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19125
19125
|
} | {
|
|
19126
19126
|
input: {
|
|
19127
19127
|
param: {
|
|
19128
|
-
screen: "
|
|
19128
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19129
19129
|
};
|
|
19130
19130
|
} & {
|
|
19131
19131
|
query: {
|
|
@@ -19143,7 +19143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19143
19143
|
} | {
|
|
19144
19144
|
input: {
|
|
19145
19145
|
param: {
|
|
19146
|
-
screen: "
|
|
19146
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19147
19147
|
};
|
|
19148
19148
|
} & {
|
|
19149
19149
|
query: {
|