authhero 8.8.0 → 8.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +83 -83
- package/dist/authhero.d.ts +196 -211
- package/dist/authhero.mjs +4221 -4217
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/mutable-response.d.ts +15 -3
- package/dist/types/index.d.ts +193 -193
- package/dist/types/routes/auth-api/index.d.ts +26 -26
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +162 -162
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +8 -8
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/IdToken.d.ts +2 -2
- package/package.json +4 -4
package/dist/authhero.d.ts
CHANGED
|
@@ -2090,30 +2090,15 @@ declare class PostmarkEmailService implements EmailServiceAdapter {
|
|
|
2090
2090
|
*/
|
|
2091
2091
|
declare function waitUntil(ctx: Context, promise: Promise<unknown>): void;
|
|
2092
2092
|
|
|
2093
|
-
/**
|
|
2094
|
-
* Normalizing a response so middleware can write headers onto it.
|
|
2095
|
-
*
|
|
2096
|
-
* A response that the worker *received* — from `fetch()`, a Workers-for-Platforms
|
|
2097
|
-
* dispatch (`DISPATCHER.get(name).fetch()`), the Cache API, or R2 — carries an
|
|
2098
|
-
* *immutable* header guard. Calling `headers.set()` / `headers.append()` on it
|
|
2099
|
-
* throws `TypeError: Can't modify immutable headers.`. Responses built in-worker
|
|
2100
|
-
* (`c.json()`, `c.text()`, `new Response(...)`) are mutable.
|
|
2101
|
-
*
|
|
2102
|
-
* Any middleware that annotates the response after `next()` (CORS, Server-Timing,
|
|
2103
|
-
* `Preference-Applied`, …) must therefore tolerate an immutable response. Rather
|
|
2104
|
-
* than guard each write with a try/catch, normalize once: re-wrapping is cheap
|
|
2105
|
-
* (the body stream is passed through, not copied) and deterministic, so there is
|
|
2106
|
-
* nothing to detect.
|
|
2107
|
-
*/
|
|
2108
2093
|
/**
|
|
2109
2094
|
* Return a response whose headers are mutable. A received response is re-wrapped
|
|
2110
2095
|
* into a fresh `Response` (which has the mutable "response" header guard); an
|
|
2111
2096
|
* already-mutable response is re-wrapped too, harmlessly, preserving every header
|
|
2112
2097
|
* already set on it.
|
|
2113
2098
|
*
|
|
2114
|
-
* A
|
|
2115
|
-
*
|
|
2116
|
-
*
|
|
2099
|
+
* A WebSocket upgrade is returned untouched: it carries a `webSocket` handle
|
|
2100
|
+
* that reconstruction would drop, breaking the upgrade. Its headers stay
|
|
2101
|
+
* immutable, so callers must not write to an upgrade response.
|
|
2117
2102
|
*/
|
|
2118
2103
|
declare function toMutableResponse(res: Response): Response;
|
|
2119
2104
|
/**
|
|
@@ -2977,7 +2962,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2977
2962
|
};
|
|
2978
2963
|
} & {
|
|
2979
2964
|
json: {
|
|
2980
|
-
type: "
|
|
2965
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2981
2966
|
phone_number?: string | undefined;
|
|
2982
2967
|
totp_secret?: string | undefined;
|
|
2983
2968
|
credential_id?: string | undefined;
|
|
@@ -3117,7 +3102,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3117
3102
|
};
|
|
3118
3103
|
};
|
|
3119
3104
|
output: {
|
|
3120
|
-
name: "
|
|
3105
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3121
3106
|
enabled: boolean;
|
|
3122
3107
|
trial_expired?: boolean | undefined;
|
|
3123
3108
|
}[];
|
|
@@ -3272,7 +3257,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3272
3257
|
$get: {
|
|
3273
3258
|
input: {
|
|
3274
3259
|
param: {
|
|
3275
|
-
factor_name: "
|
|
3260
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3276
3261
|
};
|
|
3277
3262
|
} & {
|
|
3278
3263
|
header: {
|
|
@@ -3280,7 +3265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3280
3265
|
};
|
|
3281
3266
|
};
|
|
3282
3267
|
output: {
|
|
3283
|
-
name: "
|
|
3268
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3284
3269
|
enabled: boolean;
|
|
3285
3270
|
trial_expired?: boolean | undefined;
|
|
3286
3271
|
};
|
|
@@ -3293,7 +3278,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3293
3278
|
$put: {
|
|
3294
3279
|
input: {
|
|
3295
3280
|
param: {
|
|
3296
|
-
factor_name: "
|
|
3281
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3297
3282
|
};
|
|
3298
3283
|
} & {
|
|
3299
3284
|
header: {
|
|
@@ -3305,7 +3290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3305
3290
|
};
|
|
3306
3291
|
};
|
|
3307
3292
|
output: {
|
|
3308
|
-
name: "
|
|
3293
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3309
3294
|
enabled: boolean;
|
|
3310
3295
|
trial_expired?: boolean | undefined;
|
|
3311
3296
|
};
|
|
@@ -4051,10 +4036,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4051
4036
|
email?: string | undefined;
|
|
4052
4037
|
};
|
|
4053
4038
|
id?: string | undefined;
|
|
4054
|
-
roles?: string[] | undefined;
|
|
4055
4039
|
app_metadata?: Record<string, any> | undefined;
|
|
4056
4040
|
user_metadata?: Record<string, any> | undefined;
|
|
4057
4041
|
connection_id?: string | undefined;
|
|
4042
|
+
roles?: string[] | undefined;
|
|
4058
4043
|
ttl_sec?: number | undefined;
|
|
4059
4044
|
send_invitation_email?: boolean | undefined;
|
|
4060
4045
|
};
|
|
@@ -5481,7 +5466,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5481
5466
|
hint?: string | undefined;
|
|
5482
5467
|
messages?: {
|
|
5483
5468
|
text: string;
|
|
5484
|
-
type: "
|
|
5469
|
+
type: "error" | "success" | "info" | "warning";
|
|
5485
5470
|
id?: number | undefined;
|
|
5486
5471
|
}[] | undefined;
|
|
5487
5472
|
required?: boolean | undefined;
|
|
@@ -5499,7 +5484,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5499
5484
|
hint?: string | undefined;
|
|
5500
5485
|
messages?: {
|
|
5501
5486
|
text: string;
|
|
5502
|
-
type: "
|
|
5487
|
+
type: "error" | "success" | "info" | "warning";
|
|
5503
5488
|
id?: number | undefined;
|
|
5504
5489
|
}[] | undefined;
|
|
5505
5490
|
required?: boolean | undefined;
|
|
@@ -5523,7 +5508,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5523
5508
|
hint?: string | undefined;
|
|
5524
5509
|
messages?: {
|
|
5525
5510
|
text: string;
|
|
5526
|
-
type: "
|
|
5511
|
+
type: "error" | "success" | "info" | "warning";
|
|
5527
5512
|
id?: number | undefined;
|
|
5528
5513
|
}[] | undefined;
|
|
5529
5514
|
required?: boolean | undefined;
|
|
@@ -5547,7 +5532,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5547
5532
|
hint?: string | undefined;
|
|
5548
5533
|
messages?: {
|
|
5549
5534
|
text: string;
|
|
5550
|
-
type: "
|
|
5535
|
+
type: "error" | "success" | "info" | "warning";
|
|
5551
5536
|
id?: number | undefined;
|
|
5552
5537
|
}[] | undefined;
|
|
5553
5538
|
required?: boolean | undefined;
|
|
@@ -5571,7 +5556,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5571
5556
|
hint?: string | undefined;
|
|
5572
5557
|
messages?: {
|
|
5573
5558
|
text: string;
|
|
5574
|
-
type: "
|
|
5559
|
+
type: "error" | "success" | "info" | "warning";
|
|
5575
5560
|
id?: number | undefined;
|
|
5576
5561
|
}[] | undefined;
|
|
5577
5562
|
required?: boolean | undefined;
|
|
@@ -5600,7 +5585,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5600
5585
|
hint?: string | undefined;
|
|
5601
5586
|
messages?: {
|
|
5602
5587
|
text: string;
|
|
5603
|
-
type: "
|
|
5588
|
+
type: "error" | "success" | "info" | "warning";
|
|
5604
5589
|
id?: number | undefined;
|
|
5605
5590
|
}[] | undefined;
|
|
5606
5591
|
required?: boolean | undefined;
|
|
@@ -5615,7 +5600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5615
5600
|
hint?: string | undefined;
|
|
5616
5601
|
messages?: {
|
|
5617
5602
|
text: string;
|
|
5618
|
-
type: "
|
|
5603
|
+
type: "error" | "success" | "info" | "warning";
|
|
5619
5604
|
id?: number | undefined;
|
|
5620
5605
|
}[] | undefined;
|
|
5621
5606
|
required?: boolean | undefined;
|
|
@@ -5636,7 +5621,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5636
5621
|
hint?: string | undefined;
|
|
5637
5622
|
messages?: {
|
|
5638
5623
|
text: string;
|
|
5639
|
-
type: "
|
|
5624
|
+
type: "error" | "success" | "info" | "warning";
|
|
5640
5625
|
id?: number | undefined;
|
|
5641
5626
|
}[] | undefined;
|
|
5642
5627
|
required?: boolean | undefined;
|
|
@@ -5661,7 +5646,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5661
5646
|
hint?: string | undefined;
|
|
5662
5647
|
messages?: {
|
|
5663
5648
|
text: string;
|
|
5664
|
-
type: "
|
|
5649
|
+
type: "error" | "success" | "info" | "warning";
|
|
5665
5650
|
id?: number | undefined;
|
|
5666
5651
|
}[] | undefined;
|
|
5667
5652
|
required?: boolean | undefined;
|
|
@@ -5680,7 +5665,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5680
5665
|
hint?: string | undefined;
|
|
5681
5666
|
messages?: {
|
|
5682
5667
|
text: string;
|
|
5683
|
-
type: "
|
|
5668
|
+
type: "error" | "success" | "info" | "warning";
|
|
5684
5669
|
id?: number | undefined;
|
|
5685
5670
|
}[] | undefined;
|
|
5686
5671
|
required?: boolean | undefined;
|
|
@@ -5700,7 +5685,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5700
5685
|
hint?: string | undefined;
|
|
5701
5686
|
messages?: {
|
|
5702
5687
|
text: string;
|
|
5703
|
-
type: "
|
|
5688
|
+
type: "error" | "success" | "info" | "warning";
|
|
5704
5689
|
id?: number | undefined;
|
|
5705
5690
|
}[] | undefined;
|
|
5706
5691
|
required?: boolean | undefined;
|
|
@@ -5719,7 +5704,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5719
5704
|
hint?: string | undefined;
|
|
5720
5705
|
messages?: {
|
|
5721
5706
|
text: string;
|
|
5722
|
-
type: "
|
|
5707
|
+
type: "error" | "success" | "info" | "warning";
|
|
5723
5708
|
id?: number | undefined;
|
|
5724
5709
|
}[] | undefined;
|
|
5725
5710
|
required?: boolean | undefined;
|
|
@@ -5741,7 +5726,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5741
5726
|
hint?: string | undefined;
|
|
5742
5727
|
messages?: {
|
|
5743
5728
|
text: string;
|
|
5744
|
-
type: "
|
|
5729
|
+
type: "error" | "success" | "info" | "warning";
|
|
5745
5730
|
id?: number | undefined;
|
|
5746
5731
|
}[] | undefined;
|
|
5747
5732
|
required?: boolean | undefined;
|
|
@@ -5763,7 +5748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5763
5748
|
hint?: string | undefined;
|
|
5764
5749
|
messages?: {
|
|
5765
5750
|
text: string;
|
|
5766
|
-
type: "
|
|
5751
|
+
type: "error" | "success" | "info" | "warning";
|
|
5767
5752
|
id?: number | undefined;
|
|
5768
5753
|
}[] | undefined;
|
|
5769
5754
|
required?: boolean | undefined;
|
|
@@ -5782,7 +5767,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5782
5767
|
hint?: string | undefined;
|
|
5783
5768
|
messages?: {
|
|
5784
5769
|
text: string;
|
|
5785
|
-
type: "
|
|
5770
|
+
type: "error" | "success" | "info" | "warning";
|
|
5786
5771
|
id?: number | undefined;
|
|
5787
5772
|
}[] | undefined;
|
|
5788
5773
|
required?: boolean | undefined;
|
|
@@ -5807,7 +5792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5807
5792
|
hint?: string | undefined;
|
|
5808
5793
|
messages?: {
|
|
5809
5794
|
text: string;
|
|
5810
|
-
type: "
|
|
5795
|
+
type: "error" | "success" | "info" | "warning";
|
|
5811
5796
|
id?: number | undefined;
|
|
5812
5797
|
}[] | undefined;
|
|
5813
5798
|
required?: boolean | undefined;
|
|
@@ -5828,7 +5813,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5828
5813
|
hint?: string | undefined;
|
|
5829
5814
|
messages?: {
|
|
5830
5815
|
text: string;
|
|
5831
|
-
type: "
|
|
5816
|
+
type: "error" | "success" | "info" | "warning";
|
|
5832
5817
|
id?: number | undefined;
|
|
5833
5818
|
}[] | undefined;
|
|
5834
5819
|
required?: boolean | undefined;
|
|
@@ -5849,7 +5834,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5849
5834
|
hint?: string | undefined;
|
|
5850
5835
|
messages?: {
|
|
5851
5836
|
text: string;
|
|
5852
|
-
type: "
|
|
5837
|
+
type: "error" | "success" | "info" | "warning";
|
|
5853
5838
|
id?: number | undefined;
|
|
5854
5839
|
}[] | undefined;
|
|
5855
5840
|
required?: boolean | undefined;
|
|
@@ -6082,7 +6067,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6082
6067
|
hint?: string | undefined;
|
|
6083
6068
|
messages?: {
|
|
6084
6069
|
text: string;
|
|
6085
|
-
type: "
|
|
6070
|
+
type: "error" | "success" | "info" | "warning";
|
|
6086
6071
|
id?: number | undefined;
|
|
6087
6072
|
}[] | undefined;
|
|
6088
6073
|
required?: boolean | undefined;
|
|
@@ -6100,7 +6085,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6100
6085
|
hint?: string | undefined;
|
|
6101
6086
|
messages?: {
|
|
6102
6087
|
text: string;
|
|
6103
|
-
type: "
|
|
6088
|
+
type: "error" | "success" | "info" | "warning";
|
|
6104
6089
|
id?: number | undefined;
|
|
6105
6090
|
}[] | undefined;
|
|
6106
6091
|
required?: boolean | undefined;
|
|
@@ -6124,7 +6109,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6124
6109
|
hint?: string | undefined;
|
|
6125
6110
|
messages?: {
|
|
6126
6111
|
text: string;
|
|
6127
|
-
type: "
|
|
6112
|
+
type: "error" | "success" | "info" | "warning";
|
|
6128
6113
|
id?: number | undefined;
|
|
6129
6114
|
}[] | undefined;
|
|
6130
6115
|
required?: boolean | undefined;
|
|
@@ -6148,7 +6133,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6148
6133
|
hint?: string | undefined;
|
|
6149
6134
|
messages?: {
|
|
6150
6135
|
text: string;
|
|
6151
|
-
type: "
|
|
6136
|
+
type: "error" | "success" | "info" | "warning";
|
|
6152
6137
|
id?: number | undefined;
|
|
6153
6138
|
}[] | undefined;
|
|
6154
6139
|
required?: boolean | undefined;
|
|
@@ -6172,7 +6157,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6172
6157
|
hint?: string | undefined;
|
|
6173
6158
|
messages?: {
|
|
6174
6159
|
text: string;
|
|
6175
|
-
type: "
|
|
6160
|
+
type: "error" | "success" | "info" | "warning";
|
|
6176
6161
|
id?: number | undefined;
|
|
6177
6162
|
}[] | undefined;
|
|
6178
6163
|
required?: boolean | undefined;
|
|
@@ -6201,7 +6186,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6201
6186
|
hint?: string | undefined;
|
|
6202
6187
|
messages?: {
|
|
6203
6188
|
text: string;
|
|
6204
|
-
type: "
|
|
6189
|
+
type: "error" | "success" | "info" | "warning";
|
|
6205
6190
|
id?: number | undefined;
|
|
6206
6191
|
}[] | undefined;
|
|
6207
6192
|
required?: boolean | undefined;
|
|
@@ -6216,7 +6201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6216
6201
|
hint?: string | undefined;
|
|
6217
6202
|
messages?: {
|
|
6218
6203
|
text: string;
|
|
6219
|
-
type: "
|
|
6204
|
+
type: "error" | "success" | "info" | "warning";
|
|
6220
6205
|
id?: number | undefined;
|
|
6221
6206
|
}[] | undefined;
|
|
6222
6207
|
required?: boolean | undefined;
|
|
@@ -6237,7 +6222,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6237
6222
|
hint?: string | undefined;
|
|
6238
6223
|
messages?: {
|
|
6239
6224
|
text: string;
|
|
6240
|
-
type: "
|
|
6225
|
+
type: "error" | "success" | "info" | "warning";
|
|
6241
6226
|
id?: number | undefined;
|
|
6242
6227
|
}[] | undefined;
|
|
6243
6228
|
required?: boolean | undefined;
|
|
@@ -6262,7 +6247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6262
6247
|
hint?: string | undefined;
|
|
6263
6248
|
messages?: {
|
|
6264
6249
|
text: string;
|
|
6265
|
-
type: "
|
|
6250
|
+
type: "error" | "success" | "info" | "warning";
|
|
6266
6251
|
id?: number | undefined;
|
|
6267
6252
|
}[] | undefined;
|
|
6268
6253
|
required?: boolean | undefined;
|
|
@@ -6281,7 +6266,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6281
6266
|
hint?: string | undefined;
|
|
6282
6267
|
messages?: {
|
|
6283
6268
|
text: string;
|
|
6284
|
-
type: "
|
|
6269
|
+
type: "error" | "success" | "info" | "warning";
|
|
6285
6270
|
id?: number | undefined;
|
|
6286
6271
|
}[] | undefined;
|
|
6287
6272
|
required?: boolean | undefined;
|
|
@@ -6301,7 +6286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6301
6286
|
hint?: string | undefined;
|
|
6302
6287
|
messages?: {
|
|
6303
6288
|
text: string;
|
|
6304
|
-
type: "
|
|
6289
|
+
type: "error" | "success" | "info" | "warning";
|
|
6305
6290
|
id?: number | undefined;
|
|
6306
6291
|
}[] | undefined;
|
|
6307
6292
|
required?: boolean | undefined;
|
|
@@ -6320,7 +6305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6320
6305
|
hint?: string | undefined;
|
|
6321
6306
|
messages?: {
|
|
6322
6307
|
text: string;
|
|
6323
|
-
type: "
|
|
6308
|
+
type: "error" | "success" | "info" | "warning";
|
|
6324
6309
|
id?: number | undefined;
|
|
6325
6310
|
}[] | undefined;
|
|
6326
6311
|
required?: boolean | undefined;
|
|
@@ -6342,7 +6327,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6342
6327
|
hint?: string | undefined;
|
|
6343
6328
|
messages?: {
|
|
6344
6329
|
text: string;
|
|
6345
|
-
type: "
|
|
6330
|
+
type: "error" | "success" | "info" | "warning";
|
|
6346
6331
|
id?: number | undefined;
|
|
6347
6332
|
}[] | undefined;
|
|
6348
6333
|
required?: boolean | undefined;
|
|
@@ -6364,7 +6349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6364
6349
|
hint?: string | undefined;
|
|
6365
6350
|
messages?: {
|
|
6366
6351
|
text: string;
|
|
6367
|
-
type: "
|
|
6352
|
+
type: "error" | "success" | "info" | "warning";
|
|
6368
6353
|
id?: number | undefined;
|
|
6369
6354
|
}[] | undefined;
|
|
6370
6355
|
required?: boolean | undefined;
|
|
@@ -6383,7 +6368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6383
6368
|
hint?: string | undefined;
|
|
6384
6369
|
messages?: {
|
|
6385
6370
|
text: string;
|
|
6386
|
-
type: "
|
|
6371
|
+
type: "error" | "success" | "info" | "warning";
|
|
6387
6372
|
id?: number | undefined;
|
|
6388
6373
|
}[] | undefined;
|
|
6389
6374
|
required?: boolean | undefined;
|
|
@@ -6408,7 +6393,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6408
6393
|
hint?: string | undefined;
|
|
6409
6394
|
messages?: {
|
|
6410
6395
|
text: string;
|
|
6411
|
-
type: "
|
|
6396
|
+
type: "error" | "success" | "info" | "warning";
|
|
6412
6397
|
id?: number | undefined;
|
|
6413
6398
|
}[] | undefined;
|
|
6414
6399
|
required?: boolean | undefined;
|
|
@@ -6429,7 +6414,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6429
6414
|
hint?: string | undefined;
|
|
6430
6415
|
messages?: {
|
|
6431
6416
|
text: string;
|
|
6432
|
-
type: "
|
|
6417
|
+
type: "error" | "success" | "info" | "warning";
|
|
6433
6418
|
id?: number | undefined;
|
|
6434
6419
|
}[] | undefined;
|
|
6435
6420
|
required?: boolean | undefined;
|
|
@@ -6450,7 +6435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6450
6435
|
hint?: string | undefined;
|
|
6451
6436
|
messages?: {
|
|
6452
6437
|
text: string;
|
|
6453
|
-
type: "
|
|
6438
|
+
type: "error" | "success" | "info" | "warning";
|
|
6454
6439
|
id?: number | undefined;
|
|
6455
6440
|
}[] | undefined;
|
|
6456
6441
|
required?: boolean | undefined;
|
|
@@ -6698,7 +6683,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6698
6683
|
hint?: string | undefined;
|
|
6699
6684
|
messages?: {
|
|
6700
6685
|
text: string;
|
|
6701
|
-
type: "
|
|
6686
|
+
type: "error" | "success" | "info" | "warning";
|
|
6702
6687
|
id?: number | undefined;
|
|
6703
6688
|
}[] | undefined;
|
|
6704
6689
|
required?: boolean | undefined;
|
|
@@ -6716,7 +6701,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6716
6701
|
hint?: string | undefined;
|
|
6717
6702
|
messages?: {
|
|
6718
6703
|
text: string;
|
|
6719
|
-
type: "
|
|
6704
|
+
type: "error" | "success" | "info" | "warning";
|
|
6720
6705
|
id?: number | undefined;
|
|
6721
6706
|
}[] | undefined;
|
|
6722
6707
|
required?: boolean | undefined;
|
|
@@ -6740,7 +6725,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6740
6725
|
hint?: string | undefined;
|
|
6741
6726
|
messages?: {
|
|
6742
6727
|
text: string;
|
|
6743
|
-
type: "
|
|
6728
|
+
type: "error" | "success" | "info" | "warning";
|
|
6744
6729
|
id?: number | undefined;
|
|
6745
6730
|
}[] | undefined;
|
|
6746
6731
|
required?: boolean | undefined;
|
|
@@ -6764,7 +6749,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6764
6749
|
hint?: string | undefined;
|
|
6765
6750
|
messages?: {
|
|
6766
6751
|
text: string;
|
|
6767
|
-
type: "
|
|
6752
|
+
type: "error" | "success" | "info" | "warning";
|
|
6768
6753
|
id?: number | undefined;
|
|
6769
6754
|
}[] | undefined;
|
|
6770
6755
|
required?: boolean | undefined;
|
|
@@ -6788,7 +6773,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6788
6773
|
hint?: string | undefined;
|
|
6789
6774
|
messages?: {
|
|
6790
6775
|
text: string;
|
|
6791
|
-
type: "
|
|
6776
|
+
type: "error" | "success" | "info" | "warning";
|
|
6792
6777
|
id?: number | undefined;
|
|
6793
6778
|
}[] | undefined;
|
|
6794
6779
|
required?: boolean | undefined;
|
|
@@ -6817,7 +6802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6817
6802
|
hint?: string | undefined;
|
|
6818
6803
|
messages?: {
|
|
6819
6804
|
text: string;
|
|
6820
|
-
type: "
|
|
6805
|
+
type: "error" | "success" | "info" | "warning";
|
|
6821
6806
|
id?: number | undefined;
|
|
6822
6807
|
}[] | undefined;
|
|
6823
6808
|
required?: boolean | undefined;
|
|
@@ -6832,7 +6817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6832
6817
|
hint?: string | undefined;
|
|
6833
6818
|
messages?: {
|
|
6834
6819
|
text: string;
|
|
6835
|
-
type: "
|
|
6820
|
+
type: "error" | "success" | "info" | "warning";
|
|
6836
6821
|
id?: number | undefined;
|
|
6837
6822
|
}[] | undefined;
|
|
6838
6823
|
required?: boolean | undefined;
|
|
@@ -6853,7 +6838,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6853
6838
|
hint?: string | undefined;
|
|
6854
6839
|
messages?: {
|
|
6855
6840
|
text: string;
|
|
6856
|
-
type: "
|
|
6841
|
+
type: "error" | "success" | "info" | "warning";
|
|
6857
6842
|
id?: number | undefined;
|
|
6858
6843
|
}[] | undefined;
|
|
6859
6844
|
required?: boolean | undefined;
|
|
@@ -6878,7 +6863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6878
6863
|
hint?: string | undefined;
|
|
6879
6864
|
messages?: {
|
|
6880
6865
|
text: string;
|
|
6881
|
-
type: "
|
|
6866
|
+
type: "error" | "success" | "info" | "warning";
|
|
6882
6867
|
id?: number | undefined;
|
|
6883
6868
|
}[] | undefined;
|
|
6884
6869
|
required?: boolean | undefined;
|
|
@@ -6897,7 +6882,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6897
6882
|
hint?: string | undefined;
|
|
6898
6883
|
messages?: {
|
|
6899
6884
|
text: string;
|
|
6900
|
-
type: "
|
|
6885
|
+
type: "error" | "success" | "info" | "warning";
|
|
6901
6886
|
id?: number | undefined;
|
|
6902
6887
|
}[] | undefined;
|
|
6903
6888
|
required?: boolean | undefined;
|
|
@@ -6917,7 +6902,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6917
6902
|
hint?: string | undefined;
|
|
6918
6903
|
messages?: {
|
|
6919
6904
|
text: string;
|
|
6920
|
-
type: "
|
|
6905
|
+
type: "error" | "success" | "info" | "warning";
|
|
6921
6906
|
id?: number | undefined;
|
|
6922
6907
|
}[] | undefined;
|
|
6923
6908
|
required?: boolean | undefined;
|
|
@@ -6936,7 +6921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6936
6921
|
hint?: string | undefined;
|
|
6937
6922
|
messages?: {
|
|
6938
6923
|
text: string;
|
|
6939
|
-
type: "
|
|
6924
|
+
type: "error" | "success" | "info" | "warning";
|
|
6940
6925
|
id?: number | undefined;
|
|
6941
6926
|
}[] | undefined;
|
|
6942
6927
|
required?: boolean | undefined;
|
|
@@ -6958,7 +6943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6958
6943
|
hint?: string | undefined;
|
|
6959
6944
|
messages?: {
|
|
6960
6945
|
text: string;
|
|
6961
|
-
type: "
|
|
6946
|
+
type: "error" | "success" | "info" | "warning";
|
|
6962
6947
|
id?: number | undefined;
|
|
6963
6948
|
}[] | undefined;
|
|
6964
6949
|
required?: boolean | undefined;
|
|
@@ -6980,7 +6965,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6980
6965
|
hint?: string | undefined;
|
|
6981
6966
|
messages?: {
|
|
6982
6967
|
text: string;
|
|
6983
|
-
type: "
|
|
6968
|
+
type: "error" | "success" | "info" | "warning";
|
|
6984
6969
|
id?: number | undefined;
|
|
6985
6970
|
}[] | undefined;
|
|
6986
6971
|
required?: boolean | undefined;
|
|
@@ -6999,7 +6984,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6999
6984
|
hint?: string | undefined;
|
|
7000
6985
|
messages?: {
|
|
7001
6986
|
text: string;
|
|
7002
|
-
type: "
|
|
6987
|
+
type: "error" | "success" | "info" | "warning";
|
|
7003
6988
|
id?: number | undefined;
|
|
7004
6989
|
}[] | undefined;
|
|
7005
6990
|
required?: boolean | undefined;
|
|
@@ -7024,7 +7009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7024
7009
|
hint?: string | undefined;
|
|
7025
7010
|
messages?: {
|
|
7026
7011
|
text: string;
|
|
7027
|
-
type: "
|
|
7012
|
+
type: "error" | "success" | "info" | "warning";
|
|
7028
7013
|
id?: number | undefined;
|
|
7029
7014
|
}[] | undefined;
|
|
7030
7015
|
required?: boolean | undefined;
|
|
@@ -7045,7 +7030,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7045
7030
|
hint?: string | undefined;
|
|
7046
7031
|
messages?: {
|
|
7047
7032
|
text: string;
|
|
7048
|
-
type: "
|
|
7033
|
+
type: "error" | "success" | "info" | "warning";
|
|
7049
7034
|
id?: number | undefined;
|
|
7050
7035
|
}[] | undefined;
|
|
7051
7036
|
required?: boolean | undefined;
|
|
@@ -7066,7 +7051,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7066
7051
|
hint?: string | undefined;
|
|
7067
7052
|
messages?: {
|
|
7068
7053
|
text: string;
|
|
7069
|
-
type: "
|
|
7054
|
+
type: "error" | "success" | "info" | "warning";
|
|
7070
7055
|
id?: number | undefined;
|
|
7071
7056
|
}[] | undefined;
|
|
7072
7057
|
required?: boolean | undefined;
|
|
@@ -7320,7 +7305,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7320
7305
|
hint?: string | undefined;
|
|
7321
7306
|
messages?: {
|
|
7322
7307
|
text: string;
|
|
7323
|
-
type: "
|
|
7308
|
+
type: "error" | "success" | "info" | "warning";
|
|
7324
7309
|
id?: number | undefined;
|
|
7325
7310
|
}[] | undefined;
|
|
7326
7311
|
required?: boolean | undefined;
|
|
@@ -7338,7 +7323,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7338
7323
|
hint?: string | undefined;
|
|
7339
7324
|
messages?: {
|
|
7340
7325
|
text: string;
|
|
7341
|
-
type: "
|
|
7326
|
+
type: "error" | "success" | "info" | "warning";
|
|
7342
7327
|
id?: number | undefined;
|
|
7343
7328
|
}[] | undefined;
|
|
7344
7329
|
required?: boolean | undefined;
|
|
@@ -7362,7 +7347,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7362
7347
|
hint?: string | undefined;
|
|
7363
7348
|
messages?: {
|
|
7364
7349
|
text: string;
|
|
7365
|
-
type: "
|
|
7350
|
+
type: "error" | "success" | "info" | "warning";
|
|
7366
7351
|
id?: number | undefined;
|
|
7367
7352
|
}[] | undefined;
|
|
7368
7353
|
required?: boolean | undefined;
|
|
@@ -7386,7 +7371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7386
7371
|
hint?: string | undefined;
|
|
7387
7372
|
messages?: {
|
|
7388
7373
|
text: string;
|
|
7389
|
-
type: "
|
|
7374
|
+
type: "error" | "success" | "info" | "warning";
|
|
7390
7375
|
id?: number | undefined;
|
|
7391
7376
|
}[] | undefined;
|
|
7392
7377
|
required?: boolean | undefined;
|
|
@@ -7410,7 +7395,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7410
7395
|
hint?: string | undefined;
|
|
7411
7396
|
messages?: {
|
|
7412
7397
|
text: string;
|
|
7413
|
-
type: "
|
|
7398
|
+
type: "error" | "success" | "info" | "warning";
|
|
7414
7399
|
id?: number | undefined;
|
|
7415
7400
|
}[] | undefined;
|
|
7416
7401
|
required?: boolean | undefined;
|
|
@@ -7435,7 +7420,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7435
7420
|
hint?: string | undefined;
|
|
7436
7421
|
messages?: {
|
|
7437
7422
|
text: string;
|
|
7438
|
-
type: "
|
|
7423
|
+
type: "error" | "success" | "info" | "warning";
|
|
7439
7424
|
id?: number | undefined;
|
|
7440
7425
|
}[] | undefined;
|
|
7441
7426
|
required?: boolean | undefined;
|
|
@@ -7450,7 +7435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7450
7435
|
hint?: string | undefined;
|
|
7451
7436
|
messages?: {
|
|
7452
7437
|
text: string;
|
|
7453
|
-
type: "
|
|
7438
|
+
type: "error" | "success" | "info" | "warning";
|
|
7454
7439
|
id?: number | undefined;
|
|
7455
7440
|
}[] | undefined;
|
|
7456
7441
|
required?: boolean | undefined;
|
|
@@ -7471,7 +7456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7471
7456
|
hint?: string | undefined;
|
|
7472
7457
|
messages?: {
|
|
7473
7458
|
text: string;
|
|
7474
|
-
type: "
|
|
7459
|
+
type: "error" | "success" | "info" | "warning";
|
|
7475
7460
|
id?: number | undefined;
|
|
7476
7461
|
}[] | undefined;
|
|
7477
7462
|
required?: boolean | undefined;
|
|
@@ -7496,7 +7481,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7496
7481
|
hint?: string | undefined;
|
|
7497
7482
|
messages?: {
|
|
7498
7483
|
text: string;
|
|
7499
|
-
type: "
|
|
7484
|
+
type: "error" | "success" | "info" | "warning";
|
|
7500
7485
|
id?: number | undefined;
|
|
7501
7486
|
}[] | undefined;
|
|
7502
7487
|
required?: boolean | undefined;
|
|
@@ -7515,7 +7500,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7515
7500
|
hint?: string | undefined;
|
|
7516
7501
|
messages?: {
|
|
7517
7502
|
text: string;
|
|
7518
|
-
type: "
|
|
7503
|
+
type: "error" | "success" | "info" | "warning";
|
|
7519
7504
|
id?: number | undefined;
|
|
7520
7505
|
}[] | undefined;
|
|
7521
7506
|
required?: boolean | undefined;
|
|
@@ -7535,7 +7520,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7535
7520
|
hint?: string | undefined;
|
|
7536
7521
|
messages?: {
|
|
7537
7522
|
text: string;
|
|
7538
|
-
type: "
|
|
7523
|
+
type: "error" | "success" | "info" | "warning";
|
|
7539
7524
|
id?: number | undefined;
|
|
7540
7525
|
}[] | undefined;
|
|
7541
7526
|
required?: boolean | undefined;
|
|
@@ -7554,7 +7539,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7554
7539
|
hint?: string | undefined;
|
|
7555
7540
|
messages?: {
|
|
7556
7541
|
text: string;
|
|
7557
|
-
type: "
|
|
7542
|
+
type: "error" | "success" | "info" | "warning";
|
|
7558
7543
|
id?: number | undefined;
|
|
7559
7544
|
}[] | undefined;
|
|
7560
7545
|
required?: boolean | undefined;
|
|
@@ -7576,7 +7561,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7576
7561
|
hint?: string | undefined;
|
|
7577
7562
|
messages?: {
|
|
7578
7563
|
text: string;
|
|
7579
|
-
type: "
|
|
7564
|
+
type: "error" | "success" | "info" | "warning";
|
|
7580
7565
|
id?: number | undefined;
|
|
7581
7566
|
}[] | undefined;
|
|
7582
7567
|
required?: boolean | undefined;
|
|
@@ -7598,7 +7583,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7598
7583
|
hint?: string | undefined;
|
|
7599
7584
|
messages?: {
|
|
7600
7585
|
text: string;
|
|
7601
|
-
type: "
|
|
7586
|
+
type: "error" | "success" | "info" | "warning";
|
|
7602
7587
|
id?: number | undefined;
|
|
7603
7588
|
}[] | undefined;
|
|
7604
7589
|
required?: boolean | undefined;
|
|
@@ -7617,7 +7602,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7617
7602
|
hint?: string | undefined;
|
|
7618
7603
|
messages?: {
|
|
7619
7604
|
text: string;
|
|
7620
|
-
type: "
|
|
7605
|
+
type: "error" | "success" | "info" | "warning";
|
|
7621
7606
|
id?: number | undefined;
|
|
7622
7607
|
}[] | undefined;
|
|
7623
7608
|
required?: boolean | undefined;
|
|
@@ -7642,7 +7627,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7642
7627
|
hint?: string | undefined;
|
|
7643
7628
|
messages?: {
|
|
7644
7629
|
text: string;
|
|
7645
|
-
type: "
|
|
7630
|
+
type: "error" | "success" | "info" | "warning";
|
|
7646
7631
|
id?: number | undefined;
|
|
7647
7632
|
}[] | undefined;
|
|
7648
7633
|
required?: boolean | undefined;
|
|
@@ -7663,7 +7648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7663
7648
|
hint?: string | undefined;
|
|
7664
7649
|
messages?: {
|
|
7665
7650
|
text: string;
|
|
7666
|
-
type: "
|
|
7651
|
+
type: "error" | "success" | "info" | "warning";
|
|
7667
7652
|
id?: number | undefined;
|
|
7668
7653
|
}[] | undefined;
|
|
7669
7654
|
required?: boolean | undefined;
|
|
@@ -7684,7 +7669,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7684
7669
|
hint?: string | undefined;
|
|
7685
7670
|
messages?: {
|
|
7686
7671
|
text: string;
|
|
7687
|
-
type: "
|
|
7672
|
+
type: "error" | "success" | "info" | "warning";
|
|
7688
7673
|
id?: number | undefined;
|
|
7689
7674
|
}[] | undefined;
|
|
7690
7675
|
required?: boolean | undefined;
|
|
@@ -7915,7 +7900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7915
7900
|
hint?: string | undefined;
|
|
7916
7901
|
messages?: {
|
|
7917
7902
|
text: string;
|
|
7918
|
-
type: "
|
|
7903
|
+
type: "error" | "success" | "info" | "warning";
|
|
7919
7904
|
id?: number | undefined;
|
|
7920
7905
|
}[] | undefined;
|
|
7921
7906
|
required?: boolean | undefined;
|
|
@@ -7933,7 +7918,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7933
7918
|
hint?: string | undefined;
|
|
7934
7919
|
messages?: {
|
|
7935
7920
|
text: string;
|
|
7936
|
-
type: "
|
|
7921
|
+
type: "error" | "success" | "info" | "warning";
|
|
7937
7922
|
id?: number | undefined;
|
|
7938
7923
|
}[] | undefined;
|
|
7939
7924
|
required?: boolean | undefined;
|
|
@@ -7957,7 +7942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7957
7942
|
hint?: string | undefined;
|
|
7958
7943
|
messages?: {
|
|
7959
7944
|
text: string;
|
|
7960
|
-
type: "
|
|
7945
|
+
type: "error" | "success" | "info" | "warning";
|
|
7961
7946
|
id?: number | undefined;
|
|
7962
7947
|
}[] | undefined;
|
|
7963
7948
|
required?: boolean | undefined;
|
|
@@ -7981,7 +7966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7981
7966
|
hint?: string | undefined;
|
|
7982
7967
|
messages?: {
|
|
7983
7968
|
text: string;
|
|
7984
|
-
type: "
|
|
7969
|
+
type: "error" | "success" | "info" | "warning";
|
|
7985
7970
|
id?: number | undefined;
|
|
7986
7971
|
}[] | undefined;
|
|
7987
7972
|
required?: boolean | undefined;
|
|
@@ -8005,7 +7990,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8005
7990
|
hint?: string | undefined;
|
|
8006
7991
|
messages?: {
|
|
8007
7992
|
text: string;
|
|
8008
|
-
type: "
|
|
7993
|
+
type: "error" | "success" | "info" | "warning";
|
|
8009
7994
|
id?: number | undefined;
|
|
8010
7995
|
}[] | undefined;
|
|
8011
7996
|
required?: boolean | undefined;
|
|
@@ -8034,7 +8019,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8034
8019
|
hint?: string | undefined;
|
|
8035
8020
|
messages?: {
|
|
8036
8021
|
text: string;
|
|
8037
|
-
type: "
|
|
8022
|
+
type: "error" | "success" | "info" | "warning";
|
|
8038
8023
|
id?: number | undefined;
|
|
8039
8024
|
}[] | undefined;
|
|
8040
8025
|
required?: boolean | undefined;
|
|
@@ -8049,7 +8034,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8049
8034
|
hint?: string | undefined;
|
|
8050
8035
|
messages?: {
|
|
8051
8036
|
text: string;
|
|
8052
|
-
type: "
|
|
8037
|
+
type: "error" | "success" | "info" | "warning";
|
|
8053
8038
|
id?: number | undefined;
|
|
8054
8039
|
}[] | undefined;
|
|
8055
8040
|
required?: boolean | undefined;
|
|
@@ -8070,7 +8055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8070
8055
|
hint?: string | undefined;
|
|
8071
8056
|
messages?: {
|
|
8072
8057
|
text: string;
|
|
8073
|
-
type: "
|
|
8058
|
+
type: "error" | "success" | "info" | "warning";
|
|
8074
8059
|
id?: number | undefined;
|
|
8075
8060
|
}[] | undefined;
|
|
8076
8061
|
required?: boolean | undefined;
|
|
@@ -8095,7 +8080,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8095
8080
|
hint?: string | undefined;
|
|
8096
8081
|
messages?: {
|
|
8097
8082
|
text: string;
|
|
8098
|
-
type: "
|
|
8083
|
+
type: "error" | "success" | "info" | "warning";
|
|
8099
8084
|
id?: number | undefined;
|
|
8100
8085
|
}[] | undefined;
|
|
8101
8086
|
required?: boolean | undefined;
|
|
@@ -8114,7 +8099,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8114
8099
|
hint?: string | undefined;
|
|
8115
8100
|
messages?: {
|
|
8116
8101
|
text: string;
|
|
8117
|
-
type: "
|
|
8102
|
+
type: "error" | "success" | "info" | "warning";
|
|
8118
8103
|
id?: number | undefined;
|
|
8119
8104
|
}[] | undefined;
|
|
8120
8105
|
required?: boolean | undefined;
|
|
@@ -8134,7 +8119,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8134
8119
|
hint?: string | undefined;
|
|
8135
8120
|
messages?: {
|
|
8136
8121
|
text: string;
|
|
8137
|
-
type: "
|
|
8122
|
+
type: "error" | "success" | "info" | "warning";
|
|
8138
8123
|
id?: number | undefined;
|
|
8139
8124
|
}[] | undefined;
|
|
8140
8125
|
required?: boolean | undefined;
|
|
@@ -8153,7 +8138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8153
8138
|
hint?: string | undefined;
|
|
8154
8139
|
messages?: {
|
|
8155
8140
|
text: string;
|
|
8156
|
-
type: "
|
|
8141
|
+
type: "error" | "success" | "info" | "warning";
|
|
8157
8142
|
id?: number | undefined;
|
|
8158
8143
|
}[] | undefined;
|
|
8159
8144
|
required?: boolean | undefined;
|
|
@@ -8175,7 +8160,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8175
8160
|
hint?: string | undefined;
|
|
8176
8161
|
messages?: {
|
|
8177
8162
|
text: string;
|
|
8178
|
-
type: "
|
|
8163
|
+
type: "error" | "success" | "info" | "warning";
|
|
8179
8164
|
id?: number | undefined;
|
|
8180
8165
|
}[] | undefined;
|
|
8181
8166
|
required?: boolean | undefined;
|
|
@@ -8197,7 +8182,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8197
8182
|
hint?: string | undefined;
|
|
8198
8183
|
messages?: {
|
|
8199
8184
|
text: string;
|
|
8200
|
-
type: "
|
|
8185
|
+
type: "error" | "success" | "info" | "warning";
|
|
8201
8186
|
id?: number | undefined;
|
|
8202
8187
|
}[] | undefined;
|
|
8203
8188
|
required?: boolean | undefined;
|
|
@@ -8216,7 +8201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8216
8201
|
hint?: string | undefined;
|
|
8217
8202
|
messages?: {
|
|
8218
8203
|
text: string;
|
|
8219
|
-
type: "
|
|
8204
|
+
type: "error" | "success" | "info" | "warning";
|
|
8220
8205
|
id?: number | undefined;
|
|
8221
8206
|
}[] | undefined;
|
|
8222
8207
|
required?: boolean | undefined;
|
|
@@ -8241,7 +8226,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8241
8226
|
hint?: string | undefined;
|
|
8242
8227
|
messages?: {
|
|
8243
8228
|
text: string;
|
|
8244
|
-
type: "
|
|
8229
|
+
type: "error" | "success" | "info" | "warning";
|
|
8245
8230
|
id?: number | undefined;
|
|
8246
8231
|
}[] | undefined;
|
|
8247
8232
|
required?: boolean | undefined;
|
|
@@ -8262,7 +8247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8262
8247
|
hint?: string | undefined;
|
|
8263
8248
|
messages?: {
|
|
8264
8249
|
text: string;
|
|
8265
|
-
type: "
|
|
8250
|
+
type: "error" | "success" | "info" | "warning";
|
|
8266
8251
|
id?: number | undefined;
|
|
8267
8252
|
}[] | undefined;
|
|
8268
8253
|
required?: boolean | undefined;
|
|
@@ -8283,7 +8268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8283
8268
|
hint?: string | undefined;
|
|
8284
8269
|
messages?: {
|
|
8285
8270
|
text: string;
|
|
8286
|
-
type: "
|
|
8271
|
+
type: "error" | "success" | "info" | "warning";
|
|
8287
8272
|
id?: number | undefined;
|
|
8288
8273
|
}[] | undefined;
|
|
8289
8274
|
required?: boolean | undefined;
|
|
@@ -8516,7 +8501,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8516
8501
|
hint?: string | undefined;
|
|
8517
8502
|
messages?: {
|
|
8518
8503
|
text: string;
|
|
8519
|
-
type: "
|
|
8504
|
+
type: "error" | "success" | "info" | "warning";
|
|
8520
8505
|
id?: number | undefined;
|
|
8521
8506
|
}[] | undefined;
|
|
8522
8507
|
required?: boolean | undefined;
|
|
@@ -8534,7 +8519,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8534
8519
|
hint?: string | undefined;
|
|
8535
8520
|
messages?: {
|
|
8536
8521
|
text: string;
|
|
8537
|
-
type: "
|
|
8522
|
+
type: "error" | "success" | "info" | "warning";
|
|
8538
8523
|
id?: number | undefined;
|
|
8539
8524
|
}[] | undefined;
|
|
8540
8525
|
required?: boolean | undefined;
|
|
@@ -8558,7 +8543,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8558
8543
|
hint?: string | undefined;
|
|
8559
8544
|
messages?: {
|
|
8560
8545
|
text: string;
|
|
8561
|
-
type: "
|
|
8546
|
+
type: "error" | "success" | "info" | "warning";
|
|
8562
8547
|
id?: number | undefined;
|
|
8563
8548
|
}[] | undefined;
|
|
8564
8549
|
required?: boolean | undefined;
|
|
@@ -8582,7 +8567,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8582
8567
|
hint?: string | undefined;
|
|
8583
8568
|
messages?: {
|
|
8584
8569
|
text: string;
|
|
8585
|
-
type: "
|
|
8570
|
+
type: "error" | "success" | "info" | "warning";
|
|
8586
8571
|
id?: number | undefined;
|
|
8587
8572
|
}[] | undefined;
|
|
8588
8573
|
required?: boolean | undefined;
|
|
@@ -8606,7 +8591,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8606
8591
|
hint?: string | undefined;
|
|
8607
8592
|
messages?: {
|
|
8608
8593
|
text: string;
|
|
8609
|
-
type: "
|
|
8594
|
+
type: "error" | "success" | "info" | "warning";
|
|
8610
8595
|
id?: number | undefined;
|
|
8611
8596
|
}[] | undefined;
|
|
8612
8597
|
required?: boolean | undefined;
|
|
@@ -8631,7 +8616,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8631
8616
|
hint?: string | undefined;
|
|
8632
8617
|
messages?: {
|
|
8633
8618
|
text: string;
|
|
8634
|
-
type: "
|
|
8619
|
+
type: "error" | "success" | "info" | "warning";
|
|
8635
8620
|
id?: number | undefined;
|
|
8636
8621
|
}[] | undefined;
|
|
8637
8622
|
required?: boolean | undefined;
|
|
@@ -8646,7 +8631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8646
8631
|
hint?: string | undefined;
|
|
8647
8632
|
messages?: {
|
|
8648
8633
|
text: string;
|
|
8649
|
-
type: "
|
|
8634
|
+
type: "error" | "success" | "info" | "warning";
|
|
8650
8635
|
id?: number | undefined;
|
|
8651
8636
|
}[] | undefined;
|
|
8652
8637
|
required?: boolean | undefined;
|
|
@@ -8667,7 +8652,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8667
8652
|
hint?: string | undefined;
|
|
8668
8653
|
messages?: {
|
|
8669
8654
|
text: string;
|
|
8670
|
-
type: "
|
|
8655
|
+
type: "error" | "success" | "info" | "warning";
|
|
8671
8656
|
id?: number | undefined;
|
|
8672
8657
|
}[] | undefined;
|
|
8673
8658
|
required?: boolean | undefined;
|
|
@@ -8692,7 +8677,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8692
8677
|
hint?: string | undefined;
|
|
8693
8678
|
messages?: {
|
|
8694
8679
|
text: string;
|
|
8695
|
-
type: "
|
|
8680
|
+
type: "error" | "success" | "info" | "warning";
|
|
8696
8681
|
id?: number | undefined;
|
|
8697
8682
|
}[] | undefined;
|
|
8698
8683
|
required?: boolean | undefined;
|
|
@@ -8711,7 +8696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8711
8696
|
hint?: string | undefined;
|
|
8712
8697
|
messages?: {
|
|
8713
8698
|
text: string;
|
|
8714
|
-
type: "
|
|
8699
|
+
type: "error" | "success" | "info" | "warning";
|
|
8715
8700
|
id?: number | undefined;
|
|
8716
8701
|
}[] | undefined;
|
|
8717
8702
|
required?: boolean | undefined;
|
|
@@ -8731,7 +8716,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8731
8716
|
hint?: string | undefined;
|
|
8732
8717
|
messages?: {
|
|
8733
8718
|
text: string;
|
|
8734
|
-
type: "
|
|
8719
|
+
type: "error" | "success" | "info" | "warning";
|
|
8735
8720
|
id?: number | undefined;
|
|
8736
8721
|
}[] | undefined;
|
|
8737
8722
|
required?: boolean | undefined;
|
|
@@ -8750,7 +8735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8750
8735
|
hint?: string | undefined;
|
|
8751
8736
|
messages?: {
|
|
8752
8737
|
text: string;
|
|
8753
|
-
type: "
|
|
8738
|
+
type: "error" | "success" | "info" | "warning";
|
|
8754
8739
|
id?: number | undefined;
|
|
8755
8740
|
}[] | undefined;
|
|
8756
8741
|
required?: boolean | undefined;
|
|
@@ -8772,7 +8757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8772
8757
|
hint?: string | undefined;
|
|
8773
8758
|
messages?: {
|
|
8774
8759
|
text: string;
|
|
8775
|
-
type: "
|
|
8760
|
+
type: "error" | "success" | "info" | "warning";
|
|
8776
8761
|
id?: number | undefined;
|
|
8777
8762
|
}[] | undefined;
|
|
8778
8763
|
required?: boolean | undefined;
|
|
@@ -8794,7 +8779,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8794
8779
|
hint?: string | undefined;
|
|
8795
8780
|
messages?: {
|
|
8796
8781
|
text: string;
|
|
8797
|
-
type: "
|
|
8782
|
+
type: "error" | "success" | "info" | "warning";
|
|
8798
8783
|
id?: number | undefined;
|
|
8799
8784
|
}[] | undefined;
|
|
8800
8785
|
required?: boolean | undefined;
|
|
@@ -8813,7 +8798,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8813
8798
|
hint?: string | undefined;
|
|
8814
8799
|
messages?: {
|
|
8815
8800
|
text: string;
|
|
8816
|
-
type: "
|
|
8801
|
+
type: "error" | "success" | "info" | "warning";
|
|
8817
8802
|
id?: number | undefined;
|
|
8818
8803
|
}[] | undefined;
|
|
8819
8804
|
required?: boolean | undefined;
|
|
@@ -8838,7 +8823,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8838
8823
|
hint?: string | undefined;
|
|
8839
8824
|
messages?: {
|
|
8840
8825
|
text: string;
|
|
8841
|
-
type: "
|
|
8826
|
+
type: "error" | "success" | "info" | "warning";
|
|
8842
8827
|
id?: number | undefined;
|
|
8843
8828
|
}[] | undefined;
|
|
8844
8829
|
required?: boolean | undefined;
|
|
@@ -8859,7 +8844,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8859
8844
|
hint?: string | undefined;
|
|
8860
8845
|
messages?: {
|
|
8861
8846
|
text: string;
|
|
8862
|
-
type: "
|
|
8847
|
+
type: "error" | "success" | "info" | "warning";
|
|
8863
8848
|
id?: number | undefined;
|
|
8864
8849
|
}[] | undefined;
|
|
8865
8850
|
required?: boolean | undefined;
|
|
@@ -8880,7 +8865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8880
8865
|
hint?: string | undefined;
|
|
8881
8866
|
messages?: {
|
|
8882
8867
|
text: string;
|
|
8883
|
-
type: "
|
|
8868
|
+
type: "error" | "success" | "info" | "warning";
|
|
8884
8869
|
id?: number | undefined;
|
|
8885
8870
|
}[] | undefined;
|
|
8886
8871
|
required?: boolean | undefined;
|
|
@@ -9111,7 +9096,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9111
9096
|
hint?: string | undefined;
|
|
9112
9097
|
messages?: {
|
|
9113
9098
|
text: string;
|
|
9114
|
-
type: "
|
|
9099
|
+
type: "error" | "success" | "info" | "warning";
|
|
9115
9100
|
id?: number | undefined;
|
|
9116
9101
|
}[] | undefined;
|
|
9117
9102
|
required?: boolean | undefined;
|
|
@@ -9129,7 +9114,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9129
9114
|
hint?: string | undefined;
|
|
9130
9115
|
messages?: {
|
|
9131
9116
|
text: string;
|
|
9132
|
-
type: "
|
|
9117
|
+
type: "error" | "success" | "info" | "warning";
|
|
9133
9118
|
id?: number | undefined;
|
|
9134
9119
|
}[] | undefined;
|
|
9135
9120
|
required?: boolean | undefined;
|
|
@@ -9153,7 +9138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9153
9138
|
hint?: string | undefined;
|
|
9154
9139
|
messages?: {
|
|
9155
9140
|
text: string;
|
|
9156
|
-
type: "
|
|
9141
|
+
type: "error" | "success" | "info" | "warning";
|
|
9157
9142
|
id?: number | undefined;
|
|
9158
9143
|
}[] | undefined;
|
|
9159
9144
|
required?: boolean | undefined;
|
|
@@ -9177,7 +9162,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9177
9162
|
hint?: string | undefined;
|
|
9178
9163
|
messages?: {
|
|
9179
9164
|
text: string;
|
|
9180
|
-
type: "
|
|
9165
|
+
type: "error" | "success" | "info" | "warning";
|
|
9181
9166
|
id?: number | undefined;
|
|
9182
9167
|
}[] | undefined;
|
|
9183
9168
|
required?: boolean | undefined;
|
|
@@ -9201,7 +9186,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9201
9186
|
hint?: string | undefined;
|
|
9202
9187
|
messages?: {
|
|
9203
9188
|
text: string;
|
|
9204
|
-
type: "
|
|
9189
|
+
type: "error" | "success" | "info" | "warning";
|
|
9205
9190
|
id?: number | undefined;
|
|
9206
9191
|
}[] | undefined;
|
|
9207
9192
|
required?: boolean | undefined;
|
|
@@ -9230,7 +9215,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9230
9215
|
hint?: string | undefined;
|
|
9231
9216
|
messages?: {
|
|
9232
9217
|
text: string;
|
|
9233
|
-
type: "
|
|
9218
|
+
type: "error" | "success" | "info" | "warning";
|
|
9234
9219
|
id?: number | undefined;
|
|
9235
9220
|
}[] | undefined;
|
|
9236
9221
|
required?: boolean | undefined;
|
|
@@ -9245,7 +9230,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9245
9230
|
hint?: string | undefined;
|
|
9246
9231
|
messages?: {
|
|
9247
9232
|
text: string;
|
|
9248
|
-
type: "
|
|
9233
|
+
type: "error" | "success" | "info" | "warning";
|
|
9249
9234
|
id?: number | undefined;
|
|
9250
9235
|
}[] | undefined;
|
|
9251
9236
|
required?: boolean | undefined;
|
|
@@ -9266,7 +9251,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9266
9251
|
hint?: string | undefined;
|
|
9267
9252
|
messages?: {
|
|
9268
9253
|
text: string;
|
|
9269
|
-
type: "
|
|
9254
|
+
type: "error" | "success" | "info" | "warning";
|
|
9270
9255
|
id?: number | undefined;
|
|
9271
9256
|
}[] | undefined;
|
|
9272
9257
|
required?: boolean | undefined;
|
|
@@ -9291,7 +9276,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9291
9276
|
hint?: string | undefined;
|
|
9292
9277
|
messages?: {
|
|
9293
9278
|
text: string;
|
|
9294
|
-
type: "
|
|
9279
|
+
type: "error" | "success" | "info" | "warning";
|
|
9295
9280
|
id?: number | undefined;
|
|
9296
9281
|
}[] | undefined;
|
|
9297
9282
|
required?: boolean | undefined;
|
|
@@ -9310,7 +9295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9310
9295
|
hint?: string | undefined;
|
|
9311
9296
|
messages?: {
|
|
9312
9297
|
text: string;
|
|
9313
|
-
type: "
|
|
9298
|
+
type: "error" | "success" | "info" | "warning";
|
|
9314
9299
|
id?: number | undefined;
|
|
9315
9300
|
}[] | undefined;
|
|
9316
9301
|
required?: boolean | undefined;
|
|
@@ -9330,7 +9315,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9330
9315
|
hint?: string | undefined;
|
|
9331
9316
|
messages?: {
|
|
9332
9317
|
text: string;
|
|
9333
|
-
type: "
|
|
9318
|
+
type: "error" | "success" | "info" | "warning";
|
|
9334
9319
|
id?: number | undefined;
|
|
9335
9320
|
}[] | undefined;
|
|
9336
9321
|
required?: boolean | undefined;
|
|
@@ -9349,7 +9334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9349
9334
|
hint?: string | undefined;
|
|
9350
9335
|
messages?: {
|
|
9351
9336
|
text: string;
|
|
9352
|
-
type: "
|
|
9337
|
+
type: "error" | "success" | "info" | "warning";
|
|
9353
9338
|
id?: number | undefined;
|
|
9354
9339
|
}[] | undefined;
|
|
9355
9340
|
required?: boolean | undefined;
|
|
@@ -9371,7 +9356,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9371
9356
|
hint?: string | undefined;
|
|
9372
9357
|
messages?: {
|
|
9373
9358
|
text: string;
|
|
9374
|
-
type: "
|
|
9359
|
+
type: "error" | "success" | "info" | "warning";
|
|
9375
9360
|
id?: number | undefined;
|
|
9376
9361
|
}[] | undefined;
|
|
9377
9362
|
required?: boolean | undefined;
|
|
@@ -9393,7 +9378,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9393
9378
|
hint?: string | undefined;
|
|
9394
9379
|
messages?: {
|
|
9395
9380
|
text: string;
|
|
9396
|
-
type: "
|
|
9381
|
+
type: "error" | "success" | "info" | "warning";
|
|
9397
9382
|
id?: number | undefined;
|
|
9398
9383
|
}[] | undefined;
|
|
9399
9384
|
required?: boolean | undefined;
|
|
@@ -9412,7 +9397,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9412
9397
|
hint?: string | undefined;
|
|
9413
9398
|
messages?: {
|
|
9414
9399
|
text: string;
|
|
9415
|
-
type: "
|
|
9400
|
+
type: "error" | "success" | "info" | "warning";
|
|
9416
9401
|
id?: number | undefined;
|
|
9417
9402
|
}[] | undefined;
|
|
9418
9403
|
required?: boolean | undefined;
|
|
@@ -9437,7 +9422,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9437
9422
|
hint?: string | undefined;
|
|
9438
9423
|
messages?: {
|
|
9439
9424
|
text: string;
|
|
9440
|
-
type: "
|
|
9425
|
+
type: "error" | "success" | "info" | "warning";
|
|
9441
9426
|
id?: number | undefined;
|
|
9442
9427
|
}[] | undefined;
|
|
9443
9428
|
required?: boolean | undefined;
|
|
@@ -9458,7 +9443,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9458
9443
|
hint?: string | undefined;
|
|
9459
9444
|
messages?: {
|
|
9460
9445
|
text: string;
|
|
9461
|
-
type: "
|
|
9446
|
+
type: "error" | "success" | "info" | "warning";
|
|
9462
9447
|
id?: number | undefined;
|
|
9463
9448
|
}[] | undefined;
|
|
9464
9449
|
required?: boolean | undefined;
|
|
@@ -9479,7 +9464,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9479
9464
|
hint?: string | undefined;
|
|
9480
9465
|
messages?: {
|
|
9481
9466
|
text: string;
|
|
9482
|
-
type: "
|
|
9467
|
+
type: "error" | "success" | "info" | "warning";
|
|
9483
9468
|
id?: number | undefined;
|
|
9484
9469
|
}[] | undefined;
|
|
9485
9470
|
required?: boolean | undefined;
|
|
@@ -9709,7 +9694,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9709
9694
|
};
|
|
9710
9695
|
};
|
|
9711
9696
|
output: {
|
|
9712
|
-
prompt: "
|
|
9697
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9713
9698
|
language: string;
|
|
9714
9699
|
}[];
|
|
9715
9700
|
outputFormat: "json";
|
|
@@ -9747,7 +9732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9747
9732
|
$get: {
|
|
9748
9733
|
input: {
|
|
9749
9734
|
param: {
|
|
9750
|
-
prompt: "
|
|
9735
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9751
9736
|
language: string;
|
|
9752
9737
|
};
|
|
9753
9738
|
} & {
|
|
@@ -9769,7 +9754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9769
9754
|
$put: {
|
|
9770
9755
|
input: {
|
|
9771
9756
|
param: {
|
|
9772
|
-
prompt: "
|
|
9757
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9773
9758
|
language: string;
|
|
9774
9759
|
};
|
|
9775
9760
|
} & {
|
|
@@ -9793,7 +9778,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9793
9778
|
$delete: {
|
|
9794
9779
|
input: {
|
|
9795
9780
|
param: {
|
|
9796
|
-
prompt: "
|
|
9781
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9797
9782
|
language: string;
|
|
9798
9783
|
};
|
|
9799
9784
|
} & {
|
|
@@ -10655,7 +10640,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10655
10640
|
};
|
|
10656
10641
|
} | {
|
|
10657
10642
|
mode: "inline";
|
|
10658
|
-
status: "
|
|
10643
|
+
status: "error" | "success";
|
|
10659
10644
|
connection_id: string;
|
|
10660
10645
|
connection_name: string;
|
|
10661
10646
|
strategy: string;
|
|
@@ -11602,7 +11587,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11602
11587
|
created_at: string;
|
|
11603
11588
|
updated_at: string;
|
|
11604
11589
|
name: string;
|
|
11605
|
-
provider: "auth0" | "
|
|
11590
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11606
11591
|
connection: string;
|
|
11607
11592
|
enabled: boolean;
|
|
11608
11593
|
credentials: {
|
|
@@ -11634,7 +11619,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11634
11619
|
created_at: string;
|
|
11635
11620
|
updated_at: string;
|
|
11636
11621
|
name: string;
|
|
11637
|
-
provider: "auth0" | "
|
|
11622
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11638
11623
|
connection: string;
|
|
11639
11624
|
enabled: boolean;
|
|
11640
11625
|
credentials: {
|
|
@@ -11660,7 +11645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11660
11645
|
} & {
|
|
11661
11646
|
json: {
|
|
11662
11647
|
name: string;
|
|
11663
|
-
provider: "auth0" | "
|
|
11648
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11664
11649
|
connection: string;
|
|
11665
11650
|
credentials: {
|
|
11666
11651
|
domain: string;
|
|
@@ -11677,7 +11662,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11677
11662
|
created_at: string;
|
|
11678
11663
|
updated_at: string;
|
|
11679
11664
|
name: string;
|
|
11680
|
-
provider: "auth0" | "
|
|
11665
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11681
11666
|
connection: string;
|
|
11682
11667
|
enabled: boolean;
|
|
11683
11668
|
credentials: {
|
|
@@ -11708,7 +11693,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11708
11693
|
json: {
|
|
11709
11694
|
id?: string | undefined;
|
|
11710
11695
|
name?: string | undefined;
|
|
11711
|
-
provider?: "auth0" | "
|
|
11696
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
11712
11697
|
connection?: string | undefined;
|
|
11713
11698
|
enabled?: boolean | undefined;
|
|
11714
11699
|
credentials?: {
|
|
@@ -11724,7 +11709,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11724
11709
|
created_at: string;
|
|
11725
11710
|
updated_at: string;
|
|
11726
11711
|
name: string;
|
|
11727
|
-
provider: "auth0" | "
|
|
11712
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
11728
11713
|
connection: string;
|
|
11729
11714
|
enabled: boolean;
|
|
11730
11715
|
credentials: {
|
|
@@ -11942,7 +11927,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11942
11927
|
};
|
|
11943
11928
|
};
|
|
11944
11929
|
output: {
|
|
11945
|
-
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "
|
|
11930
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11946
11931
|
date: string;
|
|
11947
11932
|
isMobile: boolean;
|
|
11948
11933
|
log_id: string;
|
|
@@ -11981,7 +11966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11981
11966
|
limit: number;
|
|
11982
11967
|
length: number;
|
|
11983
11968
|
logs: {
|
|
11984
|
-
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "
|
|
11969
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11985
11970
|
date: string;
|
|
11986
11971
|
isMobile: boolean;
|
|
11987
11972
|
log_id: string;
|
|
@@ -12035,7 +12020,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12035
12020
|
};
|
|
12036
12021
|
};
|
|
12037
12022
|
output: {
|
|
12038
|
-
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "
|
|
12023
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12039
12024
|
date: string;
|
|
12040
12025
|
isMobile: boolean;
|
|
12041
12026
|
log_id: string;
|
|
@@ -12423,7 +12408,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12423
12408
|
addons?: {
|
|
12424
12409
|
[x: string]: any;
|
|
12425
12410
|
} | undefined;
|
|
12426
|
-
token_endpoint_auth_method?: "
|
|
12411
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12427
12412
|
client_metadata?: {
|
|
12428
12413
|
[x: string]: string;
|
|
12429
12414
|
} | undefined;
|
|
@@ -12519,7 +12504,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12519
12504
|
addons?: {
|
|
12520
12505
|
[x: string]: any;
|
|
12521
12506
|
} | undefined;
|
|
12522
|
-
token_endpoint_auth_method?: "
|
|
12507
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12523
12508
|
client_metadata?: {
|
|
12524
12509
|
[x: string]: string;
|
|
12525
12510
|
} | undefined;
|
|
@@ -12630,7 +12615,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12630
12615
|
addons?: {
|
|
12631
12616
|
[x: string]: any;
|
|
12632
12617
|
} | undefined;
|
|
12633
|
-
token_endpoint_auth_method?: "
|
|
12618
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12634
12619
|
client_metadata?: {
|
|
12635
12620
|
[x: string]: string;
|
|
12636
12621
|
} | undefined;
|
|
@@ -12740,7 +12725,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12740
12725
|
custom_login_page_preview?: string | undefined;
|
|
12741
12726
|
form_template?: string | undefined;
|
|
12742
12727
|
addons?: Record<string, any> | undefined;
|
|
12743
|
-
token_endpoint_auth_method?: "
|
|
12728
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12744
12729
|
client_metadata?: Record<string, string> | undefined;
|
|
12745
12730
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12746
12731
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12820,7 +12805,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12820
12805
|
addons?: {
|
|
12821
12806
|
[x: string]: any;
|
|
12822
12807
|
} | undefined;
|
|
12823
|
-
token_endpoint_auth_method?: "
|
|
12808
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12824
12809
|
client_metadata?: {
|
|
12825
12810
|
[x: string]: string;
|
|
12826
12811
|
} | undefined;
|
|
@@ -12909,7 +12894,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12909
12894
|
custom_login_page_preview?: string | undefined;
|
|
12910
12895
|
form_template?: string | undefined;
|
|
12911
12896
|
addons?: Record<string, any> | undefined;
|
|
12912
|
-
token_endpoint_auth_method?: "
|
|
12897
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12913
12898
|
client_metadata?: Record<string, string> | undefined;
|
|
12914
12899
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12915
12900
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12989,7 +12974,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12989
12974
|
addons?: {
|
|
12990
12975
|
[x: string]: any;
|
|
12991
12976
|
} | undefined;
|
|
12992
|
-
token_endpoint_auth_method?: "
|
|
12977
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12993
12978
|
client_metadata?: {
|
|
12994
12979
|
[x: string]: string;
|
|
12995
12980
|
} | undefined;
|
|
@@ -14253,7 +14238,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14253
14238
|
};
|
|
14254
14239
|
};
|
|
14255
14240
|
output: {
|
|
14256
|
-
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "
|
|
14241
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14257
14242
|
date: string;
|
|
14258
14243
|
isMobile: boolean;
|
|
14259
14244
|
log_id: string;
|
|
@@ -14292,7 +14277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14292
14277
|
limit: number;
|
|
14293
14278
|
length: number;
|
|
14294
14279
|
logs: {
|
|
14295
|
-
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "
|
|
14280
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14296
14281
|
date: string;
|
|
14297
14282
|
isMobile: boolean;
|
|
14298
14283
|
log_id: string;
|
|
@@ -15132,7 +15117,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15132
15117
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15133
15118
|
custom_domain_id: string;
|
|
15134
15119
|
primary: boolean;
|
|
15135
|
-
status: "
|
|
15120
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15136
15121
|
verification_method?: "txt" | undefined;
|
|
15137
15122
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15138
15123
|
domain_metadata?: {
|
|
@@ -15173,7 +15158,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15173
15158
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15174
15159
|
custom_domain_id: string;
|
|
15175
15160
|
primary: boolean;
|
|
15176
|
-
status: "
|
|
15161
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15177
15162
|
verification_method?: "txt" | undefined;
|
|
15178
15163
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15179
15164
|
domain_metadata?: {
|
|
@@ -15237,7 +15222,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15237
15222
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15238
15223
|
custom_domain_id: string;
|
|
15239
15224
|
primary: boolean;
|
|
15240
|
-
status: "
|
|
15225
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15241
15226
|
verification_method?: "txt" | undefined;
|
|
15242
15227
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15243
15228
|
domain_metadata?: {
|
|
@@ -15284,7 +15269,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15284
15269
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15285
15270
|
custom_domain_id: string;
|
|
15286
15271
|
primary: boolean;
|
|
15287
|
-
status: "
|
|
15272
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15288
15273
|
verification_method?: "txt" | undefined;
|
|
15289
15274
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15290
15275
|
domain_metadata?: {
|
|
@@ -15330,7 +15315,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15330
15315
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15331
15316
|
custom_domain_id: string;
|
|
15332
15317
|
primary: boolean;
|
|
15333
|
-
status: "
|
|
15318
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15334
15319
|
verification_method?: "txt" | undefined;
|
|
15335
15320
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15336
15321
|
domain_metadata?: {
|
|
@@ -15371,7 +15356,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15371
15356
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15372
15357
|
custom_domain_id: string;
|
|
15373
15358
|
primary: boolean;
|
|
15374
|
-
status: "
|
|
15359
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15375
15360
|
verification_method?: "txt" | undefined;
|
|
15376
15361
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15377
15362
|
domain_metadata?: {
|
|
@@ -17057,7 +17042,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17057
17042
|
scope?: string | undefined;
|
|
17058
17043
|
grant_types?: string[] | undefined;
|
|
17059
17044
|
response_types?: string[] | undefined;
|
|
17060
|
-
token_endpoint_auth_method?: "
|
|
17045
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
17061
17046
|
jwks_uri?: string | undefined;
|
|
17062
17047
|
jwks?: Record<string, unknown> | undefined;
|
|
17063
17048
|
software_id?: string | undefined;
|
|
@@ -17146,7 +17131,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17146
17131
|
scope?: string | undefined;
|
|
17147
17132
|
grant_types?: string[] | undefined;
|
|
17148
17133
|
response_types?: string[] | undefined;
|
|
17149
|
-
token_endpoint_auth_method?: "
|
|
17134
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
17150
17135
|
jwks_uri?: string | undefined;
|
|
17151
17136
|
jwks?: Record<string, unknown> | undefined;
|
|
17152
17137
|
software_id?: string | undefined;
|
|
@@ -17494,18 +17479,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17494
17479
|
authParams: {
|
|
17495
17480
|
username?: string | undefined;
|
|
17496
17481
|
state?: string | undefined;
|
|
17482
|
+
audience?: string | undefined;
|
|
17497
17483
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17498
17484
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17499
17485
|
scope?: string | undefined;
|
|
17500
|
-
audience?: string | undefined;
|
|
17501
|
-
prompt?: string | undefined;
|
|
17502
|
-
ui_locales?: string | undefined;
|
|
17503
17486
|
organization?: string | undefined;
|
|
17487
|
+
nonce?: string | undefined;
|
|
17504
17488
|
redirect_uri?: string | undefined;
|
|
17505
17489
|
act_as?: string | undefined;
|
|
17506
|
-
|
|
17490
|
+
prompt?: string | undefined;
|
|
17507
17491
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17508
17492
|
code_challenge?: string | undefined;
|
|
17493
|
+
ui_locales?: string | undefined;
|
|
17509
17494
|
max_age?: number | undefined;
|
|
17510
17495
|
acr_values?: string | undefined;
|
|
17511
17496
|
claims?: {
|
|
@@ -17530,18 +17515,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17530
17515
|
authParams: {
|
|
17531
17516
|
username?: string | undefined;
|
|
17532
17517
|
state?: string | undefined;
|
|
17518
|
+
audience?: string | undefined;
|
|
17533
17519
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17534
17520
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17535
17521
|
scope?: string | undefined;
|
|
17536
|
-
audience?: string | undefined;
|
|
17537
|
-
prompt?: string | undefined;
|
|
17538
|
-
ui_locales?: string | undefined;
|
|
17539
17522
|
organization?: string | undefined;
|
|
17523
|
+
nonce?: string | undefined;
|
|
17540
17524
|
redirect_uri?: string | undefined;
|
|
17541
17525
|
act_as?: string | undefined;
|
|
17542
|
-
|
|
17526
|
+
prompt?: string | undefined;
|
|
17543
17527
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17544
17528
|
code_challenge?: string | undefined;
|
|
17529
|
+
ui_locales?: string | undefined;
|
|
17545
17530
|
max_age?: number | undefined;
|
|
17546
17531
|
acr_values?: string | undefined;
|
|
17547
17532
|
claims?: {
|
|
@@ -17672,14 +17657,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17672
17657
|
input: {
|
|
17673
17658
|
form: {
|
|
17674
17659
|
token: string;
|
|
17675
|
-
token_type_hint?: "
|
|
17660
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17676
17661
|
client_id?: string | undefined;
|
|
17677
17662
|
client_secret?: string | undefined;
|
|
17678
17663
|
};
|
|
17679
17664
|
} & {
|
|
17680
17665
|
json: {
|
|
17681
17666
|
token: string;
|
|
17682
|
-
token_type_hint?: "
|
|
17667
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17683
17668
|
client_id?: string | undefined;
|
|
17684
17669
|
client_secret?: string | undefined;
|
|
17685
17670
|
};
|
|
@@ -17691,14 +17676,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17691
17676
|
input: {
|
|
17692
17677
|
form: {
|
|
17693
17678
|
token: string;
|
|
17694
|
-
token_type_hint?: "
|
|
17679
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17695
17680
|
client_id?: string | undefined;
|
|
17696
17681
|
client_secret?: string | undefined;
|
|
17697
17682
|
};
|
|
17698
17683
|
} & {
|
|
17699
17684
|
json: {
|
|
17700
17685
|
token: string;
|
|
17701
|
-
token_type_hint?: "
|
|
17686
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17702
17687
|
client_id?: string | undefined;
|
|
17703
17688
|
client_secret?: string | undefined;
|
|
17704
17689
|
};
|
|
@@ -17713,14 +17698,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17713
17698
|
input: {
|
|
17714
17699
|
form: {
|
|
17715
17700
|
token: string;
|
|
17716
|
-
token_type_hint?: "
|
|
17701
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17717
17702
|
client_id?: string | undefined;
|
|
17718
17703
|
client_secret?: string | undefined;
|
|
17719
17704
|
};
|
|
17720
17705
|
} & {
|
|
17721
17706
|
json: {
|
|
17722
17707
|
token: string;
|
|
17723
|
-
token_type_hint?: "
|
|
17708
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17724
17709
|
client_id?: string | undefined;
|
|
17725
17710
|
client_secret?: string | undefined;
|
|
17726
17711
|
};
|
|
@@ -17770,7 +17755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17770
17755
|
client_id: string;
|
|
17771
17756
|
username: string;
|
|
17772
17757
|
otp: string;
|
|
17773
|
-
realm: "
|
|
17758
|
+
realm: "sms" | "email";
|
|
17774
17759
|
} | {
|
|
17775
17760
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17776
17761
|
subject_token: string;
|
|
@@ -17817,7 +17802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17817
17802
|
client_id: string;
|
|
17818
17803
|
username: string;
|
|
17819
17804
|
otp: string;
|
|
17820
|
-
realm: "
|
|
17805
|
+
realm: "sms" | "email";
|
|
17821
17806
|
} | {
|
|
17822
17807
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17823
17808
|
subject_token: string;
|
|
@@ -17869,7 +17854,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17869
17854
|
client_id: string;
|
|
17870
17855
|
username: string;
|
|
17871
17856
|
otp: string;
|
|
17872
|
-
realm: "
|
|
17857
|
+
realm: "sms" | "email";
|
|
17873
17858
|
} | {
|
|
17874
17859
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17875
17860
|
subject_token: string;
|
|
@@ -17916,7 +17901,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17916
17901
|
client_id: string;
|
|
17917
17902
|
username: string;
|
|
17918
17903
|
otp: string;
|
|
17919
|
-
realm: "
|
|
17904
|
+
realm: "sms" | "email";
|
|
17920
17905
|
} | {
|
|
17921
17906
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17922
17907
|
subject_token: string;
|
|
@@ -17976,7 +17961,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17976
17961
|
client_id: string;
|
|
17977
17962
|
username: string;
|
|
17978
17963
|
otp: string;
|
|
17979
|
-
realm: "
|
|
17964
|
+
realm: "sms" | "email";
|
|
17980
17965
|
} | {
|
|
17981
17966
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17982
17967
|
subject_token: string;
|
|
@@ -18023,7 +18008,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18023
18008
|
client_id: string;
|
|
18024
18009
|
username: string;
|
|
18025
18010
|
otp: string;
|
|
18026
|
-
realm: "
|
|
18011
|
+
realm: "sms" | "email";
|
|
18027
18012
|
} | {
|
|
18028
18013
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18029
18014
|
subject_token: string;
|
|
@@ -18078,7 +18063,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18078
18063
|
client_id: string;
|
|
18079
18064
|
username: string;
|
|
18080
18065
|
otp: string;
|
|
18081
|
-
realm: "
|
|
18066
|
+
realm: "sms" | "email";
|
|
18082
18067
|
} | {
|
|
18083
18068
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18084
18069
|
subject_token: string;
|
|
@@ -18125,7 +18110,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18125
18110
|
client_id: string;
|
|
18126
18111
|
username: string;
|
|
18127
18112
|
otp: string;
|
|
18128
|
-
realm: "
|
|
18113
|
+
realm: "sms" | "email";
|
|
18129
18114
|
} | {
|
|
18130
18115
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18131
18116
|
subject_token: string;
|
|
@@ -18180,7 +18165,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18180
18165
|
client_id: string;
|
|
18181
18166
|
username: string;
|
|
18182
18167
|
otp: string;
|
|
18183
|
-
realm: "
|
|
18168
|
+
realm: "sms" | "email";
|
|
18184
18169
|
} | {
|
|
18185
18170
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18186
18171
|
subject_token: string;
|
|
@@ -18227,7 +18212,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18227
18212
|
client_id: string;
|
|
18228
18213
|
username: string;
|
|
18229
18214
|
otp: string;
|
|
18230
|
-
realm: "
|
|
18215
|
+
realm: "sms" | "email";
|
|
18231
18216
|
} | {
|
|
18232
18217
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18233
18218
|
subject_token: string;
|
|
@@ -19447,7 +19432,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19447
19432
|
$get: {
|
|
19448
19433
|
input: {
|
|
19449
19434
|
param: {
|
|
19450
|
-
screen: "signup" | "
|
|
19435
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19451
19436
|
};
|
|
19452
19437
|
} & {
|
|
19453
19438
|
query: {
|
|
@@ -19463,7 +19448,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19463
19448
|
} | {
|
|
19464
19449
|
input: {
|
|
19465
19450
|
param: {
|
|
19466
|
-
screen: "signup" | "
|
|
19451
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19467
19452
|
};
|
|
19468
19453
|
} & {
|
|
19469
19454
|
query: {
|
|
@@ -19479,7 +19464,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19479
19464
|
} | {
|
|
19480
19465
|
input: {
|
|
19481
19466
|
param: {
|
|
19482
|
-
screen: "signup" | "
|
|
19467
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19483
19468
|
};
|
|
19484
19469
|
} & {
|
|
19485
19470
|
query: {
|
|
@@ -19499,7 +19484,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19499
19484
|
$post: {
|
|
19500
19485
|
input: {
|
|
19501
19486
|
param: {
|
|
19502
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
19487
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "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";
|
|
19503
19488
|
};
|
|
19504
19489
|
} & {
|
|
19505
19490
|
query: {
|
|
@@ -19517,7 +19502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19517
19502
|
} | {
|
|
19518
19503
|
input: {
|
|
19519
19504
|
param: {
|
|
19520
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
19505
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "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";
|
|
19521
19506
|
};
|
|
19522
19507
|
} & {
|
|
19523
19508
|
query: {
|