authhero 5.13.1 → 5.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +129 -129
- package/dist/authhero.d.ts +248 -213
- package/dist/authhero.mjs +9869 -9741
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -3
- 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 +247 -213
- package/dist/types/routes/auth-api/index.d.ts +56 -22
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- 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 +6 -6
- 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/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hooks.d.ts +24 -24
- package/dist/types/routes/management-api/index.d.ts +185 -185
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- 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 +6 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/utils/ssrf-fetch.d.ts +8 -0
- 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: "
|
|
2463
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
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: "
|
|
2603
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "
|
|
2758
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "
|
|
2766
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "
|
|
2779
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "
|
|
2791
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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
|
};
|
|
@@ -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: "
|
|
9027
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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: "
|
|
9065
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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: "
|
|
9087
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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: "
|
|
9111
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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;
|
|
@@ -10143,7 +10144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10143
10144
|
};
|
|
10144
10145
|
};
|
|
10145
10146
|
output: ({
|
|
10146
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10147
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10147
10148
|
enabled: boolean;
|
|
10148
10149
|
synchronous: boolean;
|
|
10149
10150
|
created_at: string;
|
|
@@ -10155,7 +10156,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10155
10156
|
[x: string]: hono_utils_types.JSONValue;
|
|
10156
10157
|
} | undefined;
|
|
10157
10158
|
} | {
|
|
10158
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10159
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10159
10160
|
enabled: boolean;
|
|
10160
10161
|
synchronous: boolean;
|
|
10161
10162
|
created_at: string;
|
|
@@ -10167,7 +10168,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10167
10168
|
[x: string]: hono_utils_types.JSONValue;
|
|
10168
10169
|
} | undefined;
|
|
10169
10170
|
} | {
|
|
10170
|
-
trigger_id: "post-user-
|
|
10171
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10171
10172
|
enabled: boolean;
|
|
10172
10173
|
synchronous: boolean;
|
|
10173
10174
|
created_at: string;
|
|
@@ -10179,7 +10180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10179
10180
|
[x: string]: hono_utils_types.JSONValue;
|
|
10180
10181
|
} | undefined;
|
|
10181
10182
|
} | {
|
|
10182
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10183
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10183
10184
|
enabled: boolean;
|
|
10184
10185
|
synchronous: boolean;
|
|
10185
10186
|
created_at: string;
|
|
@@ -10195,7 +10196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10195
10196
|
limit: number;
|
|
10196
10197
|
length: number;
|
|
10197
10198
|
hooks: ({
|
|
10198
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10199
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10199
10200
|
enabled: boolean;
|
|
10200
10201
|
synchronous: boolean;
|
|
10201
10202
|
created_at: string;
|
|
@@ -10207,7 +10208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10207
10208
|
[x: string]: hono_utils_types.JSONValue;
|
|
10208
10209
|
} | undefined;
|
|
10209
10210
|
} | {
|
|
10210
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10211
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10211
10212
|
enabled: boolean;
|
|
10212
10213
|
synchronous: boolean;
|
|
10213
10214
|
created_at: string;
|
|
@@ -10219,7 +10220,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10219
10220
|
[x: string]: hono_utils_types.JSONValue;
|
|
10220
10221
|
} | undefined;
|
|
10221
10222
|
} | {
|
|
10222
|
-
trigger_id: "post-user-
|
|
10223
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10223
10224
|
enabled: boolean;
|
|
10224
10225
|
synchronous: boolean;
|
|
10225
10226
|
created_at: string;
|
|
@@ -10231,7 +10232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10231
10232
|
[x: string]: hono_utils_types.JSONValue;
|
|
10232
10233
|
} | undefined;
|
|
10233
10234
|
} | {
|
|
10234
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10235
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10235
10236
|
enabled: boolean;
|
|
10236
10237
|
synchronous: boolean;
|
|
10237
10238
|
created_at: string;
|
|
@@ -10258,7 +10259,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10258
10259
|
};
|
|
10259
10260
|
} & {
|
|
10260
10261
|
json: {
|
|
10261
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10262
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10262
10263
|
url: string;
|
|
10263
10264
|
enabled?: boolean | undefined;
|
|
10264
10265
|
synchronous?: boolean | undefined;
|
|
@@ -10266,7 +10267,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10266
10267
|
hook_id?: string | undefined;
|
|
10267
10268
|
metadata?: Record<string, unknown> | undefined;
|
|
10268
10269
|
} | {
|
|
10269
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10270
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10270
10271
|
form_id: string;
|
|
10271
10272
|
enabled?: boolean | undefined;
|
|
10272
10273
|
synchronous?: boolean | undefined;
|
|
@@ -10274,7 +10275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10274
10275
|
hook_id?: string | undefined;
|
|
10275
10276
|
metadata?: Record<string, unknown> | undefined;
|
|
10276
10277
|
} | {
|
|
10277
|
-
trigger_id: "post-user-
|
|
10278
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10278
10279
|
template_id: "ensure-username" | "set-preferred-username" | "account-linking";
|
|
10279
10280
|
enabled?: boolean | undefined;
|
|
10280
10281
|
synchronous?: boolean | undefined;
|
|
@@ -10282,7 +10283,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10282
10283
|
hook_id?: string | undefined;
|
|
10283
10284
|
metadata?: Record<string, unknown> | undefined;
|
|
10284
10285
|
} | {
|
|
10285
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10286
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10286
10287
|
code_id: string;
|
|
10287
10288
|
enabled?: boolean | undefined;
|
|
10288
10289
|
synchronous?: boolean | undefined;
|
|
@@ -10292,7 +10293,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10292
10293
|
};
|
|
10293
10294
|
};
|
|
10294
10295
|
output: {
|
|
10295
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10296
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10296
10297
|
enabled: boolean;
|
|
10297
10298
|
synchronous: boolean;
|
|
10298
10299
|
created_at: string;
|
|
@@ -10304,7 +10305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10304
10305
|
[x: string]: hono_utils_types.JSONValue;
|
|
10305
10306
|
} | undefined;
|
|
10306
10307
|
} | {
|
|
10307
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10308
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10308
10309
|
enabled: boolean;
|
|
10309
10310
|
synchronous: boolean;
|
|
10310
10311
|
created_at: string;
|
|
@@ -10316,7 +10317,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10316
10317
|
[x: string]: hono_utils_types.JSONValue;
|
|
10317
10318
|
} | undefined;
|
|
10318
10319
|
} | {
|
|
10319
|
-
trigger_id: "post-user-
|
|
10320
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10320
10321
|
enabled: boolean;
|
|
10321
10322
|
synchronous: boolean;
|
|
10322
10323
|
created_at: string;
|
|
@@ -10328,7 +10329,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10328
10329
|
[x: string]: hono_utils_types.JSONValue;
|
|
10329
10330
|
} | undefined;
|
|
10330
10331
|
} | {
|
|
10331
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10332
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10332
10333
|
enabled: boolean;
|
|
10333
10334
|
synchronous: boolean;
|
|
10334
10335
|
created_at: string;
|
|
@@ -10374,7 +10375,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10374
10375
|
json: unknown;
|
|
10375
10376
|
};
|
|
10376
10377
|
output: {
|
|
10377
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10378
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10378
10379
|
enabled: boolean;
|
|
10379
10380
|
synchronous: boolean;
|
|
10380
10381
|
created_at: string;
|
|
@@ -10386,7 +10387,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10386
10387
|
[x: string]: hono_utils_types.JSONValue;
|
|
10387
10388
|
} | undefined;
|
|
10388
10389
|
} | {
|
|
10389
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10390
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10390
10391
|
enabled: boolean;
|
|
10391
10392
|
synchronous: boolean;
|
|
10392
10393
|
created_at: string;
|
|
@@ -10398,7 +10399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10398
10399
|
[x: string]: hono_utils_types.JSONValue;
|
|
10399
10400
|
} | undefined;
|
|
10400
10401
|
} | {
|
|
10401
|
-
trigger_id: "post-user-
|
|
10402
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10402
10403
|
enabled: boolean;
|
|
10403
10404
|
synchronous: boolean;
|
|
10404
10405
|
created_at: string;
|
|
@@ -10410,7 +10411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10410
10411
|
[x: string]: hono_utils_types.JSONValue;
|
|
10411
10412
|
} | undefined;
|
|
10412
10413
|
} | {
|
|
10413
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10414
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10414
10415
|
enabled: boolean;
|
|
10415
10416
|
synchronous: boolean;
|
|
10416
10417
|
created_at: string;
|
|
@@ -10452,7 +10453,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10452
10453
|
};
|
|
10453
10454
|
};
|
|
10454
10455
|
output: {
|
|
10455
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10456
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10456
10457
|
enabled: boolean;
|
|
10457
10458
|
synchronous: boolean;
|
|
10458
10459
|
created_at: string;
|
|
@@ -10464,7 +10465,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10464
10465
|
[x: string]: hono_utils_types.JSONValue;
|
|
10465
10466
|
} | undefined;
|
|
10466
10467
|
} | {
|
|
10467
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10468
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10468
10469
|
enabled: boolean;
|
|
10469
10470
|
synchronous: boolean;
|
|
10470
10471
|
created_at: string;
|
|
@@ -10476,7 +10477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10476
10477
|
[x: string]: hono_utils_types.JSONValue;
|
|
10477
10478
|
} | undefined;
|
|
10478
10479
|
} | {
|
|
10479
|
-
trigger_id: "post-user-
|
|
10480
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
10480
10481
|
enabled: boolean;
|
|
10481
10482
|
synchronous: boolean;
|
|
10482
10483
|
created_at: string;
|
|
@@ -10488,7 +10489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10488
10489
|
[x: string]: hono_utils_types.JSONValue;
|
|
10489
10490
|
} | undefined;
|
|
10490
10491
|
} | {
|
|
10491
|
-
trigger_id: "pre-user-registration" | "post-user-
|
|
10492
|
+
trigger_id: "pre-user-registration" | "post-user-login" | "post-user-registration" | "credentials-exchange";
|
|
10492
10493
|
enabled: boolean;
|
|
10493
10494
|
synchronous: boolean;
|
|
10494
10495
|
created_at: string;
|
|
@@ -11196,7 +11197,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11196
11197
|
};
|
|
11197
11198
|
};
|
|
11198
11199
|
output: {
|
|
11199
|
-
type: "
|
|
11200
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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: "fc" | "fd" | "fn" | "i" | "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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: "fc" | "fd" | "fn" | "i" | "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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;
|
|
@@ -11603,7 +11604,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11603
11604
|
addons?: {
|
|
11604
11605
|
[x: string]: any;
|
|
11605
11606
|
} | undefined;
|
|
11606
|
-
token_endpoint_auth_method?: "none" | "
|
|
11607
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11607
11608
|
client_metadata?: {
|
|
11608
11609
|
[x: string]: string;
|
|
11609
11610
|
} | undefined;
|
|
@@ -11699,7 +11700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11699
11700
|
addons?: {
|
|
11700
11701
|
[x: string]: any;
|
|
11701
11702
|
} | undefined;
|
|
11702
|
-
token_endpoint_auth_method?: "none" | "
|
|
11703
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11703
11704
|
client_metadata?: {
|
|
11704
11705
|
[x: string]: string;
|
|
11705
11706
|
} | undefined;
|
|
@@ -11810,7 +11811,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11810
11811
|
addons?: {
|
|
11811
11812
|
[x: string]: any;
|
|
11812
11813
|
} | undefined;
|
|
11813
|
-
token_endpoint_auth_method?: "none" | "
|
|
11814
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11814
11815
|
client_metadata?: {
|
|
11815
11816
|
[x: string]: string;
|
|
11816
11817
|
} | undefined;
|
|
@@ -11920,7 +11921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11920
11921
|
custom_login_page_preview?: string | undefined;
|
|
11921
11922
|
form_template?: string | undefined;
|
|
11922
11923
|
addons?: Record<string, any> | undefined;
|
|
11923
|
-
token_endpoint_auth_method?: "none" | "
|
|
11924
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11924
11925
|
client_metadata?: Record<string, string> | undefined;
|
|
11925
11926
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
11926
11927
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12000,7 +12001,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12000
12001
|
addons?: {
|
|
12001
12002
|
[x: string]: any;
|
|
12002
12003
|
} | undefined;
|
|
12003
|
-
token_endpoint_auth_method?: "none" | "
|
|
12004
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12004
12005
|
client_metadata?: {
|
|
12005
12006
|
[x: string]: string;
|
|
12006
12007
|
} | undefined;
|
|
@@ -12089,7 +12090,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12089
12090
|
custom_login_page_preview?: string | undefined;
|
|
12090
12091
|
form_template?: string | undefined;
|
|
12091
12092
|
addons?: Record<string, any> | undefined;
|
|
12092
|
-
token_endpoint_auth_method?: "none" | "
|
|
12093
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12093
12094
|
client_metadata?: Record<string, string> | undefined;
|
|
12094
12095
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12095
12096
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12169,7 +12170,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12169
12170
|
addons?: {
|
|
12170
12171
|
[x: string]: any;
|
|
12171
12172
|
} | undefined;
|
|
12172
|
-
token_endpoint_auth_method?: "none" | "
|
|
12173
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12173
12174
|
client_metadata?: {
|
|
12174
12175
|
[x: string]: string;
|
|
12175
12176
|
} | undefined;
|
|
@@ -13433,7 +13434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13433
13434
|
};
|
|
13434
13435
|
};
|
|
13435
13436
|
output: {
|
|
13436
|
-
type: "
|
|
13437
|
+
type: "fc" | "fd" | "fn" | "i" | "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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: "fc" | "fd" | "fn" | "i" | "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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;
|
|
@@ -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;
|
|
@@ -15056,7 +15057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15056
15057
|
logs: {
|
|
15057
15058
|
action_name: string;
|
|
15058
15059
|
lines: {
|
|
15059
|
-
level: "
|
|
15060
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15060
15061
|
message: string;
|
|
15061
15062
|
}[];
|
|
15062
15063
|
}[];
|
|
@@ -15723,7 +15724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15723
15724
|
args: hono_utils_types.JSONValue[];
|
|
15724
15725
|
}[];
|
|
15725
15726
|
logs: {
|
|
15726
|
-
level: "
|
|
15727
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15727
15728
|
message: string;
|
|
15728
15729
|
}[];
|
|
15729
15730
|
error?: string | undefined;
|
|
@@ -16021,7 +16022,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16021
16022
|
scope?: string | undefined;
|
|
16022
16023
|
grant_types?: string[] | undefined;
|
|
16023
16024
|
response_types?: string[] | undefined;
|
|
16024
|
-
token_endpoint_auth_method?: "none" | "
|
|
16025
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
16025
16026
|
jwks_uri?: string | undefined;
|
|
16026
16027
|
jwks?: Record<string, unknown> | undefined;
|
|
16027
16028
|
software_id?: string | undefined;
|
|
@@ -16110,7 +16111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16110
16111
|
scope?: string | undefined;
|
|
16111
16112
|
grant_types?: string[] | undefined;
|
|
16112
16113
|
response_types?: string[] | undefined;
|
|
16113
|
-
token_endpoint_auth_method?: "none" | "
|
|
16114
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
16114
16115
|
jwks_uri?: string | undefined;
|
|
16115
16116
|
jwks?: Record<string, unknown> | undefined;
|
|
16116
16117
|
software_id?: string | undefined;
|
|
@@ -16457,18 +16458,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16457
16458
|
send: "code" | "link";
|
|
16458
16459
|
authParams: {
|
|
16459
16460
|
audience?: string | undefined;
|
|
16460
|
-
state?: string | undefined;
|
|
16461
|
-
code_challenge?: string | undefined;
|
|
16462
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16463
|
-
redirect_uri?: string | undefined;
|
|
16464
|
-
nonce?: string | undefined;
|
|
16465
16461
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16466
16462
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16467
16463
|
scope?: string | undefined;
|
|
16468
16464
|
username?: string | undefined;
|
|
16465
|
+
state?: 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;
|
|
@@ -16493,18 +16494,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16493
16494
|
send: "code" | "link";
|
|
16494
16495
|
authParams: {
|
|
16495
16496
|
audience?: string | undefined;
|
|
16496
|
-
state?: string | undefined;
|
|
16497
|
-
code_challenge?: string | undefined;
|
|
16498
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16499
|
-
redirect_uri?: string | undefined;
|
|
16500
|
-
nonce?: string | undefined;
|
|
16501
16497
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16502
16498
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16503
16499
|
scope?: string | undefined;
|
|
16504
16500
|
username?: string | undefined;
|
|
16501
|
+
state?: 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;
|
|
@@ -16734,7 +16735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16734
16735
|
client_id: string;
|
|
16735
16736
|
username: string;
|
|
16736
16737
|
otp: string;
|
|
16737
|
-
realm: "
|
|
16738
|
+
realm: "sms" | "email";
|
|
16738
16739
|
};
|
|
16739
16740
|
} & {
|
|
16740
16741
|
json: {
|
|
@@ -16770,7 +16771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16770
16771
|
client_id: string;
|
|
16771
16772
|
username: string;
|
|
16772
16773
|
otp: string;
|
|
16773
|
-
realm: "
|
|
16774
|
+
realm: "sms" | "email";
|
|
16774
16775
|
};
|
|
16775
16776
|
};
|
|
16776
16777
|
output: {};
|
|
@@ -16811,7 +16812,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16811
16812
|
client_id: string;
|
|
16812
16813
|
username: string;
|
|
16813
16814
|
otp: string;
|
|
16814
|
-
realm: "
|
|
16815
|
+
realm: "sms" | "email";
|
|
16815
16816
|
};
|
|
16816
16817
|
} & {
|
|
16817
16818
|
json: {
|
|
@@ -16847,7 +16848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16847
16848
|
client_id: string;
|
|
16848
16849
|
username: string;
|
|
16849
16850
|
otp: string;
|
|
16850
|
-
realm: "
|
|
16851
|
+
realm: "sms" | "email";
|
|
16851
16852
|
};
|
|
16852
16853
|
};
|
|
16853
16854
|
output: {
|
|
@@ -16896,7 +16897,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16896
16897
|
client_id: string;
|
|
16897
16898
|
username: string;
|
|
16898
16899
|
otp: string;
|
|
16899
|
-
realm: "
|
|
16900
|
+
realm: "sms" | "email";
|
|
16900
16901
|
};
|
|
16901
16902
|
} & {
|
|
16902
16903
|
json: {
|
|
@@ -16932,7 +16933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16932
16933
|
client_id: string;
|
|
16933
16934
|
username: string;
|
|
16934
16935
|
otp: string;
|
|
16935
|
-
realm: "
|
|
16936
|
+
realm: "sms" | "email";
|
|
16936
16937
|
};
|
|
16937
16938
|
};
|
|
16938
16939
|
output: {
|
|
@@ -16976,7 +16977,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16976
16977
|
client_id: string;
|
|
16977
16978
|
username: string;
|
|
16978
16979
|
otp: string;
|
|
16979
|
-
realm: "
|
|
16980
|
+
realm: "sms" | "email";
|
|
16980
16981
|
};
|
|
16981
16982
|
} & {
|
|
16982
16983
|
json: {
|
|
@@ -17012,7 +17013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17012
17013
|
client_id: string;
|
|
17013
17014
|
username: string;
|
|
17014
17015
|
otp: string;
|
|
17015
|
-
realm: "
|
|
17016
|
+
realm: "sms" | "email";
|
|
17016
17017
|
};
|
|
17017
17018
|
};
|
|
17018
17019
|
output: {
|
|
@@ -17056,7 +17057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17056
17057
|
client_id: string;
|
|
17057
17058
|
username: string;
|
|
17058
17059
|
otp: string;
|
|
17059
|
-
realm: "
|
|
17060
|
+
realm: "sms" | "email";
|
|
17060
17061
|
};
|
|
17061
17062
|
} & {
|
|
17062
17063
|
json: {
|
|
@@ -17092,7 +17093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17092
17093
|
client_id: string;
|
|
17093
17094
|
username: string;
|
|
17094
17095
|
otp: string;
|
|
17095
|
-
realm: "
|
|
17096
|
+
realm: "sms" | "email";
|
|
17096
17097
|
};
|
|
17097
17098
|
};
|
|
17098
17099
|
output: {
|
|
@@ -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;
|
|
@@ -18251,7 +18286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18251
18286
|
$get: {
|
|
18252
18287
|
input: {
|
|
18253
18288
|
param: {
|
|
18254
|
-
screen: "signup" | "
|
|
18289
|
+
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "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
18290
|
};
|
|
18256
18291
|
} & {
|
|
18257
18292
|
query: {
|
|
@@ -18267,7 +18302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18267
18302
|
} | {
|
|
18268
18303
|
input: {
|
|
18269
18304
|
param: {
|
|
18270
|
-
screen: "signup" | "
|
|
18305
|
+
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "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
18306
|
};
|
|
18272
18307
|
} & {
|
|
18273
18308
|
query: {
|
|
@@ -18283,7 +18318,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18283
18318
|
} | {
|
|
18284
18319
|
input: {
|
|
18285
18320
|
param: {
|
|
18286
|
-
screen: "signup" | "
|
|
18321
|
+
screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "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
18322
|
};
|
|
18288
18323
|
} & {
|
|
18289
18324
|
query: {
|
|
@@ -18303,7 +18338,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18303
18338
|
$post: {
|
|
18304
18339
|
input: {
|
|
18305
18340
|
param: {
|
|
18306
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
18341
|
+
screen: "signup" | "login" | "reset-password" | "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
18342
|
};
|
|
18308
18343
|
} & {
|
|
18309
18344
|
query: {
|
|
@@ -18321,7 +18356,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18321
18356
|
} | {
|
|
18322
18357
|
input: {
|
|
18323
18358
|
param: {
|
|
18324
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
18359
|
+
screen: "signup" | "login" | "reset-password" | "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
18360
|
};
|
|
18326
18361
|
} & {
|
|
18327
18362
|
query: {
|
|
@@ -18339,7 +18374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18339
18374
|
} | {
|
|
18340
18375
|
input: {
|
|
18341
18376
|
param: {
|
|
18342
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "
|
|
18377
|
+
screen: "signup" | "login" | "reset-password" | "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
18378
|
};
|
|
18344
18379
|
} & {
|
|
18345
18380
|
query: {
|