authhero 8.6.0 → 8.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/{p-5f7b7943.entry.js → p-5a319adc.entry.js} +1 -1
- package/dist/authhero.cjs +257 -147
- package/dist/authhero.d.ts +345 -231
- package/dist/authhero.mjs +43095 -42717
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +345 -231
- package/dist/types/routes/management-api/branding-preview.d.ts +41 -0
- package/dist/types/routes/management-api/branding.d.ts +123 -9
- package/dist/types/routes/management-api/index.d.ts +307 -193
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- 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/routes/universal-login/u2-widget-page.d.ts +33 -4
- package/dist/types/routes/universal-login/universal-login-template.d.ts +65 -13
- package/package.json +4 -4
package/dist/authhero.d.ts
CHANGED
|
@@ -2915,7 +2915,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2915
2915
|
};
|
|
2916
2916
|
} & {
|
|
2917
2917
|
json: {
|
|
2918
|
-
type: "
|
|
2918
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
2919
2919
|
phone_number?: string | undefined;
|
|
2920
2920
|
totp_secret?: string | undefined;
|
|
2921
2921
|
credential_id?: string | undefined;
|
|
@@ -3055,7 +3055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3055
3055
|
};
|
|
3056
3056
|
};
|
|
3057
3057
|
output: {
|
|
3058
|
-
name: "
|
|
3058
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3059
3059
|
enabled: boolean;
|
|
3060
3060
|
trial_expired?: boolean | undefined;
|
|
3061
3061
|
}[];
|
|
@@ -3210,7 +3210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3210
3210
|
$get: {
|
|
3211
3211
|
input: {
|
|
3212
3212
|
param: {
|
|
3213
|
-
factor_name: "
|
|
3213
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3214
3214
|
};
|
|
3215
3215
|
} & {
|
|
3216
3216
|
header: {
|
|
@@ -3218,7 +3218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3218
3218
|
};
|
|
3219
3219
|
};
|
|
3220
3220
|
output: {
|
|
3221
|
-
name: "
|
|
3221
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3222
3222
|
enabled: boolean;
|
|
3223
3223
|
trial_expired?: boolean | undefined;
|
|
3224
3224
|
};
|
|
@@ -3231,7 +3231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3231
3231
|
$put: {
|
|
3232
3232
|
input: {
|
|
3233
3233
|
param: {
|
|
3234
|
-
factor_name: "
|
|
3234
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3235
3235
|
};
|
|
3236
3236
|
} & {
|
|
3237
3237
|
header: {
|
|
@@ -3243,7 +3243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3243
3243
|
};
|
|
3244
3244
|
};
|
|
3245
3245
|
output: {
|
|
3246
|
-
name: "
|
|
3246
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3247
3247
|
enabled: boolean;
|
|
3248
3248
|
trial_expired?: boolean | undefined;
|
|
3249
3249
|
};
|
|
@@ -3989,9 +3989,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3989
3989
|
email?: string | undefined;
|
|
3990
3990
|
};
|
|
3991
3991
|
id?: string | undefined;
|
|
3992
|
-
connection_id?: string | undefined;
|
|
3993
3992
|
app_metadata?: Record<string, any> | undefined;
|
|
3994
3993
|
user_metadata?: Record<string, any> | undefined;
|
|
3994
|
+
connection_id?: string | undefined;
|
|
3995
3995
|
roles?: string[] | undefined;
|
|
3996
3996
|
ttl_sec?: number | undefined;
|
|
3997
3997
|
send_invitation_email?: boolean | undefined;
|
|
@@ -4176,8 +4176,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4176
4176
|
};
|
|
4177
4177
|
} & {
|
|
4178
4178
|
json: {
|
|
4179
|
-
show_as_button?: boolean | undefined;
|
|
4180
4179
|
assign_membership_on_login?: boolean | undefined;
|
|
4180
|
+
show_as_button?: boolean | undefined;
|
|
4181
4181
|
is_signup_enabled?: boolean | undefined;
|
|
4182
4182
|
};
|
|
4183
4183
|
};
|
|
@@ -5419,7 +5419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5419
5419
|
hint?: string | undefined;
|
|
5420
5420
|
messages?: {
|
|
5421
5421
|
text: string;
|
|
5422
|
-
type: "
|
|
5422
|
+
type: "error" | "success" | "info" | "warning";
|
|
5423
5423
|
id?: number | undefined;
|
|
5424
5424
|
}[] | undefined;
|
|
5425
5425
|
required?: boolean | undefined;
|
|
@@ -5437,7 +5437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5437
5437
|
hint?: string | undefined;
|
|
5438
5438
|
messages?: {
|
|
5439
5439
|
text: string;
|
|
5440
|
-
type: "
|
|
5440
|
+
type: "error" | "success" | "info" | "warning";
|
|
5441
5441
|
id?: number | undefined;
|
|
5442
5442
|
}[] | undefined;
|
|
5443
5443
|
required?: boolean | undefined;
|
|
@@ -5461,7 +5461,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5461
5461
|
hint?: string | undefined;
|
|
5462
5462
|
messages?: {
|
|
5463
5463
|
text: string;
|
|
5464
|
-
type: "
|
|
5464
|
+
type: "error" | "success" | "info" | "warning";
|
|
5465
5465
|
id?: number | undefined;
|
|
5466
5466
|
}[] | undefined;
|
|
5467
5467
|
required?: boolean | undefined;
|
|
@@ -5485,7 +5485,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5485
5485
|
hint?: string | undefined;
|
|
5486
5486
|
messages?: {
|
|
5487
5487
|
text: string;
|
|
5488
|
-
type: "
|
|
5488
|
+
type: "error" | "success" | "info" | "warning";
|
|
5489
5489
|
id?: number | undefined;
|
|
5490
5490
|
}[] | undefined;
|
|
5491
5491
|
required?: boolean | undefined;
|
|
@@ -5514,7 +5514,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5514
5514
|
hint?: string | undefined;
|
|
5515
5515
|
messages?: {
|
|
5516
5516
|
text: string;
|
|
5517
|
-
type: "
|
|
5517
|
+
type: "error" | "success" | "info" | "warning";
|
|
5518
5518
|
id?: number | undefined;
|
|
5519
5519
|
}[] | undefined;
|
|
5520
5520
|
required?: boolean | undefined;
|
|
@@ -5529,7 +5529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5529
5529
|
hint?: string | undefined;
|
|
5530
5530
|
messages?: {
|
|
5531
5531
|
text: string;
|
|
5532
|
-
type: "
|
|
5532
|
+
type: "error" | "success" | "info" | "warning";
|
|
5533
5533
|
id?: number | undefined;
|
|
5534
5534
|
}[] | undefined;
|
|
5535
5535
|
required?: boolean | undefined;
|
|
@@ -5550,7 +5550,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5550
5550
|
hint?: string | undefined;
|
|
5551
5551
|
messages?: {
|
|
5552
5552
|
text: string;
|
|
5553
|
-
type: "
|
|
5553
|
+
type: "error" | "success" | "info" | "warning";
|
|
5554
5554
|
id?: number | undefined;
|
|
5555
5555
|
}[] | undefined;
|
|
5556
5556
|
required?: boolean | undefined;
|
|
@@ -5575,7 +5575,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5575
5575
|
hint?: string | undefined;
|
|
5576
5576
|
messages?: {
|
|
5577
5577
|
text: string;
|
|
5578
|
-
type: "
|
|
5578
|
+
type: "error" | "success" | "info" | "warning";
|
|
5579
5579
|
id?: number | undefined;
|
|
5580
5580
|
}[] | undefined;
|
|
5581
5581
|
required?: boolean | undefined;
|
|
@@ -5594,7 +5594,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5594
5594
|
hint?: string | undefined;
|
|
5595
5595
|
messages?: {
|
|
5596
5596
|
text: string;
|
|
5597
|
-
type: "
|
|
5597
|
+
type: "error" | "success" | "info" | "warning";
|
|
5598
5598
|
id?: number | undefined;
|
|
5599
5599
|
}[] | undefined;
|
|
5600
5600
|
required?: boolean | undefined;
|
|
@@ -5614,7 +5614,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5614
5614
|
hint?: string | undefined;
|
|
5615
5615
|
messages?: {
|
|
5616
5616
|
text: string;
|
|
5617
|
-
type: "
|
|
5617
|
+
type: "error" | "success" | "info" | "warning";
|
|
5618
5618
|
id?: number | undefined;
|
|
5619
5619
|
}[] | undefined;
|
|
5620
5620
|
required?: boolean | undefined;
|
|
@@ -5633,7 +5633,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5633
5633
|
hint?: string | undefined;
|
|
5634
5634
|
messages?: {
|
|
5635
5635
|
text: string;
|
|
5636
|
-
type: "
|
|
5636
|
+
type: "error" | "success" | "info" | "warning";
|
|
5637
5637
|
id?: number | undefined;
|
|
5638
5638
|
}[] | undefined;
|
|
5639
5639
|
required?: boolean | undefined;
|
|
@@ -5655,7 +5655,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5655
5655
|
hint?: string | undefined;
|
|
5656
5656
|
messages?: {
|
|
5657
5657
|
text: string;
|
|
5658
|
-
type: "
|
|
5658
|
+
type: "error" | "success" | "info" | "warning";
|
|
5659
5659
|
id?: number | undefined;
|
|
5660
5660
|
}[] | undefined;
|
|
5661
5661
|
required?: boolean | undefined;
|
|
@@ -5677,7 +5677,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5677
5677
|
hint?: string | undefined;
|
|
5678
5678
|
messages?: {
|
|
5679
5679
|
text: string;
|
|
5680
|
-
type: "
|
|
5680
|
+
type: "error" | "success" | "info" | "warning";
|
|
5681
5681
|
id?: number | undefined;
|
|
5682
5682
|
}[] | undefined;
|
|
5683
5683
|
required?: boolean | undefined;
|
|
@@ -5696,7 +5696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5696
5696
|
hint?: string | undefined;
|
|
5697
5697
|
messages?: {
|
|
5698
5698
|
text: string;
|
|
5699
|
-
type: "
|
|
5699
|
+
type: "error" | "success" | "info" | "warning";
|
|
5700
5700
|
id?: number | undefined;
|
|
5701
5701
|
}[] | undefined;
|
|
5702
5702
|
required?: boolean | undefined;
|
|
@@ -5721,7 +5721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5721
5721
|
hint?: string | undefined;
|
|
5722
5722
|
messages?: {
|
|
5723
5723
|
text: string;
|
|
5724
|
-
type: "
|
|
5724
|
+
type: "error" | "success" | "info" | "warning";
|
|
5725
5725
|
id?: number | undefined;
|
|
5726
5726
|
}[] | undefined;
|
|
5727
5727
|
required?: boolean | undefined;
|
|
@@ -5742,7 +5742,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5742
5742
|
hint?: string | undefined;
|
|
5743
5743
|
messages?: {
|
|
5744
5744
|
text: string;
|
|
5745
|
-
type: "
|
|
5745
|
+
type: "error" | "success" | "info" | "warning";
|
|
5746
5746
|
id?: number | undefined;
|
|
5747
5747
|
}[] | undefined;
|
|
5748
5748
|
required?: boolean | undefined;
|
|
@@ -5763,7 +5763,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5763
5763
|
hint?: string | undefined;
|
|
5764
5764
|
messages?: {
|
|
5765
5765
|
text: string;
|
|
5766
|
-
type: "
|
|
5766
|
+
type: "error" | "success" | "info" | "warning";
|
|
5767
5767
|
id?: number | undefined;
|
|
5768
5768
|
}[] | undefined;
|
|
5769
5769
|
required?: boolean | undefined;
|
|
@@ -5996,7 +5996,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5996
5996
|
hint?: string | undefined;
|
|
5997
5997
|
messages?: {
|
|
5998
5998
|
text: string;
|
|
5999
|
-
type: "
|
|
5999
|
+
type: "error" | "success" | "info" | "warning";
|
|
6000
6000
|
id?: number | undefined;
|
|
6001
6001
|
}[] | undefined;
|
|
6002
6002
|
required?: boolean | undefined;
|
|
@@ -6014,7 +6014,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6014
6014
|
hint?: string | undefined;
|
|
6015
6015
|
messages?: {
|
|
6016
6016
|
text: string;
|
|
6017
|
-
type: "
|
|
6017
|
+
type: "error" | "success" | "info" | "warning";
|
|
6018
6018
|
id?: number | undefined;
|
|
6019
6019
|
}[] | undefined;
|
|
6020
6020
|
required?: boolean | undefined;
|
|
@@ -6038,7 +6038,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6038
6038
|
hint?: string | undefined;
|
|
6039
6039
|
messages?: {
|
|
6040
6040
|
text: string;
|
|
6041
|
-
type: "
|
|
6041
|
+
type: "error" | "success" | "info" | "warning";
|
|
6042
6042
|
id?: number | undefined;
|
|
6043
6043
|
}[] | undefined;
|
|
6044
6044
|
required?: boolean | undefined;
|
|
@@ -6062,7 +6062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6062
6062
|
hint?: string | undefined;
|
|
6063
6063
|
messages?: {
|
|
6064
6064
|
text: string;
|
|
6065
|
-
type: "
|
|
6065
|
+
type: "error" | "success" | "info" | "warning";
|
|
6066
6066
|
id?: number | undefined;
|
|
6067
6067
|
}[] | undefined;
|
|
6068
6068
|
required?: boolean | undefined;
|
|
@@ -6091,7 +6091,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6091
6091
|
hint?: string | undefined;
|
|
6092
6092
|
messages?: {
|
|
6093
6093
|
text: string;
|
|
6094
|
-
type: "
|
|
6094
|
+
type: "error" | "success" | "info" | "warning";
|
|
6095
6095
|
id?: number | undefined;
|
|
6096
6096
|
}[] | undefined;
|
|
6097
6097
|
required?: boolean | undefined;
|
|
@@ -6106,7 +6106,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6106
6106
|
hint?: string | undefined;
|
|
6107
6107
|
messages?: {
|
|
6108
6108
|
text: string;
|
|
6109
|
-
type: "
|
|
6109
|
+
type: "error" | "success" | "info" | "warning";
|
|
6110
6110
|
id?: number | undefined;
|
|
6111
6111
|
}[] | undefined;
|
|
6112
6112
|
required?: boolean | undefined;
|
|
@@ -6127,7 +6127,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6127
6127
|
hint?: string | undefined;
|
|
6128
6128
|
messages?: {
|
|
6129
6129
|
text: string;
|
|
6130
|
-
type: "
|
|
6130
|
+
type: "error" | "success" | "info" | "warning";
|
|
6131
6131
|
id?: number | undefined;
|
|
6132
6132
|
}[] | undefined;
|
|
6133
6133
|
required?: boolean | undefined;
|
|
@@ -6152,7 +6152,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6152
6152
|
hint?: string | undefined;
|
|
6153
6153
|
messages?: {
|
|
6154
6154
|
text: string;
|
|
6155
|
-
type: "
|
|
6155
|
+
type: "error" | "success" | "info" | "warning";
|
|
6156
6156
|
id?: number | undefined;
|
|
6157
6157
|
}[] | undefined;
|
|
6158
6158
|
required?: boolean | undefined;
|
|
@@ -6171,7 +6171,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6171
6171
|
hint?: string | undefined;
|
|
6172
6172
|
messages?: {
|
|
6173
6173
|
text: string;
|
|
6174
|
-
type: "
|
|
6174
|
+
type: "error" | "success" | "info" | "warning";
|
|
6175
6175
|
id?: number | undefined;
|
|
6176
6176
|
}[] | undefined;
|
|
6177
6177
|
required?: boolean | undefined;
|
|
@@ -6191,7 +6191,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6191
6191
|
hint?: string | undefined;
|
|
6192
6192
|
messages?: {
|
|
6193
6193
|
text: string;
|
|
6194
|
-
type: "
|
|
6194
|
+
type: "error" | "success" | "info" | "warning";
|
|
6195
6195
|
id?: number | undefined;
|
|
6196
6196
|
}[] | undefined;
|
|
6197
6197
|
required?: boolean | undefined;
|
|
@@ -6210,7 +6210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6210
6210
|
hint?: string | undefined;
|
|
6211
6211
|
messages?: {
|
|
6212
6212
|
text: string;
|
|
6213
|
-
type: "
|
|
6213
|
+
type: "error" | "success" | "info" | "warning";
|
|
6214
6214
|
id?: number | undefined;
|
|
6215
6215
|
}[] | undefined;
|
|
6216
6216
|
required?: boolean | undefined;
|
|
@@ -6232,7 +6232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6232
6232
|
hint?: string | undefined;
|
|
6233
6233
|
messages?: {
|
|
6234
6234
|
text: string;
|
|
6235
|
-
type: "
|
|
6235
|
+
type: "error" | "success" | "info" | "warning";
|
|
6236
6236
|
id?: number | undefined;
|
|
6237
6237
|
}[] | undefined;
|
|
6238
6238
|
required?: boolean | undefined;
|
|
@@ -6254,7 +6254,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6254
6254
|
hint?: string | undefined;
|
|
6255
6255
|
messages?: {
|
|
6256
6256
|
text: string;
|
|
6257
|
-
type: "
|
|
6257
|
+
type: "error" | "success" | "info" | "warning";
|
|
6258
6258
|
id?: number | undefined;
|
|
6259
6259
|
}[] | undefined;
|
|
6260
6260
|
required?: boolean | undefined;
|
|
@@ -6273,7 +6273,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6273
6273
|
hint?: string | undefined;
|
|
6274
6274
|
messages?: {
|
|
6275
6275
|
text: string;
|
|
6276
|
-
type: "
|
|
6276
|
+
type: "error" | "success" | "info" | "warning";
|
|
6277
6277
|
id?: number | undefined;
|
|
6278
6278
|
}[] | undefined;
|
|
6279
6279
|
required?: boolean | undefined;
|
|
@@ -6298,7 +6298,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6298
6298
|
hint?: string | undefined;
|
|
6299
6299
|
messages?: {
|
|
6300
6300
|
text: string;
|
|
6301
|
-
type: "
|
|
6301
|
+
type: "error" | "success" | "info" | "warning";
|
|
6302
6302
|
id?: number | undefined;
|
|
6303
6303
|
}[] | undefined;
|
|
6304
6304
|
required?: boolean | undefined;
|
|
@@ -6319,7 +6319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6319
6319
|
hint?: string | undefined;
|
|
6320
6320
|
messages?: {
|
|
6321
6321
|
text: string;
|
|
6322
|
-
type: "
|
|
6322
|
+
type: "error" | "success" | "info" | "warning";
|
|
6323
6323
|
id?: number | undefined;
|
|
6324
6324
|
}[] | undefined;
|
|
6325
6325
|
required?: boolean | undefined;
|
|
@@ -6340,7 +6340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6340
6340
|
hint?: string | undefined;
|
|
6341
6341
|
messages?: {
|
|
6342
6342
|
text: string;
|
|
6343
|
-
type: "
|
|
6343
|
+
type: "error" | "success" | "info" | "warning";
|
|
6344
6344
|
id?: number | undefined;
|
|
6345
6345
|
}[] | undefined;
|
|
6346
6346
|
required?: boolean | undefined;
|
|
@@ -6588,7 +6588,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6588
6588
|
hint?: string | undefined;
|
|
6589
6589
|
messages?: {
|
|
6590
6590
|
text: string;
|
|
6591
|
-
type: "
|
|
6591
|
+
type: "error" | "success" | "info" | "warning";
|
|
6592
6592
|
id?: number | undefined;
|
|
6593
6593
|
}[] | undefined;
|
|
6594
6594
|
required?: boolean | undefined;
|
|
@@ -6606,7 +6606,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6606
6606
|
hint?: string | undefined;
|
|
6607
6607
|
messages?: {
|
|
6608
6608
|
text: string;
|
|
6609
|
-
type: "
|
|
6609
|
+
type: "error" | "success" | "info" | "warning";
|
|
6610
6610
|
id?: number | undefined;
|
|
6611
6611
|
}[] | undefined;
|
|
6612
6612
|
required?: boolean | undefined;
|
|
@@ -6630,7 +6630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6630
6630
|
hint?: string | undefined;
|
|
6631
6631
|
messages?: {
|
|
6632
6632
|
text: string;
|
|
6633
|
-
type: "
|
|
6633
|
+
type: "error" | "success" | "info" | "warning";
|
|
6634
6634
|
id?: number | undefined;
|
|
6635
6635
|
}[] | undefined;
|
|
6636
6636
|
required?: boolean | undefined;
|
|
@@ -6654,7 +6654,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6654
6654
|
hint?: string | undefined;
|
|
6655
6655
|
messages?: {
|
|
6656
6656
|
text: string;
|
|
6657
|
-
type: "
|
|
6657
|
+
type: "error" | "success" | "info" | "warning";
|
|
6658
6658
|
id?: number | undefined;
|
|
6659
6659
|
}[] | undefined;
|
|
6660
6660
|
required?: boolean | undefined;
|
|
@@ -6683,7 +6683,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6683
6683
|
hint?: string | undefined;
|
|
6684
6684
|
messages?: {
|
|
6685
6685
|
text: string;
|
|
6686
|
-
type: "
|
|
6686
|
+
type: "error" | "success" | "info" | "warning";
|
|
6687
6687
|
id?: number | undefined;
|
|
6688
6688
|
}[] | undefined;
|
|
6689
6689
|
required?: boolean | undefined;
|
|
@@ -6698,7 +6698,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6698
6698
|
hint?: string | undefined;
|
|
6699
6699
|
messages?: {
|
|
6700
6700
|
text: string;
|
|
6701
|
-
type: "
|
|
6701
|
+
type: "error" | "success" | "info" | "warning";
|
|
6702
6702
|
id?: number | undefined;
|
|
6703
6703
|
}[] | undefined;
|
|
6704
6704
|
required?: boolean | undefined;
|
|
@@ -6719,7 +6719,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6719
6719
|
hint?: string | undefined;
|
|
6720
6720
|
messages?: {
|
|
6721
6721
|
text: string;
|
|
6722
|
-
type: "
|
|
6722
|
+
type: "error" | "success" | "info" | "warning";
|
|
6723
6723
|
id?: number | undefined;
|
|
6724
6724
|
}[] | undefined;
|
|
6725
6725
|
required?: boolean | undefined;
|
|
@@ -6744,7 +6744,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6744
6744
|
hint?: string | undefined;
|
|
6745
6745
|
messages?: {
|
|
6746
6746
|
text: string;
|
|
6747
|
-
type: "
|
|
6747
|
+
type: "error" | "success" | "info" | "warning";
|
|
6748
6748
|
id?: number | undefined;
|
|
6749
6749
|
}[] | undefined;
|
|
6750
6750
|
required?: boolean | undefined;
|
|
@@ -6763,7 +6763,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6763
6763
|
hint?: string | undefined;
|
|
6764
6764
|
messages?: {
|
|
6765
6765
|
text: string;
|
|
6766
|
-
type: "
|
|
6766
|
+
type: "error" | "success" | "info" | "warning";
|
|
6767
6767
|
id?: number | undefined;
|
|
6768
6768
|
}[] | undefined;
|
|
6769
6769
|
required?: boolean | undefined;
|
|
@@ -6783,7 +6783,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6783
6783
|
hint?: string | undefined;
|
|
6784
6784
|
messages?: {
|
|
6785
6785
|
text: string;
|
|
6786
|
-
type: "
|
|
6786
|
+
type: "error" | "success" | "info" | "warning";
|
|
6787
6787
|
id?: number | undefined;
|
|
6788
6788
|
}[] | undefined;
|
|
6789
6789
|
required?: boolean | undefined;
|
|
@@ -6802,7 +6802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6802
6802
|
hint?: string | undefined;
|
|
6803
6803
|
messages?: {
|
|
6804
6804
|
text: string;
|
|
6805
|
-
type: "
|
|
6805
|
+
type: "error" | "success" | "info" | "warning";
|
|
6806
6806
|
id?: number | undefined;
|
|
6807
6807
|
}[] | undefined;
|
|
6808
6808
|
required?: boolean | undefined;
|
|
@@ -6824,7 +6824,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6824
6824
|
hint?: string | undefined;
|
|
6825
6825
|
messages?: {
|
|
6826
6826
|
text: string;
|
|
6827
|
-
type: "
|
|
6827
|
+
type: "error" | "success" | "info" | "warning";
|
|
6828
6828
|
id?: number | undefined;
|
|
6829
6829
|
}[] | undefined;
|
|
6830
6830
|
required?: boolean | undefined;
|
|
@@ -6846,7 +6846,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6846
6846
|
hint?: string | undefined;
|
|
6847
6847
|
messages?: {
|
|
6848
6848
|
text: string;
|
|
6849
|
-
type: "
|
|
6849
|
+
type: "error" | "success" | "info" | "warning";
|
|
6850
6850
|
id?: number | undefined;
|
|
6851
6851
|
}[] | undefined;
|
|
6852
6852
|
required?: boolean | undefined;
|
|
@@ -6865,7 +6865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6865
6865
|
hint?: string | undefined;
|
|
6866
6866
|
messages?: {
|
|
6867
6867
|
text: string;
|
|
6868
|
-
type: "
|
|
6868
|
+
type: "error" | "success" | "info" | "warning";
|
|
6869
6869
|
id?: number | undefined;
|
|
6870
6870
|
}[] | undefined;
|
|
6871
6871
|
required?: boolean | undefined;
|
|
@@ -6890,7 +6890,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6890
6890
|
hint?: string | undefined;
|
|
6891
6891
|
messages?: {
|
|
6892
6892
|
text: string;
|
|
6893
|
-
type: "
|
|
6893
|
+
type: "error" | "success" | "info" | "warning";
|
|
6894
6894
|
id?: number | undefined;
|
|
6895
6895
|
}[] | undefined;
|
|
6896
6896
|
required?: boolean | undefined;
|
|
@@ -6911,7 +6911,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6911
6911
|
hint?: string | undefined;
|
|
6912
6912
|
messages?: {
|
|
6913
6913
|
text: string;
|
|
6914
|
-
type: "
|
|
6914
|
+
type: "error" | "success" | "info" | "warning";
|
|
6915
6915
|
id?: number | undefined;
|
|
6916
6916
|
}[] | undefined;
|
|
6917
6917
|
required?: boolean | undefined;
|
|
@@ -6932,7 +6932,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6932
6932
|
hint?: string | undefined;
|
|
6933
6933
|
messages?: {
|
|
6934
6934
|
text: string;
|
|
6935
|
-
type: "
|
|
6935
|
+
type: "error" | "success" | "info" | "warning";
|
|
6936
6936
|
id?: number | undefined;
|
|
6937
6937
|
}[] | undefined;
|
|
6938
6938
|
required?: boolean | undefined;
|
|
@@ -7186,7 +7186,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7186
7186
|
hint?: string | undefined;
|
|
7187
7187
|
messages?: {
|
|
7188
7188
|
text: string;
|
|
7189
|
-
type: "
|
|
7189
|
+
type: "error" | "success" | "info" | "warning";
|
|
7190
7190
|
id?: number | undefined;
|
|
7191
7191
|
}[] | undefined;
|
|
7192
7192
|
required?: boolean | undefined;
|
|
@@ -7204,7 +7204,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7204
7204
|
hint?: string | undefined;
|
|
7205
7205
|
messages?: {
|
|
7206
7206
|
text: string;
|
|
7207
|
-
type: "
|
|
7207
|
+
type: "error" | "success" | "info" | "warning";
|
|
7208
7208
|
id?: number | undefined;
|
|
7209
7209
|
}[] | undefined;
|
|
7210
7210
|
required?: boolean | undefined;
|
|
@@ -7228,7 +7228,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7228
7228
|
hint?: string | undefined;
|
|
7229
7229
|
messages?: {
|
|
7230
7230
|
text: string;
|
|
7231
|
-
type: "
|
|
7231
|
+
type: "error" | "success" | "info" | "warning";
|
|
7232
7232
|
id?: number | undefined;
|
|
7233
7233
|
}[] | undefined;
|
|
7234
7234
|
required?: boolean | undefined;
|
|
@@ -7252,7 +7252,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7252
7252
|
hint?: string | undefined;
|
|
7253
7253
|
messages?: {
|
|
7254
7254
|
text: string;
|
|
7255
|
-
type: "
|
|
7255
|
+
type: "error" | "success" | "info" | "warning";
|
|
7256
7256
|
id?: number | undefined;
|
|
7257
7257
|
}[] | undefined;
|
|
7258
7258
|
required?: boolean | undefined;
|
|
@@ -7277,7 +7277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7277
7277
|
hint?: string | undefined;
|
|
7278
7278
|
messages?: {
|
|
7279
7279
|
text: string;
|
|
7280
|
-
type: "
|
|
7280
|
+
type: "error" | "success" | "info" | "warning";
|
|
7281
7281
|
id?: number | undefined;
|
|
7282
7282
|
}[] | undefined;
|
|
7283
7283
|
required?: boolean | undefined;
|
|
@@ -7292,7 +7292,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7292
7292
|
hint?: string | undefined;
|
|
7293
7293
|
messages?: {
|
|
7294
7294
|
text: string;
|
|
7295
|
-
type: "
|
|
7295
|
+
type: "error" | "success" | "info" | "warning";
|
|
7296
7296
|
id?: number | undefined;
|
|
7297
7297
|
}[] | undefined;
|
|
7298
7298
|
required?: boolean | undefined;
|
|
@@ -7313,7 +7313,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7313
7313
|
hint?: string | undefined;
|
|
7314
7314
|
messages?: {
|
|
7315
7315
|
text: string;
|
|
7316
|
-
type: "
|
|
7316
|
+
type: "error" | "success" | "info" | "warning";
|
|
7317
7317
|
id?: number | undefined;
|
|
7318
7318
|
}[] | undefined;
|
|
7319
7319
|
required?: boolean | undefined;
|
|
@@ -7338,7 +7338,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7338
7338
|
hint?: string | undefined;
|
|
7339
7339
|
messages?: {
|
|
7340
7340
|
text: string;
|
|
7341
|
-
type: "
|
|
7341
|
+
type: "error" | "success" | "info" | "warning";
|
|
7342
7342
|
id?: number | undefined;
|
|
7343
7343
|
}[] | undefined;
|
|
7344
7344
|
required?: boolean | undefined;
|
|
@@ -7357,7 +7357,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7357
7357
|
hint?: string | undefined;
|
|
7358
7358
|
messages?: {
|
|
7359
7359
|
text: string;
|
|
7360
|
-
type: "
|
|
7360
|
+
type: "error" | "success" | "info" | "warning";
|
|
7361
7361
|
id?: number | undefined;
|
|
7362
7362
|
}[] | undefined;
|
|
7363
7363
|
required?: boolean | undefined;
|
|
@@ -7377,7 +7377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7377
7377
|
hint?: string | undefined;
|
|
7378
7378
|
messages?: {
|
|
7379
7379
|
text: string;
|
|
7380
|
-
type: "
|
|
7380
|
+
type: "error" | "success" | "info" | "warning";
|
|
7381
7381
|
id?: number | undefined;
|
|
7382
7382
|
}[] | undefined;
|
|
7383
7383
|
required?: boolean | undefined;
|
|
@@ -7396,7 +7396,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7396
7396
|
hint?: string | undefined;
|
|
7397
7397
|
messages?: {
|
|
7398
7398
|
text: string;
|
|
7399
|
-
type: "
|
|
7399
|
+
type: "error" | "success" | "info" | "warning";
|
|
7400
7400
|
id?: number | undefined;
|
|
7401
7401
|
}[] | undefined;
|
|
7402
7402
|
required?: boolean | undefined;
|
|
@@ -7418,7 +7418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7418
7418
|
hint?: string | undefined;
|
|
7419
7419
|
messages?: {
|
|
7420
7420
|
text: string;
|
|
7421
|
-
type: "
|
|
7421
|
+
type: "error" | "success" | "info" | "warning";
|
|
7422
7422
|
id?: number | undefined;
|
|
7423
7423
|
}[] | undefined;
|
|
7424
7424
|
required?: boolean | undefined;
|
|
@@ -7440,7 +7440,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7440
7440
|
hint?: string | undefined;
|
|
7441
7441
|
messages?: {
|
|
7442
7442
|
text: string;
|
|
7443
|
-
type: "
|
|
7443
|
+
type: "error" | "success" | "info" | "warning";
|
|
7444
7444
|
id?: number | undefined;
|
|
7445
7445
|
}[] | undefined;
|
|
7446
7446
|
required?: boolean | undefined;
|
|
@@ -7459,7 +7459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7459
7459
|
hint?: string | undefined;
|
|
7460
7460
|
messages?: {
|
|
7461
7461
|
text: string;
|
|
7462
|
-
type: "
|
|
7462
|
+
type: "error" | "success" | "info" | "warning";
|
|
7463
7463
|
id?: number | undefined;
|
|
7464
7464
|
}[] | undefined;
|
|
7465
7465
|
required?: boolean | undefined;
|
|
@@ -7484,7 +7484,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7484
7484
|
hint?: string | undefined;
|
|
7485
7485
|
messages?: {
|
|
7486
7486
|
text: string;
|
|
7487
|
-
type: "
|
|
7487
|
+
type: "error" | "success" | "info" | "warning";
|
|
7488
7488
|
id?: number | undefined;
|
|
7489
7489
|
}[] | undefined;
|
|
7490
7490
|
required?: boolean | undefined;
|
|
@@ -7505,7 +7505,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7505
7505
|
hint?: string | undefined;
|
|
7506
7506
|
messages?: {
|
|
7507
7507
|
text: string;
|
|
7508
|
-
type: "
|
|
7508
|
+
type: "error" | "success" | "info" | "warning";
|
|
7509
7509
|
id?: number | undefined;
|
|
7510
7510
|
}[] | undefined;
|
|
7511
7511
|
required?: boolean | undefined;
|
|
@@ -7526,7 +7526,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7526
7526
|
hint?: string | undefined;
|
|
7527
7527
|
messages?: {
|
|
7528
7528
|
text: string;
|
|
7529
|
-
type: "
|
|
7529
|
+
type: "error" | "success" | "info" | "warning";
|
|
7530
7530
|
id?: number | undefined;
|
|
7531
7531
|
}[] | undefined;
|
|
7532
7532
|
required?: boolean | undefined;
|
|
@@ -7757,7 +7757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7757
7757
|
hint?: string | undefined;
|
|
7758
7758
|
messages?: {
|
|
7759
7759
|
text: string;
|
|
7760
|
-
type: "
|
|
7760
|
+
type: "error" | "success" | "info" | "warning";
|
|
7761
7761
|
id?: number | undefined;
|
|
7762
7762
|
}[] | undefined;
|
|
7763
7763
|
required?: boolean | undefined;
|
|
@@ -7775,7 +7775,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7775
7775
|
hint?: string | undefined;
|
|
7776
7776
|
messages?: {
|
|
7777
7777
|
text: string;
|
|
7778
|
-
type: "
|
|
7778
|
+
type: "error" | "success" | "info" | "warning";
|
|
7779
7779
|
id?: number | undefined;
|
|
7780
7780
|
}[] | undefined;
|
|
7781
7781
|
required?: boolean | undefined;
|
|
@@ -7799,7 +7799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7799
7799
|
hint?: string | undefined;
|
|
7800
7800
|
messages?: {
|
|
7801
7801
|
text: string;
|
|
7802
|
-
type: "
|
|
7802
|
+
type: "error" | "success" | "info" | "warning";
|
|
7803
7803
|
id?: number | undefined;
|
|
7804
7804
|
}[] | undefined;
|
|
7805
7805
|
required?: boolean | undefined;
|
|
@@ -7823,7 +7823,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7823
7823
|
hint?: string | undefined;
|
|
7824
7824
|
messages?: {
|
|
7825
7825
|
text: string;
|
|
7826
|
-
type: "
|
|
7826
|
+
type: "error" | "success" | "info" | "warning";
|
|
7827
7827
|
id?: number | undefined;
|
|
7828
7828
|
}[] | undefined;
|
|
7829
7829
|
required?: boolean | undefined;
|
|
@@ -7852,7 +7852,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7852
7852
|
hint?: string | undefined;
|
|
7853
7853
|
messages?: {
|
|
7854
7854
|
text: string;
|
|
7855
|
-
type: "
|
|
7855
|
+
type: "error" | "success" | "info" | "warning";
|
|
7856
7856
|
id?: number | undefined;
|
|
7857
7857
|
}[] | undefined;
|
|
7858
7858
|
required?: boolean | undefined;
|
|
@@ -7867,7 +7867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7867
7867
|
hint?: string | undefined;
|
|
7868
7868
|
messages?: {
|
|
7869
7869
|
text: string;
|
|
7870
|
-
type: "
|
|
7870
|
+
type: "error" | "success" | "info" | "warning";
|
|
7871
7871
|
id?: number | undefined;
|
|
7872
7872
|
}[] | undefined;
|
|
7873
7873
|
required?: boolean | undefined;
|
|
@@ -7888,7 +7888,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7888
7888
|
hint?: string | undefined;
|
|
7889
7889
|
messages?: {
|
|
7890
7890
|
text: string;
|
|
7891
|
-
type: "
|
|
7891
|
+
type: "error" | "success" | "info" | "warning";
|
|
7892
7892
|
id?: number | undefined;
|
|
7893
7893
|
}[] | undefined;
|
|
7894
7894
|
required?: boolean | undefined;
|
|
@@ -7913,7 +7913,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7913
7913
|
hint?: string | undefined;
|
|
7914
7914
|
messages?: {
|
|
7915
7915
|
text: string;
|
|
7916
|
-
type: "
|
|
7916
|
+
type: "error" | "success" | "info" | "warning";
|
|
7917
7917
|
id?: number | undefined;
|
|
7918
7918
|
}[] | undefined;
|
|
7919
7919
|
required?: boolean | undefined;
|
|
@@ -7932,7 +7932,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7932
7932
|
hint?: string | undefined;
|
|
7933
7933
|
messages?: {
|
|
7934
7934
|
text: string;
|
|
7935
|
-
type: "
|
|
7935
|
+
type: "error" | "success" | "info" | "warning";
|
|
7936
7936
|
id?: number | undefined;
|
|
7937
7937
|
}[] | undefined;
|
|
7938
7938
|
required?: boolean | undefined;
|
|
@@ -7952,7 +7952,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7952
7952
|
hint?: string | undefined;
|
|
7953
7953
|
messages?: {
|
|
7954
7954
|
text: string;
|
|
7955
|
-
type: "
|
|
7955
|
+
type: "error" | "success" | "info" | "warning";
|
|
7956
7956
|
id?: number | undefined;
|
|
7957
7957
|
}[] | undefined;
|
|
7958
7958
|
required?: boolean | undefined;
|
|
@@ -7971,7 +7971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7971
7971
|
hint?: string | undefined;
|
|
7972
7972
|
messages?: {
|
|
7973
7973
|
text: string;
|
|
7974
|
-
type: "
|
|
7974
|
+
type: "error" | "success" | "info" | "warning";
|
|
7975
7975
|
id?: number | undefined;
|
|
7976
7976
|
}[] | undefined;
|
|
7977
7977
|
required?: boolean | undefined;
|
|
@@ -7993,7 +7993,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7993
7993
|
hint?: string | undefined;
|
|
7994
7994
|
messages?: {
|
|
7995
7995
|
text: string;
|
|
7996
|
-
type: "
|
|
7996
|
+
type: "error" | "success" | "info" | "warning";
|
|
7997
7997
|
id?: number | undefined;
|
|
7998
7998
|
}[] | undefined;
|
|
7999
7999
|
required?: boolean | undefined;
|
|
@@ -8015,7 +8015,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8015
8015
|
hint?: string | undefined;
|
|
8016
8016
|
messages?: {
|
|
8017
8017
|
text: string;
|
|
8018
|
-
type: "
|
|
8018
|
+
type: "error" | "success" | "info" | "warning";
|
|
8019
8019
|
id?: number | undefined;
|
|
8020
8020
|
}[] | undefined;
|
|
8021
8021
|
required?: boolean | undefined;
|
|
@@ -8034,7 +8034,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8034
8034
|
hint?: string | undefined;
|
|
8035
8035
|
messages?: {
|
|
8036
8036
|
text: string;
|
|
8037
|
-
type: "
|
|
8037
|
+
type: "error" | "success" | "info" | "warning";
|
|
8038
8038
|
id?: number | undefined;
|
|
8039
8039
|
}[] | undefined;
|
|
8040
8040
|
required?: boolean | undefined;
|
|
@@ -8059,7 +8059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8059
8059
|
hint?: string | undefined;
|
|
8060
8060
|
messages?: {
|
|
8061
8061
|
text: string;
|
|
8062
|
-
type: "
|
|
8062
|
+
type: "error" | "success" | "info" | "warning";
|
|
8063
8063
|
id?: number | undefined;
|
|
8064
8064
|
}[] | undefined;
|
|
8065
8065
|
required?: boolean | undefined;
|
|
@@ -8080,7 +8080,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8080
8080
|
hint?: string | undefined;
|
|
8081
8081
|
messages?: {
|
|
8082
8082
|
text: string;
|
|
8083
|
-
type: "
|
|
8083
|
+
type: "error" | "success" | "info" | "warning";
|
|
8084
8084
|
id?: number | undefined;
|
|
8085
8085
|
}[] | undefined;
|
|
8086
8086
|
required?: boolean | undefined;
|
|
@@ -8101,7 +8101,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8101
8101
|
hint?: string | undefined;
|
|
8102
8102
|
messages?: {
|
|
8103
8103
|
text: string;
|
|
8104
|
-
type: "
|
|
8104
|
+
type: "error" | "success" | "info" | "warning";
|
|
8105
8105
|
id?: number | undefined;
|
|
8106
8106
|
}[] | undefined;
|
|
8107
8107
|
required?: boolean | undefined;
|
|
@@ -8334,7 +8334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8334
8334
|
hint?: string | undefined;
|
|
8335
8335
|
messages?: {
|
|
8336
8336
|
text: string;
|
|
8337
|
-
type: "
|
|
8337
|
+
type: "error" | "success" | "info" | "warning";
|
|
8338
8338
|
id?: number | undefined;
|
|
8339
8339
|
}[] | undefined;
|
|
8340
8340
|
required?: boolean | undefined;
|
|
@@ -8352,7 +8352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8352
8352
|
hint?: string | undefined;
|
|
8353
8353
|
messages?: {
|
|
8354
8354
|
text: string;
|
|
8355
|
-
type: "
|
|
8355
|
+
type: "error" | "success" | "info" | "warning";
|
|
8356
8356
|
id?: number | undefined;
|
|
8357
8357
|
}[] | undefined;
|
|
8358
8358
|
required?: boolean | undefined;
|
|
@@ -8376,7 +8376,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8376
8376
|
hint?: string | undefined;
|
|
8377
8377
|
messages?: {
|
|
8378
8378
|
text: string;
|
|
8379
|
-
type: "
|
|
8379
|
+
type: "error" | "success" | "info" | "warning";
|
|
8380
8380
|
id?: number | undefined;
|
|
8381
8381
|
}[] | undefined;
|
|
8382
8382
|
required?: boolean | undefined;
|
|
@@ -8400,7 +8400,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8400
8400
|
hint?: string | undefined;
|
|
8401
8401
|
messages?: {
|
|
8402
8402
|
text: string;
|
|
8403
|
-
type: "
|
|
8403
|
+
type: "error" | "success" | "info" | "warning";
|
|
8404
8404
|
id?: number | undefined;
|
|
8405
8405
|
}[] | undefined;
|
|
8406
8406
|
required?: boolean | undefined;
|
|
@@ -8425,7 +8425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8425
8425
|
hint?: string | undefined;
|
|
8426
8426
|
messages?: {
|
|
8427
8427
|
text: string;
|
|
8428
|
-
type: "
|
|
8428
|
+
type: "error" | "success" | "info" | "warning";
|
|
8429
8429
|
id?: number | undefined;
|
|
8430
8430
|
}[] | undefined;
|
|
8431
8431
|
required?: boolean | undefined;
|
|
@@ -8440,7 +8440,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8440
8440
|
hint?: string | undefined;
|
|
8441
8441
|
messages?: {
|
|
8442
8442
|
text: string;
|
|
8443
|
-
type: "
|
|
8443
|
+
type: "error" | "success" | "info" | "warning";
|
|
8444
8444
|
id?: number | undefined;
|
|
8445
8445
|
}[] | undefined;
|
|
8446
8446
|
required?: boolean | undefined;
|
|
@@ -8461,7 +8461,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8461
8461
|
hint?: string | undefined;
|
|
8462
8462
|
messages?: {
|
|
8463
8463
|
text: string;
|
|
8464
|
-
type: "
|
|
8464
|
+
type: "error" | "success" | "info" | "warning";
|
|
8465
8465
|
id?: number | undefined;
|
|
8466
8466
|
}[] | undefined;
|
|
8467
8467
|
required?: boolean | undefined;
|
|
@@ -8486,7 +8486,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8486
8486
|
hint?: string | undefined;
|
|
8487
8487
|
messages?: {
|
|
8488
8488
|
text: string;
|
|
8489
|
-
type: "
|
|
8489
|
+
type: "error" | "success" | "info" | "warning";
|
|
8490
8490
|
id?: number | undefined;
|
|
8491
8491
|
}[] | undefined;
|
|
8492
8492
|
required?: boolean | undefined;
|
|
@@ -8505,7 +8505,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8505
8505
|
hint?: string | undefined;
|
|
8506
8506
|
messages?: {
|
|
8507
8507
|
text: string;
|
|
8508
|
-
type: "
|
|
8508
|
+
type: "error" | "success" | "info" | "warning";
|
|
8509
8509
|
id?: number | undefined;
|
|
8510
8510
|
}[] | undefined;
|
|
8511
8511
|
required?: boolean | undefined;
|
|
@@ -8525,7 +8525,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8525
8525
|
hint?: string | undefined;
|
|
8526
8526
|
messages?: {
|
|
8527
8527
|
text: string;
|
|
8528
|
-
type: "
|
|
8528
|
+
type: "error" | "success" | "info" | "warning";
|
|
8529
8529
|
id?: number | undefined;
|
|
8530
8530
|
}[] | undefined;
|
|
8531
8531
|
required?: boolean | undefined;
|
|
@@ -8544,7 +8544,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8544
8544
|
hint?: string | undefined;
|
|
8545
8545
|
messages?: {
|
|
8546
8546
|
text: string;
|
|
8547
|
-
type: "
|
|
8547
|
+
type: "error" | "success" | "info" | "warning";
|
|
8548
8548
|
id?: number | undefined;
|
|
8549
8549
|
}[] | undefined;
|
|
8550
8550
|
required?: boolean | undefined;
|
|
@@ -8566,7 +8566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8566
8566
|
hint?: string | undefined;
|
|
8567
8567
|
messages?: {
|
|
8568
8568
|
text: string;
|
|
8569
|
-
type: "
|
|
8569
|
+
type: "error" | "success" | "info" | "warning";
|
|
8570
8570
|
id?: number | undefined;
|
|
8571
8571
|
}[] | undefined;
|
|
8572
8572
|
required?: boolean | undefined;
|
|
@@ -8588,7 +8588,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8588
8588
|
hint?: string | undefined;
|
|
8589
8589
|
messages?: {
|
|
8590
8590
|
text: string;
|
|
8591
|
-
type: "
|
|
8591
|
+
type: "error" | "success" | "info" | "warning";
|
|
8592
8592
|
id?: number | undefined;
|
|
8593
8593
|
}[] | undefined;
|
|
8594
8594
|
required?: boolean | undefined;
|
|
@@ -8607,7 +8607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8607
8607
|
hint?: string | undefined;
|
|
8608
8608
|
messages?: {
|
|
8609
8609
|
text: string;
|
|
8610
|
-
type: "
|
|
8610
|
+
type: "error" | "success" | "info" | "warning";
|
|
8611
8611
|
id?: number | undefined;
|
|
8612
8612
|
}[] | undefined;
|
|
8613
8613
|
required?: boolean | undefined;
|
|
@@ -8632,7 +8632,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8632
8632
|
hint?: string | undefined;
|
|
8633
8633
|
messages?: {
|
|
8634
8634
|
text: string;
|
|
8635
|
-
type: "
|
|
8635
|
+
type: "error" | "success" | "info" | "warning";
|
|
8636
8636
|
id?: number | undefined;
|
|
8637
8637
|
}[] | undefined;
|
|
8638
8638
|
required?: boolean | undefined;
|
|
@@ -8653,7 +8653,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8653
8653
|
hint?: string | undefined;
|
|
8654
8654
|
messages?: {
|
|
8655
8655
|
text: string;
|
|
8656
|
-
type: "
|
|
8656
|
+
type: "error" | "success" | "info" | "warning";
|
|
8657
8657
|
id?: number | undefined;
|
|
8658
8658
|
}[] | undefined;
|
|
8659
8659
|
required?: boolean | undefined;
|
|
@@ -8674,7 +8674,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8674
8674
|
hint?: string | undefined;
|
|
8675
8675
|
messages?: {
|
|
8676
8676
|
text: string;
|
|
8677
|
-
type: "
|
|
8677
|
+
type: "error" | "success" | "info" | "warning";
|
|
8678
8678
|
id?: number | undefined;
|
|
8679
8679
|
}[] | undefined;
|
|
8680
8680
|
required?: boolean | undefined;
|
|
@@ -8905,7 +8905,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8905
8905
|
hint?: string | undefined;
|
|
8906
8906
|
messages?: {
|
|
8907
8907
|
text: string;
|
|
8908
|
-
type: "
|
|
8908
|
+
type: "error" | "success" | "info" | "warning";
|
|
8909
8909
|
id?: number | undefined;
|
|
8910
8910
|
}[] | undefined;
|
|
8911
8911
|
required?: boolean | undefined;
|
|
@@ -8923,7 +8923,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8923
8923
|
hint?: string | undefined;
|
|
8924
8924
|
messages?: {
|
|
8925
8925
|
text: string;
|
|
8926
|
-
type: "
|
|
8926
|
+
type: "error" | "success" | "info" | "warning";
|
|
8927
8927
|
id?: number | undefined;
|
|
8928
8928
|
}[] | undefined;
|
|
8929
8929
|
required?: boolean | undefined;
|
|
@@ -8947,7 +8947,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8947
8947
|
hint?: string | undefined;
|
|
8948
8948
|
messages?: {
|
|
8949
8949
|
text: string;
|
|
8950
|
-
type: "
|
|
8950
|
+
type: "error" | "success" | "info" | "warning";
|
|
8951
8951
|
id?: number | undefined;
|
|
8952
8952
|
}[] | undefined;
|
|
8953
8953
|
required?: boolean | undefined;
|
|
@@ -8971,7 +8971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8971
8971
|
hint?: string | undefined;
|
|
8972
8972
|
messages?: {
|
|
8973
8973
|
text: string;
|
|
8974
|
-
type: "
|
|
8974
|
+
type: "error" | "success" | "info" | "warning";
|
|
8975
8975
|
id?: number | undefined;
|
|
8976
8976
|
}[] | undefined;
|
|
8977
8977
|
required?: boolean | undefined;
|
|
@@ -9000,7 +9000,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9000
9000
|
hint?: string | undefined;
|
|
9001
9001
|
messages?: {
|
|
9002
9002
|
text: string;
|
|
9003
|
-
type: "
|
|
9003
|
+
type: "error" | "success" | "info" | "warning";
|
|
9004
9004
|
id?: number | undefined;
|
|
9005
9005
|
}[] | undefined;
|
|
9006
9006
|
required?: boolean | undefined;
|
|
@@ -9015,7 +9015,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9015
9015
|
hint?: string | undefined;
|
|
9016
9016
|
messages?: {
|
|
9017
9017
|
text: string;
|
|
9018
|
-
type: "
|
|
9018
|
+
type: "error" | "success" | "info" | "warning";
|
|
9019
9019
|
id?: number | undefined;
|
|
9020
9020
|
}[] | undefined;
|
|
9021
9021
|
required?: boolean | undefined;
|
|
@@ -9036,7 +9036,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9036
9036
|
hint?: string | undefined;
|
|
9037
9037
|
messages?: {
|
|
9038
9038
|
text: string;
|
|
9039
|
-
type: "
|
|
9039
|
+
type: "error" | "success" | "info" | "warning";
|
|
9040
9040
|
id?: number | undefined;
|
|
9041
9041
|
}[] | undefined;
|
|
9042
9042
|
required?: boolean | undefined;
|
|
@@ -9061,7 +9061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9061
9061
|
hint?: string | undefined;
|
|
9062
9062
|
messages?: {
|
|
9063
9063
|
text: string;
|
|
9064
|
-
type: "
|
|
9064
|
+
type: "error" | "success" | "info" | "warning";
|
|
9065
9065
|
id?: number | undefined;
|
|
9066
9066
|
}[] | undefined;
|
|
9067
9067
|
required?: boolean | undefined;
|
|
@@ -9080,7 +9080,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9080
9080
|
hint?: string | undefined;
|
|
9081
9081
|
messages?: {
|
|
9082
9082
|
text: string;
|
|
9083
|
-
type: "
|
|
9083
|
+
type: "error" | "success" | "info" | "warning";
|
|
9084
9084
|
id?: number | undefined;
|
|
9085
9085
|
}[] | undefined;
|
|
9086
9086
|
required?: boolean | undefined;
|
|
@@ -9100,7 +9100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9100
9100
|
hint?: string | undefined;
|
|
9101
9101
|
messages?: {
|
|
9102
9102
|
text: string;
|
|
9103
|
-
type: "
|
|
9103
|
+
type: "error" | "success" | "info" | "warning";
|
|
9104
9104
|
id?: number | undefined;
|
|
9105
9105
|
}[] | undefined;
|
|
9106
9106
|
required?: boolean | undefined;
|
|
@@ -9119,7 +9119,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9119
9119
|
hint?: string | undefined;
|
|
9120
9120
|
messages?: {
|
|
9121
9121
|
text: string;
|
|
9122
|
-
type: "
|
|
9122
|
+
type: "error" | "success" | "info" | "warning";
|
|
9123
9123
|
id?: number | undefined;
|
|
9124
9124
|
}[] | undefined;
|
|
9125
9125
|
required?: boolean | undefined;
|
|
@@ -9141,7 +9141,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9141
9141
|
hint?: string | undefined;
|
|
9142
9142
|
messages?: {
|
|
9143
9143
|
text: string;
|
|
9144
|
-
type: "
|
|
9144
|
+
type: "error" | "success" | "info" | "warning";
|
|
9145
9145
|
id?: number | undefined;
|
|
9146
9146
|
}[] | undefined;
|
|
9147
9147
|
required?: boolean | undefined;
|
|
@@ -9163,7 +9163,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9163
9163
|
hint?: string | undefined;
|
|
9164
9164
|
messages?: {
|
|
9165
9165
|
text: string;
|
|
9166
|
-
type: "
|
|
9166
|
+
type: "error" | "success" | "info" | "warning";
|
|
9167
9167
|
id?: number | undefined;
|
|
9168
9168
|
}[] | undefined;
|
|
9169
9169
|
required?: boolean | undefined;
|
|
@@ -9182,7 +9182,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9182
9182
|
hint?: string | undefined;
|
|
9183
9183
|
messages?: {
|
|
9184
9184
|
text: string;
|
|
9185
|
-
type: "
|
|
9185
|
+
type: "error" | "success" | "info" | "warning";
|
|
9186
9186
|
id?: number | undefined;
|
|
9187
9187
|
}[] | undefined;
|
|
9188
9188
|
required?: boolean | undefined;
|
|
@@ -9207,7 +9207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9207
9207
|
hint?: string | undefined;
|
|
9208
9208
|
messages?: {
|
|
9209
9209
|
text: string;
|
|
9210
|
-
type: "
|
|
9210
|
+
type: "error" | "success" | "info" | "warning";
|
|
9211
9211
|
id?: number | undefined;
|
|
9212
9212
|
}[] | undefined;
|
|
9213
9213
|
required?: boolean | undefined;
|
|
@@ -9228,7 +9228,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9228
9228
|
hint?: string | undefined;
|
|
9229
9229
|
messages?: {
|
|
9230
9230
|
text: string;
|
|
9231
|
-
type: "
|
|
9231
|
+
type: "error" | "success" | "info" | "warning";
|
|
9232
9232
|
id?: number | undefined;
|
|
9233
9233
|
}[] | undefined;
|
|
9234
9234
|
required?: boolean | undefined;
|
|
@@ -9249,7 +9249,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9249
9249
|
hint?: string | undefined;
|
|
9250
9250
|
messages?: {
|
|
9251
9251
|
text: string;
|
|
9252
|
-
type: "
|
|
9252
|
+
type: "error" | "success" | "info" | "warning";
|
|
9253
9253
|
id?: number | undefined;
|
|
9254
9254
|
}[] | undefined;
|
|
9255
9255
|
required?: boolean | undefined;
|
|
@@ -9479,7 +9479,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9479
9479
|
};
|
|
9480
9480
|
};
|
|
9481
9481
|
output: {
|
|
9482
|
-
prompt: "
|
|
9482
|
+
prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9483
9483
|
language: string;
|
|
9484
9484
|
}[];
|
|
9485
9485
|
outputFormat: "json";
|
|
@@ -9517,7 +9517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9517
9517
|
$get: {
|
|
9518
9518
|
input: {
|
|
9519
9519
|
param: {
|
|
9520
|
-
prompt: "
|
|
9520
|
+
prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9521
9521
|
language: string;
|
|
9522
9522
|
};
|
|
9523
9523
|
} & {
|
|
@@ -9539,7 +9539,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9539
9539
|
$put: {
|
|
9540
9540
|
input: {
|
|
9541
9541
|
param: {
|
|
9542
|
-
prompt: "
|
|
9542
|
+
prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9543
9543
|
language: string;
|
|
9544
9544
|
};
|
|
9545
9545
|
} & {
|
|
@@ -9563,7 +9563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9563
9563
|
$delete: {
|
|
9564
9564
|
input: {
|
|
9565
9565
|
param: {
|
|
9566
|
-
prompt: "
|
|
9566
|
+
prompt: "common" | "login" | "signup" | "login-password" | "login-id" | "mfa" | "organizations" | "status" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9567
9567
|
language: string;
|
|
9568
9568
|
};
|
|
9569
9569
|
} & {
|
|
@@ -9702,7 +9702,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9702
9702
|
} | undefined;
|
|
9703
9703
|
} | undefined;
|
|
9704
9704
|
passkey_options?: {
|
|
9705
|
-
challenge_ui?: "
|
|
9705
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
9706
9706
|
local_enrollment_enabled?: boolean | undefined;
|
|
9707
9707
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
9708
9708
|
} | undefined;
|
|
@@ -9836,7 +9836,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9836
9836
|
} | undefined;
|
|
9837
9837
|
} | undefined;
|
|
9838
9838
|
passkey_options?: {
|
|
9839
|
-
challenge_ui?: "
|
|
9839
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
9840
9840
|
local_enrollment_enabled?: boolean | undefined;
|
|
9841
9841
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
9842
9842
|
} | undefined;
|
|
@@ -9985,7 +9985,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9985
9985
|
} | undefined;
|
|
9986
9986
|
} | undefined;
|
|
9987
9987
|
passkey_options?: {
|
|
9988
|
-
challenge_ui?: "
|
|
9988
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
9989
9989
|
local_enrollment_enabled?: boolean | undefined;
|
|
9990
9990
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
9991
9991
|
} | undefined;
|
|
@@ -10164,7 +10164,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10164
10164
|
} | undefined;
|
|
10165
10165
|
} | undefined;
|
|
10166
10166
|
passkey_options?: {
|
|
10167
|
-
challenge_ui?: "
|
|
10167
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10168
10168
|
local_enrollment_enabled?: boolean | undefined;
|
|
10169
10169
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10170
10170
|
} | undefined;
|
|
@@ -10322,7 +10322,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10322
10322
|
} | undefined;
|
|
10323
10323
|
} | undefined;
|
|
10324
10324
|
passkey_options?: {
|
|
10325
|
-
challenge_ui?: "
|
|
10325
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10326
10326
|
local_enrollment_enabled?: boolean | undefined;
|
|
10327
10327
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10328
10328
|
} | undefined;
|
|
@@ -10425,7 +10425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10425
10425
|
};
|
|
10426
10426
|
} | {
|
|
10427
10427
|
mode: "inline";
|
|
10428
|
-
status: "
|
|
10428
|
+
status: "error" | "success";
|
|
10429
10429
|
connection_id: string;
|
|
10430
10430
|
connection_name: string;
|
|
10431
10431
|
strategy: string;
|
|
@@ -11064,7 +11064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11064
11064
|
log_type: string;
|
|
11065
11065
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11066
11066
|
actor: {
|
|
11067
|
-
type: "
|
|
11067
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
11068
11068
|
id?: string | undefined;
|
|
11069
11069
|
email?: string | undefined;
|
|
11070
11070
|
org_id?: string | undefined;
|
|
@@ -11542,7 +11542,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11542
11542
|
[x: string]: hono_utils_types.JSONValue;
|
|
11543
11543
|
};
|
|
11544
11544
|
id: string;
|
|
11545
|
-
status: "
|
|
11545
|
+
status: "suspended" | "active" | "paused";
|
|
11546
11546
|
filters?: {
|
|
11547
11547
|
type: string;
|
|
11548
11548
|
name: string;
|
|
@@ -11574,7 +11574,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11574
11574
|
[x: string]: hono_utils_types.JSONValue;
|
|
11575
11575
|
};
|
|
11576
11576
|
id: string;
|
|
11577
|
-
status: "
|
|
11577
|
+
status: "suspended" | "active" | "paused";
|
|
11578
11578
|
filters?: {
|
|
11579
11579
|
type: string;
|
|
11580
11580
|
name: string;
|
|
@@ -11599,7 +11599,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11599
11599
|
name: string;
|
|
11600
11600
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
11601
11601
|
sink: Record<string, unknown>;
|
|
11602
|
-
status?: "
|
|
11602
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
11603
11603
|
filters?: {
|
|
11604
11604
|
type: string;
|
|
11605
11605
|
name: string;
|
|
@@ -11614,7 +11614,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11614
11614
|
[x: string]: hono_utils_types.JSONValue;
|
|
11615
11615
|
};
|
|
11616
11616
|
id: string;
|
|
11617
|
-
status: "
|
|
11617
|
+
status: "suspended" | "active" | "paused";
|
|
11618
11618
|
filters?: {
|
|
11619
11619
|
type: string;
|
|
11620
11620
|
name: string;
|
|
@@ -11649,7 +11649,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11649
11649
|
}[] | undefined;
|
|
11650
11650
|
isPriority?: boolean | undefined;
|
|
11651
11651
|
id?: string | undefined;
|
|
11652
|
-
status?: "
|
|
11652
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
11653
11653
|
created_at?: string | undefined;
|
|
11654
11654
|
updated_at?: string | undefined;
|
|
11655
11655
|
};
|
|
@@ -11661,7 +11661,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11661
11661
|
[x: string]: hono_utils_types.JSONValue;
|
|
11662
11662
|
};
|
|
11663
11663
|
id: string;
|
|
11664
|
-
status: "
|
|
11664
|
+
status: "suspended" | "active" | "paused";
|
|
11665
11665
|
filters?: {
|
|
11666
11666
|
type: string;
|
|
11667
11667
|
name: string;
|
|
@@ -11712,7 +11712,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11712
11712
|
};
|
|
11713
11713
|
};
|
|
11714
11714
|
output: {
|
|
11715
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
11715
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11716
11716
|
date: string;
|
|
11717
11717
|
isMobile: boolean;
|
|
11718
11718
|
log_id: string;
|
|
@@ -11751,7 +11751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11751
11751
|
limit: number;
|
|
11752
11752
|
length: number;
|
|
11753
11753
|
logs: {
|
|
11754
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
11754
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11755
11755
|
date: string;
|
|
11756
11756
|
isMobile: boolean;
|
|
11757
11757
|
log_id: string;
|
|
@@ -11805,7 +11805,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11805
11805
|
};
|
|
11806
11806
|
};
|
|
11807
11807
|
output: {
|
|
11808
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
11808
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11809
11809
|
date: string;
|
|
11810
11810
|
isMobile: boolean;
|
|
11811
11811
|
log_id: string;
|
|
@@ -12193,7 +12193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12193
12193
|
addons?: {
|
|
12194
12194
|
[x: string]: any;
|
|
12195
12195
|
} | undefined;
|
|
12196
|
-
token_endpoint_auth_method?: "
|
|
12196
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12197
12197
|
client_metadata?: {
|
|
12198
12198
|
[x: string]: string;
|
|
12199
12199
|
} | undefined;
|
|
@@ -12289,7 +12289,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12289
12289
|
addons?: {
|
|
12290
12290
|
[x: string]: any;
|
|
12291
12291
|
} | undefined;
|
|
12292
|
-
token_endpoint_auth_method?: "
|
|
12292
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12293
12293
|
client_metadata?: {
|
|
12294
12294
|
[x: string]: string;
|
|
12295
12295
|
} | undefined;
|
|
@@ -12400,7 +12400,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12400
12400
|
addons?: {
|
|
12401
12401
|
[x: string]: any;
|
|
12402
12402
|
} | undefined;
|
|
12403
|
-
token_endpoint_auth_method?: "
|
|
12403
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12404
12404
|
client_metadata?: {
|
|
12405
12405
|
[x: string]: string;
|
|
12406
12406
|
} | undefined;
|
|
@@ -12510,7 +12510,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12510
12510
|
custom_login_page_preview?: string | undefined;
|
|
12511
12511
|
form_template?: string | undefined;
|
|
12512
12512
|
addons?: Record<string, any> | undefined;
|
|
12513
|
-
token_endpoint_auth_method?: "
|
|
12513
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12514
12514
|
client_metadata?: Record<string, string> | undefined;
|
|
12515
12515
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12516
12516
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12590,7 +12590,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12590
12590
|
addons?: {
|
|
12591
12591
|
[x: string]: any;
|
|
12592
12592
|
} | undefined;
|
|
12593
|
-
token_endpoint_auth_method?: "
|
|
12593
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12594
12594
|
client_metadata?: {
|
|
12595
12595
|
[x: string]: string;
|
|
12596
12596
|
} | undefined;
|
|
@@ -12679,7 +12679,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12679
12679
|
custom_login_page_preview?: string | undefined;
|
|
12680
12680
|
form_template?: string | undefined;
|
|
12681
12681
|
addons?: Record<string, any> | undefined;
|
|
12682
|
-
token_endpoint_auth_method?: "
|
|
12682
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12683
12683
|
client_metadata?: Record<string, string> | undefined;
|
|
12684
12684
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12685
12685
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12759,7 +12759,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12759
12759
|
addons?: {
|
|
12760
12760
|
[x: string]: any;
|
|
12761
12761
|
} | undefined;
|
|
12762
|
-
token_endpoint_auth_method?: "
|
|
12762
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12763
12763
|
client_metadata?: {
|
|
12764
12764
|
[x: string]: string;
|
|
12765
12765
|
} | undefined;
|
|
@@ -12928,7 +12928,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12928
12928
|
} | undefined;
|
|
12929
12929
|
} | undefined;
|
|
12930
12930
|
passkey_options?: {
|
|
12931
|
-
challenge_ui?: "
|
|
12931
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
12932
12932
|
local_enrollment_enabled?: boolean | undefined;
|
|
12933
12933
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
12934
12934
|
} | undefined;
|
|
@@ -13082,7 +13082,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13082
13082
|
} | undefined;
|
|
13083
13083
|
} | undefined;
|
|
13084
13084
|
passkey_options?: {
|
|
13085
|
-
challenge_ui?: "
|
|
13085
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
13086
13086
|
local_enrollment_enabled?: boolean | undefined;
|
|
13087
13087
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
13088
13088
|
} | undefined;
|
|
@@ -14023,7 +14023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14023
14023
|
};
|
|
14024
14024
|
};
|
|
14025
14025
|
output: {
|
|
14026
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
14026
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14027
14027
|
date: string;
|
|
14028
14028
|
isMobile: boolean;
|
|
14029
14029
|
log_id: string;
|
|
@@ -14062,7 +14062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14062
14062
|
limit: number;
|
|
14063
14063
|
length: number;
|
|
14064
14064
|
logs: {
|
|
14065
|
-
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "
|
|
14065
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14066
14066
|
date: string;
|
|
14067
14067
|
isMobile: boolean;
|
|
14068
14068
|
log_id: string;
|
|
@@ -14377,7 +14377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14377
14377
|
};
|
|
14378
14378
|
} & {
|
|
14379
14379
|
json: {
|
|
14380
|
-
template: "change_password" | "
|
|
14380
|
+
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";
|
|
14381
14381
|
body: string;
|
|
14382
14382
|
from: string;
|
|
14383
14383
|
subject: string;
|
|
@@ -14398,7 +14398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14398
14398
|
};
|
|
14399
14399
|
} & {
|
|
14400
14400
|
json: {
|
|
14401
|
-
template: "change_password" | "
|
|
14401
|
+
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";
|
|
14402
14402
|
body: string;
|
|
14403
14403
|
from: string;
|
|
14404
14404
|
subject: string;
|
|
@@ -14410,7 +14410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14410
14410
|
};
|
|
14411
14411
|
};
|
|
14412
14412
|
output: {
|
|
14413
|
-
template: "change_password" | "
|
|
14413
|
+
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";
|
|
14414
14414
|
body: string;
|
|
14415
14415
|
from: string;
|
|
14416
14416
|
subject: string;
|
|
@@ -14433,7 +14433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14433
14433
|
};
|
|
14434
14434
|
};
|
|
14435
14435
|
output: {
|
|
14436
|
-
name: "change_password" | "
|
|
14436
|
+
name: "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";
|
|
14437
14437
|
body: string;
|
|
14438
14438
|
subject: string;
|
|
14439
14439
|
}[];
|
|
@@ -14446,7 +14446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14446
14446
|
$get: {
|
|
14447
14447
|
input: {
|
|
14448
14448
|
param: {
|
|
14449
|
-
templateName: "change_password" | "
|
|
14449
|
+
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";
|
|
14450
14450
|
};
|
|
14451
14451
|
} & {
|
|
14452
14452
|
header: {
|
|
@@ -14459,7 +14459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14459
14459
|
} | {
|
|
14460
14460
|
input: {
|
|
14461
14461
|
param: {
|
|
14462
|
-
templateName: "change_password" | "
|
|
14462
|
+
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";
|
|
14463
14463
|
};
|
|
14464
14464
|
} & {
|
|
14465
14465
|
header: {
|
|
@@ -14467,7 +14467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14467
14467
|
};
|
|
14468
14468
|
};
|
|
14469
14469
|
output: {
|
|
14470
|
-
template: "change_password" | "
|
|
14470
|
+
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";
|
|
14471
14471
|
body: string;
|
|
14472
14472
|
from: string;
|
|
14473
14473
|
subject: string;
|
|
@@ -14486,7 +14486,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14486
14486
|
$put: {
|
|
14487
14487
|
input: {
|
|
14488
14488
|
param: {
|
|
14489
|
-
templateName: "change_password" | "
|
|
14489
|
+
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";
|
|
14490
14490
|
};
|
|
14491
14491
|
} & {
|
|
14492
14492
|
header: {
|
|
@@ -14494,7 +14494,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14494
14494
|
};
|
|
14495
14495
|
} & {
|
|
14496
14496
|
json: {
|
|
14497
|
-
template: "change_password" | "
|
|
14497
|
+
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";
|
|
14498
14498
|
body: string;
|
|
14499
14499
|
subject: string;
|
|
14500
14500
|
syntax?: "liquid" | undefined;
|
|
@@ -14506,7 +14506,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14506
14506
|
};
|
|
14507
14507
|
};
|
|
14508
14508
|
output: {
|
|
14509
|
-
template: "change_password" | "
|
|
14509
|
+
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";
|
|
14510
14510
|
body: string;
|
|
14511
14511
|
from: string;
|
|
14512
14512
|
subject: string;
|
|
@@ -14525,7 +14525,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14525
14525
|
$patch: {
|
|
14526
14526
|
input: {
|
|
14527
14527
|
param: {
|
|
14528
|
-
templateName: "change_password" | "
|
|
14528
|
+
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";
|
|
14529
14529
|
};
|
|
14530
14530
|
} & {
|
|
14531
14531
|
header: {
|
|
@@ -14533,7 +14533,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14533
14533
|
};
|
|
14534
14534
|
} & {
|
|
14535
14535
|
json: {
|
|
14536
|
-
template?: "change_password" | "
|
|
14536
|
+
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;
|
|
14537
14537
|
body?: string | undefined;
|
|
14538
14538
|
from?: string | undefined;
|
|
14539
14539
|
subject?: string | undefined;
|
|
@@ -14550,7 +14550,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14550
14550
|
} | {
|
|
14551
14551
|
input: {
|
|
14552
14552
|
param: {
|
|
14553
|
-
templateName: "change_password" | "
|
|
14553
|
+
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";
|
|
14554
14554
|
};
|
|
14555
14555
|
} & {
|
|
14556
14556
|
header: {
|
|
@@ -14558,7 +14558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14558
14558
|
};
|
|
14559
14559
|
} & {
|
|
14560
14560
|
json: {
|
|
14561
|
-
template?: "change_password" | "
|
|
14561
|
+
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;
|
|
14562
14562
|
body?: string | undefined;
|
|
14563
14563
|
from?: string | undefined;
|
|
14564
14564
|
subject?: string | undefined;
|
|
@@ -14570,7 +14570,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14570
14570
|
};
|
|
14571
14571
|
};
|
|
14572
14572
|
output: {
|
|
14573
|
-
template: "change_password" | "
|
|
14573
|
+
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";
|
|
14574
14574
|
body: string;
|
|
14575
14575
|
from: string;
|
|
14576
14576
|
subject: string;
|
|
@@ -14589,7 +14589,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14589
14589
|
$delete: {
|
|
14590
14590
|
input: {
|
|
14591
14591
|
param: {
|
|
14592
|
-
templateName: "change_password" | "
|
|
14592
|
+
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";
|
|
14593
14593
|
};
|
|
14594
14594
|
} & {
|
|
14595
14595
|
header: {
|
|
@@ -14602,7 +14602,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14602
14602
|
} | {
|
|
14603
14603
|
input: {
|
|
14604
14604
|
param: {
|
|
14605
|
-
templateName: "change_password" | "
|
|
14605
|
+
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";
|
|
14606
14606
|
};
|
|
14607
14607
|
} & {
|
|
14608
14608
|
header: {
|
|
@@ -14619,7 +14619,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14619
14619
|
$post: {
|
|
14620
14620
|
input: {
|
|
14621
14621
|
param: {
|
|
14622
|
-
templateName: "change_password" | "
|
|
14622
|
+
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";
|
|
14623
14623
|
};
|
|
14624
14624
|
} & {
|
|
14625
14625
|
header: {
|
|
@@ -14902,7 +14902,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14902
14902
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14903
14903
|
custom_domain_id: string;
|
|
14904
14904
|
primary: boolean;
|
|
14905
|
-
status: "
|
|
14905
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14906
14906
|
verification_method?: "txt" | undefined;
|
|
14907
14907
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14908
14908
|
domain_metadata?: {
|
|
@@ -14943,7 +14943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14943
14943
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14944
14944
|
custom_domain_id: string;
|
|
14945
14945
|
primary: boolean;
|
|
14946
|
-
status: "
|
|
14946
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14947
14947
|
verification_method?: "txt" | undefined;
|
|
14948
14948
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14949
14949
|
domain_metadata?: {
|
|
@@ -15007,7 +15007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15007
15007
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15008
15008
|
custom_domain_id: string;
|
|
15009
15009
|
primary: boolean;
|
|
15010
|
-
status: "
|
|
15010
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15011
15011
|
verification_method?: "txt" | undefined;
|
|
15012
15012
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15013
15013
|
domain_metadata?: {
|
|
@@ -15054,7 +15054,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15054
15054
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15055
15055
|
custom_domain_id: string;
|
|
15056
15056
|
primary: boolean;
|
|
15057
|
-
status: "
|
|
15057
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15058
15058
|
verification_method?: "txt" | undefined;
|
|
15059
15059
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15060
15060
|
domain_metadata?: {
|
|
@@ -15100,7 +15100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15100
15100
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15101
15101
|
custom_domain_id: string;
|
|
15102
15102
|
primary: boolean;
|
|
15103
|
-
status: "
|
|
15103
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15104
15104
|
verification_method?: "txt" | undefined;
|
|
15105
15105
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15106
15106
|
domain_metadata?: {
|
|
@@ -15141,7 +15141,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15141
15141
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15142
15142
|
custom_domain_id: string;
|
|
15143
15143
|
primary: boolean;
|
|
15144
|
-
status: "
|
|
15144
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15145
15145
|
verification_method?: "txt" | undefined;
|
|
15146
15146
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15147
15147
|
domain_metadata?: {
|
|
@@ -15189,7 +15189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15189
15189
|
base_focus_color: string;
|
|
15190
15190
|
base_hover_color: string;
|
|
15191
15191
|
body_text: string;
|
|
15192
|
-
captcha_widget_theme: "
|
|
15192
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
15193
15193
|
error: string;
|
|
15194
15194
|
header: string;
|
|
15195
15195
|
icons: string;
|
|
@@ -15240,7 +15240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15240
15240
|
background_color: string;
|
|
15241
15241
|
background_image_url: string;
|
|
15242
15242
|
page_layout: "center" | "left" | "right";
|
|
15243
|
-
logo_placement?: "
|
|
15243
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
15244
15244
|
};
|
|
15245
15245
|
widget: {
|
|
15246
15246
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -15279,7 +15279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15279
15279
|
base_focus_color: string;
|
|
15280
15280
|
base_hover_color: string;
|
|
15281
15281
|
body_text: string;
|
|
15282
|
-
captcha_widget_theme: "
|
|
15282
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
15283
15283
|
error: string;
|
|
15284
15284
|
header: string;
|
|
15285
15285
|
icons: string;
|
|
@@ -15330,7 +15330,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15330
15330
|
background_color: string;
|
|
15331
15331
|
background_image_url: string;
|
|
15332
15332
|
page_layout: "center" | "left" | "right";
|
|
15333
|
-
logo_placement?: "
|
|
15333
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
15334
15334
|
};
|
|
15335
15335
|
widget: {
|
|
15336
15336
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -15358,7 +15358,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15358
15358
|
base_focus_color: string;
|
|
15359
15359
|
base_hover_color: string;
|
|
15360
15360
|
body_text: string;
|
|
15361
|
-
captcha_widget_theme: "
|
|
15361
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
15362
15362
|
error: string;
|
|
15363
15363
|
header: string;
|
|
15364
15364
|
icons: string;
|
|
@@ -15409,7 +15409,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15409
15409
|
background_color: string;
|
|
15410
15410
|
background_image_url: string;
|
|
15411
15411
|
page_layout: "center" | "left" | "right";
|
|
15412
|
-
logo_placement?: "
|
|
15412
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
15413
15413
|
};
|
|
15414
15414
|
widget: {
|
|
15415
15415
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -15448,7 +15448,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15448
15448
|
font?: {
|
|
15449
15449
|
url: string;
|
|
15450
15450
|
} | undefined;
|
|
15451
|
-
dark_mode?: "
|
|
15451
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
15452
15452
|
};
|
|
15453
15453
|
outputFormat: "json";
|
|
15454
15454
|
status: 200;
|
|
@@ -15478,7 +15478,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15478
15478
|
font?: {
|
|
15479
15479
|
url: string;
|
|
15480
15480
|
} | undefined;
|
|
15481
|
-
dark_mode?: "
|
|
15481
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
15482
15482
|
};
|
|
15483
15483
|
};
|
|
15484
15484
|
output: {
|
|
@@ -15497,7 +15497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15497
15497
|
font?: {
|
|
15498
15498
|
url: string;
|
|
15499
15499
|
} | undefined;
|
|
15500
|
-
dark_mode?: "
|
|
15500
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
15501
15501
|
};
|
|
15502
15502
|
outputFormat: "json";
|
|
15503
15503
|
status: 200;
|
|
@@ -15561,6 +15561,120 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15561
15561
|
status: 204;
|
|
15562
15562
|
};
|
|
15563
15563
|
};
|
|
15564
|
+
} & {
|
|
15565
|
+
"/templates/universal-login/preview": {
|
|
15566
|
+
$post: {
|
|
15567
|
+
input: {
|
|
15568
|
+
header: {
|
|
15569
|
+
"tenant-id"?: string | undefined;
|
|
15570
|
+
};
|
|
15571
|
+
} & {
|
|
15572
|
+
json: {
|
|
15573
|
+
body?: string | undefined;
|
|
15574
|
+
screen?: "login" | "identifier" | "password" | "signup" | undefined;
|
|
15575
|
+
branding?: {
|
|
15576
|
+
colors?: {
|
|
15577
|
+
primary: string;
|
|
15578
|
+
page_background?: string | {
|
|
15579
|
+
type?: string | undefined;
|
|
15580
|
+
start?: string | undefined;
|
|
15581
|
+
end?: string | undefined;
|
|
15582
|
+
angle_deg?: number | undefined;
|
|
15583
|
+
} | undefined;
|
|
15584
|
+
} | undefined;
|
|
15585
|
+
logo_url?: string | undefined;
|
|
15586
|
+
favicon_url?: string | undefined;
|
|
15587
|
+
powered_by_logo_url?: string | undefined;
|
|
15588
|
+
font?: {
|
|
15589
|
+
url: string;
|
|
15590
|
+
} | undefined;
|
|
15591
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
15592
|
+
} | undefined;
|
|
15593
|
+
theme?: {
|
|
15594
|
+
borders?: {
|
|
15595
|
+
button_border_radius: number;
|
|
15596
|
+
button_border_weight: number;
|
|
15597
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
15598
|
+
input_border_radius: number;
|
|
15599
|
+
input_border_weight: number;
|
|
15600
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
15601
|
+
show_widget_shadow: boolean;
|
|
15602
|
+
widget_border_weight: number;
|
|
15603
|
+
widget_corner_radius: number;
|
|
15604
|
+
} | undefined;
|
|
15605
|
+
colors?: {
|
|
15606
|
+
base_focus_color: string;
|
|
15607
|
+
base_hover_color: string;
|
|
15608
|
+
body_text: string;
|
|
15609
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
15610
|
+
error: string;
|
|
15611
|
+
header: string;
|
|
15612
|
+
icons: string;
|
|
15613
|
+
input_background: string;
|
|
15614
|
+
input_border: string;
|
|
15615
|
+
input_filled_text: string;
|
|
15616
|
+
input_labels_placeholders: string;
|
|
15617
|
+
links_focused_components: string;
|
|
15618
|
+
primary_button: string;
|
|
15619
|
+
primary_button_label: string;
|
|
15620
|
+
secondary_button_border: string;
|
|
15621
|
+
secondary_button_label: string;
|
|
15622
|
+
success: string;
|
|
15623
|
+
widget_background: string;
|
|
15624
|
+
widget_border: string;
|
|
15625
|
+
} | undefined;
|
|
15626
|
+
displayName?: string | undefined;
|
|
15627
|
+
fonts?: {
|
|
15628
|
+
body_text: {
|
|
15629
|
+
bold: boolean;
|
|
15630
|
+
size: number;
|
|
15631
|
+
};
|
|
15632
|
+
buttons_text: {
|
|
15633
|
+
bold: boolean;
|
|
15634
|
+
size: number;
|
|
15635
|
+
};
|
|
15636
|
+
font_url: string;
|
|
15637
|
+
input_labels: {
|
|
15638
|
+
bold: boolean;
|
|
15639
|
+
size: number;
|
|
15640
|
+
};
|
|
15641
|
+
links: {
|
|
15642
|
+
bold: boolean;
|
|
15643
|
+
size: number;
|
|
15644
|
+
};
|
|
15645
|
+
links_style: "normal" | "underlined";
|
|
15646
|
+
reference_text_size: number;
|
|
15647
|
+
subtitle: {
|
|
15648
|
+
bold: boolean;
|
|
15649
|
+
size: number;
|
|
15650
|
+
};
|
|
15651
|
+
title: {
|
|
15652
|
+
bold: boolean;
|
|
15653
|
+
size: number;
|
|
15654
|
+
};
|
|
15655
|
+
} | undefined;
|
|
15656
|
+
page_background?: {
|
|
15657
|
+
background_color: string;
|
|
15658
|
+
background_image_url: string;
|
|
15659
|
+
page_layout: "center" | "left" | "right";
|
|
15660
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
15661
|
+
} | undefined;
|
|
15662
|
+
widget?: {
|
|
15663
|
+
header_text_alignment: "center" | "left" | "right";
|
|
15664
|
+
logo_height: number;
|
|
15665
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
15666
|
+
logo_url: string;
|
|
15667
|
+
social_buttons_layout: "bottom" | "top";
|
|
15668
|
+
} | undefined;
|
|
15669
|
+
themeId?: string | undefined;
|
|
15670
|
+
} | undefined;
|
|
15671
|
+
};
|
|
15672
|
+
};
|
|
15673
|
+
output: Response;
|
|
15674
|
+
outputFormat: "json";
|
|
15675
|
+
status: hono_utils_http_status.StatusCode;
|
|
15676
|
+
};
|
|
15677
|
+
};
|
|
15564
15678
|
}, "/branding"> & hono_types.MergeSchemaPath<{
|
|
15565
15679
|
"/:triggerId/bindings": {
|
|
15566
15680
|
$get: {
|
|
@@ -15748,7 +15862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15748
15862
|
logs: {
|
|
15749
15863
|
action_name: string;
|
|
15750
15864
|
lines: {
|
|
15751
|
-
level: "
|
|
15865
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15752
15866
|
message: string;
|
|
15753
15867
|
}[];
|
|
15754
15868
|
}[];
|
|
@@ -16415,7 +16529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16415
16529
|
args: hono_utils_types.JSONValue[];
|
|
16416
16530
|
}[];
|
|
16417
16531
|
logs: {
|
|
16418
|
-
level: "
|
|
16532
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
16419
16533
|
message: string;
|
|
16420
16534
|
}[];
|
|
16421
16535
|
error?: string | undefined;
|
|
@@ -16713,7 +16827,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16713
16827
|
scope?: string | undefined;
|
|
16714
16828
|
grant_types?: string[] | undefined;
|
|
16715
16829
|
response_types?: string[] | undefined;
|
|
16716
|
-
token_endpoint_auth_method?: "
|
|
16830
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16717
16831
|
jwks_uri?: string | undefined;
|
|
16718
16832
|
jwks?: Record<string, unknown> | undefined;
|
|
16719
16833
|
software_id?: string | undefined;
|
|
@@ -16802,7 +16916,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16802
16916
|
scope?: string | undefined;
|
|
16803
16917
|
grant_types?: string[] | undefined;
|
|
16804
16918
|
response_types?: string[] | undefined;
|
|
16805
|
-
token_endpoint_auth_method?: "
|
|
16919
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16806
16920
|
jwks_uri?: string | undefined;
|
|
16807
16921
|
jwks?: Record<string, unknown> | undefined;
|
|
16808
16922
|
software_id?: string | undefined;
|
|
@@ -17148,19 +17262,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17148
17262
|
email: string;
|
|
17149
17263
|
send: "code" | "link";
|
|
17150
17264
|
authParams: {
|
|
17151
|
-
|
|
17152
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17153
|
-
scope?: string | undefined;
|
|
17265
|
+
state?: string | undefined;
|
|
17154
17266
|
username?: string | undefined;
|
|
17155
17267
|
audience?: string | undefined;
|
|
17156
|
-
|
|
17157
|
-
|
|
17158
|
-
|
|
17159
|
-
|
|
17160
|
-
state?: string | undefined;
|
|
17268
|
+
scope?: string | undefined;
|
|
17269
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17270
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17271
|
+
prompt?: string | undefined;
|
|
17161
17272
|
act_as?: string | undefined;
|
|
17273
|
+
redirect_uri?: string | undefined;
|
|
17162
17274
|
organization?: string | undefined;
|
|
17163
|
-
|
|
17275
|
+
nonce?: string | undefined;
|
|
17276
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17277
|
+
code_challenge?: string | undefined;
|
|
17164
17278
|
ui_locales?: string | undefined;
|
|
17165
17279
|
max_age?: number | undefined;
|
|
17166
17280
|
acr_values?: string | undefined;
|
|
@@ -17184,19 +17298,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17184
17298
|
phone_number: string;
|
|
17185
17299
|
send: "code" | "link";
|
|
17186
17300
|
authParams: {
|
|
17187
|
-
|
|
17188
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17189
|
-
scope?: string | undefined;
|
|
17301
|
+
state?: string | undefined;
|
|
17190
17302
|
username?: string | undefined;
|
|
17191
17303
|
audience?: string | undefined;
|
|
17192
|
-
|
|
17193
|
-
|
|
17194
|
-
|
|
17195
|
-
|
|
17196
|
-
state?: string | undefined;
|
|
17304
|
+
scope?: string | undefined;
|
|
17305
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17306
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17307
|
+
prompt?: string | undefined;
|
|
17197
17308
|
act_as?: string | undefined;
|
|
17309
|
+
redirect_uri?: string | undefined;
|
|
17198
17310
|
organization?: string | undefined;
|
|
17199
|
-
|
|
17311
|
+
nonce?: string | undefined;
|
|
17312
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17313
|
+
code_challenge?: string | undefined;
|
|
17200
17314
|
ui_locales?: string | undefined;
|
|
17201
17315
|
max_age?: number | undefined;
|
|
17202
17316
|
acr_values?: string | undefined;
|
|
@@ -17426,7 +17540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17426
17540
|
client_id: string;
|
|
17427
17541
|
username: string;
|
|
17428
17542
|
otp: string;
|
|
17429
|
-
realm: "
|
|
17543
|
+
realm: "sms" | "email";
|
|
17430
17544
|
} | {
|
|
17431
17545
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17432
17546
|
subject_token: string;
|
|
@@ -17473,7 +17587,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17473
17587
|
client_id: string;
|
|
17474
17588
|
username: string;
|
|
17475
17589
|
otp: string;
|
|
17476
|
-
realm: "
|
|
17590
|
+
realm: "sms" | "email";
|
|
17477
17591
|
} | {
|
|
17478
17592
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17479
17593
|
subject_token: string;
|
|
@@ -17525,7 +17639,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17525
17639
|
client_id: string;
|
|
17526
17640
|
username: string;
|
|
17527
17641
|
otp: string;
|
|
17528
|
-
realm: "
|
|
17642
|
+
realm: "sms" | "email";
|
|
17529
17643
|
} | {
|
|
17530
17644
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17531
17645
|
subject_token: string;
|
|
@@ -17572,7 +17686,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17572
17686
|
client_id: string;
|
|
17573
17687
|
username: string;
|
|
17574
17688
|
otp: string;
|
|
17575
|
-
realm: "
|
|
17689
|
+
realm: "sms" | "email";
|
|
17576
17690
|
} | {
|
|
17577
17691
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17578
17692
|
subject_token: string;
|
|
@@ -17632,7 +17746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17632
17746
|
client_id: string;
|
|
17633
17747
|
username: string;
|
|
17634
17748
|
otp: string;
|
|
17635
|
-
realm: "
|
|
17749
|
+
realm: "sms" | "email";
|
|
17636
17750
|
} | {
|
|
17637
17751
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17638
17752
|
subject_token: string;
|
|
@@ -17679,7 +17793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17679
17793
|
client_id: string;
|
|
17680
17794
|
username: string;
|
|
17681
17795
|
otp: string;
|
|
17682
|
-
realm: "
|
|
17796
|
+
realm: "sms" | "email";
|
|
17683
17797
|
} | {
|
|
17684
17798
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17685
17799
|
subject_token: string;
|
|
@@ -17734,7 +17848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17734
17848
|
client_id: string;
|
|
17735
17849
|
username: string;
|
|
17736
17850
|
otp: string;
|
|
17737
|
-
realm: "
|
|
17851
|
+
realm: "sms" | "email";
|
|
17738
17852
|
} | {
|
|
17739
17853
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17740
17854
|
subject_token: string;
|
|
@@ -17781,7 +17895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17781
17895
|
client_id: string;
|
|
17782
17896
|
username: string;
|
|
17783
17897
|
otp: string;
|
|
17784
|
-
realm: "
|
|
17898
|
+
realm: "sms" | "email";
|
|
17785
17899
|
} | {
|
|
17786
17900
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17787
17901
|
subject_token: string;
|
|
@@ -17836,7 +17950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17836
17950
|
client_id: string;
|
|
17837
17951
|
username: string;
|
|
17838
17952
|
otp: string;
|
|
17839
|
-
realm: "
|
|
17953
|
+
realm: "sms" | "email";
|
|
17840
17954
|
} | {
|
|
17841
17955
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17842
17956
|
subject_token: string;
|
|
@@ -17883,7 +17997,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17883
17997
|
client_id: string;
|
|
17884
17998
|
username: string;
|
|
17885
17999
|
otp: string;
|
|
17886
|
-
realm: "
|
|
18000
|
+
realm: "sms" | "email";
|
|
17887
18001
|
} | {
|
|
17888
18002
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17889
18003
|
subject_token: string;
|
|
@@ -18724,7 +18838,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18724
18838
|
} & {
|
|
18725
18839
|
form: {
|
|
18726
18840
|
username: string;
|
|
18727
|
-
login_selection?: "
|
|
18841
|
+
login_selection?: "password" | "code" | undefined;
|
|
18728
18842
|
};
|
|
18729
18843
|
};
|
|
18730
18844
|
output: {};
|
|
@@ -18738,7 +18852,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18738
18852
|
} & {
|
|
18739
18853
|
form: {
|
|
18740
18854
|
username: string;
|
|
18741
|
-
login_selection?: "
|
|
18855
|
+
login_selection?: "password" | "code" | undefined;
|
|
18742
18856
|
};
|
|
18743
18857
|
};
|
|
18744
18858
|
output: {};
|
|
@@ -19103,7 +19217,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19103
19217
|
$get: {
|
|
19104
19218
|
input: {
|
|
19105
19219
|
param: {
|
|
19106
|
-
screen: "
|
|
19220
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19107
19221
|
};
|
|
19108
19222
|
} & {
|
|
19109
19223
|
query: {
|
|
@@ -19119,7 +19233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19119
19233
|
} | {
|
|
19120
19234
|
input: {
|
|
19121
19235
|
param: {
|
|
19122
|
-
screen: "
|
|
19236
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19123
19237
|
};
|
|
19124
19238
|
} & {
|
|
19125
19239
|
query: {
|
|
@@ -19135,7 +19249,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19135
19249
|
} | {
|
|
19136
19250
|
input: {
|
|
19137
19251
|
param: {
|
|
19138
|
-
screen: "
|
|
19252
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19139
19253
|
};
|
|
19140
19254
|
} & {
|
|
19141
19255
|
query: {
|
|
@@ -19155,7 +19269,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19155
19269
|
$post: {
|
|
19156
19270
|
input: {
|
|
19157
19271
|
param: {
|
|
19158
|
-
screen: "
|
|
19272
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19159
19273
|
};
|
|
19160
19274
|
} & {
|
|
19161
19275
|
query: {
|
|
@@ -19173,7 +19287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19173
19287
|
} | {
|
|
19174
19288
|
input: {
|
|
19175
19289
|
param: {
|
|
19176
|
-
screen: "
|
|
19290
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19177
19291
|
};
|
|
19178
19292
|
} & {
|
|
19179
19293
|
query: {
|
|
@@ -19191,7 +19305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19191
19305
|
} | {
|
|
19192
19306
|
input: {
|
|
19193
19307
|
param: {
|
|
19194
|
-
screen: "
|
|
19308
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19195
19309
|
};
|
|
19196
19310
|
} & {
|
|
19197
19311
|
query: {
|