authhero 8.14.0 → 8.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +6 -5
- package/dist/authhero.d.ts +224 -224
- package/dist/authhero.mjs +42 -26
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +224 -224
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +50 -50
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -3015,8 +3015,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3015
3015
|
$get: {
|
|
3016
3016
|
input: {
|
|
3017
3017
|
query: {
|
|
3018
|
-
include_password_hashes?: "
|
|
3019
|
-
gzip?: "
|
|
3018
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
3019
|
+
gzip?: "false" | "true" | undefined;
|
|
3020
3020
|
};
|
|
3021
3021
|
} & {
|
|
3022
3022
|
header: {
|
|
@@ -3029,8 +3029,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3029
3029
|
} | {
|
|
3030
3030
|
input: {
|
|
3031
3031
|
query: {
|
|
3032
|
-
include_password_hashes?: "
|
|
3033
|
-
gzip?: "
|
|
3032
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
3033
|
+
gzip?: "false" | "true" | undefined;
|
|
3034
3034
|
};
|
|
3035
3035
|
} & {
|
|
3036
3036
|
header: {
|
|
@@ -3049,7 +3049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3049
3049
|
$post: {
|
|
3050
3050
|
input: {
|
|
3051
3051
|
query: {
|
|
3052
|
-
include_password_hashes?: "
|
|
3052
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
3053
3053
|
};
|
|
3054
3054
|
} & {
|
|
3055
3055
|
header: {
|
|
@@ -3103,7 +3103,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3103
3103
|
};
|
|
3104
3104
|
} & {
|
|
3105
3105
|
json: {
|
|
3106
|
-
type: "push" | "email" | "passkey" | "
|
|
3106
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
3107
3107
|
phone_number?: string | undefined;
|
|
3108
3108
|
totp_secret?: string | undefined;
|
|
3109
3109
|
credential_id?: string | undefined;
|
|
@@ -3243,7 +3243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3243
3243
|
};
|
|
3244
3244
|
};
|
|
3245
3245
|
output: {
|
|
3246
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3246
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3247
3247
|
enabled: boolean;
|
|
3248
3248
|
trial_expired?: boolean | undefined;
|
|
3249
3249
|
}[];
|
|
@@ -3398,7 +3398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3398
3398
|
$get: {
|
|
3399
3399
|
input: {
|
|
3400
3400
|
param: {
|
|
3401
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
3401
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3402
3402
|
};
|
|
3403
3403
|
} & {
|
|
3404
3404
|
header: {
|
|
@@ -3406,7 +3406,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3406
3406
|
};
|
|
3407
3407
|
};
|
|
3408
3408
|
output: {
|
|
3409
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3409
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3410
3410
|
enabled: boolean;
|
|
3411
3411
|
trial_expired?: boolean | undefined;
|
|
3412
3412
|
};
|
|
@@ -3419,7 +3419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3419
3419
|
$put: {
|
|
3420
3420
|
input: {
|
|
3421
3421
|
param: {
|
|
3422
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
3422
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3423
3423
|
};
|
|
3424
3424
|
} & {
|
|
3425
3425
|
header: {
|
|
@@ -3431,7 +3431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3431
3431
|
};
|
|
3432
3432
|
};
|
|
3433
3433
|
output: {
|
|
3434
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3434
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3435
3435
|
enabled: boolean;
|
|
3436
3436
|
trial_expired?: boolean | undefined;
|
|
3437
3437
|
};
|
|
@@ -5031,7 +5031,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5031
5031
|
type: "REDIRECT";
|
|
5032
5032
|
action: "REDIRECT_USER";
|
|
5033
5033
|
params: {
|
|
5034
|
-
target: "custom" | "
|
|
5034
|
+
target: "custom" | "account" | "change-email";
|
|
5035
5035
|
custom_url?: string | undefined;
|
|
5036
5036
|
};
|
|
5037
5037
|
alias?: string | undefined;
|
|
@@ -5084,7 +5084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5084
5084
|
type: "REDIRECT";
|
|
5085
5085
|
action: "REDIRECT_USER";
|
|
5086
5086
|
params: {
|
|
5087
|
-
target: "custom" | "
|
|
5087
|
+
target: "custom" | "account" | "change-email";
|
|
5088
5088
|
custom_url?: string | undefined;
|
|
5089
5089
|
};
|
|
5090
5090
|
alias?: string | undefined;
|
|
@@ -5152,7 +5152,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5152
5152
|
type: "REDIRECT";
|
|
5153
5153
|
action: "REDIRECT_USER";
|
|
5154
5154
|
params: {
|
|
5155
|
-
target: "custom" | "
|
|
5155
|
+
target: "custom" | "account" | "change-email";
|
|
5156
5156
|
custom_url?: string | undefined;
|
|
5157
5157
|
};
|
|
5158
5158
|
alias?: string | undefined;
|
|
@@ -5233,7 +5233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5233
5233
|
type: "REDIRECT";
|
|
5234
5234
|
action: "REDIRECT_USER";
|
|
5235
5235
|
params: {
|
|
5236
|
-
target: "custom" | "
|
|
5236
|
+
target: "custom" | "account" | "change-email";
|
|
5237
5237
|
custom_url?: string | undefined;
|
|
5238
5238
|
};
|
|
5239
5239
|
alias?: string | undefined;
|
|
@@ -5281,7 +5281,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5281
5281
|
type: "REDIRECT";
|
|
5282
5282
|
action: "REDIRECT_USER";
|
|
5283
5283
|
params: {
|
|
5284
|
-
target: "custom" | "
|
|
5284
|
+
target: "custom" | "account" | "change-email";
|
|
5285
5285
|
custom_url?: string | undefined;
|
|
5286
5286
|
};
|
|
5287
5287
|
alias?: string | undefined;
|
|
@@ -5341,7 +5341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5341
5341
|
type: "REDIRECT";
|
|
5342
5342
|
action: "REDIRECT_USER";
|
|
5343
5343
|
params: {
|
|
5344
|
-
target: "custom" | "
|
|
5344
|
+
target: "custom" | "account" | "change-email";
|
|
5345
5345
|
custom_url?: string | undefined;
|
|
5346
5346
|
};
|
|
5347
5347
|
alias?: string | undefined;
|
|
@@ -5389,7 +5389,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5389
5389
|
type: "REDIRECT";
|
|
5390
5390
|
action: "REDIRECT_USER";
|
|
5391
5391
|
params: {
|
|
5392
|
-
target: "custom" | "
|
|
5392
|
+
target: "custom" | "account" | "change-email";
|
|
5393
5393
|
custom_url?: string | undefined;
|
|
5394
5394
|
};
|
|
5395
5395
|
alias?: string | undefined;
|
|
@@ -5607,7 +5607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5607
5607
|
hint?: string | undefined;
|
|
5608
5608
|
messages?: {
|
|
5609
5609
|
text: string;
|
|
5610
|
-
type: "
|
|
5610
|
+
type: "success" | "error" | "info" | "warning";
|
|
5611
5611
|
id?: number | undefined;
|
|
5612
5612
|
}[] | undefined;
|
|
5613
5613
|
required?: boolean | undefined;
|
|
@@ -5625,7 +5625,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5625
5625
|
hint?: string | undefined;
|
|
5626
5626
|
messages?: {
|
|
5627
5627
|
text: string;
|
|
5628
|
-
type: "
|
|
5628
|
+
type: "success" | "error" | "info" | "warning";
|
|
5629
5629
|
id?: number | undefined;
|
|
5630
5630
|
}[] | undefined;
|
|
5631
5631
|
required?: boolean | undefined;
|
|
@@ -5649,7 +5649,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5649
5649
|
hint?: string | undefined;
|
|
5650
5650
|
messages?: {
|
|
5651
5651
|
text: string;
|
|
5652
|
-
type: "
|
|
5652
|
+
type: "success" | "error" | "info" | "warning";
|
|
5653
5653
|
id?: number | undefined;
|
|
5654
5654
|
}[] | undefined;
|
|
5655
5655
|
required?: boolean | undefined;
|
|
@@ -5673,7 +5673,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5673
5673
|
hint?: string | undefined;
|
|
5674
5674
|
messages?: {
|
|
5675
5675
|
text: string;
|
|
5676
|
-
type: "
|
|
5676
|
+
type: "success" | "error" | "info" | "warning";
|
|
5677
5677
|
id?: number | undefined;
|
|
5678
5678
|
}[] | undefined;
|
|
5679
5679
|
required?: boolean | undefined;
|
|
@@ -5697,7 +5697,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5697
5697
|
hint?: string | undefined;
|
|
5698
5698
|
messages?: {
|
|
5699
5699
|
text: string;
|
|
5700
|
-
type: "
|
|
5700
|
+
type: "success" | "error" | "info" | "warning";
|
|
5701
5701
|
id?: number | undefined;
|
|
5702
5702
|
}[] | undefined;
|
|
5703
5703
|
required?: boolean | undefined;
|
|
@@ -5726,7 +5726,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5726
5726
|
hint?: string | undefined;
|
|
5727
5727
|
messages?: {
|
|
5728
5728
|
text: string;
|
|
5729
|
-
type: "
|
|
5729
|
+
type: "success" | "error" | "info" | "warning";
|
|
5730
5730
|
id?: number | undefined;
|
|
5731
5731
|
}[] | undefined;
|
|
5732
5732
|
required?: boolean | undefined;
|
|
@@ -5741,7 +5741,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5741
5741
|
hint?: string | undefined;
|
|
5742
5742
|
messages?: {
|
|
5743
5743
|
text: string;
|
|
5744
|
-
type: "
|
|
5744
|
+
type: "success" | "error" | "info" | "warning";
|
|
5745
5745
|
id?: number | undefined;
|
|
5746
5746
|
}[] | undefined;
|
|
5747
5747
|
required?: boolean | undefined;
|
|
@@ -5762,7 +5762,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5762
5762
|
hint?: string | undefined;
|
|
5763
5763
|
messages?: {
|
|
5764
5764
|
text: string;
|
|
5765
|
-
type: "
|
|
5765
|
+
type: "success" | "error" | "info" | "warning";
|
|
5766
5766
|
id?: number | undefined;
|
|
5767
5767
|
}[] | undefined;
|
|
5768
5768
|
required?: boolean | undefined;
|
|
@@ -5787,7 +5787,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5787
5787
|
hint?: string | undefined;
|
|
5788
5788
|
messages?: {
|
|
5789
5789
|
text: string;
|
|
5790
|
-
type: "
|
|
5790
|
+
type: "success" | "error" | "info" | "warning";
|
|
5791
5791
|
id?: number | undefined;
|
|
5792
5792
|
}[] | undefined;
|
|
5793
5793
|
required?: boolean | undefined;
|
|
@@ -5806,7 +5806,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5806
5806
|
hint?: string | undefined;
|
|
5807
5807
|
messages?: {
|
|
5808
5808
|
text: string;
|
|
5809
|
-
type: "
|
|
5809
|
+
type: "success" | "error" | "info" | "warning";
|
|
5810
5810
|
id?: number | undefined;
|
|
5811
5811
|
}[] | undefined;
|
|
5812
5812
|
required?: boolean | undefined;
|
|
@@ -5826,7 +5826,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5826
5826
|
hint?: string | undefined;
|
|
5827
5827
|
messages?: {
|
|
5828
5828
|
text: string;
|
|
5829
|
-
type: "
|
|
5829
|
+
type: "success" | "error" | "info" | "warning";
|
|
5830
5830
|
id?: number | undefined;
|
|
5831
5831
|
}[] | undefined;
|
|
5832
5832
|
required?: boolean | undefined;
|
|
@@ -5845,7 +5845,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5845
5845
|
hint?: string | undefined;
|
|
5846
5846
|
messages?: {
|
|
5847
5847
|
text: string;
|
|
5848
|
-
type: "
|
|
5848
|
+
type: "success" | "error" | "info" | "warning";
|
|
5849
5849
|
id?: number | undefined;
|
|
5850
5850
|
}[] | undefined;
|
|
5851
5851
|
required?: boolean | undefined;
|
|
@@ -5867,7 +5867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5867
5867
|
hint?: string | undefined;
|
|
5868
5868
|
messages?: {
|
|
5869
5869
|
text: string;
|
|
5870
|
-
type: "
|
|
5870
|
+
type: "success" | "error" | "info" | "warning";
|
|
5871
5871
|
id?: number | undefined;
|
|
5872
5872
|
}[] | undefined;
|
|
5873
5873
|
required?: boolean | undefined;
|
|
@@ -5889,7 +5889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5889
5889
|
hint?: string | undefined;
|
|
5890
5890
|
messages?: {
|
|
5891
5891
|
text: string;
|
|
5892
|
-
type: "
|
|
5892
|
+
type: "success" | "error" | "info" | "warning";
|
|
5893
5893
|
id?: number | undefined;
|
|
5894
5894
|
}[] | undefined;
|
|
5895
5895
|
required?: boolean | undefined;
|
|
@@ -5908,7 +5908,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5908
5908
|
hint?: string | undefined;
|
|
5909
5909
|
messages?: {
|
|
5910
5910
|
text: string;
|
|
5911
|
-
type: "
|
|
5911
|
+
type: "success" | "error" | "info" | "warning";
|
|
5912
5912
|
id?: number | undefined;
|
|
5913
5913
|
}[] | undefined;
|
|
5914
5914
|
required?: boolean | undefined;
|
|
@@ -5933,7 +5933,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5933
5933
|
hint?: string | undefined;
|
|
5934
5934
|
messages?: {
|
|
5935
5935
|
text: string;
|
|
5936
|
-
type: "
|
|
5936
|
+
type: "success" | "error" | "info" | "warning";
|
|
5937
5937
|
id?: number | undefined;
|
|
5938
5938
|
}[] | undefined;
|
|
5939
5939
|
required?: boolean | undefined;
|
|
@@ -5954,7 +5954,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5954
5954
|
hint?: string | undefined;
|
|
5955
5955
|
messages?: {
|
|
5956
5956
|
text: string;
|
|
5957
|
-
type: "
|
|
5957
|
+
type: "success" | "error" | "info" | "warning";
|
|
5958
5958
|
id?: number | undefined;
|
|
5959
5959
|
}[] | undefined;
|
|
5960
5960
|
required?: boolean | undefined;
|
|
@@ -5975,7 +5975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5975
5975
|
hint?: string | undefined;
|
|
5976
5976
|
messages?: {
|
|
5977
5977
|
text: string;
|
|
5978
|
-
type: "
|
|
5978
|
+
type: "success" | "error" | "info" | "warning";
|
|
5979
5979
|
id?: number | undefined;
|
|
5980
5980
|
}[] | undefined;
|
|
5981
5981
|
required?: boolean | undefined;
|
|
@@ -6208,7 +6208,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6208
6208
|
hint?: string | undefined;
|
|
6209
6209
|
messages?: {
|
|
6210
6210
|
text: string;
|
|
6211
|
-
type: "
|
|
6211
|
+
type: "success" | "error" | "info" | "warning";
|
|
6212
6212
|
id?: number | undefined;
|
|
6213
6213
|
}[] | undefined;
|
|
6214
6214
|
required?: boolean | undefined;
|
|
@@ -6226,7 +6226,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6226
6226
|
hint?: string | undefined;
|
|
6227
6227
|
messages?: {
|
|
6228
6228
|
text: string;
|
|
6229
|
-
type: "
|
|
6229
|
+
type: "success" | "error" | "info" | "warning";
|
|
6230
6230
|
id?: number | undefined;
|
|
6231
6231
|
}[] | undefined;
|
|
6232
6232
|
required?: boolean | undefined;
|
|
@@ -6250,7 +6250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6250
6250
|
hint?: string | undefined;
|
|
6251
6251
|
messages?: {
|
|
6252
6252
|
text: string;
|
|
6253
|
-
type: "
|
|
6253
|
+
type: "success" | "error" | "info" | "warning";
|
|
6254
6254
|
id?: number | undefined;
|
|
6255
6255
|
}[] | undefined;
|
|
6256
6256
|
required?: boolean | undefined;
|
|
@@ -6274,7 +6274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6274
6274
|
hint?: string | undefined;
|
|
6275
6275
|
messages?: {
|
|
6276
6276
|
text: string;
|
|
6277
|
-
type: "
|
|
6277
|
+
type: "success" | "error" | "info" | "warning";
|
|
6278
6278
|
id?: number | undefined;
|
|
6279
6279
|
}[] | undefined;
|
|
6280
6280
|
required?: boolean | undefined;
|
|
@@ -6298,7 +6298,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6298
6298
|
hint?: string | undefined;
|
|
6299
6299
|
messages?: {
|
|
6300
6300
|
text: string;
|
|
6301
|
-
type: "
|
|
6301
|
+
type: "success" | "error" | "info" | "warning";
|
|
6302
6302
|
id?: number | undefined;
|
|
6303
6303
|
}[] | undefined;
|
|
6304
6304
|
required?: boolean | undefined;
|
|
@@ -6327,7 +6327,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6327
6327
|
hint?: string | undefined;
|
|
6328
6328
|
messages?: {
|
|
6329
6329
|
text: string;
|
|
6330
|
-
type: "
|
|
6330
|
+
type: "success" | "error" | "info" | "warning";
|
|
6331
6331
|
id?: number | undefined;
|
|
6332
6332
|
}[] | undefined;
|
|
6333
6333
|
required?: boolean | undefined;
|
|
@@ -6342,7 +6342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6342
6342
|
hint?: string | undefined;
|
|
6343
6343
|
messages?: {
|
|
6344
6344
|
text: string;
|
|
6345
|
-
type: "
|
|
6345
|
+
type: "success" | "error" | "info" | "warning";
|
|
6346
6346
|
id?: number | undefined;
|
|
6347
6347
|
}[] | undefined;
|
|
6348
6348
|
required?: boolean | undefined;
|
|
@@ -6363,7 +6363,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6363
6363
|
hint?: string | undefined;
|
|
6364
6364
|
messages?: {
|
|
6365
6365
|
text: string;
|
|
6366
|
-
type: "
|
|
6366
|
+
type: "success" | "error" | "info" | "warning";
|
|
6367
6367
|
id?: number | undefined;
|
|
6368
6368
|
}[] | undefined;
|
|
6369
6369
|
required?: boolean | undefined;
|
|
@@ -6388,7 +6388,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6388
6388
|
hint?: string | undefined;
|
|
6389
6389
|
messages?: {
|
|
6390
6390
|
text: string;
|
|
6391
|
-
type: "
|
|
6391
|
+
type: "success" | "error" | "info" | "warning";
|
|
6392
6392
|
id?: number | undefined;
|
|
6393
6393
|
}[] | undefined;
|
|
6394
6394
|
required?: boolean | undefined;
|
|
@@ -6407,7 +6407,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6407
6407
|
hint?: string | undefined;
|
|
6408
6408
|
messages?: {
|
|
6409
6409
|
text: string;
|
|
6410
|
-
type: "
|
|
6410
|
+
type: "success" | "error" | "info" | "warning";
|
|
6411
6411
|
id?: number | undefined;
|
|
6412
6412
|
}[] | undefined;
|
|
6413
6413
|
required?: boolean | undefined;
|
|
@@ -6427,7 +6427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6427
6427
|
hint?: string | undefined;
|
|
6428
6428
|
messages?: {
|
|
6429
6429
|
text: string;
|
|
6430
|
-
type: "
|
|
6430
|
+
type: "success" | "error" | "info" | "warning";
|
|
6431
6431
|
id?: number | undefined;
|
|
6432
6432
|
}[] | undefined;
|
|
6433
6433
|
required?: boolean | undefined;
|
|
@@ -6446,7 +6446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6446
6446
|
hint?: string | undefined;
|
|
6447
6447
|
messages?: {
|
|
6448
6448
|
text: string;
|
|
6449
|
-
type: "
|
|
6449
|
+
type: "success" | "error" | "info" | "warning";
|
|
6450
6450
|
id?: number | undefined;
|
|
6451
6451
|
}[] | undefined;
|
|
6452
6452
|
required?: boolean | undefined;
|
|
@@ -6468,7 +6468,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6468
6468
|
hint?: string | undefined;
|
|
6469
6469
|
messages?: {
|
|
6470
6470
|
text: string;
|
|
6471
|
-
type: "
|
|
6471
|
+
type: "success" | "error" | "info" | "warning";
|
|
6472
6472
|
id?: number | undefined;
|
|
6473
6473
|
}[] | undefined;
|
|
6474
6474
|
required?: boolean | undefined;
|
|
@@ -6490,7 +6490,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6490
6490
|
hint?: string | undefined;
|
|
6491
6491
|
messages?: {
|
|
6492
6492
|
text: string;
|
|
6493
|
-
type: "
|
|
6493
|
+
type: "success" | "error" | "info" | "warning";
|
|
6494
6494
|
id?: number | undefined;
|
|
6495
6495
|
}[] | undefined;
|
|
6496
6496
|
required?: boolean | undefined;
|
|
@@ -6509,7 +6509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6509
6509
|
hint?: string | undefined;
|
|
6510
6510
|
messages?: {
|
|
6511
6511
|
text: string;
|
|
6512
|
-
type: "
|
|
6512
|
+
type: "success" | "error" | "info" | "warning";
|
|
6513
6513
|
id?: number | undefined;
|
|
6514
6514
|
}[] | undefined;
|
|
6515
6515
|
required?: boolean | undefined;
|
|
@@ -6534,7 +6534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6534
6534
|
hint?: string | undefined;
|
|
6535
6535
|
messages?: {
|
|
6536
6536
|
text: string;
|
|
6537
|
-
type: "
|
|
6537
|
+
type: "success" | "error" | "info" | "warning";
|
|
6538
6538
|
id?: number | undefined;
|
|
6539
6539
|
}[] | undefined;
|
|
6540
6540
|
required?: boolean | undefined;
|
|
@@ -6555,7 +6555,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6555
6555
|
hint?: string | undefined;
|
|
6556
6556
|
messages?: {
|
|
6557
6557
|
text: string;
|
|
6558
|
-
type: "
|
|
6558
|
+
type: "success" | "error" | "info" | "warning";
|
|
6559
6559
|
id?: number | undefined;
|
|
6560
6560
|
}[] | undefined;
|
|
6561
6561
|
required?: boolean | undefined;
|
|
@@ -6576,7 +6576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6576
6576
|
hint?: string | undefined;
|
|
6577
6577
|
messages?: {
|
|
6578
6578
|
text: string;
|
|
6579
|
-
type: "
|
|
6579
|
+
type: "success" | "error" | "info" | "warning";
|
|
6580
6580
|
id?: number | undefined;
|
|
6581
6581
|
}[] | undefined;
|
|
6582
6582
|
required?: boolean | undefined;
|
|
@@ -6824,7 +6824,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6824
6824
|
hint?: string | undefined;
|
|
6825
6825
|
messages?: {
|
|
6826
6826
|
text: string;
|
|
6827
|
-
type: "
|
|
6827
|
+
type: "success" | "error" | "info" | "warning";
|
|
6828
6828
|
id?: number | undefined;
|
|
6829
6829
|
}[] | undefined;
|
|
6830
6830
|
required?: boolean | undefined;
|
|
@@ -6842,7 +6842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6842
6842
|
hint?: string | undefined;
|
|
6843
6843
|
messages?: {
|
|
6844
6844
|
text: string;
|
|
6845
|
-
type: "
|
|
6845
|
+
type: "success" | "error" | "info" | "warning";
|
|
6846
6846
|
id?: number | undefined;
|
|
6847
6847
|
}[] | undefined;
|
|
6848
6848
|
required?: boolean | undefined;
|
|
@@ -6866,7 +6866,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6866
6866
|
hint?: string | undefined;
|
|
6867
6867
|
messages?: {
|
|
6868
6868
|
text: string;
|
|
6869
|
-
type: "
|
|
6869
|
+
type: "success" | "error" | "info" | "warning";
|
|
6870
6870
|
id?: number | undefined;
|
|
6871
6871
|
}[] | undefined;
|
|
6872
6872
|
required?: boolean | undefined;
|
|
@@ -6890,7 +6890,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6890
6890
|
hint?: string | undefined;
|
|
6891
6891
|
messages?: {
|
|
6892
6892
|
text: string;
|
|
6893
|
-
type: "
|
|
6893
|
+
type: "success" | "error" | "info" | "warning";
|
|
6894
6894
|
id?: number | undefined;
|
|
6895
6895
|
}[] | undefined;
|
|
6896
6896
|
required?: boolean | undefined;
|
|
@@ -6914,7 +6914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6914
6914
|
hint?: string | undefined;
|
|
6915
6915
|
messages?: {
|
|
6916
6916
|
text: string;
|
|
6917
|
-
type: "
|
|
6917
|
+
type: "success" | "error" | "info" | "warning";
|
|
6918
6918
|
id?: number | undefined;
|
|
6919
6919
|
}[] | undefined;
|
|
6920
6920
|
required?: boolean | undefined;
|
|
@@ -6943,7 +6943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6943
6943
|
hint?: string | undefined;
|
|
6944
6944
|
messages?: {
|
|
6945
6945
|
text: string;
|
|
6946
|
-
type: "
|
|
6946
|
+
type: "success" | "error" | "info" | "warning";
|
|
6947
6947
|
id?: number | undefined;
|
|
6948
6948
|
}[] | undefined;
|
|
6949
6949
|
required?: boolean | undefined;
|
|
@@ -6958,7 +6958,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6958
6958
|
hint?: string | undefined;
|
|
6959
6959
|
messages?: {
|
|
6960
6960
|
text: string;
|
|
6961
|
-
type: "
|
|
6961
|
+
type: "success" | "error" | "info" | "warning";
|
|
6962
6962
|
id?: number | undefined;
|
|
6963
6963
|
}[] | undefined;
|
|
6964
6964
|
required?: boolean | undefined;
|
|
@@ -6979,7 +6979,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6979
6979
|
hint?: string | undefined;
|
|
6980
6980
|
messages?: {
|
|
6981
6981
|
text: string;
|
|
6982
|
-
type: "
|
|
6982
|
+
type: "success" | "error" | "info" | "warning";
|
|
6983
6983
|
id?: number | undefined;
|
|
6984
6984
|
}[] | undefined;
|
|
6985
6985
|
required?: boolean | undefined;
|
|
@@ -7004,7 +7004,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7004
7004
|
hint?: string | undefined;
|
|
7005
7005
|
messages?: {
|
|
7006
7006
|
text: string;
|
|
7007
|
-
type: "
|
|
7007
|
+
type: "success" | "error" | "info" | "warning";
|
|
7008
7008
|
id?: number | undefined;
|
|
7009
7009
|
}[] | undefined;
|
|
7010
7010
|
required?: boolean | undefined;
|
|
@@ -7023,7 +7023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7023
7023
|
hint?: string | undefined;
|
|
7024
7024
|
messages?: {
|
|
7025
7025
|
text: string;
|
|
7026
|
-
type: "
|
|
7026
|
+
type: "success" | "error" | "info" | "warning";
|
|
7027
7027
|
id?: number | undefined;
|
|
7028
7028
|
}[] | undefined;
|
|
7029
7029
|
required?: boolean | undefined;
|
|
@@ -7043,7 +7043,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7043
7043
|
hint?: string | undefined;
|
|
7044
7044
|
messages?: {
|
|
7045
7045
|
text: string;
|
|
7046
|
-
type: "
|
|
7046
|
+
type: "success" | "error" | "info" | "warning";
|
|
7047
7047
|
id?: number | undefined;
|
|
7048
7048
|
}[] | undefined;
|
|
7049
7049
|
required?: boolean | undefined;
|
|
@@ -7062,7 +7062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7062
7062
|
hint?: string | undefined;
|
|
7063
7063
|
messages?: {
|
|
7064
7064
|
text: string;
|
|
7065
|
-
type: "
|
|
7065
|
+
type: "success" | "error" | "info" | "warning";
|
|
7066
7066
|
id?: number | undefined;
|
|
7067
7067
|
}[] | undefined;
|
|
7068
7068
|
required?: boolean | undefined;
|
|
@@ -7084,7 +7084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7084
7084
|
hint?: string | undefined;
|
|
7085
7085
|
messages?: {
|
|
7086
7086
|
text: string;
|
|
7087
|
-
type: "
|
|
7087
|
+
type: "success" | "error" | "info" | "warning";
|
|
7088
7088
|
id?: number | undefined;
|
|
7089
7089
|
}[] | undefined;
|
|
7090
7090
|
required?: boolean | undefined;
|
|
@@ -7106,7 +7106,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7106
7106
|
hint?: string | undefined;
|
|
7107
7107
|
messages?: {
|
|
7108
7108
|
text: string;
|
|
7109
|
-
type: "
|
|
7109
|
+
type: "success" | "error" | "info" | "warning";
|
|
7110
7110
|
id?: number | undefined;
|
|
7111
7111
|
}[] | undefined;
|
|
7112
7112
|
required?: boolean | undefined;
|
|
@@ -7125,7 +7125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7125
7125
|
hint?: string | undefined;
|
|
7126
7126
|
messages?: {
|
|
7127
7127
|
text: string;
|
|
7128
|
-
type: "
|
|
7128
|
+
type: "success" | "error" | "info" | "warning";
|
|
7129
7129
|
id?: number | undefined;
|
|
7130
7130
|
}[] | undefined;
|
|
7131
7131
|
required?: boolean | undefined;
|
|
@@ -7150,7 +7150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7150
7150
|
hint?: string | undefined;
|
|
7151
7151
|
messages?: {
|
|
7152
7152
|
text: string;
|
|
7153
|
-
type: "
|
|
7153
|
+
type: "success" | "error" | "info" | "warning";
|
|
7154
7154
|
id?: number | undefined;
|
|
7155
7155
|
}[] | undefined;
|
|
7156
7156
|
required?: boolean | undefined;
|
|
@@ -7171,7 +7171,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7171
7171
|
hint?: string | undefined;
|
|
7172
7172
|
messages?: {
|
|
7173
7173
|
text: string;
|
|
7174
|
-
type: "
|
|
7174
|
+
type: "success" | "error" | "info" | "warning";
|
|
7175
7175
|
id?: number | undefined;
|
|
7176
7176
|
}[] | undefined;
|
|
7177
7177
|
required?: boolean | undefined;
|
|
@@ -7192,7 +7192,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7192
7192
|
hint?: string | undefined;
|
|
7193
7193
|
messages?: {
|
|
7194
7194
|
text: string;
|
|
7195
|
-
type: "
|
|
7195
|
+
type: "success" | "error" | "info" | "warning";
|
|
7196
7196
|
id?: number | undefined;
|
|
7197
7197
|
}[] | undefined;
|
|
7198
7198
|
required?: boolean | undefined;
|
|
@@ -7446,7 +7446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7446
7446
|
hint?: string | undefined;
|
|
7447
7447
|
messages?: {
|
|
7448
7448
|
text: string;
|
|
7449
|
-
type: "
|
|
7449
|
+
type: "success" | "error" | "info" | "warning";
|
|
7450
7450
|
id?: number | undefined;
|
|
7451
7451
|
}[] | undefined;
|
|
7452
7452
|
required?: boolean | undefined;
|
|
@@ -7464,7 +7464,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7464
7464
|
hint?: string | undefined;
|
|
7465
7465
|
messages?: {
|
|
7466
7466
|
text: string;
|
|
7467
|
-
type: "
|
|
7467
|
+
type: "success" | "error" | "info" | "warning";
|
|
7468
7468
|
id?: number | undefined;
|
|
7469
7469
|
}[] | undefined;
|
|
7470
7470
|
required?: boolean | undefined;
|
|
@@ -7488,7 +7488,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7488
7488
|
hint?: string | undefined;
|
|
7489
7489
|
messages?: {
|
|
7490
7490
|
text: string;
|
|
7491
|
-
type: "
|
|
7491
|
+
type: "success" | "error" | "info" | "warning";
|
|
7492
7492
|
id?: number | undefined;
|
|
7493
7493
|
}[] | undefined;
|
|
7494
7494
|
required?: boolean | undefined;
|
|
@@ -7512,7 +7512,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7512
7512
|
hint?: string | undefined;
|
|
7513
7513
|
messages?: {
|
|
7514
7514
|
text: string;
|
|
7515
|
-
type: "
|
|
7515
|
+
type: "success" | "error" | "info" | "warning";
|
|
7516
7516
|
id?: number | undefined;
|
|
7517
7517
|
}[] | undefined;
|
|
7518
7518
|
required?: boolean | undefined;
|
|
@@ -7536,7 +7536,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7536
7536
|
hint?: string | undefined;
|
|
7537
7537
|
messages?: {
|
|
7538
7538
|
text: string;
|
|
7539
|
-
type: "
|
|
7539
|
+
type: "success" | "error" | "info" | "warning";
|
|
7540
7540
|
id?: number | undefined;
|
|
7541
7541
|
}[] | undefined;
|
|
7542
7542
|
required?: boolean | undefined;
|
|
@@ -7561,7 +7561,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7561
7561
|
hint?: string | undefined;
|
|
7562
7562
|
messages?: {
|
|
7563
7563
|
text: string;
|
|
7564
|
-
type: "
|
|
7564
|
+
type: "success" | "error" | "info" | "warning";
|
|
7565
7565
|
id?: number | undefined;
|
|
7566
7566
|
}[] | undefined;
|
|
7567
7567
|
required?: boolean | undefined;
|
|
@@ -7576,7 +7576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7576
7576
|
hint?: string | undefined;
|
|
7577
7577
|
messages?: {
|
|
7578
7578
|
text: string;
|
|
7579
|
-
type: "
|
|
7579
|
+
type: "success" | "error" | "info" | "warning";
|
|
7580
7580
|
id?: number | undefined;
|
|
7581
7581
|
}[] | undefined;
|
|
7582
7582
|
required?: boolean | undefined;
|
|
@@ -7597,7 +7597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7597
7597
|
hint?: string | undefined;
|
|
7598
7598
|
messages?: {
|
|
7599
7599
|
text: string;
|
|
7600
|
-
type: "
|
|
7600
|
+
type: "success" | "error" | "info" | "warning";
|
|
7601
7601
|
id?: number | undefined;
|
|
7602
7602
|
}[] | undefined;
|
|
7603
7603
|
required?: boolean | undefined;
|
|
@@ -7622,7 +7622,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7622
7622
|
hint?: string | undefined;
|
|
7623
7623
|
messages?: {
|
|
7624
7624
|
text: string;
|
|
7625
|
-
type: "
|
|
7625
|
+
type: "success" | "error" | "info" | "warning";
|
|
7626
7626
|
id?: number | undefined;
|
|
7627
7627
|
}[] | undefined;
|
|
7628
7628
|
required?: boolean | undefined;
|
|
@@ -7641,7 +7641,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7641
7641
|
hint?: string | undefined;
|
|
7642
7642
|
messages?: {
|
|
7643
7643
|
text: string;
|
|
7644
|
-
type: "
|
|
7644
|
+
type: "success" | "error" | "info" | "warning";
|
|
7645
7645
|
id?: number | undefined;
|
|
7646
7646
|
}[] | undefined;
|
|
7647
7647
|
required?: boolean | undefined;
|
|
@@ -7661,7 +7661,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7661
7661
|
hint?: string | undefined;
|
|
7662
7662
|
messages?: {
|
|
7663
7663
|
text: string;
|
|
7664
|
-
type: "
|
|
7664
|
+
type: "success" | "error" | "info" | "warning";
|
|
7665
7665
|
id?: number | undefined;
|
|
7666
7666
|
}[] | undefined;
|
|
7667
7667
|
required?: boolean | undefined;
|
|
@@ -7680,7 +7680,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7680
7680
|
hint?: string | undefined;
|
|
7681
7681
|
messages?: {
|
|
7682
7682
|
text: string;
|
|
7683
|
-
type: "
|
|
7683
|
+
type: "success" | "error" | "info" | "warning";
|
|
7684
7684
|
id?: number | undefined;
|
|
7685
7685
|
}[] | undefined;
|
|
7686
7686
|
required?: boolean | undefined;
|
|
@@ -7702,7 +7702,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7702
7702
|
hint?: string | undefined;
|
|
7703
7703
|
messages?: {
|
|
7704
7704
|
text: string;
|
|
7705
|
-
type: "
|
|
7705
|
+
type: "success" | "error" | "info" | "warning";
|
|
7706
7706
|
id?: number | undefined;
|
|
7707
7707
|
}[] | undefined;
|
|
7708
7708
|
required?: boolean | undefined;
|
|
@@ -7724,7 +7724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7724
7724
|
hint?: string | undefined;
|
|
7725
7725
|
messages?: {
|
|
7726
7726
|
text: string;
|
|
7727
|
-
type: "
|
|
7727
|
+
type: "success" | "error" | "info" | "warning";
|
|
7728
7728
|
id?: number | undefined;
|
|
7729
7729
|
}[] | undefined;
|
|
7730
7730
|
required?: boolean | undefined;
|
|
@@ -7743,7 +7743,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7743
7743
|
hint?: string | undefined;
|
|
7744
7744
|
messages?: {
|
|
7745
7745
|
text: string;
|
|
7746
|
-
type: "
|
|
7746
|
+
type: "success" | "error" | "info" | "warning";
|
|
7747
7747
|
id?: number | undefined;
|
|
7748
7748
|
}[] | undefined;
|
|
7749
7749
|
required?: boolean | undefined;
|
|
@@ -7768,7 +7768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7768
7768
|
hint?: string | undefined;
|
|
7769
7769
|
messages?: {
|
|
7770
7770
|
text: string;
|
|
7771
|
-
type: "
|
|
7771
|
+
type: "success" | "error" | "info" | "warning";
|
|
7772
7772
|
id?: number | undefined;
|
|
7773
7773
|
}[] | undefined;
|
|
7774
7774
|
required?: boolean | undefined;
|
|
@@ -7789,7 +7789,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7789
7789
|
hint?: string | undefined;
|
|
7790
7790
|
messages?: {
|
|
7791
7791
|
text: string;
|
|
7792
|
-
type: "
|
|
7792
|
+
type: "success" | "error" | "info" | "warning";
|
|
7793
7793
|
id?: number | undefined;
|
|
7794
7794
|
}[] | undefined;
|
|
7795
7795
|
required?: boolean | undefined;
|
|
@@ -7810,7 +7810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7810
7810
|
hint?: string | undefined;
|
|
7811
7811
|
messages?: {
|
|
7812
7812
|
text: string;
|
|
7813
|
-
type: "
|
|
7813
|
+
type: "success" | "error" | "info" | "warning";
|
|
7814
7814
|
id?: number | undefined;
|
|
7815
7815
|
}[] | undefined;
|
|
7816
7816
|
required?: boolean | undefined;
|
|
@@ -8041,7 +8041,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8041
8041
|
hint?: string | undefined;
|
|
8042
8042
|
messages?: {
|
|
8043
8043
|
text: string;
|
|
8044
|
-
type: "
|
|
8044
|
+
type: "success" | "error" | "info" | "warning";
|
|
8045
8045
|
id?: number | undefined;
|
|
8046
8046
|
}[] | undefined;
|
|
8047
8047
|
required?: boolean | undefined;
|
|
@@ -8059,7 +8059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8059
8059
|
hint?: string | undefined;
|
|
8060
8060
|
messages?: {
|
|
8061
8061
|
text: string;
|
|
8062
|
-
type: "
|
|
8062
|
+
type: "success" | "error" | "info" | "warning";
|
|
8063
8063
|
id?: number | undefined;
|
|
8064
8064
|
}[] | undefined;
|
|
8065
8065
|
required?: boolean | undefined;
|
|
@@ -8083,7 +8083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8083
8083
|
hint?: string | undefined;
|
|
8084
8084
|
messages?: {
|
|
8085
8085
|
text: string;
|
|
8086
|
-
type: "
|
|
8086
|
+
type: "success" | "error" | "info" | "warning";
|
|
8087
8087
|
id?: number | undefined;
|
|
8088
8088
|
}[] | undefined;
|
|
8089
8089
|
required?: boolean | undefined;
|
|
@@ -8107,7 +8107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8107
8107
|
hint?: string | undefined;
|
|
8108
8108
|
messages?: {
|
|
8109
8109
|
text: string;
|
|
8110
|
-
type: "
|
|
8110
|
+
type: "success" | "error" | "info" | "warning";
|
|
8111
8111
|
id?: number | undefined;
|
|
8112
8112
|
}[] | undefined;
|
|
8113
8113
|
required?: boolean | undefined;
|
|
@@ -8131,7 +8131,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8131
8131
|
hint?: string | undefined;
|
|
8132
8132
|
messages?: {
|
|
8133
8133
|
text: string;
|
|
8134
|
-
type: "
|
|
8134
|
+
type: "success" | "error" | "info" | "warning";
|
|
8135
8135
|
id?: number | undefined;
|
|
8136
8136
|
}[] | undefined;
|
|
8137
8137
|
required?: boolean | undefined;
|
|
@@ -8160,7 +8160,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8160
8160
|
hint?: string | undefined;
|
|
8161
8161
|
messages?: {
|
|
8162
8162
|
text: string;
|
|
8163
|
-
type: "
|
|
8163
|
+
type: "success" | "error" | "info" | "warning";
|
|
8164
8164
|
id?: number | undefined;
|
|
8165
8165
|
}[] | undefined;
|
|
8166
8166
|
required?: boolean | undefined;
|
|
@@ -8175,7 +8175,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8175
8175
|
hint?: string | undefined;
|
|
8176
8176
|
messages?: {
|
|
8177
8177
|
text: string;
|
|
8178
|
-
type: "
|
|
8178
|
+
type: "success" | "error" | "info" | "warning";
|
|
8179
8179
|
id?: number | undefined;
|
|
8180
8180
|
}[] | undefined;
|
|
8181
8181
|
required?: boolean | undefined;
|
|
@@ -8196,7 +8196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8196
8196
|
hint?: string | undefined;
|
|
8197
8197
|
messages?: {
|
|
8198
8198
|
text: string;
|
|
8199
|
-
type: "
|
|
8199
|
+
type: "success" | "error" | "info" | "warning";
|
|
8200
8200
|
id?: number | undefined;
|
|
8201
8201
|
}[] | undefined;
|
|
8202
8202
|
required?: boolean | undefined;
|
|
@@ -8221,7 +8221,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8221
8221
|
hint?: string | undefined;
|
|
8222
8222
|
messages?: {
|
|
8223
8223
|
text: string;
|
|
8224
|
-
type: "
|
|
8224
|
+
type: "success" | "error" | "info" | "warning";
|
|
8225
8225
|
id?: number | undefined;
|
|
8226
8226
|
}[] | undefined;
|
|
8227
8227
|
required?: boolean | undefined;
|
|
@@ -8240,7 +8240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8240
8240
|
hint?: string | undefined;
|
|
8241
8241
|
messages?: {
|
|
8242
8242
|
text: string;
|
|
8243
|
-
type: "
|
|
8243
|
+
type: "success" | "error" | "info" | "warning";
|
|
8244
8244
|
id?: number | undefined;
|
|
8245
8245
|
}[] | undefined;
|
|
8246
8246
|
required?: boolean | undefined;
|
|
@@ -8260,7 +8260,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8260
8260
|
hint?: string | undefined;
|
|
8261
8261
|
messages?: {
|
|
8262
8262
|
text: string;
|
|
8263
|
-
type: "
|
|
8263
|
+
type: "success" | "error" | "info" | "warning";
|
|
8264
8264
|
id?: number | undefined;
|
|
8265
8265
|
}[] | undefined;
|
|
8266
8266
|
required?: boolean | undefined;
|
|
@@ -8279,7 +8279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8279
8279
|
hint?: string | undefined;
|
|
8280
8280
|
messages?: {
|
|
8281
8281
|
text: string;
|
|
8282
|
-
type: "
|
|
8282
|
+
type: "success" | "error" | "info" | "warning";
|
|
8283
8283
|
id?: number | undefined;
|
|
8284
8284
|
}[] | undefined;
|
|
8285
8285
|
required?: boolean | undefined;
|
|
@@ -8301,7 +8301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8301
8301
|
hint?: string | undefined;
|
|
8302
8302
|
messages?: {
|
|
8303
8303
|
text: string;
|
|
8304
|
-
type: "
|
|
8304
|
+
type: "success" | "error" | "info" | "warning";
|
|
8305
8305
|
id?: number | undefined;
|
|
8306
8306
|
}[] | undefined;
|
|
8307
8307
|
required?: boolean | undefined;
|
|
@@ -8323,7 +8323,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8323
8323
|
hint?: string | undefined;
|
|
8324
8324
|
messages?: {
|
|
8325
8325
|
text: string;
|
|
8326
|
-
type: "
|
|
8326
|
+
type: "success" | "error" | "info" | "warning";
|
|
8327
8327
|
id?: number | undefined;
|
|
8328
8328
|
}[] | undefined;
|
|
8329
8329
|
required?: boolean | undefined;
|
|
@@ -8342,7 +8342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8342
8342
|
hint?: string | undefined;
|
|
8343
8343
|
messages?: {
|
|
8344
8344
|
text: string;
|
|
8345
|
-
type: "
|
|
8345
|
+
type: "success" | "error" | "info" | "warning";
|
|
8346
8346
|
id?: number | undefined;
|
|
8347
8347
|
}[] | undefined;
|
|
8348
8348
|
required?: boolean | undefined;
|
|
@@ -8367,7 +8367,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8367
8367
|
hint?: string | undefined;
|
|
8368
8368
|
messages?: {
|
|
8369
8369
|
text: string;
|
|
8370
|
-
type: "
|
|
8370
|
+
type: "success" | "error" | "info" | "warning";
|
|
8371
8371
|
id?: number | undefined;
|
|
8372
8372
|
}[] | undefined;
|
|
8373
8373
|
required?: boolean | undefined;
|
|
@@ -8388,7 +8388,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8388
8388
|
hint?: string | undefined;
|
|
8389
8389
|
messages?: {
|
|
8390
8390
|
text: string;
|
|
8391
|
-
type: "
|
|
8391
|
+
type: "success" | "error" | "info" | "warning";
|
|
8392
8392
|
id?: number | undefined;
|
|
8393
8393
|
}[] | undefined;
|
|
8394
8394
|
required?: boolean | undefined;
|
|
@@ -8409,7 +8409,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8409
8409
|
hint?: string | undefined;
|
|
8410
8410
|
messages?: {
|
|
8411
8411
|
text: string;
|
|
8412
|
-
type: "
|
|
8412
|
+
type: "success" | "error" | "info" | "warning";
|
|
8413
8413
|
id?: number | undefined;
|
|
8414
8414
|
}[] | undefined;
|
|
8415
8415
|
required?: boolean | undefined;
|
|
@@ -8642,7 +8642,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8642
8642
|
hint?: string | undefined;
|
|
8643
8643
|
messages?: {
|
|
8644
8644
|
text: string;
|
|
8645
|
-
type: "
|
|
8645
|
+
type: "success" | "error" | "info" | "warning";
|
|
8646
8646
|
id?: number | undefined;
|
|
8647
8647
|
}[] | undefined;
|
|
8648
8648
|
required?: boolean | undefined;
|
|
@@ -8660,7 +8660,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8660
8660
|
hint?: string | undefined;
|
|
8661
8661
|
messages?: {
|
|
8662
8662
|
text: string;
|
|
8663
|
-
type: "
|
|
8663
|
+
type: "success" | "error" | "info" | "warning";
|
|
8664
8664
|
id?: number | undefined;
|
|
8665
8665
|
}[] | undefined;
|
|
8666
8666
|
required?: boolean | undefined;
|
|
@@ -8684,7 +8684,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8684
8684
|
hint?: string | undefined;
|
|
8685
8685
|
messages?: {
|
|
8686
8686
|
text: string;
|
|
8687
|
-
type: "
|
|
8687
|
+
type: "success" | "error" | "info" | "warning";
|
|
8688
8688
|
id?: number | undefined;
|
|
8689
8689
|
}[] | undefined;
|
|
8690
8690
|
required?: boolean | undefined;
|
|
@@ -8708,7 +8708,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8708
8708
|
hint?: string | undefined;
|
|
8709
8709
|
messages?: {
|
|
8710
8710
|
text: string;
|
|
8711
|
-
type: "
|
|
8711
|
+
type: "success" | "error" | "info" | "warning";
|
|
8712
8712
|
id?: number | undefined;
|
|
8713
8713
|
}[] | undefined;
|
|
8714
8714
|
required?: boolean | undefined;
|
|
@@ -8732,7 +8732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8732
8732
|
hint?: string | undefined;
|
|
8733
8733
|
messages?: {
|
|
8734
8734
|
text: string;
|
|
8735
|
-
type: "
|
|
8735
|
+
type: "success" | "error" | "info" | "warning";
|
|
8736
8736
|
id?: number | undefined;
|
|
8737
8737
|
}[] | undefined;
|
|
8738
8738
|
required?: boolean | undefined;
|
|
@@ -8757,7 +8757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8757
8757
|
hint?: string | undefined;
|
|
8758
8758
|
messages?: {
|
|
8759
8759
|
text: string;
|
|
8760
|
-
type: "
|
|
8760
|
+
type: "success" | "error" | "info" | "warning";
|
|
8761
8761
|
id?: number | undefined;
|
|
8762
8762
|
}[] | undefined;
|
|
8763
8763
|
required?: boolean | undefined;
|
|
@@ -8772,7 +8772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8772
8772
|
hint?: string | undefined;
|
|
8773
8773
|
messages?: {
|
|
8774
8774
|
text: string;
|
|
8775
|
-
type: "
|
|
8775
|
+
type: "success" | "error" | "info" | "warning";
|
|
8776
8776
|
id?: number | undefined;
|
|
8777
8777
|
}[] | undefined;
|
|
8778
8778
|
required?: boolean | undefined;
|
|
@@ -8793,7 +8793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8793
8793
|
hint?: string | undefined;
|
|
8794
8794
|
messages?: {
|
|
8795
8795
|
text: string;
|
|
8796
|
-
type: "
|
|
8796
|
+
type: "success" | "error" | "info" | "warning";
|
|
8797
8797
|
id?: number | undefined;
|
|
8798
8798
|
}[] | undefined;
|
|
8799
8799
|
required?: boolean | undefined;
|
|
@@ -8818,7 +8818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8818
8818
|
hint?: string | undefined;
|
|
8819
8819
|
messages?: {
|
|
8820
8820
|
text: string;
|
|
8821
|
-
type: "
|
|
8821
|
+
type: "success" | "error" | "info" | "warning";
|
|
8822
8822
|
id?: number | undefined;
|
|
8823
8823
|
}[] | undefined;
|
|
8824
8824
|
required?: boolean | undefined;
|
|
@@ -8837,7 +8837,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8837
8837
|
hint?: string | undefined;
|
|
8838
8838
|
messages?: {
|
|
8839
8839
|
text: string;
|
|
8840
|
-
type: "
|
|
8840
|
+
type: "success" | "error" | "info" | "warning";
|
|
8841
8841
|
id?: number | undefined;
|
|
8842
8842
|
}[] | undefined;
|
|
8843
8843
|
required?: boolean | undefined;
|
|
@@ -8857,7 +8857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8857
8857
|
hint?: string | undefined;
|
|
8858
8858
|
messages?: {
|
|
8859
8859
|
text: string;
|
|
8860
|
-
type: "
|
|
8860
|
+
type: "success" | "error" | "info" | "warning";
|
|
8861
8861
|
id?: number | undefined;
|
|
8862
8862
|
}[] | undefined;
|
|
8863
8863
|
required?: boolean | undefined;
|
|
@@ -8876,7 +8876,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8876
8876
|
hint?: string | undefined;
|
|
8877
8877
|
messages?: {
|
|
8878
8878
|
text: string;
|
|
8879
|
-
type: "
|
|
8879
|
+
type: "success" | "error" | "info" | "warning";
|
|
8880
8880
|
id?: number | undefined;
|
|
8881
8881
|
}[] | undefined;
|
|
8882
8882
|
required?: boolean | undefined;
|
|
@@ -8898,7 +8898,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8898
8898
|
hint?: string | undefined;
|
|
8899
8899
|
messages?: {
|
|
8900
8900
|
text: string;
|
|
8901
|
-
type: "
|
|
8901
|
+
type: "success" | "error" | "info" | "warning";
|
|
8902
8902
|
id?: number | undefined;
|
|
8903
8903
|
}[] | undefined;
|
|
8904
8904
|
required?: boolean | undefined;
|
|
@@ -8920,7 +8920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8920
8920
|
hint?: string | undefined;
|
|
8921
8921
|
messages?: {
|
|
8922
8922
|
text: string;
|
|
8923
|
-
type: "
|
|
8923
|
+
type: "success" | "error" | "info" | "warning";
|
|
8924
8924
|
id?: number | undefined;
|
|
8925
8925
|
}[] | undefined;
|
|
8926
8926
|
required?: boolean | undefined;
|
|
@@ -8939,7 +8939,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8939
8939
|
hint?: string | undefined;
|
|
8940
8940
|
messages?: {
|
|
8941
8941
|
text: string;
|
|
8942
|
-
type: "
|
|
8942
|
+
type: "success" | "error" | "info" | "warning";
|
|
8943
8943
|
id?: number | undefined;
|
|
8944
8944
|
}[] | undefined;
|
|
8945
8945
|
required?: boolean | undefined;
|
|
@@ -8964,7 +8964,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8964
8964
|
hint?: string | undefined;
|
|
8965
8965
|
messages?: {
|
|
8966
8966
|
text: string;
|
|
8967
|
-
type: "
|
|
8967
|
+
type: "success" | "error" | "info" | "warning";
|
|
8968
8968
|
id?: number | undefined;
|
|
8969
8969
|
}[] | undefined;
|
|
8970
8970
|
required?: boolean | undefined;
|
|
@@ -8985,7 +8985,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8985
8985
|
hint?: string | undefined;
|
|
8986
8986
|
messages?: {
|
|
8987
8987
|
text: string;
|
|
8988
|
-
type: "
|
|
8988
|
+
type: "success" | "error" | "info" | "warning";
|
|
8989
8989
|
id?: number | undefined;
|
|
8990
8990
|
}[] | undefined;
|
|
8991
8991
|
required?: boolean | undefined;
|
|
@@ -9006,7 +9006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9006
9006
|
hint?: string | undefined;
|
|
9007
9007
|
messages?: {
|
|
9008
9008
|
text: string;
|
|
9009
|
-
type: "
|
|
9009
|
+
type: "success" | "error" | "info" | "warning";
|
|
9010
9010
|
id?: number | undefined;
|
|
9011
9011
|
}[] | undefined;
|
|
9012
9012
|
required?: boolean | undefined;
|
|
@@ -9237,7 +9237,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9237
9237
|
hint?: string | undefined;
|
|
9238
9238
|
messages?: {
|
|
9239
9239
|
text: string;
|
|
9240
|
-
type: "
|
|
9240
|
+
type: "success" | "error" | "info" | "warning";
|
|
9241
9241
|
id?: number | undefined;
|
|
9242
9242
|
}[] | undefined;
|
|
9243
9243
|
required?: boolean | undefined;
|
|
@@ -9255,7 +9255,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9255
9255
|
hint?: string | undefined;
|
|
9256
9256
|
messages?: {
|
|
9257
9257
|
text: string;
|
|
9258
|
-
type: "
|
|
9258
|
+
type: "success" | "error" | "info" | "warning";
|
|
9259
9259
|
id?: number | undefined;
|
|
9260
9260
|
}[] | undefined;
|
|
9261
9261
|
required?: boolean | undefined;
|
|
@@ -9279,7 +9279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9279
9279
|
hint?: string | undefined;
|
|
9280
9280
|
messages?: {
|
|
9281
9281
|
text: string;
|
|
9282
|
-
type: "
|
|
9282
|
+
type: "success" | "error" | "info" | "warning";
|
|
9283
9283
|
id?: number | undefined;
|
|
9284
9284
|
}[] | undefined;
|
|
9285
9285
|
required?: boolean | undefined;
|
|
@@ -9303,7 +9303,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9303
9303
|
hint?: string | undefined;
|
|
9304
9304
|
messages?: {
|
|
9305
9305
|
text: string;
|
|
9306
|
-
type: "
|
|
9306
|
+
type: "success" | "error" | "info" | "warning";
|
|
9307
9307
|
id?: number | undefined;
|
|
9308
9308
|
}[] | undefined;
|
|
9309
9309
|
required?: boolean | undefined;
|
|
@@ -9327,7 +9327,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9327
9327
|
hint?: string | undefined;
|
|
9328
9328
|
messages?: {
|
|
9329
9329
|
text: string;
|
|
9330
|
-
type: "
|
|
9330
|
+
type: "success" | "error" | "info" | "warning";
|
|
9331
9331
|
id?: number | undefined;
|
|
9332
9332
|
}[] | undefined;
|
|
9333
9333
|
required?: boolean | undefined;
|
|
@@ -9356,7 +9356,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9356
9356
|
hint?: string | undefined;
|
|
9357
9357
|
messages?: {
|
|
9358
9358
|
text: string;
|
|
9359
|
-
type: "
|
|
9359
|
+
type: "success" | "error" | "info" | "warning";
|
|
9360
9360
|
id?: number | undefined;
|
|
9361
9361
|
}[] | undefined;
|
|
9362
9362
|
required?: boolean | undefined;
|
|
@@ -9371,7 +9371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9371
9371
|
hint?: string | undefined;
|
|
9372
9372
|
messages?: {
|
|
9373
9373
|
text: string;
|
|
9374
|
-
type: "
|
|
9374
|
+
type: "success" | "error" | "info" | "warning";
|
|
9375
9375
|
id?: number | undefined;
|
|
9376
9376
|
}[] | undefined;
|
|
9377
9377
|
required?: boolean | undefined;
|
|
@@ -9392,7 +9392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9392
9392
|
hint?: string | undefined;
|
|
9393
9393
|
messages?: {
|
|
9394
9394
|
text: string;
|
|
9395
|
-
type: "
|
|
9395
|
+
type: "success" | "error" | "info" | "warning";
|
|
9396
9396
|
id?: number | undefined;
|
|
9397
9397
|
}[] | undefined;
|
|
9398
9398
|
required?: boolean | undefined;
|
|
@@ -9417,7 +9417,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9417
9417
|
hint?: string | undefined;
|
|
9418
9418
|
messages?: {
|
|
9419
9419
|
text: string;
|
|
9420
|
-
type: "
|
|
9420
|
+
type: "success" | "error" | "info" | "warning";
|
|
9421
9421
|
id?: number | undefined;
|
|
9422
9422
|
}[] | undefined;
|
|
9423
9423
|
required?: boolean | undefined;
|
|
@@ -9436,7 +9436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9436
9436
|
hint?: string | undefined;
|
|
9437
9437
|
messages?: {
|
|
9438
9438
|
text: string;
|
|
9439
|
-
type: "
|
|
9439
|
+
type: "success" | "error" | "info" | "warning";
|
|
9440
9440
|
id?: number | undefined;
|
|
9441
9441
|
}[] | undefined;
|
|
9442
9442
|
required?: boolean | undefined;
|
|
@@ -9456,7 +9456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9456
9456
|
hint?: string | undefined;
|
|
9457
9457
|
messages?: {
|
|
9458
9458
|
text: string;
|
|
9459
|
-
type: "
|
|
9459
|
+
type: "success" | "error" | "info" | "warning";
|
|
9460
9460
|
id?: number | undefined;
|
|
9461
9461
|
}[] | undefined;
|
|
9462
9462
|
required?: boolean | undefined;
|
|
@@ -9475,7 +9475,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9475
9475
|
hint?: string | undefined;
|
|
9476
9476
|
messages?: {
|
|
9477
9477
|
text: string;
|
|
9478
|
-
type: "
|
|
9478
|
+
type: "success" | "error" | "info" | "warning";
|
|
9479
9479
|
id?: number | undefined;
|
|
9480
9480
|
}[] | undefined;
|
|
9481
9481
|
required?: boolean | undefined;
|
|
@@ -9497,7 +9497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9497
9497
|
hint?: string | undefined;
|
|
9498
9498
|
messages?: {
|
|
9499
9499
|
text: string;
|
|
9500
|
-
type: "
|
|
9500
|
+
type: "success" | "error" | "info" | "warning";
|
|
9501
9501
|
id?: number | undefined;
|
|
9502
9502
|
}[] | undefined;
|
|
9503
9503
|
required?: boolean | undefined;
|
|
@@ -9519,7 +9519,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9519
9519
|
hint?: string | undefined;
|
|
9520
9520
|
messages?: {
|
|
9521
9521
|
text: string;
|
|
9522
|
-
type: "
|
|
9522
|
+
type: "success" | "error" | "info" | "warning";
|
|
9523
9523
|
id?: number | undefined;
|
|
9524
9524
|
}[] | undefined;
|
|
9525
9525
|
required?: boolean | undefined;
|
|
@@ -9538,7 +9538,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9538
9538
|
hint?: string | undefined;
|
|
9539
9539
|
messages?: {
|
|
9540
9540
|
text: string;
|
|
9541
|
-
type: "
|
|
9541
|
+
type: "success" | "error" | "info" | "warning";
|
|
9542
9542
|
id?: number | undefined;
|
|
9543
9543
|
}[] | undefined;
|
|
9544
9544
|
required?: boolean | undefined;
|
|
@@ -9563,7 +9563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9563
9563
|
hint?: string | undefined;
|
|
9564
9564
|
messages?: {
|
|
9565
9565
|
text: string;
|
|
9566
|
-
type: "
|
|
9566
|
+
type: "success" | "error" | "info" | "warning";
|
|
9567
9567
|
id?: number | undefined;
|
|
9568
9568
|
}[] | undefined;
|
|
9569
9569
|
required?: boolean | undefined;
|
|
@@ -9584,7 +9584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9584
9584
|
hint?: string | undefined;
|
|
9585
9585
|
messages?: {
|
|
9586
9586
|
text: string;
|
|
9587
|
-
type: "
|
|
9587
|
+
type: "success" | "error" | "info" | "warning";
|
|
9588
9588
|
id?: number | undefined;
|
|
9589
9589
|
}[] | undefined;
|
|
9590
9590
|
required?: boolean | undefined;
|
|
@@ -9605,7 +9605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9605
9605
|
hint?: string | undefined;
|
|
9606
9606
|
messages?: {
|
|
9607
9607
|
text: string;
|
|
9608
|
-
type: "
|
|
9608
|
+
type: "success" | "error" | "info" | "warning";
|
|
9609
9609
|
id?: number | undefined;
|
|
9610
9610
|
}[] | undefined;
|
|
9611
9611
|
required?: boolean | undefined;
|
|
@@ -9835,7 +9835,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9835
9835
|
};
|
|
9836
9836
|
};
|
|
9837
9837
|
output: {
|
|
9838
|
-
prompt: "
|
|
9838
|
+
prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9839
9839
|
language: string;
|
|
9840
9840
|
}[];
|
|
9841
9841
|
outputFormat: "json";
|
|
@@ -9873,7 +9873,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9873
9873
|
$get: {
|
|
9874
9874
|
input: {
|
|
9875
9875
|
param: {
|
|
9876
|
-
prompt: "
|
|
9876
|
+
prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9877
9877
|
language: string;
|
|
9878
9878
|
};
|
|
9879
9879
|
} & {
|
|
@@ -9895,7 +9895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9895
9895
|
$put: {
|
|
9896
9896
|
input: {
|
|
9897
9897
|
param: {
|
|
9898
|
-
prompt: "
|
|
9898
|
+
prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9899
9899
|
language: string;
|
|
9900
9900
|
};
|
|
9901
9901
|
} & {
|
|
@@ -9919,7 +9919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9919
9919
|
$delete: {
|
|
9920
9920
|
input: {
|
|
9921
9921
|
param: {
|
|
9922
|
-
prompt: "
|
|
9922
|
+
prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9923
9923
|
language: string;
|
|
9924
9924
|
};
|
|
9925
9925
|
} & {
|
|
@@ -10781,7 +10781,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10781
10781
|
};
|
|
10782
10782
|
} | {
|
|
10783
10783
|
mode: "inline";
|
|
10784
|
-
status: "
|
|
10784
|
+
status: "success" | "error";
|
|
10785
10785
|
connection_id: string;
|
|
10786
10786
|
connection_name: string;
|
|
10787
10787
|
strategy: string;
|
|
@@ -11420,7 +11420,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11420
11420
|
log_type: string;
|
|
11421
11421
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11422
11422
|
actor: {
|
|
11423
|
-
type: "
|
|
11423
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
11424
11424
|
id?: string | undefined;
|
|
11425
11425
|
email?: string | undefined;
|
|
11426
11426
|
org_id?: string | undefined;
|
|
@@ -12068,7 +12068,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12068
12068
|
};
|
|
12069
12069
|
};
|
|
12070
12070
|
output: {
|
|
12071
|
-
type: "
|
|
12071
|
+
type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12072
12072
|
date: string;
|
|
12073
12073
|
isMobile: boolean;
|
|
12074
12074
|
log_id: string;
|
|
@@ -12107,7 +12107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12107
12107
|
limit: number;
|
|
12108
12108
|
length: number;
|
|
12109
12109
|
logs: {
|
|
12110
|
-
type: "
|
|
12110
|
+
type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12111
12111
|
date: string;
|
|
12112
12112
|
isMobile: boolean;
|
|
12113
12113
|
log_id: string;
|
|
@@ -12161,7 +12161,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12161
12161
|
};
|
|
12162
12162
|
};
|
|
12163
12163
|
output: {
|
|
12164
|
-
type: "
|
|
12164
|
+
type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12165
12165
|
date: string;
|
|
12166
12166
|
isMobile: boolean;
|
|
12167
12167
|
log_id: string;
|
|
@@ -12549,7 +12549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12549
12549
|
addons?: {
|
|
12550
12550
|
[x: string]: any;
|
|
12551
12551
|
} | undefined;
|
|
12552
|
-
token_endpoint_auth_method?: "none" | "
|
|
12552
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12553
12553
|
client_metadata?: {
|
|
12554
12554
|
[x: string]: string;
|
|
12555
12555
|
} | undefined;
|
|
@@ -12645,7 +12645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12645
12645
|
addons?: {
|
|
12646
12646
|
[x: string]: any;
|
|
12647
12647
|
} | undefined;
|
|
12648
|
-
token_endpoint_auth_method?: "none" | "
|
|
12648
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12649
12649
|
client_metadata?: {
|
|
12650
12650
|
[x: string]: string;
|
|
12651
12651
|
} | undefined;
|
|
@@ -12756,7 +12756,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12756
12756
|
addons?: {
|
|
12757
12757
|
[x: string]: any;
|
|
12758
12758
|
} | undefined;
|
|
12759
|
-
token_endpoint_auth_method?: "none" | "
|
|
12759
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12760
12760
|
client_metadata?: {
|
|
12761
12761
|
[x: string]: string;
|
|
12762
12762
|
} | undefined;
|
|
@@ -12866,7 +12866,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12866
12866
|
custom_login_page_preview?: string | undefined;
|
|
12867
12867
|
form_template?: string | undefined;
|
|
12868
12868
|
addons?: Record<string, any> | undefined;
|
|
12869
|
-
token_endpoint_auth_method?: "none" | "
|
|
12869
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12870
12870
|
client_metadata?: Record<string, string> | undefined;
|
|
12871
12871
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12872
12872
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12946,7 +12946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12946
12946
|
addons?: {
|
|
12947
12947
|
[x: string]: any;
|
|
12948
12948
|
} | undefined;
|
|
12949
|
-
token_endpoint_auth_method?: "none" | "
|
|
12949
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12950
12950
|
client_metadata?: {
|
|
12951
12951
|
[x: string]: string;
|
|
12952
12952
|
} | undefined;
|
|
@@ -13035,7 +13035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13035
13035
|
custom_login_page_preview?: string | undefined;
|
|
13036
13036
|
form_template?: string | undefined;
|
|
13037
13037
|
addons?: Record<string, any> | undefined;
|
|
13038
|
-
token_endpoint_auth_method?: "none" | "
|
|
13038
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13039
13039
|
client_metadata?: Record<string, string> | undefined;
|
|
13040
13040
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13041
13041
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13115,7 +13115,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13115
13115
|
addons?: {
|
|
13116
13116
|
[x: string]: any;
|
|
13117
13117
|
} | undefined;
|
|
13118
|
-
token_endpoint_auth_method?: "none" | "
|
|
13118
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13119
13119
|
client_metadata?: {
|
|
13120
13120
|
[x: string]: string;
|
|
13121
13121
|
} | undefined;
|
|
@@ -14379,7 +14379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14379
14379
|
};
|
|
14380
14380
|
};
|
|
14381
14381
|
output: {
|
|
14382
|
-
type: "
|
|
14382
|
+
type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14383
14383
|
date: string;
|
|
14384
14384
|
isMobile: boolean;
|
|
14385
14385
|
log_id: string;
|
|
@@ -14418,7 +14418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14418
14418
|
limit: number;
|
|
14419
14419
|
length: number;
|
|
14420
14420
|
logs: {
|
|
14421
|
-
type: "
|
|
14421
|
+
type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14422
14422
|
date: string;
|
|
14423
14423
|
isMobile: boolean;
|
|
14424
14424
|
log_id: string;
|
|
@@ -15888,7 +15888,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15888
15888
|
};
|
|
15889
15889
|
output: {};
|
|
15890
15890
|
outputFormat: string;
|
|
15891
|
-
status:
|
|
15891
|
+
status: 400;
|
|
15892
15892
|
} | {
|
|
15893
15893
|
input: {
|
|
15894
15894
|
header: {
|
|
@@ -15901,7 +15901,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15901
15901
|
};
|
|
15902
15902
|
output: {};
|
|
15903
15903
|
outputFormat: string;
|
|
15904
|
-
status:
|
|
15904
|
+
status: 204;
|
|
15905
15905
|
};
|
|
15906
15906
|
};
|
|
15907
15907
|
} & {
|
|
@@ -15927,7 +15927,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15927
15927
|
} & {
|
|
15928
15928
|
json: {
|
|
15929
15929
|
body?: string | undefined;
|
|
15930
|
-
screen?: "
|
|
15930
|
+
screen?: "password" | "signup" | "identifier" | "login" | undefined;
|
|
15931
15931
|
branding?: {
|
|
15932
15932
|
colors?: {
|
|
15933
15933
|
primary: string;
|
|
@@ -16218,7 +16218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16218
16218
|
logs: {
|
|
16219
16219
|
action_name: string;
|
|
16220
16220
|
lines: {
|
|
16221
|
-
level: "
|
|
16221
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
16222
16222
|
message: string;
|
|
16223
16223
|
}[];
|
|
16224
16224
|
}[];
|
|
@@ -16885,7 +16885,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16885
16885
|
args: hono_utils_types.JSONValue[];
|
|
16886
16886
|
}[];
|
|
16887
16887
|
logs: {
|
|
16888
|
-
level: "
|
|
16888
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
16889
16889
|
message: string;
|
|
16890
16890
|
}[];
|
|
16891
16891
|
error?: string | undefined;
|
|
@@ -17196,7 +17196,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17196
17196
|
scope?: string | undefined;
|
|
17197
17197
|
grant_types?: string[] | undefined;
|
|
17198
17198
|
response_types?: string[] | undefined;
|
|
17199
|
-
token_endpoint_auth_method?: "none" | "
|
|
17199
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17200
17200
|
jwks_uri?: string | undefined;
|
|
17201
17201
|
jwks?: Record<string, unknown> | undefined;
|
|
17202
17202
|
software_id?: string | undefined;
|
|
@@ -17285,7 +17285,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17285
17285
|
scope?: string | undefined;
|
|
17286
17286
|
grant_types?: string[] | undefined;
|
|
17287
17287
|
response_types?: string[] | undefined;
|
|
17288
|
-
token_endpoint_auth_method?: "none" | "
|
|
17288
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17289
17289
|
jwks_uri?: string | undefined;
|
|
17290
17290
|
jwks?: Record<string, unknown> | undefined;
|
|
17291
17291
|
software_id?: string | undefined;
|
|
@@ -17342,7 +17342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17342
17342
|
client_id: string;
|
|
17343
17343
|
redirect_url?: string | undefined;
|
|
17344
17344
|
login_hint?: string | undefined;
|
|
17345
|
-
screen_hint?: "
|
|
17345
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
17346
17346
|
};
|
|
17347
17347
|
};
|
|
17348
17348
|
output: {};
|
|
@@ -17354,7 +17354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17354
17354
|
client_id: string;
|
|
17355
17355
|
redirect_url?: string | undefined;
|
|
17356
17356
|
login_hint?: string | undefined;
|
|
17357
|
-
screen_hint?: "
|
|
17357
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
17358
17358
|
};
|
|
17359
17359
|
};
|
|
17360
17360
|
output: {
|
|
@@ -17431,9 +17431,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17431
17431
|
request_uri?: string | undefined;
|
|
17432
17432
|
};
|
|
17433
17433
|
};
|
|
17434
|
-
output: {
|
|
17435
|
-
|
|
17436
|
-
|
|
17434
|
+
output: string | {
|
|
17435
|
+
access_token: string;
|
|
17436
|
+
token_type: string;
|
|
17437
|
+
expires_in: number;
|
|
17438
|
+
id_token?: string | undefined;
|
|
17439
|
+
scope?: string | undefined;
|
|
17440
|
+
state?: string | undefined;
|
|
17441
|
+
refresh_token?: string | undefined;
|
|
17442
|
+
};
|
|
17443
|
+
outputFormat: "json";
|
|
17444
|
+
status: 200;
|
|
17437
17445
|
} | {
|
|
17438
17446
|
input: {
|
|
17439
17447
|
query: {
|
|
@@ -17465,17 +17473,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17465
17473
|
request_uri?: string | undefined;
|
|
17466
17474
|
};
|
|
17467
17475
|
};
|
|
17468
|
-
output:
|
|
17469
|
-
|
|
17470
|
-
|
|
17471
|
-
expires_in: number;
|
|
17472
|
-
id_token?: string | undefined;
|
|
17473
|
-
scope?: string | undefined;
|
|
17474
|
-
state?: string | undefined;
|
|
17475
|
-
refresh_token?: string | undefined;
|
|
17476
|
-
};
|
|
17477
|
-
outputFormat: "json";
|
|
17478
|
-
status: 200;
|
|
17476
|
+
output: {};
|
|
17477
|
+
outputFormat: string;
|
|
17478
|
+
status: 302;
|
|
17479
17479
|
} | {
|
|
17480
17480
|
input: {
|
|
17481
17481
|
query: {
|
|
@@ -17631,22 +17631,21 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17631
17631
|
email: string;
|
|
17632
17632
|
send: "code" | "link";
|
|
17633
17633
|
authParams: {
|
|
17634
|
-
|
|
17634
|
+
vendor_id?: string | undefined;
|
|
17635
|
+
redirect_uri?: string | undefined;
|
|
17636
|
+
scope?: string | undefined;
|
|
17635
17637
|
state?: string | undefined;
|
|
17636
|
-
|
|
17637
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17638
|
+
prompt?: string | undefined;
|
|
17638
17639
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17639
|
-
|
|
17640
|
-
|
|
17640
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17641
|
+
audience?: string | undefined;
|
|
17641
17642
|
nonce?: string | undefined;
|
|
17642
|
-
|
|
17643
|
-
|
|
17644
|
-
prompt?: string | undefined;
|
|
17643
|
+
max_age?: number | undefined;
|
|
17644
|
+
acr_values?: string | undefined;
|
|
17645
17645
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17646
17646
|
code_challenge?: string | undefined;
|
|
17647
|
+
organization?: string | undefined;
|
|
17647
17648
|
ui_locales?: string | undefined;
|
|
17648
|
-
max_age?: number | undefined;
|
|
17649
|
-
acr_values?: string | undefined;
|
|
17650
17649
|
claims?: {
|
|
17651
17650
|
userinfo?: Record<string, {
|
|
17652
17651
|
essential?: boolean | undefined;
|
|
@@ -17659,7 +17658,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17659
17658
|
values?: unknown[] | undefined;
|
|
17660
17659
|
} | null> | undefined;
|
|
17661
17660
|
} | undefined;
|
|
17662
|
-
|
|
17661
|
+
act_as?: string | undefined;
|
|
17662
|
+
username?: string | undefined;
|
|
17663
17663
|
};
|
|
17664
17664
|
} | {
|
|
17665
17665
|
client_id: string;
|
|
@@ -17667,22 +17667,21 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17667
17667
|
phone_number: string;
|
|
17668
17668
|
send: "code" | "link";
|
|
17669
17669
|
authParams: {
|
|
17670
|
-
|
|
17670
|
+
vendor_id?: string | undefined;
|
|
17671
|
+
redirect_uri?: string | undefined;
|
|
17672
|
+
scope?: string | undefined;
|
|
17671
17673
|
state?: string | undefined;
|
|
17672
|
-
|
|
17673
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17674
|
+
prompt?: string | undefined;
|
|
17674
17675
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17675
|
-
|
|
17676
|
-
|
|
17676
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17677
|
+
audience?: string | undefined;
|
|
17677
17678
|
nonce?: string | undefined;
|
|
17678
|
-
|
|
17679
|
-
|
|
17680
|
-
prompt?: string | undefined;
|
|
17679
|
+
max_age?: number | undefined;
|
|
17680
|
+
acr_values?: string | undefined;
|
|
17681
17681
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17682
17682
|
code_challenge?: string | undefined;
|
|
17683
|
+
organization?: string | undefined;
|
|
17683
17684
|
ui_locales?: string | undefined;
|
|
17684
|
-
max_age?: number | undefined;
|
|
17685
|
-
acr_values?: string | undefined;
|
|
17686
17685
|
claims?: {
|
|
17687
17686
|
userinfo?: Record<string, {
|
|
17688
17687
|
essential?: boolean | undefined;
|
|
@@ -17695,7 +17694,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17695
17694
|
values?: unknown[] | undefined;
|
|
17696
17695
|
} | null> | undefined;
|
|
17697
17696
|
} | undefined;
|
|
17698
|
-
|
|
17697
|
+
act_as?: string | undefined;
|
|
17698
|
+
username?: string | undefined;
|
|
17699
17699
|
};
|
|
17700
17700
|
};
|
|
17701
17701
|
};
|
|
@@ -17811,14 +17811,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17811
17811
|
input: {
|
|
17812
17812
|
form: {
|
|
17813
17813
|
token: string;
|
|
17814
|
-
token_type_hint?: "
|
|
17814
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17815
17815
|
client_id?: string | undefined;
|
|
17816
17816
|
client_secret?: string | undefined;
|
|
17817
17817
|
};
|
|
17818
17818
|
} & {
|
|
17819
17819
|
json: {
|
|
17820
17820
|
token: string;
|
|
17821
|
-
token_type_hint?: "
|
|
17821
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17822
17822
|
client_id?: string | undefined;
|
|
17823
17823
|
client_secret?: string | undefined;
|
|
17824
17824
|
};
|
|
@@ -17830,14 +17830,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17830
17830
|
input: {
|
|
17831
17831
|
form: {
|
|
17832
17832
|
token: string;
|
|
17833
|
-
token_type_hint?: "
|
|
17833
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17834
17834
|
client_id?: string | undefined;
|
|
17835
17835
|
client_secret?: string | undefined;
|
|
17836
17836
|
};
|
|
17837
17837
|
} & {
|
|
17838
17838
|
json: {
|
|
17839
17839
|
token: string;
|
|
17840
|
-
token_type_hint?: "
|
|
17840
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17841
17841
|
client_id?: string | undefined;
|
|
17842
17842
|
client_secret?: string | undefined;
|
|
17843
17843
|
};
|
|
@@ -17852,14 +17852,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17852
17852
|
input: {
|
|
17853
17853
|
form: {
|
|
17854
17854
|
token: string;
|
|
17855
|
-
token_type_hint?: "
|
|
17855
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17856
17856
|
client_id?: string | undefined;
|
|
17857
17857
|
client_secret?: string | undefined;
|
|
17858
17858
|
};
|
|
17859
17859
|
} & {
|
|
17860
17860
|
json: {
|
|
17861
17861
|
token: string;
|
|
17862
|
-
token_type_hint?: "
|
|
17862
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17863
17863
|
client_id?: string | undefined;
|
|
17864
17864
|
client_secret?: string | undefined;
|
|
17865
17865
|
};
|
|
@@ -18283,7 +18283,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18283
18283
|
error_description?: string | undefined;
|
|
18284
18284
|
};
|
|
18285
18285
|
outputFormat: "json";
|
|
18286
|
-
status:
|
|
18286
|
+
status: 403;
|
|
18287
18287
|
} | {
|
|
18288
18288
|
input: {
|
|
18289
18289
|
form: {
|
|
@@ -18385,7 +18385,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18385
18385
|
error_description?: string | undefined;
|
|
18386
18386
|
};
|
|
18387
18387
|
outputFormat: "json";
|
|
18388
|
-
status:
|
|
18388
|
+
status: 401;
|
|
18389
18389
|
};
|
|
18390
18390
|
};
|
|
18391
18391
|
}, "/oauth/token"> & hono_types.MergeSchemaPath<{
|
|
@@ -18584,7 +18584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18584
18584
|
};
|
|
18585
18585
|
output: {};
|
|
18586
18586
|
outputFormat: string;
|
|
18587
|
-
status:
|
|
18587
|
+
status: 302;
|
|
18588
18588
|
} | {
|
|
18589
18589
|
input: {
|
|
18590
18590
|
query: {
|
|
@@ -18598,7 +18598,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18598
18598
|
};
|
|
18599
18599
|
output: {};
|
|
18600
18600
|
outputFormat: string;
|
|
18601
|
-
status:
|
|
18601
|
+
status: 200;
|
|
18602
18602
|
} | {
|
|
18603
18603
|
input: {
|
|
18604
18604
|
query: {
|
|
@@ -19207,7 +19207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19207
19207
|
} & {
|
|
19208
19208
|
form: {
|
|
19209
19209
|
username: string;
|
|
19210
|
-
login_selection?: "
|
|
19210
|
+
login_selection?: "password" | "code" | undefined;
|
|
19211
19211
|
};
|
|
19212
19212
|
};
|
|
19213
19213
|
output: {};
|
|
@@ -19221,7 +19221,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19221
19221
|
} & {
|
|
19222
19222
|
form: {
|
|
19223
19223
|
username: string;
|
|
19224
|
-
login_selection?: "
|
|
19224
|
+
login_selection?: "password" | "code" | undefined;
|
|
19225
19225
|
};
|
|
19226
19226
|
};
|
|
19227
19227
|
output: {};
|
|
@@ -19586,7 +19586,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19586
19586
|
$get: {
|
|
19587
19587
|
input: {
|
|
19588
19588
|
param: {
|
|
19589
|
-
screen: "signup" | "
|
|
19589
|
+
screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19590
19590
|
};
|
|
19591
19591
|
} & {
|
|
19592
19592
|
query: {
|
|
@@ -19602,7 +19602,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19602
19602
|
} | {
|
|
19603
19603
|
input: {
|
|
19604
19604
|
param: {
|
|
19605
|
-
screen: "signup" | "
|
|
19605
|
+
screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19606
19606
|
};
|
|
19607
19607
|
} & {
|
|
19608
19608
|
query: {
|
|
@@ -19618,7 +19618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19618
19618
|
} | {
|
|
19619
19619
|
input: {
|
|
19620
19620
|
param: {
|
|
19621
|
-
screen: "signup" | "
|
|
19621
|
+
screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19622
19622
|
};
|
|
19623
19623
|
} & {
|
|
19624
19624
|
query: {
|
|
@@ -19638,7 +19638,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19638
19638
|
$post: {
|
|
19639
19639
|
input: {
|
|
19640
19640
|
param: {
|
|
19641
|
-
screen: "signup" | "
|
|
19641
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19642
19642
|
};
|
|
19643
19643
|
} & {
|
|
19644
19644
|
query: {
|
|
@@ -19656,7 +19656,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19656
19656
|
} | {
|
|
19657
19657
|
input: {
|
|
19658
19658
|
param: {
|
|
19659
|
-
screen: "signup" | "
|
|
19659
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19660
19660
|
};
|
|
19661
19661
|
} & {
|
|
19662
19662
|
query: {
|