authhero 5.13.1 → 5.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +133 -133
- package/dist/authhero.d.ts +246 -195
- package/dist/authhero.mjs +10592 -10388
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/password.d.ts +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +1 -0
- package/dist/types/emails/index.d.ts +1 -1
- package/dist/types/helpers/cimd.d.ts +32 -0
- package/dist/types/helpers/client.d.ts +3 -18
- package/dist/types/helpers/connection.d.ts +40 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/index.d.ts +245 -195
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +50 -16
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/well-known.d.ts +34 -0
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +13 -13
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +13 -13
- package/dist/types/routes/management-api/email-templates.d.ts +14 -14
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/index.d.ts +173 -173
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +3 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +4 -0
- package/dist/types/routes/universal-login/error-page.d.ts +2 -1
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +22 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +22 -6
- package/dist/types/utils/ssrf-fetch.d.ts +8 -0
- package/dist/types/variables.d.ts +1 -1
- package/package.json +6 -6
package/dist/authhero.d.ts
CHANGED
|
@@ -218,6 +218,7 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
218
218
|
allow_legacy_ro_grant_types: z.ZodOptional<z.ZodBoolean>;
|
|
219
219
|
allow_legacy_tokeninfo_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
220
220
|
change_pwd_flow_v1: z.ZodOptional<z.ZodBoolean>;
|
|
221
|
+
client_id_metadata_document_registration: z.ZodOptional<z.ZodBoolean>;
|
|
221
222
|
custom_domains_provisioning: z.ZodOptional<z.ZodBoolean>;
|
|
222
223
|
dashboard_insights_view: z.ZodOptional<z.ZodBoolean>;
|
|
223
224
|
dashboard_log_streams_next: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2459,7 +2460,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2459
2460
|
};
|
|
2460
2461
|
} & {
|
|
2461
2462
|
json: {
|
|
2462
|
-
type: "email" | "
|
|
2463
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2463
2464
|
phone_number?: string | undefined;
|
|
2464
2465
|
totp_secret?: string | undefined;
|
|
2465
2466
|
credential_id?: string | undefined;
|
|
@@ -2599,7 +2600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2599
2600
|
};
|
|
2600
2601
|
};
|
|
2601
2602
|
output: {
|
|
2602
|
-
name: "email" | "
|
|
2603
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2603
2604
|
enabled: boolean;
|
|
2604
2605
|
trial_expired?: boolean | undefined;
|
|
2605
2606
|
}[];
|
|
@@ -2754,7 +2755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2754
2755
|
$get: {
|
|
2755
2756
|
input: {
|
|
2756
2757
|
param: {
|
|
2757
|
-
factor_name: "email" | "
|
|
2758
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2758
2759
|
};
|
|
2759
2760
|
} & {
|
|
2760
2761
|
header: {
|
|
@@ -2762,7 +2763,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2762
2763
|
};
|
|
2763
2764
|
};
|
|
2764
2765
|
output: {
|
|
2765
|
-
name: "email" | "
|
|
2766
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2766
2767
|
enabled: boolean;
|
|
2767
2768
|
trial_expired?: boolean | undefined;
|
|
2768
2769
|
};
|
|
@@ -2775,7 +2776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2775
2776
|
$put: {
|
|
2776
2777
|
input: {
|
|
2777
2778
|
param: {
|
|
2778
|
-
factor_name: "email" | "
|
|
2779
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2779
2780
|
};
|
|
2780
2781
|
} & {
|
|
2781
2782
|
header: {
|
|
@@ -2787,7 +2788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2787
2788
|
};
|
|
2788
2789
|
};
|
|
2789
2790
|
output: {
|
|
2790
|
-
name: "email" | "
|
|
2791
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2791
2792
|
enabled: boolean;
|
|
2792
2793
|
trial_expired?: boolean | undefined;
|
|
2793
2794
|
};
|
|
@@ -3533,11 +3534,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3533
3534
|
email?: string | undefined;
|
|
3534
3535
|
};
|
|
3535
3536
|
id?: string | undefined;
|
|
3536
|
-
connection_id?: string | undefined;
|
|
3537
3537
|
app_metadata?: Record<string, any> | undefined;
|
|
3538
3538
|
user_metadata?: Record<string, any> | undefined;
|
|
3539
|
-
|
|
3539
|
+
connection_id?: string | undefined;
|
|
3540
3540
|
roles?: string[] | undefined;
|
|
3541
|
+
ttl_sec?: number | undefined;
|
|
3541
3542
|
send_invitation_email?: boolean | undefined;
|
|
3542
3543
|
};
|
|
3543
3544
|
};
|
|
@@ -4387,7 +4388,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4387
4388
|
type: "REDIRECT";
|
|
4388
4389
|
action: "REDIRECT_USER";
|
|
4389
4390
|
params: {
|
|
4390
|
-
target: "custom" | "
|
|
4391
|
+
target: "custom" | "account" | "change-email";
|
|
4391
4392
|
custom_url?: string | undefined;
|
|
4392
4393
|
};
|
|
4393
4394
|
alias?: string | undefined;
|
|
@@ -4440,7 +4441,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4440
4441
|
type: "REDIRECT";
|
|
4441
4442
|
action: "REDIRECT_USER";
|
|
4442
4443
|
params: {
|
|
4443
|
-
target: "custom" | "
|
|
4444
|
+
target: "custom" | "account" | "change-email";
|
|
4444
4445
|
custom_url?: string | undefined;
|
|
4445
4446
|
};
|
|
4446
4447
|
alias?: string | undefined;
|
|
@@ -4508,7 +4509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4508
4509
|
type: "REDIRECT";
|
|
4509
4510
|
action: "REDIRECT_USER";
|
|
4510
4511
|
params: {
|
|
4511
|
-
target: "custom" | "
|
|
4512
|
+
target: "custom" | "account" | "change-email";
|
|
4512
4513
|
custom_url?: string | undefined;
|
|
4513
4514
|
};
|
|
4514
4515
|
alias?: string | undefined;
|
|
@@ -4589,7 +4590,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4589
4590
|
type: "REDIRECT";
|
|
4590
4591
|
action: "REDIRECT_USER";
|
|
4591
4592
|
params: {
|
|
4592
|
-
target: "custom" | "
|
|
4593
|
+
target: "custom" | "account" | "change-email";
|
|
4593
4594
|
custom_url?: string | undefined;
|
|
4594
4595
|
};
|
|
4595
4596
|
alias?: string | undefined;
|
|
@@ -4637,7 +4638,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4637
4638
|
type: "REDIRECT";
|
|
4638
4639
|
action: "REDIRECT_USER";
|
|
4639
4640
|
params: {
|
|
4640
|
-
target: "custom" | "
|
|
4641
|
+
target: "custom" | "account" | "change-email";
|
|
4641
4642
|
custom_url?: string | undefined;
|
|
4642
4643
|
};
|
|
4643
4644
|
alias?: string | undefined;
|
|
@@ -4697,7 +4698,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4697
4698
|
type: "REDIRECT";
|
|
4698
4699
|
action: "REDIRECT_USER";
|
|
4699
4700
|
params: {
|
|
4700
|
-
target: "custom" | "
|
|
4701
|
+
target: "custom" | "account" | "change-email";
|
|
4701
4702
|
custom_url?: string | undefined;
|
|
4702
4703
|
};
|
|
4703
4704
|
alias?: string | undefined;
|
|
@@ -4745,7 +4746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4745
4746
|
type: "REDIRECT";
|
|
4746
4747
|
action: "REDIRECT_USER";
|
|
4747
4748
|
params: {
|
|
4748
|
-
target: "custom" | "
|
|
4749
|
+
target: "custom" | "account" | "change-email";
|
|
4749
4750
|
custom_url?: string | undefined;
|
|
4750
4751
|
};
|
|
4751
4752
|
alias?: string | undefined;
|
|
@@ -4963,7 +4964,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4963
4964
|
hint?: string | undefined;
|
|
4964
4965
|
messages?: {
|
|
4965
4966
|
text: string;
|
|
4966
|
-
type: "
|
|
4967
|
+
type: "error" | "success" | "info" | "warning";
|
|
4967
4968
|
id?: number | undefined;
|
|
4968
4969
|
}[] | undefined;
|
|
4969
4970
|
required?: boolean | undefined;
|
|
@@ -4981,7 +4982,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4981
4982
|
hint?: string | undefined;
|
|
4982
4983
|
messages?: {
|
|
4983
4984
|
text: string;
|
|
4984
|
-
type: "
|
|
4985
|
+
type: "error" | "success" | "info" | "warning";
|
|
4985
4986
|
id?: number | undefined;
|
|
4986
4987
|
}[] | undefined;
|
|
4987
4988
|
required?: boolean | undefined;
|
|
@@ -5005,7 +5006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5005
5006
|
hint?: string | undefined;
|
|
5006
5007
|
messages?: {
|
|
5007
5008
|
text: string;
|
|
5008
|
-
type: "
|
|
5009
|
+
type: "error" | "success" | "info" | "warning";
|
|
5009
5010
|
id?: number | undefined;
|
|
5010
5011
|
}[] | undefined;
|
|
5011
5012
|
required?: boolean | undefined;
|
|
@@ -5029,7 +5030,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5029
5030
|
hint?: string | undefined;
|
|
5030
5031
|
messages?: {
|
|
5031
5032
|
text: string;
|
|
5032
|
-
type: "
|
|
5033
|
+
type: "error" | "success" | "info" | "warning";
|
|
5033
5034
|
id?: number | undefined;
|
|
5034
5035
|
}[] | undefined;
|
|
5035
5036
|
required?: boolean | undefined;
|
|
@@ -5058,7 +5059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5058
5059
|
hint?: string | undefined;
|
|
5059
5060
|
messages?: {
|
|
5060
5061
|
text: string;
|
|
5061
|
-
type: "
|
|
5062
|
+
type: "error" | "success" | "info" | "warning";
|
|
5062
5063
|
id?: number | undefined;
|
|
5063
5064
|
}[] | undefined;
|
|
5064
5065
|
required?: boolean | undefined;
|
|
@@ -5073,7 +5074,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5073
5074
|
hint?: string | undefined;
|
|
5074
5075
|
messages?: {
|
|
5075
5076
|
text: string;
|
|
5076
|
-
type: "
|
|
5077
|
+
type: "error" | "success" | "info" | "warning";
|
|
5077
5078
|
id?: number | undefined;
|
|
5078
5079
|
}[] | undefined;
|
|
5079
5080
|
required?: boolean | undefined;
|
|
@@ -5094,7 +5095,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5094
5095
|
hint?: string | undefined;
|
|
5095
5096
|
messages?: {
|
|
5096
5097
|
text: string;
|
|
5097
|
-
type: "
|
|
5098
|
+
type: "error" | "success" | "info" | "warning";
|
|
5098
5099
|
id?: number | undefined;
|
|
5099
5100
|
}[] | undefined;
|
|
5100
5101
|
required?: boolean | undefined;
|
|
@@ -5119,7 +5120,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5119
5120
|
hint?: string | undefined;
|
|
5120
5121
|
messages?: {
|
|
5121
5122
|
text: string;
|
|
5122
|
-
type: "
|
|
5123
|
+
type: "error" | "success" | "info" | "warning";
|
|
5123
5124
|
id?: number | undefined;
|
|
5124
5125
|
}[] | undefined;
|
|
5125
5126
|
required?: boolean | undefined;
|
|
@@ -5138,7 +5139,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5138
5139
|
hint?: string | undefined;
|
|
5139
5140
|
messages?: {
|
|
5140
5141
|
text: string;
|
|
5141
|
-
type: "
|
|
5142
|
+
type: "error" | "success" | "info" | "warning";
|
|
5142
5143
|
id?: number | undefined;
|
|
5143
5144
|
}[] | undefined;
|
|
5144
5145
|
required?: boolean | undefined;
|
|
@@ -5158,7 +5159,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5158
5159
|
hint?: string | undefined;
|
|
5159
5160
|
messages?: {
|
|
5160
5161
|
text: string;
|
|
5161
|
-
type: "
|
|
5162
|
+
type: "error" | "success" | "info" | "warning";
|
|
5162
5163
|
id?: number | undefined;
|
|
5163
5164
|
}[] | undefined;
|
|
5164
5165
|
required?: boolean | undefined;
|
|
@@ -5177,7 +5178,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5177
5178
|
hint?: string | undefined;
|
|
5178
5179
|
messages?: {
|
|
5179
5180
|
text: string;
|
|
5180
|
-
type: "
|
|
5181
|
+
type: "error" | "success" | "info" | "warning";
|
|
5181
5182
|
id?: number | undefined;
|
|
5182
5183
|
}[] | undefined;
|
|
5183
5184
|
required?: boolean | undefined;
|
|
@@ -5199,7 +5200,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5199
5200
|
hint?: string | undefined;
|
|
5200
5201
|
messages?: {
|
|
5201
5202
|
text: string;
|
|
5202
|
-
type: "
|
|
5203
|
+
type: "error" | "success" | "info" | "warning";
|
|
5203
5204
|
id?: number | undefined;
|
|
5204
5205
|
}[] | undefined;
|
|
5205
5206
|
required?: boolean | undefined;
|
|
@@ -5221,7 +5222,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5221
5222
|
hint?: string | undefined;
|
|
5222
5223
|
messages?: {
|
|
5223
5224
|
text: string;
|
|
5224
|
-
type: "
|
|
5225
|
+
type: "error" | "success" | "info" | "warning";
|
|
5225
5226
|
id?: number | undefined;
|
|
5226
5227
|
}[] | undefined;
|
|
5227
5228
|
required?: boolean | undefined;
|
|
@@ -5240,7 +5241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5240
5241
|
hint?: string | undefined;
|
|
5241
5242
|
messages?: {
|
|
5242
5243
|
text: string;
|
|
5243
|
-
type: "
|
|
5244
|
+
type: "error" | "success" | "info" | "warning";
|
|
5244
5245
|
id?: number | undefined;
|
|
5245
5246
|
}[] | undefined;
|
|
5246
5247
|
required?: boolean | undefined;
|
|
@@ -5265,7 +5266,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5265
5266
|
hint?: string | undefined;
|
|
5266
5267
|
messages?: {
|
|
5267
5268
|
text: string;
|
|
5268
|
-
type: "
|
|
5269
|
+
type: "error" | "success" | "info" | "warning";
|
|
5269
5270
|
id?: number | undefined;
|
|
5270
5271
|
}[] | undefined;
|
|
5271
5272
|
required?: boolean | undefined;
|
|
@@ -5286,7 +5287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5286
5287
|
hint?: string | undefined;
|
|
5287
5288
|
messages?: {
|
|
5288
5289
|
text: string;
|
|
5289
|
-
type: "
|
|
5290
|
+
type: "error" | "success" | "info" | "warning";
|
|
5290
5291
|
id?: number | undefined;
|
|
5291
5292
|
}[] | undefined;
|
|
5292
5293
|
required?: boolean | undefined;
|
|
@@ -5307,7 +5308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5307
5308
|
hint?: string | undefined;
|
|
5308
5309
|
messages?: {
|
|
5309
5310
|
text: string;
|
|
5310
|
-
type: "
|
|
5311
|
+
type: "error" | "success" | "info" | "warning";
|
|
5311
5312
|
id?: number | undefined;
|
|
5312
5313
|
}[] | undefined;
|
|
5313
5314
|
required?: boolean | undefined;
|
|
@@ -5540,7 +5541,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5540
5541
|
hint?: string | undefined;
|
|
5541
5542
|
messages?: {
|
|
5542
5543
|
text: string;
|
|
5543
|
-
type: "
|
|
5544
|
+
type: "error" | "success" | "info" | "warning";
|
|
5544
5545
|
id?: number | undefined;
|
|
5545
5546
|
}[] | undefined;
|
|
5546
5547
|
required?: boolean | undefined;
|
|
@@ -5558,7 +5559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5558
5559
|
hint?: string | undefined;
|
|
5559
5560
|
messages?: {
|
|
5560
5561
|
text: string;
|
|
5561
|
-
type: "
|
|
5562
|
+
type: "error" | "success" | "info" | "warning";
|
|
5562
5563
|
id?: number | undefined;
|
|
5563
5564
|
}[] | undefined;
|
|
5564
5565
|
required?: boolean | undefined;
|
|
@@ -5582,7 +5583,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5582
5583
|
hint?: string | undefined;
|
|
5583
5584
|
messages?: {
|
|
5584
5585
|
text: string;
|
|
5585
|
-
type: "
|
|
5586
|
+
type: "error" | "success" | "info" | "warning";
|
|
5586
5587
|
id?: number | undefined;
|
|
5587
5588
|
}[] | undefined;
|
|
5588
5589
|
required?: boolean | undefined;
|
|
@@ -5606,7 +5607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5606
5607
|
hint?: string | undefined;
|
|
5607
5608
|
messages?: {
|
|
5608
5609
|
text: string;
|
|
5609
|
-
type: "
|
|
5610
|
+
type: "error" | "success" | "info" | "warning";
|
|
5610
5611
|
id?: number | undefined;
|
|
5611
5612
|
}[] | undefined;
|
|
5612
5613
|
required?: boolean | undefined;
|
|
@@ -5635,7 +5636,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5635
5636
|
hint?: string | undefined;
|
|
5636
5637
|
messages?: {
|
|
5637
5638
|
text: string;
|
|
5638
|
-
type: "
|
|
5639
|
+
type: "error" | "success" | "info" | "warning";
|
|
5639
5640
|
id?: number | undefined;
|
|
5640
5641
|
}[] | undefined;
|
|
5641
5642
|
required?: boolean | undefined;
|
|
@@ -5650,7 +5651,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5650
5651
|
hint?: string | undefined;
|
|
5651
5652
|
messages?: {
|
|
5652
5653
|
text: string;
|
|
5653
|
-
type: "
|
|
5654
|
+
type: "error" | "success" | "info" | "warning";
|
|
5654
5655
|
id?: number | undefined;
|
|
5655
5656
|
}[] | undefined;
|
|
5656
5657
|
required?: boolean | undefined;
|
|
@@ -5671,7 +5672,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5671
5672
|
hint?: string | undefined;
|
|
5672
5673
|
messages?: {
|
|
5673
5674
|
text: string;
|
|
5674
|
-
type: "
|
|
5675
|
+
type: "error" | "success" | "info" | "warning";
|
|
5675
5676
|
id?: number | undefined;
|
|
5676
5677
|
}[] | undefined;
|
|
5677
5678
|
required?: boolean | undefined;
|
|
@@ -5696,7 +5697,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5696
5697
|
hint?: string | undefined;
|
|
5697
5698
|
messages?: {
|
|
5698
5699
|
text: string;
|
|
5699
|
-
type: "
|
|
5700
|
+
type: "error" | "success" | "info" | "warning";
|
|
5700
5701
|
id?: number | undefined;
|
|
5701
5702
|
}[] | undefined;
|
|
5702
5703
|
required?: boolean | undefined;
|
|
@@ -5715,7 +5716,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5715
5716
|
hint?: string | undefined;
|
|
5716
5717
|
messages?: {
|
|
5717
5718
|
text: string;
|
|
5718
|
-
type: "
|
|
5719
|
+
type: "error" | "success" | "info" | "warning";
|
|
5719
5720
|
id?: number | undefined;
|
|
5720
5721
|
}[] | undefined;
|
|
5721
5722
|
required?: boolean | undefined;
|
|
@@ -5735,7 +5736,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5735
5736
|
hint?: string | undefined;
|
|
5736
5737
|
messages?: {
|
|
5737
5738
|
text: string;
|
|
5738
|
-
type: "
|
|
5739
|
+
type: "error" | "success" | "info" | "warning";
|
|
5739
5740
|
id?: number | undefined;
|
|
5740
5741
|
}[] | undefined;
|
|
5741
5742
|
required?: boolean | undefined;
|
|
@@ -5754,7 +5755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5754
5755
|
hint?: string | undefined;
|
|
5755
5756
|
messages?: {
|
|
5756
5757
|
text: string;
|
|
5757
|
-
type: "
|
|
5758
|
+
type: "error" | "success" | "info" | "warning";
|
|
5758
5759
|
id?: number | undefined;
|
|
5759
5760
|
}[] | undefined;
|
|
5760
5761
|
required?: boolean | undefined;
|
|
@@ -5776,7 +5777,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5776
5777
|
hint?: string | undefined;
|
|
5777
5778
|
messages?: {
|
|
5778
5779
|
text: string;
|
|
5779
|
-
type: "
|
|
5780
|
+
type: "error" | "success" | "info" | "warning";
|
|
5780
5781
|
id?: number | undefined;
|
|
5781
5782
|
}[] | undefined;
|
|
5782
5783
|
required?: boolean | undefined;
|
|
@@ -5798,7 +5799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5798
5799
|
hint?: string | undefined;
|
|
5799
5800
|
messages?: {
|
|
5800
5801
|
text: string;
|
|
5801
|
-
type: "
|
|
5802
|
+
type: "error" | "success" | "info" | "warning";
|
|
5802
5803
|
id?: number | undefined;
|
|
5803
5804
|
}[] | undefined;
|
|
5804
5805
|
required?: boolean | undefined;
|
|
@@ -5817,7 +5818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5817
5818
|
hint?: string | undefined;
|
|
5818
5819
|
messages?: {
|
|
5819
5820
|
text: string;
|
|
5820
|
-
type: "
|
|
5821
|
+
type: "error" | "success" | "info" | "warning";
|
|
5821
5822
|
id?: number | undefined;
|
|
5822
5823
|
}[] | undefined;
|
|
5823
5824
|
required?: boolean | undefined;
|
|
@@ -5842,7 +5843,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5842
5843
|
hint?: string | undefined;
|
|
5843
5844
|
messages?: {
|
|
5844
5845
|
text: string;
|
|
5845
|
-
type: "
|
|
5846
|
+
type: "error" | "success" | "info" | "warning";
|
|
5846
5847
|
id?: number | undefined;
|
|
5847
5848
|
}[] | undefined;
|
|
5848
5849
|
required?: boolean | undefined;
|
|
@@ -5863,7 +5864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5863
5864
|
hint?: string | undefined;
|
|
5864
5865
|
messages?: {
|
|
5865
5866
|
text: string;
|
|
5866
|
-
type: "
|
|
5867
|
+
type: "error" | "success" | "info" | "warning";
|
|
5867
5868
|
id?: number | undefined;
|
|
5868
5869
|
}[] | undefined;
|
|
5869
5870
|
required?: boolean | undefined;
|
|
@@ -5884,7 +5885,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5884
5885
|
hint?: string | undefined;
|
|
5885
5886
|
messages?: {
|
|
5886
5887
|
text: string;
|
|
5887
|
-
type: "
|
|
5888
|
+
type: "error" | "success" | "info" | "warning";
|
|
5888
5889
|
id?: number | undefined;
|
|
5889
5890
|
}[] | undefined;
|
|
5890
5891
|
required?: boolean | undefined;
|
|
@@ -6132,7 +6133,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6132
6133
|
hint?: string | undefined;
|
|
6133
6134
|
messages?: {
|
|
6134
6135
|
text: string;
|
|
6135
|
-
type: "
|
|
6136
|
+
type: "error" | "success" | "info" | "warning";
|
|
6136
6137
|
id?: number | undefined;
|
|
6137
6138
|
}[] | undefined;
|
|
6138
6139
|
required?: boolean | undefined;
|
|
@@ -6150,7 +6151,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6150
6151
|
hint?: string | undefined;
|
|
6151
6152
|
messages?: {
|
|
6152
6153
|
text: string;
|
|
6153
|
-
type: "
|
|
6154
|
+
type: "error" | "success" | "info" | "warning";
|
|
6154
6155
|
id?: number | undefined;
|
|
6155
6156
|
}[] | undefined;
|
|
6156
6157
|
required?: boolean | undefined;
|
|
@@ -6174,7 +6175,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6174
6175
|
hint?: string | undefined;
|
|
6175
6176
|
messages?: {
|
|
6176
6177
|
text: string;
|
|
6177
|
-
type: "
|
|
6178
|
+
type: "error" | "success" | "info" | "warning";
|
|
6178
6179
|
id?: number | undefined;
|
|
6179
6180
|
}[] | undefined;
|
|
6180
6181
|
required?: boolean | undefined;
|
|
@@ -6198,7 +6199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6198
6199
|
hint?: string | undefined;
|
|
6199
6200
|
messages?: {
|
|
6200
6201
|
text: string;
|
|
6201
|
-
type: "
|
|
6202
|
+
type: "error" | "success" | "info" | "warning";
|
|
6202
6203
|
id?: number | undefined;
|
|
6203
6204
|
}[] | undefined;
|
|
6204
6205
|
required?: boolean | undefined;
|
|
@@ -6227,7 +6228,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6227
6228
|
hint?: string | undefined;
|
|
6228
6229
|
messages?: {
|
|
6229
6230
|
text: string;
|
|
6230
|
-
type: "
|
|
6231
|
+
type: "error" | "success" | "info" | "warning";
|
|
6231
6232
|
id?: number | undefined;
|
|
6232
6233
|
}[] | undefined;
|
|
6233
6234
|
required?: boolean | undefined;
|
|
@@ -6242,7 +6243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6242
6243
|
hint?: string | undefined;
|
|
6243
6244
|
messages?: {
|
|
6244
6245
|
text: string;
|
|
6245
|
-
type: "
|
|
6246
|
+
type: "error" | "success" | "info" | "warning";
|
|
6246
6247
|
id?: number | undefined;
|
|
6247
6248
|
}[] | undefined;
|
|
6248
6249
|
required?: boolean | undefined;
|
|
@@ -6263,7 +6264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6263
6264
|
hint?: string | undefined;
|
|
6264
6265
|
messages?: {
|
|
6265
6266
|
text: string;
|
|
6266
|
-
type: "
|
|
6267
|
+
type: "error" | "success" | "info" | "warning";
|
|
6267
6268
|
id?: number | undefined;
|
|
6268
6269
|
}[] | undefined;
|
|
6269
6270
|
required?: boolean | undefined;
|
|
@@ -6288,7 +6289,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6288
6289
|
hint?: string | undefined;
|
|
6289
6290
|
messages?: {
|
|
6290
6291
|
text: string;
|
|
6291
|
-
type: "
|
|
6292
|
+
type: "error" | "success" | "info" | "warning";
|
|
6292
6293
|
id?: number | undefined;
|
|
6293
6294
|
}[] | undefined;
|
|
6294
6295
|
required?: boolean | undefined;
|
|
@@ -6307,7 +6308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6307
6308
|
hint?: string | undefined;
|
|
6308
6309
|
messages?: {
|
|
6309
6310
|
text: string;
|
|
6310
|
-
type: "
|
|
6311
|
+
type: "error" | "success" | "info" | "warning";
|
|
6311
6312
|
id?: number | undefined;
|
|
6312
6313
|
}[] | undefined;
|
|
6313
6314
|
required?: boolean | undefined;
|
|
@@ -6327,7 +6328,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6327
6328
|
hint?: string | undefined;
|
|
6328
6329
|
messages?: {
|
|
6329
6330
|
text: string;
|
|
6330
|
-
type: "
|
|
6331
|
+
type: "error" | "success" | "info" | "warning";
|
|
6331
6332
|
id?: number | undefined;
|
|
6332
6333
|
}[] | undefined;
|
|
6333
6334
|
required?: boolean | undefined;
|
|
@@ -6346,7 +6347,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6346
6347
|
hint?: string | undefined;
|
|
6347
6348
|
messages?: {
|
|
6348
6349
|
text: string;
|
|
6349
|
-
type: "
|
|
6350
|
+
type: "error" | "success" | "info" | "warning";
|
|
6350
6351
|
id?: number | undefined;
|
|
6351
6352
|
}[] | undefined;
|
|
6352
6353
|
required?: boolean | undefined;
|
|
@@ -6368,7 +6369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6368
6369
|
hint?: string | undefined;
|
|
6369
6370
|
messages?: {
|
|
6370
6371
|
text: string;
|
|
6371
|
-
type: "
|
|
6372
|
+
type: "error" | "success" | "info" | "warning";
|
|
6372
6373
|
id?: number | undefined;
|
|
6373
6374
|
}[] | undefined;
|
|
6374
6375
|
required?: boolean | undefined;
|
|
@@ -6390,7 +6391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6390
6391
|
hint?: string | undefined;
|
|
6391
6392
|
messages?: {
|
|
6392
6393
|
text: string;
|
|
6393
|
-
type: "
|
|
6394
|
+
type: "error" | "success" | "info" | "warning";
|
|
6394
6395
|
id?: number | undefined;
|
|
6395
6396
|
}[] | undefined;
|
|
6396
6397
|
required?: boolean | undefined;
|
|
@@ -6409,7 +6410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6409
6410
|
hint?: string | undefined;
|
|
6410
6411
|
messages?: {
|
|
6411
6412
|
text: string;
|
|
6412
|
-
type: "
|
|
6413
|
+
type: "error" | "success" | "info" | "warning";
|
|
6413
6414
|
id?: number | undefined;
|
|
6414
6415
|
}[] | undefined;
|
|
6415
6416
|
required?: boolean | undefined;
|
|
@@ -6434,7 +6435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6434
6435
|
hint?: string | undefined;
|
|
6435
6436
|
messages?: {
|
|
6436
6437
|
text: string;
|
|
6437
|
-
type: "
|
|
6438
|
+
type: "error" | "success" | "info" | "warning";
|
|
6438
6439
|
id?: number | undefined;
|
|
6439
6440
|
}[] | undefined;
|
|
6440
6441
|
required?: boolean | undefined;
|
|
@@ -6455,7 +6456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6455
6456
|
hint?: string | undefined;
|
|
6456
6457
|
messages?: {
|
|
6457
6458
|
text: string;
|
|
6458
|
-
type: "
|
|
6459
|
+
type: "error" | "success" | "info" | "warning";
|
|
6459
6460
|
id?: number | undefined;
|
|
6460
6461
|
}[] | undefined;
|
|
6461
6462
|
required?: boolean | undefined;
|
|
@@ -6476,7 +6477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6476
6477
|
hint?: string | undefined;
|
|
6477
6478
|
messages?: {
|
|
6478
6479
|
text: string;
|
|
6479
|
-
type: "
|
|
6480
|
+
type: "error" | "success" | "info" | "warning";
|
|
6480
6481
|
id?: number | undefined;
|
|
6481
6482
|
}[] | undefined;
|
|
6482
6483
|
required?: boolean | undefined;
|
|
@@ -6730,7 +6731,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6730
6731
|
hint?: string | undefined;
|
|
6731
6732
|
messages?: {
|
|
6732
6733
|
text: string;
|
|
6733
|
-
type: "
|
|
6734
|
+
type: "error" | "success" | "info" | "warning";
|
|
6734
6735
|
id?: number | undefined;
|
|
6735
6736
|
}[] | undefined;
|
|
6736
6737
|
required?: boolean | undefined;
|
|
@@ -6748,7 +6749,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6748
6749
|
hint?: string | undefined;
|
|
6749
6750
|
messages?: {
|
|
6750
6751
|
text: string;
|
|
6751
|
-
type: "
|
|
6752
|
+
type: "error" | "success" | "info" | "warning";
|
|
6752
6753
|
id?: number | undefined;
|
|
6753
6754
|
}[] | undefined;
|
|
6754
6755
|
required?: boolean | undefined;
|
|
@@ -6772,7 +6773,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6772
6773
|
hint?: string | undefined;
|
|
6773
6774
|
messages?: {
|
|
6774
6775
|
text: string;
|
|
6775
|
-
type: "
|
|
6776
|
+
type: "error" | "success" | "info" | "warning";
|
|
6776
6777
|
id?: number | undefined;
|
|
6777
6778
|
}[] | undefined;
|
|
6778
6779
|
required?: boolean | undefined;
|
|
@@ -6796,7 +6797,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6796
6797
|
hint?: string | undefined;
|
|
6797
6798
|
messages?: {
|
|
6798
6799
|
text: string;
|
|
6799
|
-
type: "
|
|
6800
|
+
type: "error" | "success" | "info" | "warning";
|
|
6800
6801
|
id?: number | undefined;
|
|
6801
6802
|
}[] | undefined;
|
|
6802
6803
|
required?: boolean | undefined;
|
|
@@ -6821,7 +6822,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6821
6822
|
hint?: string | undefined;
|
|
6822
6823
|
messages?: {
|
|
6823
6824
|
text: string;
|
|
6824
|
-
type: "
|
|
6825
|
+
type: "error" | "success" | "info" | "warning";
|
|
6825
6826
|
id?: number | undefined;
|
|
6826
6827
|
}[] | undefined;
|
|
6827
6828
|
required?: boolean | undefined;
|
|
@@ -6836,7 +6837,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6836
6837
|
hint?: string | undefined;
|
|
6837
6838
|
messages?: {
|
|
6838
6839
|
text: string;
|
|
6839
|
-
type: "
|
|
6840
|
+
type: "error" | "success" | "info" | "warning";
|
|
6840
6841
|
id?: number | undefined;
|
|
6841
6842
|
}[] | undefined;
|
|
6842
6843
|
required?: boolean | undefined;
|
|
@@ -6857,7 +6858,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6857
6858
|
hint?: string | undefined;
|
|
6858
6859
|
messages?: {
|
|
6859
6860
|
text: string;
|
|
6860
|
-
type: "
|
|
6861
|
+
type: "error" | "success" | "info" | "warning";
|
|
6861
6862
|
id?: number | undefined;
|
|
6862
6863
|
}[] | undefined;
|
|
6863
6864
|
required?: boolean | undefined;
|
|
@@ -6882,7 +6883,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6882
6883
|
hint?: string | undefined;
|
|
6883
6884
|
messages?: {
|
|
6884
6885
|
text: string;
|
|
6885
|
-
type: "
|
|
6886
|
+
type: "error" | "success" | "info" | "warning";
|
|
6886
6887
|
id?: number | undefined;
|
|
6887
6888
|
}[] | undefined;
|
|
6888
6889
|
required?: boolean | undefined;
|
|
@@ -6901,7 +6902,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6901
6902
|
hint?: string | undefined;
|
|
6902
6903
|
messages?: {
|
|
6903
6904
|
text: string;
|
|
6904
|
-
type: "
|
|
6905
|
+
type: "error" | "success" | "info" | "warning";
|
|
6905
6906
|
id?: number | undefined;
|
|
6906
6907
|
}[] | undefined;
|
|
6907
6908
|
required?: boolean | undefined;
|
|
@@ -6921,7 +6922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6921
6922
|
hint?: string | undefined;
|
|
6922
6923
|
messages?: {
|
|
6923
6924
|
text: string;
|
|
6924
|
-
type: "
|
|
6925
|
+
type: "error" | "success" | "info" | "warning";
|
|
6925
6926
|
id?: number | undefined;
|
|
6926
6927
|
}[] | undefined;
|
|
6927
6928
|
required?: boolean | undefined;
|
|
@@ -6940,7 +6941,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6940
6941
|
hint?: string | undefined;
|
|
6941
6942
|
messages?: {
|
|
6942
6943
|
text: string;
|
|
6943
|
-
type: "
|
|
6944
|
+
type: "error" | "success" | "info" | "warning";
|
|
6944
6945
|
id?: number | undefined;
|
|
6945
6946
|
}[] | undefined;
|
|
6946
6947
|
required?: boolean | undefined;
|
|
@@ -6962,7 +6963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6962
6963
|
hint?: string | undefined;
|
|
6963
6964
|
messages?: {
|
|
6964
6965
|
text: string;
|
|
6965
|
-
type: "
|
|
6966
|
+
type: "error" | "success" | "info" | "warning";
|
|
6966
6967
|
id?: number | undefined;
|
|
6967
6968
|
}[] | undefined;
|
|
6968
6969
|
required?: boolean | undefined;
|
|
@@ -6984,7 +6985,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6984
6985
|
hint?: string | undefined;
|
|
6985
6986
|
messages?: {
|
|
6986
6987
|
text: string;
|
|
6987
|
-
type: "
|
|
6988
|
+
type: "error" | "success" | "info" | "warning";
|
|
6988
6989
|
id?: number | undefined;
|
|
6989
6990
|
}[] | undefined;
|
|
6990
6991
|
required?: boolean | undefined;
|
|
@@ -7003,7 +7004,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7003
7004
|
hint?: string | undefined;
|
|
7004
7005
|
messages?: {
|
|
7005
7006
|
text: string;
|
|
7006
|
-
type: "
|
|
7007
|
+
type: "error" | "success" | "info" | "warning";
|
|
7007
7008
|
id?: number | undefined;
|
|
7008
7009
|
}[] | undefined;
|
|
7009
7010
|
required?: boolean | undefined;
|
|
@@ -7028,7 +7029,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7028
7029
|
hint?: string | undefined;
|
|
7029
7030
|
messages?: {
|
|
7030
7031
|
text: string;
|
|
7031
|
-
type: "
|
|
7032
|
+
type: "error" | "success" | "info" | "warning";
|
|
7032
7033
|
id?: number | undefined;
|
|
7033
7034
|
}[] | undefined;
|
|
7034
7035
|
required?: boolean | undefined;
|
|
@@ -7049,7 +7050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7049
7050
|
hint?: string | undefined;
|
|
7050
7051
|
messages?: {
|
|
7051
7052
|
text: string;
|
|
7052
|
-
type: "
|
|
7053
|
+
type: "error" | "success" | "info" | "warning";
|
|
7053
7054
|
id?: number | undefined;
|
|
7054
7055
|
}[] | undefined;
|
|
7055
7056
|
required?: boolean | undefined;
|
|
@@ -7070,7 +7071,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7070
7071
|
hint?: string | undefined;
|
|
7071
7072
|
messages?: {
|
|
7072
7073
|
text: string;
|
|
7073
|
-
type: "
|
|
7074
|
+
type: "error" | "success" | "info" | "warning";
|
|
7074
7075
|
id?: number | undefined;
|
|
7075
7076
|
}[] | undefined;
|
|
7076
7077
|
required?: boolean | undefined;
|
|
@@ -7301,7 +7302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7301
7302
|
hint?: string | undefined;
|
|
7302
7303
|
messages?: {
|
|
7303
7304
|
text: string;
|
|
7304
|
-
type: "
|
|
7305
|
+
type: "error" | "success" | "info" | "warning";
|
|
7305
7306
|
id?: number | undefined;
|
|
7306
7307
|
}[] | undefined;
|
|
7307
7308
|
required?: boolean | undefined;
|
|
@@ -7319,7 +7320,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7319
7320
|
hint?: string | undefined;
|
|
7320
7321
|
messages?: {
|
|
7321
7322
|
text: string;
|
|
7322
|
-
type: "
|
|
7323
|
+
type: "error" | "success" | "info" | "warning";
|
|
7323
7324
|
id?: number | undefined;
|
|
7324
7325
|
}[] | undefined;
|
|
7325
7326
|
required?: boolean | undefined;
|
|
@@ -7343,7 +7344,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7343
7344
|
hint?: string | undefined;
|
|
7344
7345
|
messages?: {
|
|
7345
7346
|
text: string;
|
|
7346
|
-
type: "
|
|
7347
|
+
type: "error" | "success" | "info" | "warning";
|
|
7347
7348
|
id?: number | undefined;
|
|
7348
7349
|
}[] | undefined;
|
|
7349
7350
|
required?: boolean | undefined;
|
|
@@ -7367,7 +7368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7367
7368
|
hint?: string | undefined;
|
|
7368
7369
|
messages?: {
|
|
7369
7370
|
text: string;
|
|
7370
|
-
type: "
|
|
7371
|
+
type: "error" | "success" | "info" | "warning";
|
|
7371
7372
|
id?: number | undefined;
|
|
7372
7373
|
}[] | undefined;
|
|
7373
7374
|
required?: boolean | undefined;
|
|
@@ -7396,7 +7397,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7396
7397
|
hint?: string | undefined;
|
|
7397
7398
|
messages?: {
|
|
7398
7399
|
text: string;
|
|
7399
|
-
type: "
|
|
7400
|
+
type: "error" | "success" | "info" | "warning";
|
|
7400
7401
|
id?: number | undefined;
|
|
7401
7402
|
}[] | undefined;
|
|
7402
7403
|
required?: boolean | undefined;
|
|
@@ -7411,7 +7412,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7411
7412
|
hint?: string | undefined;
|
|
7412
7413
|
messages?: {
|
|
7413
7414
|
text: string;
|
|
7414
|
-
type: "
|
|
7415
|
+
type: "error" | "success" | "info" | "warning";
|
|
7415
7416
|
id?: number | undefined;
|
|
7416
7417
|
}[] | undefined;
|
|
7417
7418
|
required?: boolean | undefined;
|
|
@@ -7432,7 +7433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7432
7433
|
hint?: string | undefined;
|
|
7433
7434
|
messages?: {
|
|
7434
7435
|
text: string;
|
|
7435
|
-
type: "
|
|
7436
|
+
type: "error" | "success" | "info" | "warning";
|
|
7436
7437
|
id?: number | undefined;
|
|
7437
7438
|
}[] | undefined;
|
|
7438
7439
|
required?: boolean | undefined;
|
|
@@ -7457,7 +7458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7457
7458
|
hint?: string | undefined;
|
|
7458
7459
|
messages?: {
|
|
7459
7460
|
text: string;
|
|
7460
|
-
type: "
|
|
7461
|
+
type: "error" | "success" | "info" | "warning";
|
|
7461
7462
|
id?: number | undefined;
|
|
7462
7463
|
}[] | undefined;
|
|
7463
7464
|
required?: boolean | undefined;
|
|
@@ -7476,7 +7477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7476
7477
|
hint?: string | undefined;
|
|
7477
7478
|
messages?: {
|
|
7478
7479
|
text: string;
|
|
7479
|
-
type: "
|
|
7480
|
+
type: "error" | "success" | "info" | "warning";
|
|
7480
7481
|
id?: number | undefined;
|
|
7481
7482
|
}[] | undefined;
|
|
7482
7483
|
required?: boolean | undefined;
|
|
@@ -7496,7 +7497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7496
7497
|
hint?: string | undefined;
|
|
7497
7498
|
messages?: {
|
|
7498
7499
|
text: string;
|
|
7499
|
-
type: "
|
|
7500
|
+
type: "error" | "success" | "info" | "warning";
|
|
7500
7501
|
id?: number | undefined;
|
|
7501
7502
|
}[] | undefined;
|
|
7502
7503
|
required?: boolean | undefined;
|
|
@@ -7515,7 +7516,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7515
7516
|
hint?: string | undefined;
|
|
7516
7517
|
messages?: {
|
|
7517
7518
|
text: string;
|
|
7518
|
-
type: "
|
|
7519
|
+
type: "error" | "success" | "info" | "warning";
|
|
7519
7520
|
id?: number | undefined;
|
|
7520
7521
|
}[] | undefined;
|
|
7521
7522
|
required?: boolean | undefined;
|
|
@@ -7537,7 +7538,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7537
7538
|
hint?: string | undefined;
|
|
7538
7539
|
messages?: {
|
|
7539
7540
|
text: string;
|
|
7540
|
-
type: "
|
|
7541
|
+
type: "error" | "success" | "info" | "warning";
|
|
7541
7542
|
id?: number | undefined;
|
|
7542
7543
|
}[] | undefined;
|
|
7543
7544
|
required?: boolean | undefined;
|
|
@@ -7559,7 +7560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7559
7560
|
hint?: string | undefined;
|
|
7560
7561
|
messages?: {
|
|
7561
7562
|
text: string;
|
|
7562
|
-
type: "
|
|
7563
|
+
type: "error" | "success" | "info" | "warning";
|
|
7563
7564
|
id?: number | undefined;
|
|
7564
7565
|
}[] | undefined;
|
|
7565
7566
|
required?: boolean | undefined;
|
|
@@ -7578,7 +7579,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7578
7579
|
hint?: string | undefined;
|
|
7579
7580
|
messages?: {
|
|
7580
7581
|
text: string;
|
|
7581
|
-
type: "
|
|
7582
|
+
type: "error" | "success" | "info" | "warning";
|
|
7582
7583
|
id?: number | undefined;
|
|
7583
7584
|
}[] | undefined;
|
|
7584
7585
|
required?: boolean | undefined;
|
|
@@ -7603,7 +7604,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7603
7604
|
hint?: string | undefined;
|
|
7604
7605
|
messages?: {
|
|
7605
7606
|
text: string;
|
|
7606
|
-
type: "
|
|
7607
|
+
type: "error" | "success" | "info" | "warning";
|
|
7607
7608
|
id?: number | undefined;
|
|
7608
7609
|
}[] | undefined;
|
|
7609
7610
|
required?: boolean | undefined;
|
|
@@ -7624,7 +7625,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7624
7625
|
hint?: string | undefined;
|
|
7625
7626
|
messages?: {
|
|
7626
7627
|
text: string;
|
|
7627
|
-
type: "
|
|
7628
|
+
type: "error" | "success" | "info" | "warning";
|
|
7628
7629
|
id?: number | undefined;
|
|
7629
7630
|
}[] | undefined;
|
|
7630
7631
|
required?: boolean | undefined;
|
|
@@ -7645,7 +7646,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7645
7646
|
hint?: string | undefined;
|
|
7646
7647
|
messages?: {
|
|
7647
7648
|
text: string;
|
|
7648
|
-
type: "
|
|
7649
|
+
type: "error" | "success" | "info" | "warning";
|
|
7649
7650
|
id?: number | undefined;
|
|
7650
7651
|
}[] | undefined;
|
|
7651
7652
|
required?: boolean | undefined;
|
|
@@ -7878,7 +7879,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7878
7879
|
hint?: string | undefined;
|
|
7879
7880
|
messages?: {
|
|
7880
7881
|
text: string;
|
|
7881
|
-
type: "
|
|
7882
|
+
type: "error" | "success" | "info" | "warning";
|
|
7882
7883
|
id?: number | undefined;
|
|
7883
7884
|
}[] | undefined;
|
|
7884
7885
|
required?: boolean | undefined;
|
|
@@ -7896,7 +7897,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7896
7897
|
hint?: string | undefined;
|
|
7897
7898
|
messages?: {
|
|
7898
7899
|
text: string;
|
|
7899
|
-
type: "
|
|
7900
|
+
type: "error" | "success" | "info" | "warning";
|
|
7900
7901
|
id?: number | undefined;
|
|
7901
7902
|
}[] | undefined;
|
|
7902
7903
|
required?: boolean | undefined;
|
|
@@ -7920,7 +7921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7920
7921
|
hint?: string | undefined;
|
|
7921
7922
|
messages?: {
|
|
7922
7923
|
text: string;
|
|
7923
|
-
type: "
|
|
7924
|
+
type: "error" | "success" | "info" | "warning";
|
|
7924
7925
|
id?: number | undefined;
|
|
7925
7926
|
}[] | undefined;
|
|
7926
7927
|
required?: boolean | undefined;
|
|
@@ -7944,7 +7945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7944
7945
|
hint?: string | undefined;
|
|
7945
7946
|
messages?: {
|
|
7946
7947
|
text: string;
|
|
7947
|
-
type: "
|
|
7948
|
+
type: "error" | "success" | "info" | "warning";
|
|
7948
7949
|
id?: number | undefined;
|
|
7949
7950
|
}[] | undefined;
|
|
7950
7951
|
required?: boolean | undefined;
|
|
@@ -7969,7 +7970,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7969
7970
|
hint?: string | undefined;
|
|
7970
7971
|
messages?: {
|
|
7971
7972
|
text: string;
|
|
7972
|
-
type: "
|
|
7973
|
+
type: "error" | "success" | "info" | "warning";
|
|
7973
7974
|
id?: number | undefined;
|
|
7974
7975
|
}[] | undefined;
|
|
7975
7976
|
required?: boolean | undefined;
|
|
@@ -7984,7 +7985,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7984
7985
|
hint?: string | undefined;
|
|
7985
7986
|
messages?: {
|
|
7986
7987
|
text: string;
|
|
7987
|
-
type: "
|
|
7988
|
+
type: "error" | "success" | "info" | "warning";
|
|
7988
7989
|
id?: number | undefined;
|
|
7989
7990
|
}[] | undefined;
|
|
7990
7991
|
required?: boolean | undefined;
|
|
@@ -8005,7 +8006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8005
8006
|
hint?: string | undefined;
|
|
8006
8007
|
messages?: {
|
|
8007
8008
|
text: string;
|
|
8008
|
-
type: "
|
|
8009
|
+
type: "error" | "success" | "info" | "warning";
|
|
8009
8010
|
id?: number | undefined;
|
|
8010
8011
|
}[] | undefined;
|
|
8011
8012
|
required?: boolean | undefined;
|
|
@@ -8030,7 +8031,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8030
8031
|
hint?: string | undefined;
|
|
8031
8032
|
messages?: {
|
|
8032
8033
|
text: string;
|
|
8033
|
-
type: "
|
|
8034
|
+
type: "error" | "success" | "info" | "warning";
|
|
8034
8035
|
id?: number | undefined;
|
|
8035
8036
|
}[] | undefined;
|
|
8036
8037
|
required?: boolean | undefined;
|
|
@@ -8049,7 +8050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8049
8050
|
hint?: string | undefined;
|
|
8050
8051
|
messages?: {
|
|
8051
8052
|
text: string;
|
|
8052
|
-
type: "
|
|
8053
|
+
type: "error" | "success" | "info" | "warning";
|
|
8053
8054
|
id?: number | undefined;
|
|
8054
8055
|
}[] | undefined;
|
|
8055
8056
|
required?: boolean | undefined;
|
|
@@ -8069,7 +8070,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8069
8070
|
hint?: string | undefined;
|
|
8070
8071
|
messages?: {
|
|
8071
8072
|
text: string;
|
|
8072
|
-
type: "
|
|
8073
|
+
type: "error" | "success" | "info" | "warning";
|
|
8073
8074
|
id?: number | undefined;
|
|
8074
8075
|
}[] | undefined;
|
|
8075
8076
|
required?: boolean | undefined;
|
|
@@ -8088,7 +8089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8088
8089
|
hint?: string | undefined;
|
|
8089
8090
|
messages?: {
|
|
8090
8091
|
text: string;
|
|
8091
|
-
type: "
|
|
8092
|
+
type: "error" | "success" | "info" | "warning";
|
|
8092
8093
|
id?: number | undefined;
|
|
8093
8094
|
}[] | undefined;
|
|
8094
8095
|
required?: boolean | undefined;
|
|
@@ -8110,7 +8111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8110
8111
|
hint?: string | undefined;
|
|
8111
8112
|
messages?: {
|
|
8112
8113
|
text: string;
|
|
8113
|
-
type: "
|
|
8114
|
+
type: "error" | "success" | "info" | "warning";
|
|
8114
8115
|
id?: number | undefined;
|
|
8115
8116
|
}[] | undefined;
|
|
8116
8117
|
required?: boolean | undefined;
|
|
@@ -8132,7 +8133,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8132
8133
|
hint?: string | undefined;
|
|
8133
8134
|
messages?: {
|
|
8134
8135
|
text: string;
|
|
8135
|
-
type: "
|
|
8136
|
+
type: "error" | "success" | "info" | "warning";
|
|
8136
8137
|
id?: number | undefined;
|
|
8137
8138
|
}[] | undefined;
|
|
8138
8139
|
required?: boolean | undefined;
|
|
@@ -8151,7 +8152,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8151
8152
|
hint?: string | undefined;
|
|
8152
8153
|
messages?: {
|
|
8153
8154
|
text: string;
|
|
8154
|
-
type: "
|
|
8155
|
+
type: "error" | "success" | "info" | "warning";
|
|
8155
8156
|
id?: number | undefined;
|
|
8156
8157
|
}[] | undefined;
|
|
8157
8158
|
required?: boolean | undefined;
|
|
@@ -8176,7 +8177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8176
8177
|
hint?: string | undefined;
|
|
8177
8178
|
messages?: {
|
|
8178
8179
|
text: string;
|
|
8179
|
-
type: "
|
|
8180
|
+
type: "error" | "success" | "info" | "warning";
|
|
8180
8181
|
id?: number | undefined;
|
|
8181
8182
|
}[] | undefined;
|
|
8182
8183
|
required?: boolean | undefined;
|
|
@@ -8197,7 +8198,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8197
8198
|
hint?: string | undefined;
|
|
8198
8199
|
messages?: {
|
|
8199
8200
|
text: string;
|
|
8200
|
-
type: "
|
|
8201
|
+
type: "error" | "success" | "info" | "warning";
|
|
8201
8202
|
id?: number | undefined;
|
|
8202
8203
|
}[] | undefined;
|
|
8203
8204
|
required?: boolean | undefined;
|
|
@@ -8218,7 +8219,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8218
8219
|
hint?: string | undefined;
|
|
8219
8220
|
messages?: {
|
|
8220
8221
|
text: string;
|
|
8221
|
-
type: "
|
|
8222
|
+
type: "error" | "success" | "info" | "warning";
|
|
8222
8223
|
id?: number | undefined;
|
|
8223
8224
|
}[] | undefined;
|
|
8224
8225
|
required?: boolean | undefined;
|
|
@@ -8449,7 +8450,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8449
8450
|
hint?: string | undefined;
|
|
8450
8451
|
messages?: {
|
|
8451
8452
|
text: string;
|
|
8452
|
-
type: "
|
|
8453
|
+
type: "error" | "success" | "info" | "warning";
|
|
8453
8454
|
id?: number | undefined;
|
|
8454
8455
|
}[] | undefined;
|
|
8455
8456
|
required?: boolean | undefined;
|
|
@@ -8467,7 +8468,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8467
8468
|
hint?: string | undefined;
|
|
8468
8469
|
messages?: {
|
|
8469
8470
|
text: string;
|
|
8470
|
-
type: "
|
|
8471
|
+
type: "error" | "success" | "info" | "warning";
|
|
8471
8472
|
id?: number | undefined;
|
|
8472
8473
|
}[] | undefined;
|
|
8473
8474
|
required?: boolean | undefined;
|
|
@@ -8491,7 +8492,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8491
8492
|
hint?: string | undefined;
|
|
8492
8493
|
messages?: {
|
|
8493
8494
|
text: string;
|
|
8494
|
-
type: "
|
|
8495
|
+
type: "error" | "success" | "info" | "warning";
|
|
8495
8496
|
id?: number | undefined;
|
|
8496
8497
|
}[] | undefined;
|
|
8497
8498
|
required?: boolean | undefined;
|
|
@@ -8515,7 +8516,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8515
8516
|
hint?: string | undefined;
|
|
8516
8517
|
messages?: {
|
|
8517
8518
|
text: string;
|
|
8518
|
-
type: "
|
|
8519
|
+
type: "error" | "success" | "info" | "warning";
|
|
8519
8520
|
id?: number | undefined;
|
|
8520
8521
|
}[] | undefined;
|
|
8521
8522
|
required?: boolean | undefined;
|
|
@@ -8544,7 +8545,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8544
8545
|
hint?: string | undefined;
|
|
8545
8546
|
messages?: {
|
|
8546
8547
|
text: string;
|
|
8547
|
-
type: "
|
|
8548
|
+
type: "error" | "success" | "info" | "warning";
|
|
8548
8549
|
id?: number | undefined;
|
|
8549
8550
|
}[] | undefined;
|
|
8550
8551
|
required?: boolean | undefined;
|
|
@@ -8559,7 +8560,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8559
8560
|
hint?: string | undefined;
|
|
8560
8561
|
messages?: {
|
|
8561
8562
|
text: string;
|
|
8562
|
-
type: "
|
|
8563
|
+
type: "error" | "success" | "info" | "warning";
|
|
8563
8564
|
id?: number | undefined;
|
|
8564
8565
|
}[] | undefined;
|
|
8565
8566
|
required?: boolean | undefined;
|
|
@@ -8580,7 +8581,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8580
8581
|
hint?: string | undefined;
|
|
8581
8582
|
messages?: {
|
|
8582
8583
|
text: string;
|
|
8583
|
-
type: "
|
|
8584
|
+
type: "error" | "success" | "info" | "warning";
|
|
8584
8585
|
id?: number | undefined;
|
|
8585
8586
|
}[] | undefined;
|
|
8586
8587
|
required?: boolean | undefined;
|
|
@@ -8605,7 +8606,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8605
8606
|
hint?: string | undefined;
|
|
8606
8607
|
messages?: {
|
|
8607
8608
|
text: string;
|
|
8608
|
-
type: "
|
|
8609
|
+
type: "error" | "success" | "info" | "warning";
|
|
8609
8610
|
id?: number | undefined;
|
|
8610
8611
|
}[] | undefined;
|
|
8611
8612
|
required?: boolean | undefined;
|
|
@@ -8624,7 +8625,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8624
8625
|
hint?: string | undefined;
|
|
8625
8626
|
messages?: {
|
|
8626
8627
|
text: string;
|
|
8627
|
-
type: "
|
|
8628
|
+
type: "error" | "success" | "info" | "warning";
|
|
8628
8629
|
id?: number | undefined;
|
|
8629
8630
|
}[] | undefined;
|
|
8630
8631
|
required?: boolean | undefined;
|
|
@@ -8644,7 +8645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8644
8645
|
hint?: string | undefined;
|
|
8645
8646
|
messages?: {
|
|
8646
8647
|
text: string;
|
|
8647
|
-
type: "
|
|
8648
|
+
type: "error" | "success" | "info" | "warning";
|
|
8648
8649
|
id?: number | undefined;
|
|
8649
8650
|
}[] | undefined;
|
|
8650
8651
|
required?: boolean | undefined;
|
|
@@ -8663,7 +8664,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8663
8664
|
hint?: string | undefined;
|
|
8664
8665
|
messages?: {
|
|
8665
8666
|
text: string;
|
|
8666
|
-
type: "
|
|
8667
|
+
type: "error" | "success" | "info" | "warning";
|
|
8667
8668
|
id?: number | undefined;
|
|
8668
8669
|
}[] | undefined;
|
|
8669
8670
|
required?: boolean | undefined;
|
|
@@ -8685,7 +8686,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8685
8686
|
hint?: string | undefined;
|
|
8686
8687
|
messages?: {
|
|
8687
8688
|
text: string;
|
|
8688
|
-
type: "
|
|
8689
|
+
type: "error" | "success" | "info" | "warning";
|
|
8689
8690
|
id?: number | undefined;
|
|
8690
8691
|
}[] | undefined;
|
|
8691
8692
|
required?: boolean | undefined;
|
|
@@ -8707,7 +8708,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8707
8708
|
hint?: string | undefined;
|
|
8708
8709
|
messages?: {
|
|
8709
8710
|
text: string;
|
|
8710
|
-
type: "
|
|
8711
|
+
type: "error" | "success" | "info" | "warning";
|
|
8711
8712
|
id?: number | undefined;
|
|
8712
8713
|
}[] | undefined;
|
|
8713
8714
|
required?: boolean | undefined;
|
|
@@ -8726,7 +8727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8726
8727
|
hint?: string | undefined;
|
|
8727
8728
|
messages?: {
|
|
8728
8729
|
text: string;
|
|
8729
|
-
type: "
|
|
8730
|
+
type: "error" | "success" | "info" | "warning";
|
|
8730
8731
|
id?: number | undefined;
|
|
8731
8732
|
}[] | undefined;
|
|
8732
8733
|
required?: boolean | undefined;
|
|
@@ -8751,7 +8752,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8751
8752
|
hint?: string | undefined;
|
|
8752
8753
|
messages?: {
|
|
8753
8754
|
text: string;
|
|
8754
|
-
type: "
|
|
8755
|
+
type: "error" | "success" | "info" | "warning";
|
|
8755
8756
|
id?: number | undefined;
|
|
8756
8757
|
}[] | undefined;
|
|
8757
8758
|
required?: boolean | undefined;
|
|
@@ -8772,7 +8773,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8772
8773
|
hint?: string | undefined;
|
|
8773
8774
|
messages?: {
|
|
8774
8775
|
text: string;
|
|
8775
|
-
type: "
|
|
8776
|
+
type: "error" | "success" | "info" | "warning";
|
|
8776
8777
|
id?: number | undefined;
|
|
8777
8778
|
}[] | undefined;
|
|
8778
8779
|
required?: boolean | undefined;
|
|
@@ -8793,7 +8794,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8793
8794
|
hint?: string | undefined;
|
|
8794
8795
|
messages?: {
|
|
8795
8796
|
text: string;
|
|
8796
|
-
type: "
|
|
8797
|
+
type: "error" | "success" | "info" | "warning";
|
|
8797
8798
|
id?: number | undefined;
|
|
8798
8799
|
}[] | undefined;
|
|
8799
8800
|
required?: boolean | undefined;
|
|
@@ -9023,7 +9024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9023
9024
|
};
|
|
9024
9025
|
};
|
|
9025
9026
|
output: {
|
|
9026
|
-
prompt: "mfa" | "organizations" | "
|
|
9027
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9027
9028
|
language: string;
|
|
9028
9029
|
}[];
|
|
9029
9030
|
outputFormat: "json";
|
|
@@ -9061,7 +9062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9061
9062
|
$get: {
|
|
9062
9063
|
input: {
|
|
9063
9064
|
param: {
|
|
9064
|
-
prompt: "mfa" | "organizations" | "
|
|
9065
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9065
9066
|
language: string;
|
|
9066
9067
|
};
|
|
9067
9068
|
} & {
|
|
@@ -9083,7 +9084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9083
9084
|
$put: {
|
|
9084
9085
|
input: {
|
|
9085
9086
|
param: {
|
|
9086
|
-
prompt: "mfa" | "organizations" | "
|
|
9087
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9087
9088
|
language: string;
|
|
9088
9089
|
};
|
|
9089
9090
|
} & {
|
|
@@ -9107,7 +9108,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9107
9108
|
$delete: {
|
|
9108
9109
|
input: {
|
|
9109
9110
|
param: {
|
|
9110
|
-
prompt: "mfa" | "organizations" | "
|
|
9111
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9111
9112
|
language: string;
|
|
9112
9113
|
};
|
|
9113
9114
|
} & {
|
|
@@ -9969,7 +9970,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9969
9970
|
};
|
|
9970
9971
|
} | {
|
|
9971
9972
|
mode: "inline";
|
|
9972
|
-
status: "
|
|
9973
|
+
status: "error" | "success";
|
|
9973
9974
|
connection_id: string;
|
|
9974
9975
|
connection_name: string;
|
|
9975
9976
|
strategy: string;
|
|
@@ -10548,7 +10549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10548
10549
|
log_type: string;
|
|
10549
10550
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10550
10551
|
actor: {
|
|
10551
|
-
type: "
|
|
10552
|
+
type: "user" | "client_credentials" | "api_key" | "system" | "admin";
|
|
10552
10553
|
id?: string | undefined;
|
|
10553
10554
|
email?: string | undefined;
|
|
10554
10555
|
org_id?: string | undefined;
|
|
@@ -10856,7 +10857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10856
10857
|
created_at: string;
|
|
10857
10858
|
updated_at: string;
|
|
10858
10859
|
name: string;
|
|
10859
|
-
provider: "auth0" | "
|
|
10860
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10860
10861
|
connection: string;
|
|
10861
10862
|
enabled: boolean;
|
|
10862
10863
|
credentials: {
|
|
@@ -10888,7 +10889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10888
10889
|
created_at: string;
|
|
10889
10890
|
updated_at: string;
|
|
10890
10891
|
name: string;
|
|
10891
|
-
provider: "auth0" | "
|
|
10892
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10892
10893
|
connection: string;
|
|
10893
10894
|
enabled: boolean;
|
|
10894
10895
|
credentials: {
|
|
@@ -10914,7 +10915,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10914
10915
|
} & {
|
|
10915
10916
|
json: {
|
|
10916
10917
|
name: string;
|
|
10917
|
-
provider: "auth0" | "
|
|
10918
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10918
10919
|
connection: string;
|
|
10919
10920
|
credentials: {
|
|
10920
10921
|
domain: string;
|
|
@@ -10931,7 +10932,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10931
10932
|
created_at: string;
|
|
10932
10933
|
updated_at: string;
|
|
10933
10934
|
name: string;
|
|
10934
|
-
provider: "auth0" | "
|
|
10935
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10935
10936
|
connection: string;
|
|
10936
10937
|
enabled: boolean;
|
|
10937
10938
|
credentials: {
|
|
@@ -10962,7 +10963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10962
10963
|
json: {
|
|
10963
10964
|
id?: string | undefined;
|
|
10964
10965
|
name?: string | undefined;
|
|
10965
|
-
provider?: "auth0" | "
|
|
10966
|
+
provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
|
|
10966
10967
|
connection?: string | undefined;
|
|
10967
10968
|
enabled?: boolean | undefined;
|
|
10968
10969
|
credentials?: {
|
|
@@ -10978,7 +10979,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10978
10979
|
created_at: string;
|
|
10979
10980
|
updated_at: string;
|
|
10980
10981
|
name: string;
|
|
10981
|
-
provider: "auth0" | "
|
|
10982
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10982
10983
|
connection: string;
|
|
10983
10984
|
enabled: boolean;
|
|
10984
10985
|
credentials: {
|
|
@@ -11196,7 +11197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11196
11197
|
};
|
|
11197
11198
|
};
|
|
11198
11199
|
output: {
|
|
11199
|
-
type: "
|
|
11200
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
11200
11201
|
date: string;
|
|
11201
11202
|
isMobile: boolean;
|
|
11202
11203
|
log_id: string;
|
|
@@ -11235,7 +11236,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11235
11236
|
limit: number;
|
|
11236
11237
|
length: number;
|
|
11237
11238
|
logs: {
|
|
11238
|
-
type: "
|
|
11239
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
11239
11240
|
date: string;
|
|
11240
11241
|
isMobile: boolean;
|
|
11241
11242
|
log_id: string;
|
|
@@ -11289,7 +11290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11289
11290
|
};
|
|
11290
11291
|
};
|
|
11291
11292
|
output: {
|
|
11292
|
-
type: "
|
|
11293
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
11293
11294
|
date: string;
|
|
11294
11295
|
isMobile: boolean;
|
|
11295
11296
|
log_id: string;
|
|
@@ -13433,7 +13434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13433
13434
|
};
|
|
13434
13435
|
};
|
|
13435
13436
|
output: {
|
|
13436
|
-
type: "
|
|
13437
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
13437
13438
|
date: string;
|
|
13438
13439
|
isMobile: boolean;
|
|
13439
13440
|
log_id: string;
|
|
@@ -13472,7 +13473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13472
13473
|
limit: number;
|
|
13473
13474
|
length: number;
|
|
13474
13475
|
logs: {
|
|
13475
|
-
type: "
|
|
13476
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
13476
13477
|
date: string;
|
|
13477
13478
|
isMobile: boolean;
|
|
13478
13479
|
log_id: string;
|
|
@@ -13787,7 +13788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13787
13788
|
};
|
|
13788
13789
|
} & {
|
|
13789
13790
|
json: {
|
|
13790
|
-
template: "change_password" | "
|
|
13791
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13791
13792
|
body: string;
|
|
13792
13793
|
from: string;
|
|
13793
13794
|
subject: string;
|
|
@@ -13808,7 +13809,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13808
13809
|
};
|
|
13809
13810
|
} & {
|
|
13810
13811
|
json: {
|
|
13811
|
-
template: "change_password" | "
|
|
13812
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13812
13813
|
body: string;
|
|
13813
13814
|
from: string;
|
|
13814
13815
|
subject: string;
|
|
@@ -13820,7 +13821,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13820
13821
|
};
|
|
13821
13822
|
};
|
|
13822
13823
|
output: {
|
|
13823
|
-
template: "change_password" | "
|
|
13824
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13824
13825
|
body: string;
|
|
13825
13826
|
from: string;
|
|
13826
13827
|
subject: string;
|
|
@@ -13839,7 +13840,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13839
13840
|
$get: {
|
|
13840
13841
|
input: {
|
|
13841
13842
|
param: {
|
|
13842
|
-
templateName: "change_password" | "
|
|
13843
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13843
13844
|
};
|
|
13844
13845
|
} & {
|
|
13845
13846
|
header: {
|
|
@@ -13852,7 +13853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13852
13853
|
} | {
|
|
13853
13854
|
input: {
|
|
13854
13855
|
param: {
|
|
13855
|
-
templateName: "change_password" | "
|
|
13856
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13856
13857
|
};
|
|
13857
13858
|
} & {
|
|
13858
13859
|
header: {
|
|
@@ -13860,7 +13861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13860
13861
|
};
|
|
13861
13862
|
};
|
|
13862
13863
|
output: {
|
|
13863
|
-
template: "change_password" | "
|
|
13864
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13864
13865
|
body: string;
|
|
13865
13866
|
from: string;
|
|
13866
13867
|
subject: string;
|
|
@@ -13879,7 +13880,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13879
13880
|
$put: {
|
|
13880
13881
|
input: {
|
|
13881
13882
|
param: {
|
|
13882
|
-
templateName: "change_password" | "
|
|
13883
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13883
13884
|
};
|
|
13884
13885
|
} & {
|
|
13885
13886
|
header: {
|
|
@@ -13887,7 +13888,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13887
13888
|
};
|
|
13888
13889
|
} & {
|
|
13889
13890
|
json: {
|
|
13890
|
-
template: "change_password" | "
|
|
13891
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13891
13892
|
body: string;
|
|
13892
13893
|
from: string;
|
|
13893
13894
|
subject: string;
|
|
@@ -13899,7 +13900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13899
13900
|
};
|
|
13900
13901
|
};
|
|
13901
13902
|
output: {
|
|
13902
|
-
template: "change_password" | "
|
|
13903
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13903
13904
|
body: string;
|
|
13904
13905
|
from: string;
|
|
13905
13906
|
subject: string;
|
|
@@ -13918,7 +13919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13918
13919
|
$patch: {
|
|
13919
13920
|
input: {
|
|
13920
13921
|
param: {
|
|
13921
|
-
templateName: "change_password" | "
|
|
13922
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13922
13923
|
};
|
|
13923
13924
|
} & {
|
|
13924
13925
|
header: {
|
|
@@ -13926,7 +13927,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13926
13927
|
};
|
|
13927
13928
|
} & {
|
|
13928
13929
|
json: {
|
|
13929
|
-
template?: "change_password" | "
|
|
13930
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
13930
13931
|
body?: string | undefined;
|
|
13931
13932
|
from?: string | undefined;
|
|
13932
13933
|
subject?: string | undefined;
|
|
@@ -13943,7 +13944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13943
13944
|
} | {
|
|
13944
13945
|
input: {
|
|
13945
13946
|
param: {
|
|
13946
|
-
templateName: "change_password" | "
|
|
13947
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13947
13948
|
};
|
|
13948
13949
|
} & {
|
|
13949
13950
|
header: {
|
|
@@ -13951,7 +13952,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13951
13952
|
};
|
|
13952
13953
|
} & {
|
|
13953
13954
|
json: {
|
|
13954
|
-
template?: "change_password" | "
|
|
13955
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
13955
13956
|
body?: string | undefined;
|
|
13956
13957
|
from?: string | undefined;
|
|
13957
13958
|
subject?: string | undefined;
|
|
@@ -13963,7 +13964,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13963
13964
|
};
|
|
13964
13965
|
};
|
|
13965
13966
|
output: {
|
|
13966
|
-
template: "change_password" | "
|
|
13967
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13967
13968
|
body: string;
|
|
13968
13969
|
from: string;
|
|
13969
13970
|
subject: string;
|
|
@@ -14240,7 +14241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14240
14241
|
primary: boolean;
|
|
14241
14242
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14242
14243
|
verification_method?: "txt" | undefined;
|
|
14243
|
-
custom_client_ip_header?: "null" | "
|
|
14244
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14244
14245
|
domain_metadata?: {
|
|
14245
14246
|
[x: string]: string;
|
|
14246
14247
|
} | undefined;
|
|
@@ -14281,7 +14282,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14281
14282
|
primary: boolean;
|
|
14282
14283
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14283
14284
|
verification_method?: "txt" | undefined;
|
|
14284
|
-
custom_client_ip_header?: "null" | "
|
|
14285
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14285
14286
|
domain_metadata?: {
|
|
14286
14287
|
[x: string]: string;
|
|
14287
14288
|
} | undefined;
|
|
@@ -14336,7 +14337,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14336
14337
|
domain?: string | undefined;
|
|
14337
14338
|
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
14338
14339
|
verification_method?: "txt" | undefined;
|
|
14339
|
-
custom_client_ip_header?: "null" | "
|
|
14340
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14340
14341
|
domain_metadata?: Record<string, string> | undefined;
|
|
14341
14342
|
custom_domain_id?: string | undefined;
|
|
14342
14343
|
primary?: boolean | undefined;
|
|
@@ -14363,7 +14364,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14363
14364
|
primary: boolean;
|
|
14364
14365
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14365
14366
|
verification_method?: "txt" | undefined;
|
|
14366
|
-
custom_client_ip_header?: "null" | "
|
|
14367
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14367
14368
|
domain_metadata?: {
|
|
14368
14369
|
[x: string]: string;
|
|
14369
14370
|
} | undefined;
|
|
@@ -14399,7 +14400,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14399
14400
|
custom_domain_id?: string | undefined;
|
|
14400
14401
|
verification_method?: "txt" | undefined;
|
|
14401
14402
|
tls_policy?: "recommended" | undefined;
|
|
14402
|
-
custom_client_ip_header?: "null" | "
|
|
14403
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14403
14404
|
domain_metadata?: Record<string, string> | undefined;
|
|
14404
14405
|
};
|
|
14405
14406
|
};
|
|
@@ -14410,7 +14411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14410
14411
|
primary: boolean;
|
|
14411
14412
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14412
14413
|
verification_method?: "txt" | undefined;
|
|
14413
|
-
custom_client_ip_header?: "null" | "
|
|
14414
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14414
14415
|
domain_metadata?: {
|
|
14415
14416
|
[x: string]: string;
|
|
14416
14417
|
} | undefined;
|
|
@@ -14451,7 +14452,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14451
14452
|
primary: boolean;
|
|
14452
14453
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14453
14454
|
verification_method?: "txt" | undefined;
|
|
14454
|
-
custom_client_ip_header?: "null" | "
|
|
14455
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
14455
14456
|
domain_metadata?: {
|
|
14456
14457
|
[x: string]: string;
|
|
14457
14458
|
} | undefined;
|
|
@@ -14934,7 +14935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14934
14935
|
json: {
|
|
14935
14936
|
bindings: {
|
|
14936
14937
|
ref: {
|
|
14937
|
-
type?: "
|
|
14938
|
+
type?: "action_id" | "action_name" | undefined;
|
|
14938
14939
|
value?: string | undefined;
|
|
14939
14940
|
id?: string | undefined;
|
|
14940
14941
|
name?: string | undefined;
|
|
@@ -16167,7 +16168,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16167
16168
|
client_id: string;
|
|
16168
16169
|
redirect_url?: string | undefined;
|
|
16169
16170
|
login_hint?: string | undefined;
|
|
16170
|
-
screen_hint?: "
|
|
16171
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
16171
16172
|
};
|
|
16172
16173
|
};
|
|
16173
16174
|
output: {};
|
|
@@ -16179,7 +16180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16179
16180
|
client_id: string;
|
|
16180
16181
|
redirect_url?: string | undefined;
|
|
16181
16182
|
login_hint?: string | undefined;
|
|
16182
|
-
screen_hint?: "
|
|
16183
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
16183
16184
|
};
|
|
16184
16185
|
};
|
|
16185
16186
|
output: {
|
|
@@ -16456,19 +16457,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16456
16457
|
email: string;
|
|
16457
16458
|
send: "code" | "link";
|
|
16458
16459
|
authParams: {
|
|
16459
|
-
audience?: string | undefined;
|
|
16460
16460
|
state?: string | undefined;
|
|
16461
|
-
|
|
16462
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16463
|
-
redirect_uri?: string | undefined;
|
|
16464
|
-
nonce?: string | undefined;
|
|
16461
|
+
username?: string | undefined;
|
|
16465
16462
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16466
16463
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16467
16464
|
scope?: string | undefined;
|
|
16468
|
-
|
|
16465
|
+
audience?: string | undefined;
|
|
16469
16466
|
act_as?: string | undefined;
|
|
16467
|
+
redirect_uri?: string | undefined;
|
|
16470
16468
|
organization?: string | undefined;
|
|
16469
|
+
nonce?: string | undefined;
|
|
16471
16470
|
prompt?: string | undefined;
|
|
16471
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16472
|
+
code_challenge?: string | undefined;
|
|
16472
16473
|
ui_locales?: string | undefined;
|
|
16473
16474
|
max_age?: number | undefined;
|
|
16474
16475
|
acr_values?: string | undefined;
|
|
@@ -16492,19 +16493,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16492
16493
|
phone_number: string;
|
|
16493
16494
|
send: "code" | "link";
|
|
16494
16495
|
authParams: {
|
|
16495
|
-
audience?: string | undefined;
|
|
16496
16496
|
state?: string | undefined;
|
|
16497
|
-
|
|
16498
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16499
|
-
redirect_uri?: string | undefined;
|
|
16500
|
-
nonce?: string | undefined;
|
|
16497
|
+
username?: string | undefined;
|
|
16501
16498
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16502
16499
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16503
16500
|
scope?: string | undefined;
|
|
16504
|
-
|
|
16501
|
+
audience?: string | undefined;
|
|
16505
16502
|
act_as?: string | undefined;
|
|
16503
|
+
redirect_uri?: string | undefined;
|
|
16506
16504
|
organization?: string | undefined;
|
|
16505
|
+
nonce?: string | undefined;
|
|
16507
16506
|
prompt?: string | undefined;
|
|
16507
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16508
|
+
code_challenge?: string | undefined;
|
|
16508
16509
|
ui_locales?: string | undefined;
|
|
16509
16510
|
max_age?: number | undefined;
|
|
16510
16511
|
acr_values?: string | undefined;
|
|
@@ -17153,6 +17154,40 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17153
17154
|
grant_types_supported?: string[] | undefined;
|
|
17154
17155
|
claims_parameter_supported?: boolean | undefined;
|
|
17155
17156
|
request_object_signing_alg_values_supported?: string[] | undefined;
|
|
17157
|
+
client_id_metadata_document_supported?: boolean | undefined;
|
|
17158
|
+
};
|
|
17159
|
+
outputFormat: "json";
|
|
17160
|
+
status: 200;
|
|
17161
|
+
};
|
|
17162
|
+
};
|
|
17163
|
+
} & {
|
|
17164
|
+
"/oauth-authorization-server": {
|
|
17165
|
+
$get: {
|
|
17166
|
+
input: {};
|
|
17167
|
+
output: {
|
|
17168
|
+
issuer: string;
|
|
17169
|
+
authorization_endpoint: string;
|
|
17170
|
+
token_endpoint: string;
|
|
17171
|
+
userinfo_endpoint: string;
|
|
17172
|
+
jwks_uri: string;
|
|
17173
|
+
revocation_endpoint: string;
|
|
17174
|
+
scopes_supported: string[];
|
|
17175
|
+
response_types_supported: string[];
|
|
17176
|
+
code_challenge_methods_supported: string[];
|
|
17177
|
+
response_modes_supported: string[];
|
|
17178
|
+
subject_types_supported: string[];
|
|
17179
|
+
id_token_signing_alg_values_supported: string[];
|
|
17180
|
+
token_endpoint_auth_methods_supported: string[];
|
|
17181
|
+
claims_supported: string[];
|
|
17182
|
+
request_uri_parameter_supported: boolean;
|
|
17183
|
+
request_parameter_supported: boolean;
|
|
17184
|
+
token_endpoint_auth_signing_alg_values_supported: string[];
|
|
17185
|
+
registration_endpoint?: string | undefined;
|
|
17186
|
+
end_session_endpoint?: string | undefined;
|
|
17187
|
+
grant_types_supported?: string[] | undefined;
|
|
17188
|
+
claims_parameter_supported?: boolean | undefined;
|
|
17189
|
+
request_object_signing_alg_values_supported?: string[] | undefined;
|
|
17190
|
+
client_id_metadata_document_supported?: boolean | undefined;
|
|
17156
17191
|
};
|
|
17157
17192
|
outputFormat: "json";
|
|
17158
17193
|
status: 200;
|
|
@@ -17265,7 +17300,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17265
17300
|
};
|
|
17266
17301
|
output: {};
|
|
17267
17302
|
outputFormat: string;
|
|
17268
|
-
status:
|
|
17303
|
+
status: 302;
|
|
17269
17304
|
} | {
|
|
17270
17305
|
input: {
|
|
17271
17306
|
query: {
|
|
@@ -17279,7 +17314,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17279
17314
|
};
|
|
17280
17315
|
output: {};
|
|
17281
17316
|
outputFormat: string;
|
|
17282
|
-
status:
|
|
17317
|
+
status: 200;
|
|
17283
17318
|
} | {
|
|
17284
17319
|
input: {
|
|
17285
17320
|
query: {
|
|
@@ -18123,6 +18158,22 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18123
18158
|
Bindings: Bindings;
|
|
18124
18159
|
Variables: Variables;
|
|
18125
18160
|
}, hono_types.MergeSchemaPath<{
|
|
18161
|
+
"/info": {
|
|
18162
|
+
$get: {
|
|
18163
|
+
input: {
|
|
18164
|
+
query: {
|
|
18165
|
+
state?: string | undefined;
|
|
18166
|
+
code?: string | undefined;
|
|
18167
|
+
error?: string | undefined;
|
|
18168
|
+
error_description?: string | undefined;
|
|
18169
|
+
};
|
|
18170
|
+
};
|
|
18171
|
+
output: Response;
|
|
18172
|
+
outputFormat: "json";
|
|
18173
|
+
status: hono_utils_http_status.StatusCode;
|
|
18174
|
+
};
|
|
18175
|
+
};
|
|
18176
|
+
} & {
|
|
18126
18177
|
"/guardian/enroll": {
|
|
18127
18178
|
$get: {
|
|
18128
18179
|
input: {
|
|
@@ -18251,7 +18302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18251
18302
|
$get: {
|
|
18252
18303
|
input: {
|
|
18253
18304
|
param: {
|
|
18254
|
-
screen: "signup" | "
|
|
18305
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "account" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18255
18306
|
};
|
|
18256
18307
|
} & {
|
|
18257
18308
|
query: {
|
|
@@ -18267,7 +18318,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18267
18318
|
} | {
|
|
18268
18319
|
input: {
|
|
18269
18320
|
param: {
|
|
18270
|
-
screen: "signup" | "
|
|
18321
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "account" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18271
18322
|
};
|
|
18272
18323
|
} & {
|
|
18273
18324
|
query: {
|
|
@@ -18283,7 +18334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18283
18334
|
} | {
|
|
18284
18335
|
input: {
|
|
18285
18336
|
param: {
|
|
18286
|
-
screen: "signup" | "
|
|
18337
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "account" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18287
18338
|
};
|
|
18288
18339
|
} & {
|
|
18289
18340
|
query: {
|
|
@@ -18303,7 +18354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18303
18354
|
$post: {
|
|
18304
18355
|
input: {
|
|
18305
18356
|
param: {
|
|
18306
|
-
screen: "signup" | "
|
|
18357
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18307
18358
|
};
|
|
18308
18359
|
} & {
|
|
18309
18360
|
query: {
|
|
@@ -18321,7 +18372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18321
18372
|
} | {
|
|
18322
18373
|
input: {
|
|
18323
18374
|
param: {
|
|
18324
|
-
screen: "signup" | "
|
|
18375
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18325
18376
|
};
|
|
18326
18377
|
} & {
|
|
18327
18378
|
query: {
|
|
@@ -18339,7 +18390,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18339
18390
|
} | {
|
|
18340
18391
|
input: {
|
|
18341
18392
|
param: {
|
|
18342
|
-
screen: "signup" | "
|
|
18393
|
+
screen: "signup" | "reset-password" | "login" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18343
18394
|
};
|
|
18344
18395
|
} & {
|
|
18345
18396
|
query: {
|