authhero 9.3.0 → 9.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/p-b5f14fa6.entry.js +1 -0
- package/dist/assets/u/widget/p-f94037cd.entry.js +1 -0
- package/dist/authhero.cjs +138 -137
- package/dist/authhero.d.ts +315 -268
- package/dist/authhero.mjs +13365 -13194
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +11 -7
- package/dist/types/helpers/client.d.ts +4 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/session-usage.d.ts +48 -0
- package/dist/types/hooks/formhooks.d.ts +24 -0
- package/dist/types/index.d.ts +311 -268
- package/dist/types/routes/auth-api/index.d.ts +36 -36
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- 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/token.d.ts +10 -10
- package/dist/types/routes/management-api/branding.d.ts +15 -15
- package/dist/types/routes/management-api/clients.d.ts +24 -16
- package/dist/types/routes/management-api/connections.d.ts +41 -21
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/hooks.d.ts +21 -6
- package/dist/types/routes/management-api/index.d.ts +262 -219
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenants.d.ts +28 -28
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +24 -16
- package/dist/types/routes/universal-login/continue.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/impersonate.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-index.d.ts +7 -7
- package/dist/types/routes/universal-login/u2-routes.d.ts +7 -7
- package/dist/types/routes/universal-login/u2-widget-page.d.ts +12 -0
- package/dist/types/utils/locale.d.ts +26 -0
- package/package.json +6 -6
- package/dist/assets/u/widget/p-cdfc4555.entry.js +0 -1
- package/dist/assets/u/widget/p-e95c436f.entry.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -430,6 +430,9 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
430
430
|
client_secret: z.ZodOptional<z.ZodString>;
|
|
431
431
|
app_secret: z.ZodOptional<z.ZodString>;
|
|
432
432
|
scope: z.ZodOptional<z.ZodString>;
|
|
433
|
+
client_secret_hint: z.ZodOptional<z.ZodString>;
|
|
434
|
+
app_secret_hint: z.ZodOptional<z.ZodString>;
|
|
435
|
+
twilio_token_hint: z.ZodOptional<z.ZodString>;
|
|
433
436
|
authorization_endpoint: z.ZodOptional<z.ZodString>;
|
|
434
437
|
token_endpoint: z.ZodOptional<z.ZodString>;
|
|
435
438
|
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
@@ -476,6 +479,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
476
479
|
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
477
480
|
client_id: z.ZodOptional<z.ZodString>;
|
|
478
481
|
client_secret: z.ZodOptional<z.ZodString>;
|
|
482
|
+
client_secret_hint: z.ZodOptional<z.ZodString>;
|
|
479
483
|
realm: z.ZodOptional<z.ZodString>;
|
|
480
484
|
}, z.core.$strip>>;
|
|
481
485
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
@@ -4489,7 +4493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4489
4493
|
};
|
|
4490
4494
|
};
|
|
4491
4495
|
output: {
|
|
4492
|
-
name: "
|
|
4496
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4493
4497
|
enabled: boolean;
|
|
4494
4498
|
trial_expired?: boolean | undefined;
|
|
4495
4499
|
}[];
|
|
@@ -4644,7 +4648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4644
4648
|
$get: {
|
|
4645
4649
|
input: {
|
|
4646
4650
|
param: {
|
|
4647
|
-
factor_name: "
|
|
4651
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4648
4652
|
};
|
|
4649
4653
|
} & {
|
|
4650
4654
|
header: {
|
|
@@ -4652,7 +4656,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4652
4656
|
};
|
|
4653
4657
|
};
|
|
4654
4658
|
output: {
|
|
4655
|
-
name: "
|
|
4659
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4656
4660
|
enabled: boolean;
|
|
4657
4661
|
trial_expired?: boolean | undefined;
|
|
4658
4662
|
};
|
|
@@ -4665,7 +4669,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4665
4669
|
$put: {
|
|
4666
4670
|
input: {
|
|
4667
4671
|
param: {
|
|
4668
|
-
factor_name: "
|
|
4672
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4669
4673
|
};
|
|
4670
4674
|
} & {
|
|
4671
4675
|
header: {
|
|
@@ -4677,7 +4681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4677
4681
|
};
|
|
4678
4682
|
};
|
|
4679
4683
|
output: {
|
|
4680
|
-
name: "
|
|
4684
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4681
4685
|
enabled: boolean;
|
|
4682
4686
|
trial_expired?: boolean | undefined;
|
|
4683
4687
|
};
|
|
@@ -6216,9 +6220,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6216
6220
|
};
|
|
6217
6221
|
} & {
|
|
6218
6222
|
query: {
|
|
6219
|
-
from?: string | undefined;
|
|
6220
6223
|
page?: string | undefined;
|
|
6221
6224
|
include_totals?: string | undefined;
|
|
6225
|
+
from?: string | undefined;
|
|
6222
6226
|
per_page?: string | undefined;
|
|
6223
6227
|
take?: string | undefined;
|
|
6224
6228
|
};
|
|
@@ -6941,7 +6945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6941
6945
|
hint?: string | undefined;
|
|
6942
6946
|
messages?: {
|
|
6943
6947
|
text: string;
|
|
6944
|
-
type: "
|
|
6948
|
+
type: "error" | "success" | "info" | "warning";
|
|
6945
6949
|
id?: number | undefined;
|
|
6946
6950
|
}[] | undefined;
|
|
6947
6951
|
required?: boolean | undefined;
|
|
@@ -6959,7 +6963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6959
6963
|
hint?: string | undefined;
|
|
6960
6964
|
messages?: {
|
|
6961
6965
|
text: string;
|
|
6962
|
-
type: "
|
|
6966
|
+
type: "error" | "success" | "info" | "warning";
|
|
6963
6967
|
id?: number | undefined;
|
|
6964
6968
|
}[] | undefined;
|
|
6965
6969
|
required?: boolean | undefined;
|
|
@@ -6983,7 +6987,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6983
6987
|
hint?: string | undefined;
|
|
6984
6988
|
messages?: {
|
|
6985
6989
|
text: string;
|
|
6986
|
-
type: "
|
|
6990
|
+
type: "error" | "success" | "info" | "warning";
|
|
6987
6991
|
id?: number | undefined;
|
|
6988
6992
|
}[] | undefined;
|
|
6989
6993
|
required?: boolean | undefined;
|
|
@@ -7007,7 +7011,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7007
7011
|
hint?: string | undefined;
|
|
7008
7012
|
messages?: {
|
|
7009
7013
|
text: string;
|
|
7010
|
-
type: "
|
|
7014
|
+
type: "error" | "success" | "info" | "warning";
|
|
7011
7015
|
id?: number | undefined;
|
|
7012
7016
|
}[] | undefined;
|
|
7013
7017
|
required?: boolean | undefined;
|
|
@@ -7031,7 +7035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7031
7035
|
hint?: string | undefined;
|
|
7032
7036
|
messages?: {
|
|
7033
7037
|
text: string;
|
|
7034
|
-
type: "
|
|
7038
|
+
type: "error" | "success" | "info" | "warning";
|
|
7035
7039
|
id?: number | undefined;
|
|
7036
7040
|
}[] | undefined;
|
|
7037
7041
|
required?: boolean | undefined;
|
|
@@ -7060,7 +7064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7060
7064
|
hint?: string | undefined;
|
|
7061
7065
|
messages?: {
|
|
7062
7066
|
text: string;
|
|
7063
|
-
type: "
|
|
7067
|
+
type: "error" | "success" | "info" | "warning";
|
|
7064
7068
|
id?: number | undefined;
|
|
7065
7069
|
}[] | undefined;
|
|
7066
7070
|
required?: boolean | undefined;
|
|
@@ -7075,7 +7079,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7075
7079
|
hint?: string | undefined;
|
|
7076
7080
|
messages?: {
|
|
7077
7081
|
text: string;
|
|
7078
|
-
type: "
|
|
7082
|
+
type: "error" | "success" | "info" | "warning";
|
|
7079
7083
|
id?: number | undefined;
|
|
7080
7084
|
}[] | undefined;
|
|
7081
7085
|
required?: boolean | undefined;
|
|
@@ -7096,7 +7100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7096
7100
|
hint?: string | undefined;
|
|
7097
7101
|
messages?: {
|
|
7098
7102
|
text: string;
|
|
7099
|
-
type: "
|
|
7103
|
+
type: "error" | "success" | "info" | "warning";
|
|
7100
7104
|
id?: number | undefined;
|
|
7101
7105
|
}[] | undefined;
|
|
7102
7106
|
required?: boolean | undefined;
|
|
@@ -7121,7 +7125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7121
7125
|
hint?: string | undefined;
|
|
7122
7126
|
messages?: {
|
|
7123
7127
|
text: string;
|
|
7124
|
-
type: "
|
|
7128
|
+
type: "error" | "success" | "info" | "warning";
|
|
7125
7129
|
id?: number | undefined;
|
|
7126
7130
|
}[] | undefined;
|
|
7127
7131
|
required?: boolean | undefined;
|
|
@@ -7142,7 +7146,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7142
7146
|
hint?: string | undefined;
|
|
7143
7147
|
messages?: {
|
|
7144
7148
|
text: string;
|
|
7145
|
-
type: "
|
|
7149
|
+
type: "error" | "success" | "info" | "warning";
|
|
7146
7150
|
id?: number | undefined;
|
|
7147
7151
|
}[] | undefined;
|
|
7148
7152
|
required?: boolean | undefined;
|
|
@@ -7162,7 +7166,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7162
7166
|
hint?: string | undefined;
|
|
7163
7167
|
messages?: {
|
|
7164
7168
|
text: string;
|
|
7165
|
-
type: "
|
|
7169
|
+
type: "error" | "success" | "info" | "warning";
|
|
7166
7170
|
id?: number | undefined;
|
|
7167
7171
|
}[] | undefined;
|
|
7168
7172
|
required?: boolean | undefined;
|
|
@@ -7181,7 +7185,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7181
7185
|
hint?: string | undefined;
|
|
7182
7186
|
messages?: {
|
|
7183
7187
|
text: string;
|
|
7184
|
-
type: "
|
|
7188
|
+
type: "error" | "success" | "info" | "warning";
|
|
7185
7189
|
id?: number | undefined;
|
|
7186
7190
|
}[] | undefined;
|
|
7187
7191
|
required?: boolean | undefined;
|
|
@@ -7203,7 +7207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7203
7207
|
hint?: string | undefined;
|
|
7204
7208
|
messages?: {
|
|
7205
7209
|
text: string;
|
|
7206
|
-
type: "
|
|
7210
|
+
type: "error" | "success" | "info" | "warning";
|
|
7207
7211
|
id?: number | undefined;
|
|
7208
7212
|
}[] | undefined;
|
|
7209
7213
|
required?: boolean | undefined;
|
|
@@ -7225,7 +7229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7225
7229
|
hint?: string | undefined;
|
|
7226
7230
|
messages?: {
|
|
7227
7231
|
text: string;
|
|
7228
|
-
type: "
|
|
7232
|
+
type: "error" | "success" | "info" | "warning";
|
|
7229
7233
|
id?: number | undefined;
|
|
7230
7234
|
}[] | undefined;
|
|
7231
7235
|
required?: boolean | undefined;
|
|
@@ -7244,7 +7248,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7244
7248
|
hint?: string | undefined;
|
|
7245
7249
|
messages?: {
|
|
7246
7250
|
text: string;
|
|
7247
|
-
type: "
|
|
7251
|
+
type: "error" | "success" | "info" | "warning";
|
|
7248
7252
|
id?: number | undefined;
|
|
7249
7253
|
}[] | undefined;
|
|
7250
7254
|
required?: boolean | undefined;
|
|
@@ -7271,7 +7275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7271
7275
|
hint?: string | undefined;
|
|
7272
7276
|
messages?: {
|
|
7273
7277
|
text: string;
|
|
7274
|
-
type: "
|
|
7278
|
+
type: "error" | "success" | "info" | "warning";
|
|
7275
7279
|
id?: number | undefined;
|
|
7276
7280
|
}[] | undefined;
|
|
7277
7281
|
required?: boolean | undefined;
|
|
@@ -7292,7 +7296,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7292
7296
|
hint?: string | undefined;
|
|
7293
7297
|
messages?: {
|
|
7294
7298
|
text: string;
|
|
7295
|
-
type: "
|
|
7299
|
+
type: "error" | "success" | "info" | "warning";
|
|
7296
7300
|
id?: number | undefined;
|
|
7297
7301
|
}[] | undefined;
|
|
7298
7302
|
required?: boolean | undefined;
|
|
@@ -7315,7 +7319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7315
7319
|
hint?: string | undefined;
|
|
7316
7320
|
messages?: {
|
|
7317
7321
|
text: string;
|
|
7318
|
-
type: "
|
|
7322
|
+
type: "error" | "success" | "info" | "warning";
|
|
7319
7323
|
id?: number | undefined;
|
|
7320
7324
|
}[] | undefined;
|
|
7321
7325
|
required?: boolean | undefined;
|
|
@@ -7548,7 +7552,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7548
7552
|
hint?: string | undefined;
|
|
7549
7553
|
messages?: {
|
|
7550
7554
|
text: string;
|
|
7551
|
-
type: "
|
|
7555
|
+
type: "error" | "success" | "info" | "warning";
|
|
7552
7556
|
id?: number | undefined;
|
|
7553
7557
|
}[] | undefined;
|
|
7554
7558
|
required?: boolean | undefined;
|
|
@@ -7566,7 +7570,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7566
7570
|
hint?: string | undefined;
|
|
7567
7571
|
messages?: {
|
|
7568
7572
|
text: string;
|
|
7569
|
-
type: "
|
|
7573
|
+
type: "error" | "success" | "info" | "warning";
|
|
7570
7574
|
id?: number | undefined;
|
|
7571
7575
|
}[] | undefined;
|
|
7572
7576
|
required?: boolean | undefined;
|
|
@@ -7590,7 +7594,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7590
7594
|
hint?: string | undefined;
|
|
7591
7595
|
messages?: {
|
|
7592
7596
|
text: string;
|
|
7593
|
-
type: "
|
|
7597
|
+
type: "error" | "success" | "info" | "warning";
|
|
7594
7598
|
id?: number | undefined;
|
|
7595
7599
|
}[] | undefined;
|
|
7596
7600
|
required?: boolean | undefined;
|
|
@@ -7614,7 +7618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7614
7618
|
hint?: string | undefined;
|
|
7615
7619
|
messages?: {
|
|
7616
7620
|
text: string;
|
|
7617
|
-
type: "
|
|
7621
|
+
type: "error" | "success" | "info" | "warning";
|
|
7618
7622
|
id?: number | undefined;
|
|
7619
7623
|
}[] | undefined;
|
|
7620
7624
|
required?: boolean | undefined;
|
|
@@ -7638,7 +7642,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7638
7642
|
hint?: string | undefined;
|
|
7639
7643
|
messages?: {
|
|
7640
7644
|
text: string;
|
|
7641
|
-
type: "
|
|
7645
|
+
type: "error" | "success" | "info" | "warning";
|
|
7642
7646
|
id?: number | undefined;
|
|
7643
7647
|
}[] | undefined;
|
|
7644
7648
|
required?: boolean | undefined;
|
|
@@ -7667,7 +7671,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7667
7671
|
hint?: string | undefined;
|
|
7668
7672
|
messages?: {
|
|
7669
7673
|
text: string;
|
|
7670
|
-
type: "
|
|
7674
|
+
type: "error" | "success" | "info" | "warning";
|
|
7671
7675
|
id?: number | undefined;
|
|
7672
7676
|
}[] | undefined;
|
|
7673
7677
|
required?: boolean | undefined;
|
|
@@ -7682,7 +7686,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7682
7686
|
hint?: string | undefined;
|
|
7683
7687
|
messages?: {
|
|
7684
7688
|
text: string;
|
|
7685
|
-
type: "
|
|
7689
|
+
type: "error" | "success" | "info" | "warning";
|
|
7686
7690
|
id?: number | undefined;
|
|
7687
7691
|
}[] | undefined;
|
|
7688
7692
|
required?: boolean | undefined;
|
|
@@ -7703,7 +7707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7703
7707
|
hint?: string | undefined;
|
|
7704
7708
|
messages?: {
|
|
7705
7709
|
text: string;
|
|
7706
|
-
type: "
|
|
7710
|
+
type: "error" | "success" | "info" | "warning";
|
|
7707
7711
|
id?: number | undefined;
|
|
7708
7712
|
}[] | undefined;
|
|
7709
7713
|
required?: boolean | undefined;
|
|
@@ -7728,7 +7732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7728
7732
|
hint?: string | undefined;
|
|
7729
7733
|
messages?: {
|
|
7730
7734
|
text: string;
|
|
7731
|
-
type: "
|
|
7735
|
+
type: "error" | "success" | "info" | "warning";
|
|
7732
7736
|
id?: number | undefined;
|
|
7733
7737
|
}[] | undefined;
|
|
7734
7738
|
required?: boolean | undefined;
|
|
@@ -7749,7 +7753,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7749
7753
|
hint?: string | undefined;
|
|
7750
7754
|
messages?: {
|
|
7751
7755
|
text: string;
|
|
7752
|
-
type: "
|
|
7756
|
+
type: "error" | "success" | "info" | "warning";
|
|
7753
7757
|
id?: number | undefined;
|
|
7754
7758
|
}[] | undefined;
|
|
7755
7759
|
required?: boolean | undefined;
|
|
@@ -7769,7 +7773,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7769
7773
|
hint?: string | undefined;
|
|
7770
7774
|
messages?: {
|
|
7771
7775
|
text: string;
|
|
7772
|
-
type: "
|
|
7776
|
+
type: "error" | "success" | "info" | "warning";
|
|
7773
7777
|
id?: number | undefined;
|
|
7774
7778
|
}[] | undefined;
|
|
7775
7779
|
required?: boolean | undefined;
|
|
@@ -7788,7 +7792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7788
7792
|
hint?: string | undefined;
|
|
7789
7793
|
messages?: {
|
|
7790
7794
|
text: string;
|
|
7791
|
-
type: "
|
|
7795
|
+
type: "error" | "success" | "info" | "warning";
|
|
7792
7796
|
id?: number | undefined;
|
|
7793
7797
|
}[] | undefined;
|
|
7794
7798
|
required?: boolean | undefined;
|
|
@@ -7810,7 +7814,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7810
7814
|
hint?: string | undefined;
|
|
7811
7815
|
messages?: {
|
|
7812
7816
|
text: string;
|
|
7813
|
-
type: "
|
|
7817
|
+
type: "error" | "success" | "info" | "warning";
|
|
7814
7818
|
id?: number | undefined;
|
|
7815
7819
|
}[] | undefined;
|
|
7816
7820
|
required?: boolean | undefined;
|
|
@@ -7832,7 +7836,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7832
7836
|
hint?: string | undefined;
|
|
7833
7837
|
messages?: {
|
|
7834
7838
|
text: string;
|
|
7835
|
-
type: "
|
|
7839
|
+
type: "error" | "success" | "info" | "warning";
|
|
7836
7840
|
id?: number | undefined;
|
|
7837
7841
|
}[] | undefined;
|
|
7838
7842
|
required?: boolean | undefined;
|
|
@@ -7851,7 +7855,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7851
7855
|
hint?: string | undefined;
|
|
7852
7856
|
messages?: {
|
|
7853
7857
|
text: string;
|
|
7854
|
-
type: "
|
|
7858
|
+
type: "error" | "success" | "info" | "warning";
|
|
7855
7859
|
id?: number | undefined;
|
|
7856
7860
|
}[] | undefined;
|
|
7857
7861
|
required?: boolean | undefined;
|
|
@@ -7878,7 +7882,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7878
7882
|
hint?: string | undefined;
|
|
7879
7883
|
messages?: {
|
|
7880
7884
|
text: string;
|
|
7881
|
-
type: "
|
|
7885
|
+
type: "error" | "success" | "info" | "warning";
|
|
7882
7886
|
id?: number | undefined;
|
|
7883
7887
|
}[] | undefined;
|
|
7884
7888
|
required?: boolean | undefined;
|
|
@@ -7899,7 +7903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7899
7903
|
hint?: string | undefined;
|
|
7900
7904
|
messages?: {
|
|
7901
7905
|
text: string;
|
|
7902
|
-
type: "
|
|
7906
|
+
type: "error" | "success" | "info" | "warning";
|
|
7903
7907
|
id?: number | undefined;
|
|
7904
7908
|
}[] | undefined;
|
|
7905
7909
|
required?: boolean | undefined;
|
|
@@ -7922,7 +7926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7922
7926
|
hint?: string | undefined;
|
|
7923
7927
|
messages?: {
|
|
7924
7928
|
text: string;
|
|
7925
|
-
type: "
|
|
7929
|
+
type: "error" | "success" | "info" | "warning";
|
|
7926
7930
|
id?: number | undefined;
|
|
7927
7931
|
}[] | undefined;
|
|
7928
7932
|
required?: boolean | undefined;
|
|
@@ -8171,7 +8175,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8171
8175
|
hint?: string | undefined;
|
|
8172
8176
|
messages?: {
|
|
8173
8177
|
text: string;
|
|
8174
|
-
type: "
|
|
8178
|
+
type: "error" | "success" | "info" | "warning";
|
|
8175
8179
|
id?: number | undefined;
|
|
8176
8180
|
}[] | undefined;
|
|
8177
8181
|
required?: boolean | undefined;
|
|
@@ -8189,7 +8193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8189
8193
|
hint?: string | undefined;
|
|
8190
8194
|
messages?: {
|
|
8191
8195
|
text: string;
|
|
8192
|
-
type: "
|
|
8196
|
+
type: "error" | "success" | "info" | "warning";
|
|
8193
8197
|
id?: number | undefined;
|
|
8194
8198
|
}[] | undefined;
|
|
8195
8199
|
required?: boolean | undefined;
|
|
@@ -8213,7 +8217,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8213
8217
|
hint?: string | undefined;
|
|
8214
8218
|
messages?: {
|
|
8215
8219
|
text: string;
|
|
8216
|
-
type: "
|
|
8220
|
+
type: "error" | "success" | "info" | "warning";
|
|
8217
8221
|
id?: number | undefined;
|
|
8218
8222
|
}[] | undefined;
|
|
8219
8223
|
required?: boolean | undefined;
|
|
@@ -8237,7 +8241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8237
8241
|
hint?: string | undefined;
|
|
8238
8242
|
messages?: {
|
|
8239
8243
|
text: string;
|
|
8240
|
-
type: "
|
|
8244
|
+
type: "error" | "success" | "info" | "warning";
|
|
8241
8245
|
id?: number | undefined;
|
|
8242
8246
|
}[] | undefined;
|
|
8243
8247
|
required?: boolean | undefined;
|
|
@@ -8261,7 +8265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8261
8265
|
hint?: string | undefined;
|
|
8262
8266
|
messages?: {
|
|
8263
8267
|
text: string;
|
|
8264
|
-
type: "
|
|
8268
|
+
type: "error" | "success" | "info" | "warning";
|
|
8265
8269
|
id?: number | undefined;
|
|
8266
8270
|
}[] | undefined;
|
|
8267
8271
|
required?: boolean | undefined;
|
|
@@ -8290,7 +8294,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8290
8294
|
hint?: string | undefined;
|
|
8291
8295
|
messages?: {
|
|
8292
8296
|
text: string;
|
|
8293
|
-
type: "
|
|
8297
|
+
type: "error" | "success" | "info" | "warning";
|
|
8294
8298
|
id?: number | undefined;
|
|
8295
8299
|
}[] | undefined;
|
|
8296
8300
|
required?: boolean | undefined;
|
|
@@ -8305,7 +8309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8305
8309
|
hint?: string | undefined;
|
|
8306
8310
|
messages?: {
|
|
8307
8311
|
text: string;
|
|
8308
|
-
type: "
|
|
8312
|
+
type: "error" | "success" | "info" | "warning";
|
|
8309
8313
|
id?: number | undefined;
|
|
8310
8314
|
}[] | undefined;
|
|
8311
8315
|
required?: boolean | undefined;
|
|
@@ -8326,7 +8330,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8326
8330
|
hint?: string | undefined;
|
|
8327
8331
|
messages?: {
|
|
8328
8332
|
text: string;
|
|
8329
|
-
type: "
|
|
8333
|
+
type: "error" | "success" | "info" | "warning";
|
|
8330
8334
|
id?: number | undefined;
|
|
8331
8335
|
}[] | undefined;
|
|
8332
8336
|
required?: boolean | undefined;
|
|
@@ -8351,7 +8355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8351
8355
|
hint?: string | undefined;
|
|
8352
8356
|
messages?: {
|
|
8353
8357
|
text: string;
|
|
8354
|
-
type: "
|
|
8358
|
+
type: "error" | "success" | "info" | "warning";
|
|
8355
8359
|
id?: number | undefined;
|
|
8356
8360
|
}[] | undefined;
|
|
8357
8361
|
required?: boolean | undefined;
|
|
@@ -8372,7 +8376,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8372
8376
|
hint?: string | undefined;
|
|
8373
8377
|
messages?: {
|
|
8374
8378
|
text: string;
|
|
8375
|
-
type: "
|
|
8379
|
+
type: "error" | "success" | "info" | "warning";
|
|
8376
8380
|
id?: number | undefined;
|
|
8377
8381
|
}[] | undefined;
|
|
8378
8382
|
required?: boolean | undefined;
|
|
@@ -8392,7 +8396,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8392
8396
|
hint?: string | undefined;
|
|
8393
8397
|
messages?: {
|
|
8394
8398
|
text: string;
|
|
8395
|
-
type: "
|
|
8399
|
+
type: "error" | "success" | "info" | "warning";
|
|
8396
8400
|
id?: number | undefined;
|
|
8397
8401
|
}[] | undefined;
|
|
8398
8402
|
required?: boolean | undefined;
|
|
@@ -8411,7 +8415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8411
8415
|
hint?: string | undefined;
|
|
8412
8416
|
messages?: {
|
|
8413
8417
|
text: string;
|
|
8414
|
-
type: "
|
|
8418
|
+
type: "error" | "success" | "info" | "warning";
|
|
8415
8419
|
id?: number | undefined;
|
|
8416
8420
|
}[] | undefined;
|
|
8417
8421
|
required?: boolean | undefined;
|
|
@@ -8433,7 +8437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8433
8437
|
hint?: string | undefined;
|
|
8434
8438
|
messages?: {
|
|
8435
8439
|
text: string;
|
|
8436
|
-
type: "
|
|
8440
|
+
type: "error" | "success" | "info" | "warning";
|
|
8437
8441
|
id?: number | undefined;
|
|
8438
8442
|
}[] | undefined;
|
|
8439
8443
|
required?: boolean | undefined;
|
|
@@ -8455,7 +8459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8455
8459
|
hint?: string | undefined;
|
|
8456
8460
|
messages?: {
|
|
8457
8461
|
text: string;
|
|
8458
|
-
type: "
|
|
8462
|
+
type: "error" | "success" | "info" | "warning";
|
|
8459
8463
|
id?: number | undefined;
|
|
8460
8464
|
}[] | undefined;
|
|
8461
8465
|
required?: boolean | undefined;
|
|
@@ -8474,7 +8478,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8474
8478
|
hint?: string | undefined;
|
|
8475
8479
|
messages?: {
|
|
8476
8480
|
text: string;
|
|
8477
|
-
type: "
|
|
8481
|
+
type: "error" | "success" | "info" | "warning";
|
|
8478
8482
|
id?: number | undefined;
|
|
8479
8483
|
}[] | undefined;
|
|
8480
8484
|
required?: boolean | undefined;
|
|
@@ -8501,7 +8505,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8501
8505
|
hint?: string | undefined;
|
|
8502
8506
|
messages?: {
|
|
8503
8507
|
text: string;
|
|
8504
|
-
type: "
|
|
8508
|
+
type: "error" | "success" | "info" | "warning";
|
|
8505
8509
|
id?: number | undefined;
|
|
8506
8510
|
}[] | undefined;
|
|
8507
8511
|
required?: boolean | undefined;
|
|
@@ -8522,7 +8526,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8522
8526
|
hint?: string | undefined;
|
|
8523
8527
|
messages?: {
|
|
8524
8528
|
text: string;
|
|
8525
|
-
type: "
|
|
8529
|
+
type: "error" | "success" | "info" | "warning";
|
|
8526
8530
|
id?: number | undefined;
|
|
8527
8531
|
}[] | undefined;
|
|
8528
8532
|
required?: boolean | undefined;
|
|
@@ -8545,7 +8549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8545
8549
|
hint?: string | undefined;
|
|
8546
8550
|
messages?: {
|
|
8547
8551
|
text: string;
|
|
8548
|
-
type: "
|
|
8552
|
+
type: "error" | "success" | "info" | "warning";
|
|
8549
8553
|
id?: number | undefined;
|
|
8550
8554
|
}[] | undefined;
|
|
8551
8555
|
required?: boolean | undefined;
|
|
@@ -8799,7 +8803,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8799
8803
|
hint?: string | undefined;
|
|
8800
8804
|
messages?: {
|
|
8801
8805
|
text: string;
|
|
8802
|
-
type: "
|
|
8806
|
+
type: "error" | "success" | "info" | "warning";
|
|
8803
8807
|
id?: number | undefined;
|
|
8804
8808
|
}[] | undefined;
|
|
8805
8809
|
required?: boolean | undefined;
|
|
@@ -8817,7 +8821,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8817
8821
|
hint?: string | undefined;
|
|
8818
8822
|
messages?: {
|
|
8819
8823
|
text: string;
|
|
8820
|
-
type: "
|
|
8824
|
+
type: "error" | "success" | "info" | "warning";
|
|
8821
8825
|
id?: number | undefined;
|
|
8822
8826
|
}[] | undefined;
|
|
8823
8827
|
required?: boolean | undefined;
|
|
@@ -8841,7 +8845,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8841
8845
|
hint?: string | undefined;
|
|
8842
8846
|
messages?: {
|
|
8843
8847
|
text: string;
|
|
8844
|
-
type: "
|
|
8848
|
+
type: "error" | "success" | "info" | "warning";
|
|
8845
8849
|
id?: number | undefined;
|
|
8846
8850
|
}[] | undefined;
|
|
8847
8851
|
required?: boolean | undefined;
|
|
@@ -8865,7 +8869,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8865
8869
|
hint?: string | undefined;
|
|
8866
8870
|
messages?: {
|
|
8867
8871
|
text: string;
|
|
8868
|
-
type: "
|
|
8872
|
+
type: "error" | "success" | "info" | "warning";
|
|
8869
8873
|
id?: number | undefined;
|
|
8870
8874
|
}[] | undefined;
|
|
8871
8875
|
required?: boolean | undefined;
|
|
@@ -8889,7 +8893,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8889
8893
|
hint?: string | undefined;
|
|
8890
8894
|
messages?: {
|
|
8891
8895
|
text: string;
|
|
8892
|
-
type: "
|
|
8896
|
+
type: "error" | "success" | "info" | "warning";
|
|
8893
8897
|
id?: number | undefined;
|
|
8894
8898
|
}[] | undefined;
|
|
8895
8899
|
required?: boolean | undefined;
|
|
@@ -8914,7 +8918,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8914
8918
|
hint?: string | undefined;
|
|
8915
8919
|
messages?: {
|
|
8916
8920
|
text: string;
|
|
8917
|
-
type: "
|
|
8921
|
+
type: "error" | "success" | "info" | "warning";
|
|
8918
8922
|
id?: number | undefined;
|
|
8919
8923
|
}[] | undefined;
|
|
8920
8924
|
required?: boolean | undefined;
|
|
@@ -8929,7 +8933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8929
8933
|
hint?: string | undefined;
|
|
8930
8934
|
messages?: {
|
|
8931
8935
|
text: string;
|
|
8932
|
-
type: "
|
|
8936
|
+
type: "error" | "success" | "info" | "warning";
|
|
8933
8937
|
id?: number | undefined;
|
|
8934
8938
|
}[] | undefined;
|
|
8935
8939
|
required?: boolean | undefined;
|
|
@@ -8950,7 +8954,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8950
8954
|
hint?: string | undefined;
|
|
8951
8955
|
messages?: {
|
|
8952
8956
|
text: string;
|
|
8953
|
-
type: "
|
|
8957
|
+
type: "error" | "success" | "info" | "warning";
|
|
8954
8958
|
id?: number | undefined;
|
|
8955
8959
|
}[] | undefined;
|
|
8956
8960
|
required?: boolean | undefined;
|
|
@@ -8975,7 +8979,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8975
8979
|
hint?: string | undefined;
|
|
8976
8980
|
messages?: {
|
|
8977
8981
|
text: string;
|
|
8978
|
-
type: "
|
|
8982
|
+
type: "error" | "success" | "info" | "warning";
|
|
8979
8983
|
id?: number | undefined;
|
|
8980
8984
|
}[] | undefined;
|
|
8981
8985
|
required?: boolean | undefined;
|
|
@@ -8996,7 +9000,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8996
9000
|
hint?: string | undefined;
|
|
8997
9001
|
messages?: {
|
|
8998
9002
|
text: string;
|
|
8999
|
-
type: "
|
|
9003
|
+
type: "error" | "success" | "info" | "warning";
|
|
9000
9004
|
id?: number | undefined;
|
|
9001
9005
|
}[] | undefined;
|
|
9002
9006
|
required?: boolean | undefined;
|
|
@@ -9016,7 +9020,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9016
9020
|
hint?: string | undefined;
|
|
9017
9021
|
messages?: {
|
|
9018
9022
|
text: string;
|
|
9019
|
-
type: "
|
|
9023
|
+
type: "error" | "success" | "info" | "warning";
|
|
9020
9024
|
id?: number | undefined;
|
|
9021
9025
|
}[] | undefined;
|
|
9022
9026
|
required?: boolean | undefined;
|
|
@@ -9035,7 +9039,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9035
9039
|
hint?: string | undefined;
|
|
9036
9040
|
messages?: {
|
|
9037
9041
|
text: string;
|
|
9038
|
-
type: "
|
|
9042
|
+
type: "error" | "success" | "info" | "warning";
|
|
9039
9043
|
id?: number | undefined;
|
|
9040
9044
|
}[] | undefined;
|
|
9041
9045
|
required?: boolean | undefined;
|
|
@@ -9057,7 +9061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9057
9061
|
hint?: string | undefined;
|
|
9058
9062
|
messages?: {
|
|
9059
9063
|
text: string;
|
|
9060
|
-
type: "
|
|
9064
|
+
type: "error" | "success" | "info" | "warning";
|
|
9061
9065
|
id?: number | undefined;
|
|
9062
9066
|
}[] | undefined;
|
|
9063
9067
|
required?: boolean | undefined;
|
|
@@ -9079,7 +9083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9079
9083
|
hint?: string | undefined;
|
|
9080
9084
|
messages?: {
|
|
9081
9085
|
text: string;
|
|
9082
|
-
type: "
|
|
9086
|
+
type: "error" | "success" | "info" | "warning";
|
|
9083
9087
|
id?: number | undefined;
|
|
9084
9088
|
}[] | undefined;
|
|
9085
9089
|
required?: boolean | undefined;
|
|
@@ -9098,7 +9102,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9098
9102
|
hint?: string | undefined;
|
|
9099
9103
|
messages?: {
|
|
9100
9104
|
text: string;
|
|
9101
|
-
type: "
|
|
9105
|
+
type: "error" | "success" | "info" | "warning";
|
|
9102
9106
|
id?: number | undefined;
|
|
9103
9107
|
}[] | undefined;
|
|
9104
9108
|
required?: boolean | undefined;
|
|
@@ -9125,7 +9129,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9125
9129
|
hint?: string | undefined;
|
|
9126
9130
|
messages?: {
|
|
9127
9131
|
text: string;
|
|
9128
|
-
type: "
|
|
9132
|
+
type: "error" | "success" | "info" | "warning";
|
|
9129
9133
|
id?: number | undefined;
|
|
9130
9134
|
}[] | undefined;
|
|
9131
9135
|
required?: boolean | undefined;
|
|
@@ -9146,7 +9150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9146
9150
|
hint?: string | undefined;
|
|
9147
9151
|
messages?: {
|
|
9148
9152
|
text: string;
|
|
9149
|
-
type: "
|
|
9153
|
+
type: "error" | "success" | "info" | "warning";
|
|
9150
9154
|
id?: number | undefined;
|
|
9151
9155
|
}[] | undefined;
|
|
9152
9156
|
required?: boolean | undefined;
|
|
@@ -9169,7 +9173,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9169
9173
|
hint?: string | undefined;
|
|
9170
9174
|
messages?: {
|
|
9171
9175
|
text: string;
|
|
9172
|
-
type: "
|
|
9176
|
+
type: "error" | "success" | "info" | "warning";
|
|
9173
9177
|
id?: number | undefined;
|
|
9174
9178
|
}[] | undefined;
|
|
9175
9179
|
required?: boolean | undefined;
|
|
@@ -9400,7 +9404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9400
9404
|
hint?: string | undefined;
|
|
9401
9405
|
messages?: {
|
|
9402
9406
|
text: string;
|
|
9403
|
-
type: "
|
|
9407
|
+
type: "error" | "success" | "info" | "warning";
|
|
9404
9408
|
id?: number | undefined;
|
|
9405
9409
|
}[] | undefined;
|
|
9406
9410
|
required?: boolean | undefined;
|
|
@@ -9418,7 +9422,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9418
9422
|
hint?: string | undefined;
|
|
9419
9423
|
messages?: {
|
|
9420
9424
|
text: string;
|
|
9421
|
-
type: "
|
|
9425
|
+
type: "error" | "success" | "info" | "warning";
|
|
9422
9426
|
id?: number | undefined;
|
|
9423
9427
|
}[] | undefined;
|
|
9424
9428
|
required?: boolean | undefined;
|
|
@@ -9442,7 +9446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9442
9446
|
hint?: string | undefined;
|
|
9443
9447
|
messages?: {
|
|
9444
9448
|
text: string;
|
|
9445
|
-
type: "
|
|
9449
|
+
type: "error" | "success" | "info" | "warning";
|
|
9446
9450
|
id?: number | undefined;
|
|
9447
9451
|
}[] | undefined;
|
|
9448
9452
|
required?: boolean | undefined;
|
|
@@ -9466,7 +9470,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9466
9470
|
hint?: string | undefined;
|
|
9467
9471
|
messages?: {
|
|
9468
9472
|
text: string;
|
|
9469
|
-
type: "
|
|
9473
|
+
type: "error" | "success" | "info" | "warning";
|
|
9470
9474
|
id?: number | undefined;
|
|
9471
9475
|
}[] | undefined;
|
|
9472
9476
|
required?: boolean | undefined;
|
|
@@ -9490,7 +9494,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9490
9494
|
hint?: string | undefined;
|
|
9491
9495
|
messages?: {
|
|
9492
9496
|
text: string;
|
|
9493
|
-
type: "
|
|
9497
|
+
type: "error" | "success" | "info" | "warning";
|
|
9494
9498
|
id?: number | undefined;
|
|
9495
9499
|
}[] | undefined;
|
|
9496
9500
|
required?: boolean | undefined;
|
|
@@ -9519,7 +9523,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9519
9523
|
hint?: string | undefined;
|
|
9520
9524
|
messages?: {
|
|
9521
9525
|
text: string;
|
|
9522
|
-
type: "
|
|
9526
|
+
type: "error" | "success" | "info" | "warning";
|
|
9523
9527
|
id?: number | undefined;
|
|
9524
9528
|
}[] | undefined;
|
|
9525
9529
|
required?: boolean | undefined;
|
|
@@ -9534,7 +9538,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9534
9538
|
hint?: string | undefined;
|
|
9535
9539
|
messages?: {
|
|
9536
9540
|
text: string;
|
|
9537
|
-
type: "
|
|
9541
|
+
type: "error" | "success" | "info" | "warning";
|
|
9538
9542
|
id?: number | undefined;
|
|
9539
9543
|
}[] | undefined;
|
|
9540
9544
|
required?: boolean | undefined;
|
|
@@ -9555,7 +9559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9555
9559
|
hint?: string | undefined;
|
|
9556
9560
|
messages?: {
|
|
9557
9561
|
text: string;
|
|
9558
|
-
type: "
|
|
9562
|
+
type: "error" | "success" | "info" | "warning";
|
|
9559
9563
|
id?: number | undefined;
|
|
9560
9564
|
}[] | undefined;
|
|
9561
9565
|
required?: boolean | undefined;
|
|
@@ -9580,7 +9584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9580
9584
|
hint?: string | undefined;
|
|
9581
9585
|
messages?: {
|
|
9582
9586
|
text: string;
|
|
9583
|
-
type: "
|
|
9587
|
+
type: "error" | "success" | "info" | "warning";
|
|
9584
9588
|
id?: number | undefined;
|
|
9585
9589
|
}[] | undefined;
|
|
9586
9590
|
required?: boolean | undefined;
|
|
@@ -9601,7 +9605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9601
9605
|
hint?: string | undefined;
|
|
9602
9606
|
messages?: {
|
|
9603
9607
|
text: string;
|
|
9604
|
-
type: "
|
|
9608
|
+
type: "error" | "success" | "info" | "warning";
|
|
9605
9609
|
id?: number | undefined;
|
|
9606
9610
|
}[] | undefined;
|
|
9607
9611
|
required?: boolean | undefined;
|
|
@@ -9621,7 +9625,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9621
9625
|
hint?: string | undefined;
|
|
9622
9626
|
messages?: {
|
|
9623
9627
|
text: string;
|
|
9624
|
-
type: "
|
|
9628
|
+
type: "error" | "success" | "info" | "warning";
|
|
9625
9629
|
id?: number | undefined;
|
|
9626
9630
|
}[] | undefined;
|
|
9627
9631
|
required?: boolean | undefined;
|
|
@@ -9640,7 +9644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9640
9644
|
hint?: string | undefined;
|
|
9641
9645
|
messages?: {
|
|
9642
9646
|
text: string;
|
|
9643
|
-
type: "
|
|
9647
|
+
type: "error" | "success" | "info" | "warning";
|
|
9644
9648
|
id?: number | undefined;
|
|
9645
9649
|
}[] | undefined;
|
|
9646
9650
|
required?: boolean | undefined;
|
|
@@ -9662,7 +9666,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9662
9666
|
hint?: string | undefined;
|
|
9663
9667
|
messages?: {
|
|
9664
9668
|
text: string;
|
|
9665
|
-
type: "
|
|
9669
|
+
type: "error" | "success" | "info" | "warning";
|
|
9666
9670
|
id?: number | undefined;
|
|
9667
9671
|
}[] | undefined;
|
|
9668
9672
|
required?: boolean | undefined;
|
|
@@ -9684,7 +9688,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9684
9688
|
hint?: string | undefined;
|
|
9685
9689
|
messages?: {
|
|
9686
9690
|
text: string;
|
|
9687
|
-
type: "
|
|
9691
|
+
type: "error" | "success" | "info" | "warning";
|
|
9688
9692
|
id?: number | undefined;
|
|
9689
9693
|
}[] | undefined;
|
|
9690
9694
|
required?: boolean | undefined;
|
|
@@ -9703,7 +9707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9703
9707
|
hint?: string | undefined;
|
|
9704
9708
|
messages?: {
|
|
9705
9709
|
text: string;
|
|
9706
|
-
type: "
|
|
9710
|
+
type: "error" | "success" | "info" | "warning";
|
|
9707
9711
|
id?: number | undefined;
|
|
9708
9712
|
}[] | undefined;
|
|
9709
9713
|
required?: boolean | undefined;
|
|
@@ -9730,7 +9734,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9730
9734
|
hint?: string | undefined;
|
|
9731
9735
|
messages?: {
|
|
9732
9736
|
text: string;
|
|
9733
|
-
type: "
|
|
9737
|
+
type: "error" | "success" | "info" | "warning";
|
|
9734
9738
|
id?: number | undefined;
|
|
9735
9739
|
}[] | undefined;
|
|
9736
9740
|
required?: boolean | undefined;
|
|
@@ -9751,7 +9755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9751
9755
|
hint?: string | undefined;
|
|
9752
9756
|
messages?: {
|
|
9753
9757
|
text: string;
|
|
9754
|
-
type: "
|
|
9758
|
+
type: "error" | "success" | "info" | "warning";
|
|
9755
9759
|
id?: number | undefined;
|
|
9756
9760
|
}[] | undefined;
|
|
9757
9761
|
required?: boolean | undefined;
|
|
@@ -9774,7 +9778,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9774
9778
|
hint?: string | undefined;
|
|
9775
9779
|
messages?: {
|
|
9776
9780
|
text: string;
|
|
9777
|
-
type: "
|
|
9781
|
+
type: "error" | "success" | "info" | "warning";
|
|
9778
9782
|
id?: number | undefined;
|
|
9779
9783
|
}[] | undefined;
|
|
9780
9784
|
required?: boolean | undefined;
|
|
@@ -10007,7 +10011,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10007
10011
|
hint?: string | undefined;
|
|
10008
10012
|
messages?: {
|
|
10009
10013
|
text: string;
|
|
10010
|
-
type: "
|
|
10014
|
+
type: "error" | "success" | "info" | "warning";
|
|
10011
10015
|
id?: number | undefined;
|
|
10012
10016
|
}[] | undefined;
|
|
10013
10017
|
required?: boolean | undefined;
|
|
@@ -10025,7 +10029,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10025
10029
|
hint?: string | undefined;
|
|
10026
10030
|
messages?: {
|
|
10027
10031
|
text: string;
|
|
10028
|
-
type: "
|
|
10032
|
+
type: "error" | "success" | "info" | "warning";
|
|
10029
10033
|
id?: number | undefined;
|
|
10030
10034
|
}[] | undefined;
|
|
10031
10035
|
required?: boolean | undefined;
|
|
@@ -10049,7 +10053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10049
10053
|
hint?: string | undefined;
|
|
10050
10054
|
messages?: {
|
|
10051
10055
|
text: string;
|
|
10052
|
-
type: "
|
|
10056
|
+
type: "error" | "success" | "info" | "warning";
|
|
10053
10057
|
id?: number | undefined;
|
|
10054
10058
|
}[] | undefined;
|
|
10055
10059
|
required?: boolean | undefined;
|
|
@@ -10073,7 +10077,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10073
10077
|
hint?: string | undefined;
|
|
10074
10078
|
messages?: {
|
|
10075
10079
|
text: string;
|
|
10076
|
-
type: "
|
|
10080
|
+
type: "error" | "success" | "info" | "warning";
|
|
10077
10081
|
id?: number | undefined;
|
|
10078
10082
|
}[] | undefined;
|
|
10079
10083
|
required?: boolean | undefined;
|
|
@@ -10097,7 +10101,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10097
10101
|
hint?: string | undefined;
|
|
10098
10102
|
messages?: {
|
|
10099
10103
|
text: string;
|
|
10100
|
-
type: "
|
|
10104
|
+
type: "error" | "success" | "info" | "warning";
|
|
10101
10105
|
id?: number | undefined;
|
|
10102
10106
|
}[] | undefined;
|
|
10103
10107
|
required?: boolean | undefined;
|
|
@@ -10122,7 +10126,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10122
10126
|
hint?: string | undefined;
|
|
10123
10127
|
messages?: {
|
|
10124
10128
|
text: string;
|
|
10125
|
-
type: "
|
|
10129
|
+
type: "error" | "success" | "info" | "warning";
|
|
10126
10130
|
id?: number | undefined;
|
|
10127
10131
|
}[] | undefined;
|
|
10128
10132
|
required?: boolean | undefined;
|
|
@@ -10137,7 +10141,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10137
10141
|
hint?: string | undefined;
|
|
10138
10142
|
messages?: {
|
|
10139
10143
|
text: string;
|
|
10140
|
-
type: "
|
|
10144
|
+
type: "error" | "success" | "info" | "warning";
|
|
10141
10145
|
id?: number | undefined;
|
|
10142
10146
|
}[] | undefined;
|
|
10143
10147
|
required?: boolean | undefined;
|
|
@@ -10158,7 +10162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10158
10162
|
hint?: string | undefined;
|
|
10159
10163
|
messages?: {
|
|
10160
10164
|
text: string;
|
|
10161
|
-
type: "
|
|
10165
|
+
type: "error" | "success" | "info" | "warning";
|
|
10162
10166
|
id?: number | undefined;
|
|
10163
10167
|
}[] | undefined;
|
|
10164
10168
|
required?: boolean | undefined;
|
|
@@ -10183,7 +10187,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10183
10187
|
hint?: string | undefined;
|
|
10184
10188
|
messages?: {
|
|
10185
10189
|
text: string;
|
|
10186
|
-
type: "
|
|
10190
|
+
type: "error" | "success" | "info" | "warning";
|
|
10187
10191
|
id?: number | undefined;
|
|
10188
10192
|
}[] | undefined;
|
|
10189
10193
|
required?: boolean | undefined;
|
|
@@ -10204,7 +10208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10204
10208
|
hint?: string | undefined;
|
|
10205
10209
|
messages?: {
|
|
10206
10210
|
text: string;
|
|
10207
|
-
type: "
|
|
10211
|
+
type: "error" | "success" | "info" | "warning";
|
|
10208
10212
|
id?: number | undefined;
|
|
10209
10213
|
}[] | undefined;
|
|
10210
10214
|
required?: boolean | undefined;
|
|
@@ -10224,7 +10228,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10224
10228
|
hint?: string | undefined;
|
|
10225
10229
|
messages?: {
|
|
10226
10230
|
text: string;
|
|
10227
|
-
type: "
|
|
10231
|
+
type: "error" | "success" | "info" | "warning";
|
|
10228
10232
|
id?: number | undefined;
|
|
10229
10233
|
}[] | undefined;
|
|
10230
10234
|
required?: boolean | undefined;
|
|
@@ -10243,7 +10247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10243
10247
|
hint?: string | undefined;
|
|
10244
10248
|
messages?: {
|
|
10245
10249
|
text: string;
|
|
10246
|
-
type: "
|
|
10250
|
+
type: "error" | "success" | "info" | "warning";
|
|
10247
10251
|
id?: number | undefined;
|
|
10248
10252
|
}[] | undefined;
|
|
10249
10253
|
required?: boolean | undefined;
|
|
@@ -10265,7 +10269,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10265
10269
|
hint?: string | undefined;
|
|
10266
10270
|
messages?: {
|
|
10267
10271
|
text: string;
|
|
10268
|
-
type: "
|
|
10272
|
+
type: "error" | "success" | "info" | "warning";
|
|
10269
10273
|
id?: number | undefined;
|
|
10270
10274
|
}[] | undefined;
|
|
10271
10275
|
required?: boolean | undefined;
|
|
@@ -10287,7 +10291,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10287
10291
|
hint?: string | undefined;
|
|
10288
10292
|
messages?: {
|
|
10289
10293
|
text: string;
|
|
10290
|
-
type: "
|
|
10294
|
+
type: "error" | "success" | "info" | "warning";
|
|
10291
10295
|
id?: number | undefined;
|
|
10292
10296
|
}[] | undefined;
|
|
10293
10297
|
required?: boolean | undefined;
|
|
@@ -10306,7 +10310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10306
10310
|
hint?: string | undefined;
|
|
10307
10311
|
messages?: {
|
|
10308
10312
|
text: string;
|
|
10309
|
-
type: "
|
|
10313
|
+
type: "error" | "success" | "info" | "warning";
|
|
10310
10314
|
id?: number | undefined;
|
|
10311
10315
|
}[] | undefined;
|
|
10312
10316
|
required?: boolean | undefined;
|
|
@@ -10333,7 +10337,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10333
10337
|
hint?: string | undefined;
|
|
10334
10338
|
messages?: {
|
|
10335
10339
|
text: string;
|
|
10336
|
-
type: "
|
|
10340
|
+
type: "error" | "success" | "info" | "warning";
|
|
10337
10341
|
id?: number | undefined;
|
|
10338
10342
|
}[] | undefined;
|
|
10339
10343
|
required?: boolean | undefined;
|
|
@@ -10354,7 +10358,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10354
10358
|
hint?: string | undefined;
|
|
10355
10359
|
messages?: {
|
|
10356
10360
|
text: string;
|
|
10357
|
-
type: "
|
|
10361
|
+
type: "error" | "success" | "info" | "warning";
|
|
10358
10362
|
id?: number | undefined;
|
|
10359
10363
|
}[] | undefined;
|
|
10360
10364
|
required?: boolean | undefined;
|
|
@@ -10377,7 +10381,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10377
10381
|
hint?: string | undefined;
|
|
10378
10382
|
messages?: {
|
|
10379
10383
|
text: string;
|
|
10380
|
-
type: "
|
|
10384
|
+
type: "error" | "success" | "info" | "warning";
|
|
10381
10385
|
id?: number | undefined;
|
|
10382
10386
|
}[] | undefined;
|
|
10383
10387
|
required?: boolean | undefined;
|
|
@@ -10608,7 +10612,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10608
10612
|
hint?: string | undefined;
|
|
10609
10613
|
messages?: {
|
|
10610
10614
|
text: string;
|
|
10611
|
-
type: "
|
|
10615
|
+
type: "error" | "success" | "info" | "warning";
|
|
10612
10616
|
id?: number | undefined;
|
|
10613
10617
|
}[] | undefined;
|
|
10614
10618
|
required?: boolean | undefined;
|
|
@@ -10626,7 +10630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10626
10630
|
hint?: string | undefined;
|
|
10627
10631
|
messages?: {
|
|
10628
10632
|
text: string;
|
|
10629
|
-
type: "
|
|
10633
|
+
type: "error" | "success" | "info" | "warning";
|
|
10630
10634
|
id?: number | undefined;
|
|
10631
10635
|
}[] | undefined;
|
|
10632
10636
|
required?: boolean | undefined;
|
|
@@ -10650,7 +10654,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10650
10654
|
hint?: string | undefined;
|
|
10651
10655
|
messages?: {
|
|
10652
10656
|
text: string;
|
|
10653
|
-
type: "
|
|
10657
|
+
type: "error" | "success" | "info" | "warning";
|
|
10654
10658
|
id?: number | undefined;
|
|
10655
10659
|
}[] | undefined;
|
|
10656
10660
|
required?: boolean | undefined;
|
|
@@ -10674,7 +10678,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10674
10678
|
hint?: string | undefined;
|
|
10675
10679
|
messages?: {
|
|
10676
10680
|
text: string;
|
|
10677
|
-
type: "
|
|
10681
|
+
type: "error" | "success" | "info" | "warning";
|
|
10678
10682
|
id?: number | undefined;
|
|
10679
10683
|
}[] | undefined;
|
|
10680
10684
|
required?: boolean | undefined;
|
|
@@ -10698,7 +10702,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10698
10702
|
hint?: string | undefined;
|
|
10699
10703
|
messages?: {
|
|
10700
10704
|
text: string;
|
|
10701
|
-
type: "
|
|
10705
|
+
type: "error" | "success" | "info" | "warning";
|
|
10702
10706
|
id?: number | undefined;
|
|
10703
10707
|
}[] | undefined;
|
|
10704
10708
|
required?: boolean | undefined;
|
|
@@ -10727,7 +10731,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10727
10731
|
hint?: string | undefined;
|
|
10728
10732
|
messages?: {
|
|
10729
10733
|
text: string;
|
|
10730
|
-
type: "
|
|
10734
|
+
type: "error" | "success" | "info" | "warning";
|
|
10731
10735
|
id?: number | undefined;
|
|
10732
10736
|
}[] | undefined;
|
|
10733
10737
|
required?: boolean | undefined;
|
|
@@ -10742,7 +10746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10742
10746
|
hint?: string | undefined;
|
|
10743
10747
|
messages?: {
|
|
10744
10748
|
text: string;
|
|
10745
|
-
type: "
|
|
10749
|
+
type: "error" | "success" | "info" | "warning";
|
|
10746
10750
|
id?: number | undefined;
|
|
10747
10751
|
}[] | undefined;
|
|
10748
10752
|
required?: boolean | undefined;
|
|
@@ -10763,7 +10767,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10763
10767
|
hint?: string | undefined;
|
|
10764
10768
|
messages?: {
|
|
10765
10769
|
text: string;
|
|
10766
|
-
type: "
|
|
10770
|
+
type: "error" | "success" | "info" | "warning";
|
|
10767
10771
|
id?: number | undefined;
|
|
10768
10772
|
}[] | undefined;
|
|
10769
10773
|
required?: boolean | undefined;
|
|
@@ -10788,7 +10792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10788
10792
|
hint?: string | undefined;
|
|
10789
10793
|
messages?: {
|
|
10790
10794
|
text: string;
|
|
10791
|
-
type: "
|
|
10795
|
+
type: "error" | "success" | "info" | "warning";
|
|
10792
10796
|
id?: number | undefined;
|
|
10793
10797
|
}[] | undefined;
|
|
10794
10798
|
required?: boolean | undefined;
|
|
@@ -10809,7 +10813,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10809
10813
|
hint?: string | undefined;
|
|
10810
10814
|
messages?: {
|
|
10811
10815
|
text: string;
|
|
10812
|
-
type: "
|
|
10816
|
+
type: "error" | "success" | "info" | "warning";
|
|
10813
10817
|
id?: number | undefined;
|
|
10814
10818
|
}[] | undefined;
|
|
10815
10819
|
required?: boolean | undefined;
|
|
@@ -10829,7 +10833,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10829
10833
|
hint?: string | undefined;
|
|
10830
10834
|
messages?: {
|
|
10831
10835
|
text: string;
|
|
10832
|
-
type: "
|
|
10836
|
+
type: "error" | "success" | "info" | "warning";
|
|
10833
10837
|
id?: number | undefined;
|
|
10834
10838
|
}[] | undefined;
|
|
10835
10839
|
required?: boolean | undefined;
|
|
@@ -10848,7 +10852,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10848
10852
|
hint?: string | undefined;
|
|
10849
10853
|
messages?: {
|
|
10850
10854
|
text: string;
|
|
10851
|
-
type: "
|
|
10855
|
+
type: "error" | "success" | "info" | "warning";
|
|
10852
10856
|
id?: number | undefined;
|
|
10853
10857
|
}[] | undefined;
|
|
10854
10858
|
required?: boolean | undefined;
|
|
@@ -10870,7 +10874,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10870
10874
|
hint?: string | undefined;
|
|
10871
10875
|
messages?: {
|
|
10872
10876
|
text: string;
|
|
10873
|
-
type: "
|
|
10877
|
+
type: "error" | "success" | "info" | "warning";
|
|
10874
10878
|
id?: number | undefined;
|
|
10875
10879
|
}[] | undefined;
|
|
10876
10880
|
required?: boolean | undefined;
|
|
@@ -10892,7 +10896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10892
10896
|
hint?: string | undefined;
|
|
10893
10897
|
messages?: {
|
|
10894
10898
|
text: string;
|
|
10895
|
-
type: "
|
|
10899
|
+
type: "error" | "success" | "info" | "warning";
|
|
10896
10900
|
id?: number | undefined;
|
|
10897
10901
|
}[] | undefined;
|
|
10898
10902
|
required?: boolean | undefined;
|
|
@@ -10911,7 +10915,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10911
10915
|
hint?: string | undefined;
|
|
10912
10916
|
messages?: {
|
|
10913
10917
|
text: string;
|
|
10914
|
-
type: "
|
|
10918
|
+
type: "error" | "success" | "info" | "warning";
|
|
10915
10919
|
id?: number | undefined;
|
|
10916
10920
|
}[] | undefined;
|
|
10917
10921
|
required?: boolean | undefined;
|
|
@@ -10938,7 +10942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10938
10942
|
hint?: string | undefined;
|
|
10939
10943
|
messages?: {
|
|
10940
10944
|
text: string;
|
|
10941
|
-
type: "
|
|
10945
|
+
type: "error" | "success" | "info" | "warning";
|
|
10942
10946
|
id?: number | undefined;
|
|
10943
10947
|
}[] | undefined;
|
|
10944
10948
|
required?: boolean | undefined;
|
|
@@ -10959,7 +10963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10959
10963
|
hint?: string | undefined;
|
|
10960
10964
|
messages?: {
|
|
10961
10965
|
text: string;
|
|
10962
|
-
type: "
|
|
10966
|
+
type: "error" | "success" | "info" | "warning";
|
|
10963
10967
|
id?: number | undefined;
|
|
10964
10968
|
}[] | undefined;
|
|
10965
10969
|
required?: boolean | undefined;
|
|
@@ -10982,7 +10986,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10982
10986
|
hint?: string | undefined;
|
|
10983
10987
|
messages?: {
|
|
10984
10988
|
text: string;
|
|
10985
|
-
type: "
|
|
10989
|
+
type: "error" | "success" | "info" | "warning";
|
|
10986
10990
|
id?: number | undefined;
|
|
10987
10991
|
}[] | undefined;
|
|
10988
10992
|
required?: boolean | undefined;
|
|
@@ -11214,7 +11218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11214
11218
|
};
|
|
11215
11219
|
};
|
|
11216
11220
|
output: {
|
|
11217
|
-
prompt: "
|
|
11221
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11218
11222
|
language: string;
|
|
11219
11223
|
}[];
|
|
11220
11224
|
outputFormat: "json";
|
|
@@ -11252,7 +11256,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11252
11256
|
$get: {
|
|
11253
11257
|
input: {
|
|
11254
11258
|
param: {
|
|
11255
|
-
prompt: "
|
|
11259
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11256
11260
|
language: string;
|
|
11257
11261
|
};
|
|
11258
11262
|
} & {
|
|
@@ -11274,7 +11278,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11274
11278
|
$put: {
|
|
11275
11279
|
input: {
|
|
11276
11280
|
param: {
|
|
11277
|
-
prompt: "
|
|
11281
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11278
11282
|
language: string;
|
|
11279
11283
|
};
|
|
11280
11284
|
} & {
|
|
@@ -11298,7 +11302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11298
11302
|
$delete: {
|
|
11299
11303
|
input: {
|
|
11300
11304
|
param: {
|
|
11301
|
-
prompt: "
|
|
11305
|
+
prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
11302
11306
|
language: string;
|
|
11303
11307
|
};
|
|
11304
11308
|
} & {
|
|
@@ -11345,6 +11349,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11345
11349
|
client_secret?: string | undefined;
|
|
11346
11350
|
app_secret?: string | undefined;
|
|
11347
11351
|
scope?: string | undefined;
|
|
11352
|
+
client_secret_hint?: string | undefined;
|
|
11353
|
+
app_secret_hint?: string | undefined;
|
|
11354
|
+
twilio_token_hint?: string | undefined;
|
|
11348
11355
|
authorization_endpoint?: string | undefined;
|
|
11349
11356
|
token_endpoint?: string | undefined;
|
|
11350
11357
|
userinfo_endpoint?: string | undefined;
|
|
@@ -11382,6 +11389,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11382
11389
|
userinfo_endpoint?: string | undefined;
|
|
11383
11390
|
client_id?: string | undefined;
|
|
11384
11391
|
client_secret?: string | undefined;
|
|
11392
|
+
client_secret_hint?: string | undefined;
|
|
11385
11393
|
realm?: string | undefined;
|
|
11386
11394
|
} | undefined;
|
|
11387
11395
|
attributes?: {
|
|
@@ -11390,7 +11398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11390
11398
|
active?: boolean | undefined;
|
|
11391
11399
|
} | undefined;
|
|
11392
11400
|
signup?: {
|
|
11393
|
-
status?: "
|
|
11401
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11394
11402
|
verification?: {
|
|
11395
11403
|
active?: boolean | undefined;
|
|
11396
11404
|
} | undefined;
|
|
@@ -11407,7 +11415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11407
11415
|
active?: boolean | undefined;
|
|
11408
11416
|
} | undefined;
|
|
11409
11417
|
signup?: {
|
|
11410
|
-
status?: "
|
|
11418
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11411
11419
|
} | undefined;
|
|
11412
11420
|
validation?: {
|
|
11413
11421
|
max_length?: number | undefined;
|
|
@@ -11424,7 +11432,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11424
11432
|
active?: boolean | undefined;
|
|
11425
11433
|
} | undefined;
|
|
11426
11434
|
signup?: {
|
|
11427
|
-
status?: "
|
|
11435
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11428
11436
|
} | undefined;
|
|
11429
11437
|
} | undefined;
|
|
11430
11438
|
} | undefined;
|
|
@@ -11437,7 +11445,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11437
11445
|
} | undefined;
|
|
11438
11446
|
} | undefined;
|
|
11439
11447
|
passkey_options?: {
|
|
11440
|
-
challenge_ui?: "
|
|
11448
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11441
11449
|
local_enrollment_enabled?: boolean | undefined;
|
|
11442
11450
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11443
11451
|
} | undefined;
|
|
@@ -11479,6 +11487,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11479
11487
|
client_secret?: string | undefined;
|
|
11480
11488
|
app_secret?: string | undefined;
|
|
11481
11489
|
scope?: string | undefined;
|
|
11490
|
+
client_secret_hint?: string | undefined;
|
|
11491
|
+
app_secret_hint?: string | undefined;
|
|
11492
|
+
twilio_token_hint?: string | undefined;
|
|
11482
11493
|
authorization_endpoint?: string | undefined;
|
|
11483
11494
|
token_endpoint?: string | undefined;
|
|
11484
11495
|
userinfo_endpoint?: string | undefined;
|
|
@@ -11516,6 +11527,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11516
11527
|
userinfo_endpoint?: string | undefined;
|
|
11517
11528
|
client_id?: string | undefined;
|
|
11518
11529
|
client_secret?: string | undefined;
|
|
11530
|
+
client_secret_hint?: string | undefined;
|
|
11519
11531
|
realm?: string | undefined;
|
|
11520
11532
|
} | undefined;
|
|
11521
11533
|
attributes?: {
|
|
@@ -11524,7 +11536,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11524
11536
|
active?: boolean | undefined;
|
|
11525
11537
|
} | undefined;
|
|
11526
11538
|
signup?: {
|
|
11527
|
-
status?: "
|
|
11539
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11528
11540
|
verification?: {
|
|
11529
11541
|
active?: boolean | undefined;
|
|
11530
11542
|
} | undefined;
|
|
@@ -11541,7 +11553,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11541
11553
|
active?: boolean | undefined;
|
|
11542
11554
|
} | undefined;
|
|
11543
11555
|
signup?: {
|
|
11544
|
-
status?: "
|
|
11556
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11545
11557
|
} | undefined;
|
|
11546
11558
|
validation?: {
|
|
11547
11559
|
max_length?: number | undefined;
|
|
@@ -11558,7 +11570,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11558
11570
|
active?: boolean | undefined;
|
|
11559
11571
|
} | undefined;
|
|
11560
11572
|
signup?: {
|
|
11561
|
-
status?: "
|
|
11573
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11562
11574
|
} | undefined;
|
|
11563
11575
|
} | undefined;
|
|
11564
11576
|
} | undefined;
|
|
@@ -11571,7 +11583,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11571
11583
|
} | undefined;
|
|
11572
11584
|
} | undefined;
|
|
11573
11585
|
passkey_options?: {
|
|
11574
|
-
challenge_ui?: "
|
|
11586
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11575
11587
|
local_enrollment_enabled?: boolean | undefined;
|
|
11576
11588
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11577
11589
|
} | undefined;
|
|
@@ -11629,6 +11641,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11629
11641
|
client_secret?: string | undefined;
|
|
11630
11642
|
app_secret?: string | undefined;
|
|
11631
11643
|
scope?: string | undefined;
|
|
11644
|
+
client_secret_hint?: string | undefined;
|
|
11645
|
+
app_secret_hint?: string | undefined;
|
|
11646
|
+
twilio_token_hint?: string | undefined;
|
|
11632
11647
|
authorization_endpoint?: string | undefined;
|
|
11633
11648
|
token_endpoint?: string | undefined;
|
|
11634
11649
|
userinfo_endpoint?: string | undefined;
|
|
@@ -11666,6 +11681,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11666
11681
|
userinfo_endpoint?: string | undefined;
|
|
11667
11682
|
client_id?: string | undefined;
|
|
11668
11683
|
client_secret?: string | undefined;
|
|
11684
|
+
client_secret_hint?: string | undefined;
|
|
11669
11685
|
realm?: string | undefined;
|
|
11670
11686
|
} | undefined;
|
|
11671
11687
|
attributes?: {
|
|
@@ -11674,7 +11690,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11674
11690
|
active?: boolean | undefined;
|
|
11675
11691
|
} | undefined;
|
|
11676
11692
|
signup?: {
|
|
11677
|
-
status?: "
|
|
11693
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11678
11694
|
verification?: {
|
|
11679
11695
|
active?: boolean | undefined;
|
|
11680
11696
|
} | undefined;
|
|
@@ -11691,7 +11707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11691
11707
|
active?: boolean | undefined;
|
|
11692
11708
|
} | undefined;
|
|
11693
11709
|
signup?: {
|
|
11694
|
-
status?: "
|
|
11710
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11695
11711
|
} | undefined;
|
|
11696
11712
|
validation?: {
|
|
11697
11713
|
max_length?: number | undefined;
|
|
@@ -11708,7 +11724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11708
11724
|
active?: boolean | undefined;
|
|
11709
11725
|
} | undefined;
|
|
11710
11726
|
signup?: {
|
|
11711
|
-
status?: "
|
|
11727
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11712
11728
|
} | undefined;
|
|
11713
11729
|
} | undefined;
|
|
11714
11730
|
} | undefined;
|
|
@@ -11721,7 +11737,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11721
11737
|
} | undefined;
|
|
11722
11738
|
} | undefined;
|
|
11723
11739
|
passkey_options?: {
|
|
11724
|
-
challenge_ui?: "
|
|
11740
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11725
11741
|
local_enrollment_enabled?: boolean | undefined;
|
|
11726
11742
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11727
11743
|
} | undefined;
|
|
@@ -11808,6 +11824,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11808
11824
|
client_secret?: string | undefined;
|
|
11809
11825
|
app_secret?: string | undefined;
|
|
11810
11826
|
scope?: string | undefined;
|
|
11827
|
+
client_secret_hint?: string | undefined;
|
|
11828
|
+
app_secret_hint?: string | undefined;
|
|
11829
|
+
twilio_token_hint?: string | undefined;
|
|
11811
11830
|
authorization_endpoint?: string | undefined;
|
|
11812
11831
|
token_endpoint?: string | undefined;
|
|
11813
11832
|
userinfo_endpoint?: string | undefined;
|
|
@@ -11845,6 +11864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11845
11864
|
userinfo_endpoint?: string | undefined;
|
|
11846
11865
|
client_id?: string | undefined;
|
|
11847
11866
|
client_secret?: string | undefined;
|
|
11867
|
+
client_secret_hint?: string | undefined;
|
|
11848
11868
|
realm?: string | undefined;
|
|
11849
11869
|
} | undefined;
|
|
11850
11870
|
attributes?: {
|
|
@@ -11853,7 +11873,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11853
11873
|
active?: boolean | undefined;
|
|
11854
11874
|
} | undefined;
|
|
11855
11875
|
signup?: {
|
|
11856
|
-
status?: "
|
|
11876
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11857
11877
|
verification?: {
|
|
11858
11878
|
active?: boolean | undefined;
|
|
11859
11879
|
} | undefined;
|
|
@@ -11870,7 +11890,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11870
11890
|
active?: boolean | undefined;
|
|
11871
11891
|
} | undefined;
|
|
11872
11892
|
signup?: {
|
|
11873
|
-
status?: "
|
|
11893
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11874
11894
|
} | undefined;
|
|
11875
11895
|
validation?: {
|
|
11876
11896
|
max_length?: number | undefined;
|
|
@@ -11887,7 +11907,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11887
11907
|
active?: boolean | undefined;
|
|
11888
11908
|
} | undefined;
|
|
11889
11909
|
signup?: {
|
|
11890
|
-
status?: "
|
|
11910
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11891
11911
|
} | undefined;
|
|
11892
11912
|
} | undefined;
|
|
11893
11913
|
} | undefined;
|
|
@@ -11900,7 +11920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11900
11920
|
} | undefined;
|
|
11901
11921
|
} | undefined;
|
|
11902
11922
|
passkey_options?: {
|
|
11903
|
-
challenge_ui?: "
|
|
11923
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11904
11924
|
local_enrollment_enabled?: boolean | undefined;
|
|
11905
11925
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11906
11926
|
} | undefined;
|
|
@@ -11966,6 +11986,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11966
11986
|
client_secret?: string | undefined;
|
|
11967
11987
|
app_secret?: string | undefined;
|
|
11968
11988
|
scope?: string | undefined;
|
|
11989
|
+
client_secret_hint?: string | undefined;
|
|
11990
|
+
app_secret_hint?: string | undefined;
|
|
11991
|
+
twilio_token_hint?: string | undefined;
|
|
11969
11992
|
authorization_endpoint?: string | undefined;
|
|
11970
11993
|
token_endpoint?: string | undefined;
|
|
11971
11994
|
userinfo_endpoint?: string | undefined;
|
|
@@ -12003,6 +12026,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12003
12026
|
userinfo_endpoint?: string | undefined;
|
|
12004
12027
|
client_id?: string | undefined;
|
|
12005
12028
|
client_secret?: string | undefined;
|
|
12029
|
+
client_secret_hint?: string | undefined;
|
|
12006
12030
|
realm?: string | undefined;
|
|
12007
12031
|
} | undefined;
|
|
12008
12032
|
attributes?: {
|
|
@@ -12011,7 +12035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12011
12035
|
active?: boolean | undefined;
|
|
12012
12036
|
} | undefined;
|
|
12013
12037
|
signup?: {
|
|
12014
|
-
status?: "
|
|
12038
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12015
12039
|
verification?: {
|
|
12016
12040
|
active?: boolean | undefined;
|
|
12017
12041
|
} | undefined;
|
|
@@ -12028,7 +12052,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12028
12052
|
active?: boolean | undefined;
|
|
12029
12053
|
} | undefined;
|
|
12030
12054
|
signup?: {
|
|
12031
|
-
status?: "
|
|
12055
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12032
12056
|
} | undefined;
|
|
12033
12057
|
validation?: {
|
|
12034
12058
|
max_length?: number | undefined;
|
|
@@ -12045,7 +12069,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12045
12069
|
active?: boolean | undefined;
|
|
12046
12070
|
} | undefined;
|
|
12047
12071
|
signup?: {
|
|
12048
|
-
status?: "
|
|
12072
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
12049
12073
|
} | undefined;
|
|
12050
12074
|
} | undefined;
|
|
12051
12075
|
} | undefined;
|
|
@@ -12058,7 +12082,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12058
12082
|
} | undefined;
|
|
12059
12083
|
} | undefined;
|
|
12060
12084
|
passkey_options?: {
|
|
12061
|
-
challenge_ui?: "
|
|
12085
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
12062
12086
|
local_enrollment_enabled?: boolean | undefined;
|
|
12063
12087
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
12064
12088
|
} | undefined;
|
|
@@ -12161,7 +12185,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12161
12185
|
};
|
|
12162
12186
|
} | {
|
|
12163
12187
|
mode: "inline";
|
|
12164
|
-
status: "
|
|
12188
|
+
status: "error" | "success";
|
|
12165
12189
|
connection_id: string;
|
|
12166
12190
|
connection_name: string;
|
|
12167
12191
|
strategy: string;
|
|
@@ -12347,7 +12371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12347
12371
|
[x: string]: hono_utils_types.JSONValue;
|
|
12348
12372
|
} | undefined;
|
|
12349
12373
|
} | {
|
|
12350
|
-
trigger_id: "
|
|
12374
|
+
trigger_id: "post-user-login";
|
|
12351
12375
|
enabled: boolean;
|
|
12352
12376
|
synchronous: boolean;
|
|
12353
12377
|
created_at: string;
|
|
@@ -12412,7 +12436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12412
12436
|
[x: string]: hono_utils_types.JSONValue;
|
|
12413
12437
|
} | undefined;
|
|
12414
12438
|
} | {
|
|
12415
|
-
trigger_id: "
|
|
12439
|
+
trigger_id: "post-user-login";
|
|
12416
12440
|
enabled: boolean;
|
|
12417
12441
|
synchronous: boolean;
|
|
12418
12442
|
created_at: string;
|
|
@@ -12485,7 +12509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12485
12509
|
hook_id?: string | undefined;
|
|
12486
12510
|
metadata?: Record<string, unknown> | undefined;
|
|
12487
12511
|
} | {
|
|
12488
|
-
trigger_id: "
|
|
12512
|
+
trigger_id: "post-user-login";
|
|
12489
12513
|
form_id: string;
|
|
12490
12514
|
enabled?: boolean | undefined;
|
|
12491
12515
|
synchronous?: boolean | undefined;
|
|
@@ -12532,7 +12556,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12532
12556
|
[x: string]: hono_utils_types.JSONValue;
|
|
12533
12557
|
} | undefined;
|
|
12534
12558
|
} | {
|
|
12535
|
-
trigger_id: "
|
|
12559
|
+
trigger_id: "post-user-login";
|
|
12536
12560
|
enabled: boolean;
|
|
12537
12561
|
synchronous: boolean;
|
|
12538
12562
|
created_at: string;
|
|
@@ -12588,6 +12612,21 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12588
12612
|
} & {
|
|
12589
12613
|
"/:hook_id": {
|
|
12590
12614
|
$patch: {
|
|
12615
|
+
input: {
|
|
12616
|
+
param: {
|
|
12617
|
+
hook_id: string;
|
|
12618
|
+
};
|
|
12619
|
+
} & {
|
|
12620
|
+
header: {
|
|
12621
|
+
"tenant-id"?: string | undefined;
|
|
12622
|
+
};
|
|
12623
|
+
} & {
|
|
12624
|
+
json: unknown;
|
|
12625
|
+
};
|
|
12626
|
+
output: {};
|
|
12627
|
+
outputFormat: string;
|
|
12628
|
+
status: 400;
|
|
12629
|
+
} | {
|
|
12591
12630
|
input: {
|
|
12592
12631
|
param: {
|
|
12593
12632
|
hook_id: string;
|
|
@@ -12627,7 +12666,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12627
12666
|
[x: string]: hono_utils_types.JSONValue;
|
|
12628
12667
|
} | undefined;
|
|
12629
12668
|
} | {
|
|
12630
|
-
trigger_id: "
|
|
12669
|
+
trigger_id: "post-user-login";
|
|
12631
12670
|
enabled: boolean;
|
|
12632
12671
|
synchronous: boolean;
|
|
12633
12672
|
created_at: string;
|
|
@@ -12718,7 +12757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12718
12757
|
[x: string]: hono_utils_types.JSONValue;
|
|
12719
12758
|
} | undefined;
|
|
12720
12759
|
} | {
|
|
12721
|
-
trigger_id: "
|
|
12760
|
+
trigger_id: "post-user-login";
|
|
12722
12761
|
enabled: boolean;
|
|
12723
12762
|
synchronous: boolean;
|
|
12724
12763
|
created_at: string;
|
|
@@ -12875,7 +12914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12875
12914
|
log_type: string;
|
|
12876
12915
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
12877
12916
|
actor: {
|
|
12878
|
-
type: "user" | "
|
|
12917
|
+
type: "user" | "api_key" | "client_credentials" | "system" | "admin";
|
|
12879
12918
|
id?: string | undefined;
|
|
12880
12919
|
email?: string | undefined;
|
|
12881
12920
|
org_id?: string | undefined;
|
|
@@ -13526,7 +13565,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13526
13565
|
};
|
|
13527
13566
|
};
|
|
13528
13567
|
output: {
|
|
13529
|
-
type: "
|
|
13568
|
+
type: "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
13530
13569
|
date: string;
|
|
13531
13570
|
isMobile: boolean;
|
|
13532
13571
|
log_id: string;
|
|
@@ -13565,7 +13604,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13565
13604
|
limit: number;
|
|
13566
13605
|
length: number;
|
|
13567
13606
|
logs: {
|
|
13568
|
-
type: "
|
|
13607
|
+
type: "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
13569
13608
|
date: string;
|
|
13570
13609
|
isMobile: boolean;
|
|
13571
13610
|
log_id: string;
|
|
@@ -13604,7 +13643,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13604
13643
|
next?: string | undefined;
|
|
13605
13644
|
} | {
|
|
13606
13645
|
logs: {
|
|
13607
|
-
type: "
|
|
13646
|
+
type: "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
13608
13647
|
date: string;
|
|
13609
13648
|
isMobile: boolean;
|
|
13610
13649
|
log_id: string;
|
|
@@ -13658,7 +13697,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13658
13697
|
};
|
|
13659
13698
|
};
|
|
13660
13699
|
output: {
|
|
13661
|
-
type: "
|
|
13700
|
+
type: "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
13662
13701
|
date: string;
|
|
13663
13702
|
isMobile: boolean;
|
|
13664
13703
|
log_id: string;
|
|
@@ -14069,7 +14108,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14069
14108
|
addons?: {
|
|
14070
14109
|
[x: string]: any;
|
|
14071
14110
|
} | undefined;
|
|
14072
|
-
token_endpoint_auth_method?: "none" | "
|
|
14111
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14073
14112
|
client_metadata?: {
|
|
14074
14113
|
[x: string]: string;
|
|
14075
14114
|
} | undefined;
|
|
@@ -14171,7 +14210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14171
14210
|
addons?: {
|
|
14172
14211
|
[x: string]: any;
|
|
14173
14212
|
} | undefined;
|
|
14174
|
-
token_endpoint_auth_method?: "none" | "
|
|
14213
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14175
14214
|
client_metadata?: {
|
|
14176
14215
|
[x: string]: string;
|
|
14177
14216
|
} | undefined;
|
|
@@ -14273,7 +14312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14273
14312
|
addons?: {
|
|
14274
14313
|
[x: string]: any;
|
|
14275
14314
|
} | undefined;
|
|
14276
|
-
token_endpoint_auth_method?: "none" | "
|
|
14315
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14277
14316
|
client_metadata?: {
|
|
14278
14317
|
[x: string]: string;
|
|
14279
14318
|
} | undefined;
|
|
@@ -14390,7 +14429,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14390
14429
|
addons?: {
|
|
14391
14430
|
[x: string]: any;
|
|
14392
14431
|
} | undefined;
|
|
14393
|
-
token_endpoint_auth_method?: "none" | "
|
|
14432
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14394
14433
|
client_metadata?: {
|
|
14395
14434
|
[x: string]: string;
|
|
14396
14435
|
} | undefined;
|
|
@@ -14508,7 +14547,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14508
14547
|
custom_login_page_preview?: string | undefined;
|
|
14509
14548
|
form_template?: string | undefined;
|
|
14510
14549
|
addons?: Record<string, any> | undefined;
|
|
14511
|
-
token_endpoint_auth_method?: "none" | "
|
|
14550
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14512
14551
|
client_metadata?: Record<string, string> | undefined;
|
|
14513
14552
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14514
14553
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14594,7 +14633,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14594
14633
|
addons?: {
|
|
14595
14634
|
[x: string]: any;
|
|
14596
14635
|
} | undefined;
|
|
14597
|
-
token_endpoint_auth_method?: "none" | "
|
|
14636
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14598
14637
|
client_metadata?: {
|
|
14599
14638
|
[x: string]: string;
|
|
14600
14639
|
} | undefined;
|
|
@@ -14691,7 +14730,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14691
14730
|
custom_login_page_preview?: string | undefined;
|
|
14692
14731
|
form_template?: string | undefined;
|
|
14693
14732
|
addons?: Record<string, any> | undefined;
|
|
14694
|
-
token_endpoint_auth_method?: "none" | "
|
|
14733
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14695
14734
|
client_metadata?: Record<string, string> | undefined;
|
|
14696
14735
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14697
14736
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14777,7 +14816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14777
14816
|
addons?: {
|
|
14778
14817
|
[x: string]: any;
|
|
14779
14818
|
} | undefined;
|
|
14780
|
-
token_endpoint_auth_method?: "none" | "
|
|
14819
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14781
14820
|
client_metadata?: {
|
|
14782
14821
|
[x: string]: string;
|
|
14783
14822
|
} | undefined;
|
|
@@ -14854,6 +14893,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14854
14893
|
client_secret?: string | undefined;
|
|
14855
14894
|
app_secret?: string | undefined;
|
|
14856
14895
|
scope?: string | undefined;
|
|
14896
|
+
client_secret_hint?: string | undefined;
|
|
14897
|
+
app_secret_hint?: string | undefined;
|
|
14898
|
+
twilio_token_hint?: string | undefined;
|
|
14857
14899
|
authorization_endpoint?: string | undefined;
|
|
14858
14900
|
token_endpoint?: string | undefined;
|
|
14859
14901
|
userinfo_endpoint?: string | undefined;
|
|
@@ -14891,6 +14933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14891
14933
|
userinfo_endpoint?: string | undefined;
|
|
14892
14934
|
client_id?: string | undefined;
|
|
14893
14935
|
client_secret?: string | undefined;
|
|
14936
|
+
client_secret_hint?: string | undefined;
|
|
14894
14937
|
realm?: string | undefined;
|
|
14895
14938
|
} | undefined;
|
|
14896
14939
|
attributes?: {
|
|
@@ -14899,7 +14942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14899
14942
|
active?: boolean | undefined;
|
|
14900
14943
|
} | undefined;
|
|
14901
14944
|
signup?: {
|
|
14902
|
-
status?: "
|
|
14945
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
14903
14946
|
verification?: {
|
|
14904
14947
|
active?: boolean | undefined;
|
|
14905
14948
|
} | undefined;
|
|
@@ -14916,7 +14959,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14916
14959
|
active?: boolean | undefined;
|
|
14917
14960
|
} | undefined;
|
|
14918
14961
|
signup?: {
|
|
14919
|
-
status?: "
|
|
14962
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
14920
14963
|
} | undefined;
|
|
14921
14964
|
validation?: {
|
|
14922
14965
|
max_length?: number | undefined;
|
|
@@ -14933,7 +14976,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14933
14976
|
active?: boolean | undefined;
|
|
14934
14977
|
} | undefined;
|
|
14935
14978
|
signup?: {
|
|
14936
|
-
status?: "
|
|
14979
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
14937
14980
|
} | undefined;
|
|
14938
14981
|
} | undefined;
|
|
14939
14982
|
} | undefined;
|
|
@@ -14946,7 +14989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14946
14989
|
} | undefined;
|
|
14947
14990
|
} | undefined;
|
|
14948
14991
|
passkey_options?: {
|
|
14949
|
-
challenge_ui?: "
|
|
14992
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
14950
14993
|
local_enrollment_enabled?: boolean | undefined;
|
|
14951
14994
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
14952
14995
|
} | undefined;
|
|
@@ -15008,6 +15051,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15008
15051
|
client_secret?: string | undefined;
|
|
15009
15052
|
app_secret?: string | undefined;
|
|
15010
15053
|
scope?: string | undefined;
|
|
15054
|
+
client_secret_hint?: string | undefined;
|
|
15055
|
+
app_secret_hint?: string | undefined;
|
|
15056
|
+
twilio_token_hint?: string | undefined;
|
|
15011
15057
|
authorization_endpoint?: string | undefined;
|
|
15012
15058
|
token_endpoint?: string | undefined;
|
|
15013
15059
|
userinfo_endpoint?: string | undefined;
|
|
@@ -15045,6 +15091,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15045
15091
|
userinfo_endpoint?: string | undefined;
|
|
15046
15092
|
client_id?: string | undefined;
|
|
15047
15093
|
client_secret?: string | undefined;
|
|
15094
|
+
client_secret_hint?: string | undefined;
|
|
15048
15095
|
realm?: string | undefined;
|
|
15049
15096
|
} | undefined;
|
|
15050
15097
|
attributes?: {
|
|
@@ -15053,7 +15100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15053
15100
|
active?: boolean | undefined;
|
|
15054
15101
|
} | undefined;
|
|
15055
15102
|
signup?: {
|
|
15056
|
-
status?: "
|
|
15103
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
15057
15104
|
verification?: {
|
|
15058
15105
|
active?: boolean | undefined;
|
|
15059
15106
|
} | undefined;
|
|
@@ -15070,7 +15117,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15070
15117
|
active?: boolean | undefined;
|
|
15071
15118
|
} | undefined;
|
|
15072
15119
|
signup?: {
|
|
15073
|
-
status?: "
|
|
15120
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
15074
15121
|
} | undefined;
|
|
15075
15122
|
validation?: {
|
|
15076
15123
|
max_length?: number | undefined;
|
|
@@ -15087,7 +15134,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15087
15134
|
active?: boolean | undefined;
|
|
15088
15135
|
} | undefined;
|
|
15089
15136
|
signup?: {
|
|
15090
|
-
status?: "
|
|
15137
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
15091
15138
|
} | undefined;
|
|
15092
15139
|
} | undefined;
|
|
15093
15140
|
} | undefined;
|
|
@@ -15100,7 +15147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15100
15147
|
} | undefined;
|
|
15101
15148
|
} | undefined;
|
|
15102
15149
|
passkey_options?: {
|
|
15103
|
-
challenge_ui?: "
|
|
15150
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
15104
15151
|
local_enrollment_enabled?: boolean | undefined;
|
|
15105
15152
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
15106
15153
|
} | undefined;
|
|
@@ -16122,7 +16169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16122
16169
|
};
|
|
16123
16170
|
};
|
|
16124
16171
|
output: {
|
|
16125
|
-
type: "
|
|
16172
|
+
type: "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
16126
16173
|
date: string;
|
|
16127
16174
|
isMobile: boolean;
|
|
16128
16175
|
log_id: string;
|
|
@@ -16161,7 +16208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16161
16208
|
limit: number;
|
|
16162
16209
|
length: number;
|
|
16163
16210
|
logs: {
|
|
16164
|
-
type: "
|
|
16211
|
+
type: "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
16165
16212
|
date: string;
|
|
16166
16213
|
isMobile: boolean;
|
|
16167
16214
|
log_id: string;
|
|
@@ -16480,7 +16527,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16480
16527
|
};
|
|
16481
16528
|
} & {
|
|
16482
16529
|
json: {
|
|
16483
|
-
template: "
|
|
16530
|
+
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";
|
|
16484
16531
|
body: string;
|
|
16485
16532
|
from: string;
|
|
16486
16533
|
subject: string;
|
|
@@ -16501,7 +16548,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16501
16548
|
};
|
|
16502
16549
|
} & {
|
|
16503
16550
|
json: {
|
|
16504
|
-
template: "
|
|
16551
|
+
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";
|
|
16505
16552
|
body: string;
|
|
16506
16553
|
from: string;
|
|
16507
16554
|
subject: string;
|
|
@@ -16513,7 +16560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16513
16560
|
};
|
|
16514
16561
|
};
|
|
16515
16562
|
output: {
|
|
16516
|
-
template: "
|
|
16563
|
+
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";
|
|
16517
16564
|
body: string;
|
|
16518
16565
|
from: string;
|
|
16519
16566
|
subject: string;
|
|
@@ -16536,7 +16583,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16536
16583
|
};
|
|
16537
16584
|
};
|
|
16538
16585
|
output: {
|
|
16539
|
-
name: "
|
|
16586
|
+
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";
|
|
16540
16587
|
body: string;
|
|
16541
16588
|
subject: string;
|
|
16542
16589
|
}[];
|
|
@@ -16549,7 +16596,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16549
16596
|
$get: {
|
|
16550
16597
|
input: {
|
|
16551
16598
|
param: {
|
|
16552
|
-
templateName: "
|
|
16599
|
+
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";
|
|
16553
16600
|
};
|
|
16554
16601
|
} & {
|
|
16555
16602
|
header: {
|
|
@@ -16562,7 +16609,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16562
16609
|
} | {
|
|
16563
16610
|
input: {
|
|
16564
16611
|
param: {
|
|
16565
|
-
templateName: "
|
|
16612
|
+
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";
|
|
16566
16613
|
};
|
|
16567
16614
|
} & {
|
|
16568
16615
|
header: {
|
|
@@ -16570,7 +16617,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16570
16617
|
};
|
|
16571
16618
|
};
|
|
16572
16619
|
output: {
|
|
16573
|
-
template: "
|
|
16620
|
+
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";
|
|
16574
16621
|
body: string;
|
|
16575
16622
|
from: string;
|
|
16576
16623
|
subject: string;
|
|
@@ -16589,7 +16636,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16589
16636
|
$put: {
|
|
16590
16637
|
input: {
|
|
16591
16638
|
param: {
|
|
16592
|
-
templateName: "
|
|
16639
|
+
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";
|
|
16593
16640
|
};
|
|
16594
16641
|
} & {
|
|
16595
16642
|
header: {
|
|
@@ -16597,7 +16644,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16597
16644
|
};
|
|
16598
16645
|
} & {
|
|
16599
16646
|
json: {
|
|
16600
|
-
template: "
|
|
16647
|
+
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";
|
|
16601
16648
|
body: string;
|
|
16602
16649
|
subject: string;
|
|
16603
16650
|
syntax?: "liquid" | undefined;
|
|
@@ -16609,7 +16656,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16609
16656
|
};
|
|
16610
16657
|
};
|
|
16611
16658
|
output: {
|
|
16612
|
-
template: "
|
|
16659
|
+
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";
|
|
16613
16660
|
body: string;
|
|
16614
16661
|
from: string;
|
|
16615
16662
|
subject: string;
|
|
@@ -16628,7 +16675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16628
16675
|
$patch: {
|
|
16629
16676
|
input: {
|
|
16630
16677
|
param: {
|
|
16631
|
-
templateName: "
|
|
16678
|
+
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";
|
|
16632
16679
|
};
|
|
16633
16680
|
} & {
|
|
16634
16681
|
header: {
|
|
@@ -16636,7 +16683,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16636
16683
|
};
|
|
16637
16684
|
} & {
|
|
16638
16685
|
json: {
|
|
16639
|
-
template?: "
|
|
16686
|
+
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;
|
|
16640
16687
|
body?: string | undefined;
|
|
16641
16688
|
from?: string | undefined;
|
|
16642
16689
|
subject?: string | undefined;
|
|
@@ -16653,7 +16700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16653
16700
|
} | {
|
|
16654
16701
|
input: {
|
|
16655
16702
|
param: {
|
|
16656
|
-
templateName: "
|
|
16703
|
+
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";
|
|
16657
16704
|
};
|
|
16658
16705
|
} & {
|
|
16659
16706
|
header: {
|
|
@@ -16661,7 +16708,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16661
16708
|
};
|
|
16662
16709
|
} & {
|
|
16663
16710
|
json: {
|
|
16664
|
-
template?: "
|
|
16711
|
+
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;
|
|
16665
16712
|
body?: string | undefined;
|
|
16666
16713
|
from?: string | undefined;
|
|
16667
16714
|
subject?: string | undefined;
|
|
@@ -16673,7 +16720,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16673
16720
|
};
|
|
16674
16721
|
};
|
|
16675
16722
|
output: {
|
|
16676
|
-
template: "
|
|
16723
|
+
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";
|
|
16677
16724
|
body: string;
|
|
16678
16725
|
from: string;
|
|
16679
16726
|
subject: string;
|
|
@@ -16692,7 +16739,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16692
16739
|
$delete: {
|
|
16693
16740
|
input: {
|
|
16694
16741
|
param: {
|
|
16695
|
-
templateName: "
|
|
16742
|
+
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";
|
|
16696
16743
|
};
|
|
16697
16744
|
} & {
|
|
16698
16745
|
header: {
|
|
@@ -16705,7 +16752,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16705
16752
|
} | {
|
|
16706
16753
|
input: {
|
|
16707
16754
|
param: {
|
|
16708
|
-
templateName: "
|
|
16755
|
+
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";
|
|
16709
16756
|
};
|
|
16710
16757
|
} & {
|
|
16711
16758
|
header: {
|
|
@@ -16722,7 +16769,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16722
16769
|
$post: {
|
|
16723
16770
|
input: {
|
|
16724
16771
|
param: {
|
|
16725
|
-
templateName: "
|
|
16772
|
+
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";
|
|
16726
16773
|
};
|
|
16727
16774
|
} & {
|
|
16728
16775
|
header: {
|
|
@@ -17292,7 +17339,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17292
17339
|
base_focus_color: string;
|
|
17293
17340
|
base_hover_color: string;
|
|
17294
17341
|
body_text: string;
|
|
17295
|
-
captcha_widget_theme: "
|
|
17342
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17296
17343
|
error: string;
|
|
17297
17344
|
header: string;
|
|
17298
17345
|
icons: string;
|
|
@@ -17343,7 +17390,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17343
17390
|
background_color: string;
|
|
17344
17391
|
background_image_url: string;
|
|
17345
17392
|
page_layout: "center" | "left" | "right";
|
|
17346
|
-
logo_placement?: "
|
|
17393
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
17347
17394
|
};
|
|
17348
17395
|
widget: {
|
|
17349
17396
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -17382,7 +17429,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17382
17429
|
base_focus_color: string;
|
|
17383
17430
|
base_hover_color: string;
|
|
17384
17431
|
body_text: string;
|
|
17385
|
-
captcha_widget_theme: "
|
|
17432
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17386
17433
|
error: string;
|
|
17387
17434
|
header: string;
|
|
17388
17435
|
icons: string;
|
|
@@ -17433,7 +17480,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17433
17480
|
background_color: string;
|
|
17434
17481
|
background_image_url: string;
|
|
17435
17482
|
page_layout: "center" | "left" | "right";
|
|
17436
|
-
logo_placement?: "
|
|
17483
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
17437
17484
|
};
|
|
17438
17485
|
widget: {
|
|
17439
17486
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -17461,7 +17508,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17461
17508
|
base_focus_color: string;
|
|
17462
17509
|
base_hover_color: string;
|
|
17463
17510
|
body_text: string;
|
|
17464
|
-
captcha_widget_theme: "
|
|
17511
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17465
17512
|
error: string;
|
|
17466
17513
|
header: string;
|
|
17467
17514
|
icons: string;
|
|
@@ -17512,7 +17559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17512
17559
|
background_color: string;
|
|
17513
17560
|
background_image_url: string;
|
|
17514
17561
|
page_layout: "center" | "left" | "right";
|
|
17515
|
-
logo_placement?: "
|
|
17562
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
17516
17563
|
};
|
|
17517
17564
|
widget: {
|
|
17518
17565
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -17551,7 +17598,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17551
17598
|
font?: {
|
|
17552
17599
|
url: string;
|
|
17553
17600
|
} | undefined;
|
|
17554
|
-
dark_mode?: "
|
|
17601
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17555
17602
|
};
|
|
17556
17603
|
outputFormat: "json";
|
|
17557
17604
|
status: 200;
|
|
@@ -17581,7 +17628,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17581
17628
|
font?: {
|
|
17582
17629
|
url: string;
|
|
17583
17630
|
} | undefined;
|
|
17584
|
-
dark_mode?: "
|
|
17631
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17585
17632
|
};
|
|
17586
17633
|
};
|
|
17587
17634
|
output: {
|
|
@@ -17600,7 +17647,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17600
17647
|
font?: {
|
|
17601
17648
|
url: string;
|
|
17602
17649
|
} | undefined;
|
|
17603
|
-
dark_mode?: "
|
|
17650
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17604
17651
|
};
|
|
17605
17652
|
outputFormat: "json";
|
|
17606
17653
|
status: 200;
|
|
@@ -17635,7 +17682,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17635
17682
|
};
|
|
17636
17683
|
output: {};
|
|
17637
17684
|
outputFormat: string;
|
|
17638
|
-
status:
|
|
17685
|
+
status: 204;
|
|
17639
17686
|
} | {
|
|
17640
17687
|
input: {
|
|
17641
17688
|
header: {
|
|
@@ -17648,7 +17695,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17648
17695
|
};
|
|
17649
17696
|
output: {};
|
|
17650
17697
|
outputFormat: string;
|
|
17651
|
-
status:
|
|
17698
|
+
status: 400;
|
|
17652
17699
|
};
|
|
17653
17700
|
};
|
|
17654
17701
|
} & {
|
|
@@ -17674,7 +17721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17674
17721
|
} & {
|
|
17675
17722
|
json: {
|
|
17676
17723
|
body?: string | undefined;
|
|
17677
|
-
screen?: "password" | "
|
|
17724
|
+
screen?: "password" | "login" | "signup" | "identifier" | undefined;
|
|
17678
17725
|
branding?: {
|
|
17679
17726
|
colors?: {
|
|
17680
17727
|
primary: string;
|
|
@@ -17691,7 +17738,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17691
17738
|
font?: {
|
|
17692
17739
|
url: string;
|
|
17693
17740
|
} | undefined;
|
|
17694
|
-
dark_mode?: "
|
|
17741
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17695
17742
|
} | undefined;
|
|
17696
17743
|
theme?: {
|
|
17697
17744
|
borders?: {
|
|
@@ -17709,7 +17756,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17709
17756
|
base_focus_color: string;
|
|
17710
17757
|
base_hover_color: string;
|
|
17711
17758
|
body_text: string;
|
|
17712
|
-
captcha_widget_theme: "
|
|
17759
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17713
17760
|
error: string;
|
|
17714
17761
|
header: string;
|
|
17715
17762
|
icons: string;
|
|
@@ -17760,7 +17807,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17760
17807
|
background_color: string;
|
|
17761
17808
|
background_image_url: string;
|
|
17762
17809
|
page_layout: "center" | "left" | "right";
|
|
17763
|
-
logo_placement?: "
|
|
17810
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
17764
17811
|
} | undefined;
|
|
17765
17812
|
widget?: {
|
|
17766
17813
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -18945,7 +18992,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18945
18992
|
scope?: string | undefined;
|
|
18946
18993
|
grant_types?: string[] | undefined;
|
|
18947
18994
|
response_types?: string[] | undefined;
|
|
18948
|
-
token_endpoint_auth_method?: "none" | "
|
|
18995
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
18949
18996
|
jwks_uri?: string | undefined;
|
|
18950
18997
|
jwks?: Record<string, unknown> | undefined;
|
|
18951
18998
|
software_id?: string | undefined;
|
|
@@ -19034,7 +19081,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19034
19081
|
scope?: string | undefined;
|
|
19035
19082
|
grant_types?: string[] | undefined;
|
|
19036
19083
|
response_types?: string[] | undefined;
|
|
19037
|
-
token_endpoint_auth_method?: "none" | "
|
|
19084
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
19038
19085
|
jwks_uri?: string | undefined;
|
|
19039
19086
|
jwks?: Record<string, unknown> | undefined;
|
|
19040
19087
|
software_id?: string | undefined;
|
|
@@ -19380,18 +19427,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19380
19427
|
email: string;
|
|
19381
19428
|
send: "code" | "link";
|
|
19382
19429
|
authParams: {
|
|
19383
|
-
username?: string | undefined;
|
|
19384
19430
|
state?: string | undefined;
|
|
19385
|
-
|
|
19386
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19387
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19388
|
-
scope?: string | undefined;
|
|
19389
|
-
organization?: string | undefined;
|
|
19390
|
-
redirect_uri?: string | undefined;
|
|
19391
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19431
|
+
username?: string | undefined;
|
|
19392
19432
|
code_challenge?: string | undefined;
|
|
19433
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19434
|
+
redirect_uri?: string | undefined;
|
|
19393
19435
|
nonce?: string | undefined;
|
|
19394
19436
|
act_as?: string | undefined;
|
|
19437
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19438
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19439
|
+
audience?: string | undefined;
|
|
19440
|
+
organization?: string | undefined;
|
|
19441
|
+
scope?: string | undefined;
|
|
19395
19442
|
prompt?: string | undefined;
|
|
19396
19443
|
ui_locales?: string | undefined;
|
|
19397
19444
|
max_age?: number | undefined;
|
|
@@ -19416,18 +19463,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19416
19463
|
phone_number: string;
|
|
19417
19464
|
send: "code" | "link";
|
|
19418
19465
|
authParams: {
|
|
19419
|
-
username?: string | undefined;
|
|
19420
19466
|
state?: string | undefined;
|
|
19421
|
-
|
|
19422
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19423
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19424
|
-
scope?: string | undefined;
|
|
19425
|
-
organization?: string | undefined;
|
|
19426
|
-
redirect_uri?: string | undefined;
|
|
19427
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19467
|
+
username?: string | undefined;
|
|
19428
19468
|
code_challenge?: string | undefined;
|
|
19469
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19470
|
+
redirect_uri?: string | undefined;
|
|
19429
19471
|
nonce?: string | undefined;
|
|
19430
19472
|
act_as?: string | undefined;
|
|
19473
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19474
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19475
|
+
audience?: string | undefined;
|
|
19476
|
+
organization?: string | undefined;
|
|
19477
|
+
scope?: string | undefined;
|
|
19431
19478
|
prompt?: string | undefined;
|
|
19432
19479
|
ui_locales?: string | undefined;
|
|
19433
19480
|
max_age?: number | undefined;
|
|
@@ -19560,14 +19607,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19560
19607
|
input: {
|
|
19561
19608
|
form: {
|
|
19562
19609
|
token: string;
|
|
19563
|
-
token_type_hint?: "
|
|
19610
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19564
19611
|
client_id?: string | undefined;
|
|
19565
19612
|
client_secret?: string | undefined;
|
|
19566
19613
|
};
|
|
19567
19614
|
} & {
|
|
19568
19615
|
json: {
|
|
19569
19616
|
token: string;
|
|
19570
|
-
token_type_hint?: "
|
|
19617
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19571
19618
|
client_id?: string | undefined;
|
|
19572
19619
|
client_secret?: string | undefined;
|
|
19573
19620
|
};
|
|
@@ -19579,14 +19626,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19579
19626
|
input: {
|
|
19580
19627
|
form: {
|
|
19581
19628
|
token: string;
|
|
19582
|
-
token_type_hint?: "
|
|
19629
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19583
19630
|
client_id?: string | undefined;
|
|
19584
19631
|
client_secret?: string | undefined;
|
|
19585
19632
|
};
|
|
19586
19633
|
} & {
|
|
19587
19634
|
json: {
|
|
19588
19635
|
token: string;
|
|
19589
|
-
token_type_hint?: "
|
|
19636
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19590
19637
|
client_id?: string | undefined;
|
|
19591
19638
|
client_secret?: string | undefined;
|
|
19592
19639
|
};
|
|
@@ -19601,14 +19648,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19601
19648
|
input: {
|
|
19602
19649
|
form: {
|
|
19603
19650
|
token: string;
|
|
19604
|
-
token_type_hint?: "
|
|
19651
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19605
19652
|
client_id?: string | undefined;
|
|
19606
19653
|
client_secret?: string | undefined;
|
|
19607
19654
|
};
|
|
19608
19655
|
} & {
|
|
19609
19656
|
json: {
|
|
19610
19657
|
token: string;
|
|
19611
|
-
token_type_hint?: "
|
|
19658
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19612
19659
|
client_id?: string | undefined;
|
|
19613
19660
|
client_secret?: string | undefined;
|
|
19614
19661
|
};
|
|
@@ -19658,7 +19705,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19658
19705
|
client_id: string;
|
|
19659
19706
|
username: string;
|
|
19660
19707
|
otp: string;
|
|
19661
|
-
realm: "
|
|
19708
|
+
realm: "email" | "sms";
|
|
19662
19709
|
} | {
|
|
19663
19710
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19664
19711
|
subject_token: string;
|
|
@@ -19705,7 +19752,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19705
19752
|
client_id: string;
|
|
19706
19753
|
username: string;
|
|
19707
19754
|
otp: string;
|
|
19708
|
-
realm: "
|
|
19755
|
+
realm: "email" | "sms";
|
|
19709
19756
|
} | {
|
|
19710
19757
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19711
19758
|
subject_token: string;
|
|
@@ -19757,7 +19804,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19757
19804
|
client_id: string;
|
|
19758
19805
|
username: string;
|
|
19759
19806
|
otp: string;
|
|
19760
|
-
realm: "
|
|
19807
|
+
realm: "email" | "sms";
|
|
19761
19808
|
} | {
|
|
19762
19809
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19763
19810
|
subject_token: string;
|
|
@@ -19804,7 +19851,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19804
19851
|
client_id: string;
|
|
19805
19852
|
username: string;
|
|
19806
19853
|
otp: string;
|
|
19807
|
-
realm: "
|
|
19854
|
+
realm: "email" | "sms";
|
|
19808
19855
|
} | {
|
|
19809
19856
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19810
19857
|
subject_token: string;
|
|
@@ -19864,7 +19911,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19864
19911
|
client_id: string;
|
|
19865
19912
|
username: string;
|
|
19866
19913
|
otp: string;
|
|
19867
|
-
realm: "
|
|
19914
|
+
realm: "email" | "sms";
|
|
19868
19915
|
} | {
|
|
19869
19916
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19870
19917
|
subject_token: string;
|
|
@@ -19911,7 +19958,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19911
19958
|
client_id: string;
|
|
19912
19959
|
username: string;
|
|
19913
19960
|
otp: string;
|
|
19914
|
-
realm: "
|
|
19961
|
+
realm: "email" | "sms";
|
|
19915
19962
|
} | {
|
|
19916
19963
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19917
19964
|
subject_token: string;
|
|
@@ -19966,7 +20013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19966
20013
|
client_id: string;
|
|
19967
20014
|
username: string;
|
|
19968
20015
|
otp: string;
|
|
19969
|
-
realm: "
|
|
20016
|
+
realm: "email" | "sms";
|
|
19970
20017
|
} | {
|
|
19971
20018
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
19972
20019
|
subject_token: string;
|
|
@@ -20013,7 +20060,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20013
20060
|
client_id: string;
|
|
20014
20061
|
username: string;
|
|
20015
20062
|
otp: string;
|
|
20016
|
-
realm: "
|
|
20063
|
+
realm: "email" | "sms";
|
|
20017
20064
|
} | {
|
|
20018
20065
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20019
20066
|
subject_token: string;
|
|
@@ -20068,7 +20115,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20068
20115
|
client_id: string;
|
|
20069
20116
|
username: string;
|
|
20070
20117
|
otp: string;
|
|
20071
|
-
realm: "
|
|
20118
|
+
realm: "email" | "sms";
|
|
20072
20119
|
} | {
|
|
20073
20120
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20074
20121
|
subject_token: string;
|
|
@@ -20115,7 +20162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20115
20162
|
client_id: string;
|
|
20116
20163
|
username: string;
|
|
20117
20164
|
otp: string;
|
|
20118
|
-
realm: "
|
|
20165
|
+
realm: "email" | "sms";
|
|
20119
20166
|
} | {
|
|
20120
20167
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20121
20168
|
subject_token: string;
|
|
@@ -20351,7 +20398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20351
20398
|
};
|
|
20352
20399
|
output: {};
|
|
20353
20400
|
outputFormat: string;
|
|
20354
|
-
status:
|
|
20401
|
+
status: 302;
|
|
20355
20402
|
} | {
|
|
20356
20403
|
input: {
|
|
20357
20404
|
query: {
|
|
@@ -20365,7 +20412,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20365
20412
|
};
|
|
20366
20413
|
output: {};
|
|
20367
20414
|
outputFormat: string;
|
|
20368
|
-
status:
|
|
20415
|
+
status: 400;
|
|
20369
20416
|
};
|
|
20370
20417
|
};
|
|
20371
20418
|
}, "/oidc/logout"> & hono_types.MergeSchemaPath<{
|
|
@@ -20472,7 +20519,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20472
20519
|
};
|
|
20473
20520
|
output: {};
|
|
20474
20521
|
outputFormat: string;
|
|
20475
|
-
status:
|
|
20522
|
+
status: 302;
|
|
20476
20523
|
} | {
|
|
20477
20524
|
input: {
|
|
20478
20525
|
query: {
|
|
@@ -20481,7 +20528,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20481
20528
|
};
|
|
20482
20529
|
output: {};
|
|
20483
20530
|
outputFormat: string;
|
|
20484
|
-
status:
|
|
20531
|
+
status: 400;
|
|
20485
20532
|
} | {
|
|
20486
20533
|
input: {
|
|
20487
20534
|
query: {
|
|
@@ -20610,7 +20657,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20610
20657
|
};
|
|
20611
20658
|
output: {};
|
|
20612
20659
|
outputFormat: string;
|
|
20613
|
-
status:
|
|
20660
|
+
status: 302;
|
|
20614
20661
|
} | {
|
|
20615
20662
|
input: {
|
|
20616
20663
|
query: {
|
|
@@ -20623,7 +20670,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20623
20670
|
};
|
|
20624
20671
|
output: {};
|
|
20625
20672
|
outputFormat: string;
|
|
20626
|
-
status:
|
|
20673
|
+
status: 400;
|
|
20627
20674
|
};
|
|
20628
20675
|
};
|
|
20629
20676
|
}, "/impersonate"> & hono_types.MergeSchemaPath<{
|
|
@@ -20965,7 +21012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20965
21012
|
};
|
|
20966
21013
|
output: {};
|
|
20967
21014
|
outputFormat: string;
|
|
20968
|
-
status:
|
|
21015
|
+
status: 302;
|
|
20969
21016
|
} | {
|
|
20970
21017
|
input: {
|
|
20971
21018
|
query: {
|
|
@@ -20979,7 +21026,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20979
21026
|
};
|
|
20980
21027
|
output: {};
|
|
20981
21028
|
outputFormat: string;
|
|
20982
|
-
status:
|
|
21029
|
+
status: 400;
|
|
20983
21030
|
};
|
|
20984
21031
|
};
|
|
20985
21032
|
}, "/login/identifier"> & hono_types.MergeSchemaPath<{
|
|
@@ -21339,7 +21386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21339
21386
|
$get: {
|
|
21340
21387
|
input: {
|
|
21341
21388
|
param: {
|
|
21342
|
-
screen: "
|
|
21389
|
+
screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
21343
21390
|
};
|
|
21344
21391
|
} & {
|
|
21345
21392
|
query: {
|
|
@@ -21355,7 +21402,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21355
21402
|
} | {
|
|
21356
21403
|
input: {
|
|
21357
21404
|
param: {
|
|
21358
|
-
screen: "
|
|
21405
|
+
screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
21359
21406
|
};
|
|
21360
21407
|
} & {
|
|
21361
21408
|
query: {
|
|
@@ -21367,11 +21414,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21367
21414
|
};
|
|
21368
21415
|
output: {};
|
|
21369
21416
|
outputFormat: string;
|
|
21370
|
-
status:
|
|
21417
|
+
status: 302;
|
|
21371
21418
|
} | {
|
|
21372
21419
|
input: {
|
|
21373
21420
|
param: {
|
|
21374
|
-
screen: "
|
|
21421
|
+
screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
21375
21422
|
};
|
|
21376
21423
|
} & {
|
|
21377
21424
|
query: {
|
|
@@ -21383,7 +21430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21383
21430
|
};
|
|
21384
21431
|
output: {};
|
|
21385
21432
|
outputFormat: string;
|
|
21386
|
-
status:
|
|
21433
|
+
status: 400;
|
|
21387
21434
|
};
|
|
21388
21435
|
};
|
|
21389
21436
|
} & {
|
|
@@ -21391,7 +21438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21391
21438
|
$post: {
|
|
21392
21439
|
input: {
|
|
21393
21440
|
param: {
|
|
21394
|
-
screen: "
|
|
21441
|
+
screen: "impersonate" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21395
21442
|
};
|
|
21396
21443
|
} & {
|
|
21397
21444
|
query: {
|
|
@@ -21409,7 +21456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21409
21456
|
} | {
|
|
21410
21457
|
input: {
|
|
21411
21458
|
param: {
|
|
21412
|
-
screen: "
|
|
21459
|
+
screen: "impersonate" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
21413
21460
|
};
|
|
21414
21461
|
} & {
|
|
21415
21462
|
query: {
|