authhero 8.17.1 → 8.17.2
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 +3 -3
- package/dist/authhero.d.ts +233 -233
- package/dist/authhero.mjs +18 -14
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/index.d.ts +233 -233
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +50 -50
- package/dist/types/routes/auth-api/passwordless.d.ts +4 -4
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +5 -5
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +53 -53
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -3042,8 +3042,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3042
3042
|
$get: {
|
|
3043
3043
|
input: {
|
|
3044
3044
|
query: {
|
|
3045
|
-
include_password_hashes?: "
|
|
3046
|
-
gzip?: "
|
|
3045
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3046
|
+
gzip?: "true" | "false" | undefined;
|
|
3047
3047
|
};
|
|
3048
3048
|
} & {
|
|
3049
3049
|
header: {
|
|
@@ -3056,8 +3056,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3056
3056
|
} | {
|
|
3057
3057
|
input: {
|
|
3058
3058
|
query: {
|
|
3059
|
-
include_password_hashes?: "
|
|
3060
|
-
gzip?: "
|
|
3059
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3060
|
+
gzip?: "true" | "false" | undefined;
|
|
3061
3061
|
};
|
|
3062
3062
|
} & {
|
|
3063
3063
|
header: {
|
|
@@ -3076,7 +3076,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3076
3076
|
$post: {
|
|
3077
3077
|
input: {
|
|
3078
3078
|
query: {
|
|
3079
|
-
include_password_hashes?: "
|
|
3079
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3080
3080
|
};
|
|
3081
3081
|
} & {
|
|
3082
3082
|
header: {
|
|
@@ -3130,7 +3130,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3130
3130
|
};
|
|
3131
3131
|
} & {
|
|
3132
3132
|
json: {
|
|
3133
|
-
type: "push" | "email" | "passkey" | "phone" | "
|
|
3133
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
3134
3134
|
phone_number?: string | undefined;
|
|
3135
3135
|
totp_secret?: string | undefined;
|
|
3136
3136
|
credential_id?: string | undefined;
|
|
@@ -3270,7 +3270,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3270
3270
|
};
|
|
3271
3271
|
};
|
|
3272
3272
|
output: {
|
|
3273
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3273
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3274
3274
|
enabled: boolean;
|
|
3275
3275
|
trial_expired?: boolean | undefined;
|
|
3276
3276
|
}[];
|
|
@@ -3425,7 +3425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3425
3425
|
$get: {
|
|
3426
3426
|
input: {
|
|
3427
3427
|
param: {
|
|
3428
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
3428
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3429
3429
|
};
|
|
3430
3430
|
} & {
|
|
3431
3431
|
header: {
|
|
@@ -3433,7 +3433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3433
3433
|
};
|
|
3434
3434
|
};
|
|
3435
3435
|
output: {
|
|
3436
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3436
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3437
3437
|
enabled: boolean;
|
|
3438
3438
|
trial_expired?: boolean | undefined;
|
|
3439
3439
|
};
|
|
@@ -3446,7 +3446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3446
3446
|
$put: {
|
|
3447
3447
|
input: {
|
|
3448
3448
|
param: {
|
|
3449
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
3449
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3450
3450
|
};
|
|
3451
3451
|
} & {
|
|
3452
3452
|
header: {
|
|
@@ -3458,7 +3458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3458
3458
|
};
|
|
3459
3459
|
};
|
|
3460
3460
|
output: {
|
|
3461
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3461
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3462
3462
|
enabled: boolean;
|
|
3463
3463
|
trial_expired?: boolean | undefined;
|
|
3464
3464
|
};
|
|
@@ -5058,7 +5058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5058
5058
|
type: "REDIRECT";
|
|
5059
5059
|
action: "REDIRECT_USER";
|
|
5060
5060
|
params: {
|
|
5061
|
-
target: "custom" | "
|
|
5061
|
+
target: "custom" | "change-email" | "account";
|
|
5062
5062
|
custom_url?: string | undefined;
|
|
5063
5063
|
};
|
|
5064
5064
|
alias?: string | undefined;
|
|
@@ -5111,7 +5111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5111
5111
|
type: "REDIRECT";
|
|
5112
5112
|
action: "REDIRECT_USER";
|
|
5113
5113
|
params: {
|
|
5114
|
-
target: "custom" | "
|
|
5114
|
+
target: "custom" | "change-email" | "account";
|
|
5115
5115
|
custom_url?: string | undefined;
|
|
5116
5116
|
};
|
|
5117
5117
|
alias?: string | undefined;
|
|
@@ -5179,7 +5179,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5179
5179
|
type: "REDIRECT";
|
|
5180
5180
|
action: "REDIRECT_USER";
|
|
5181
5181
|
params: {
|
|
5182
|
-
target: "custom" | "
|
|
5182
|
+
target: "custom" | "change-email" | "account";
|
|
5183
5183
|
custom_url?: string | undefined;
|
|
5184
5184
|
};
|
|
5185
5185
|
alias?: string | undefined;
|
|
@@ -5260,7 +5260,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5260
5260
|
type: "REDIRECT";
|
|
5261
5261
|
action: "REDIRECT_USER";
|
|
5262
5262
|
params: {
|
|
5263
|
-
target: "custom" | "
|
|
5263
|
+
target: "custom" | "change-email" | "account";
|
|
5264
5264
|
custom_url?: string | undefined;
|
|
5265
5265
|
};
|
|
5266
5266
|
alias?: string | undefined;
|
|
@@ -5308,7 +5308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5308
5308
|
type: "REDIRECT";
|
|
5309
5309
|
action: "REDIRECT_USER";
|
|
5310
5310
|
params: {
|
|
5311
|
-
target: "custom" | "
|
|
5311
|
+
target: "custom" | "change-email" | "account";
|
|
5312
5312
|
custom_url?: string | undefined;
|
|
5313
5313
|
};
|
|
5314
5314
|
alias?: string | undefined;
|
|
@@ -5368,7 +5368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5368
5368
|
type: "REDIRECT";
|
|
5369
5369
|
action: "REDIRECT_USER";
|
|
5370
5370
|
params: {
|
|
5371
|
-
target: "custom" | "
|
|
5371
|
+
target: "custom" | "change-email" | "account";
|
|
5372
5372
|
custom_url?: string | undefined;
|
|
5373
5373
|
};
|
|
5374
5374
|
alias?: string | undefined;
|
|
@@ -5416,7 +5416,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5416
5416
|
type: "REDIRECT";
|
|
5417
5417
|
action: "REDIRECT_USER";
|
|
5418
5418
|
params: {
|
|
5419
|
-
target: "custom" | "
|
|
5419
|
+
target: "custom" | "change-email" | "account";
|
|
5420
5420
|
custom_url?: string | undefined;
|
|
5421
5421
|
};
|
|
5422
5422
|
alias?: string | undefined;
|
|
@@ -5634,7 +5634,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5634
5634
|
hint?: string | undefined;
|
|
5635
5635
|
messages?: {
|
|
5636
5636
|
text: string;
|
|
5637
|
-
type: "
|
|
5637
|
+
type: "error" | "success" | "info" | "warning";
|
|
5638
5638
|
id?: number | undefined;
|
|
5639
5639
|
}[] | undefined;
|
|
5640
5640
|
required?: boolean | undefined;
|
|
@@ -5652,7 +5652,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5652
5652
|
hint?: string | undefined;
|
|
5653
5653
|
messages?: {
|
|
5654
5654
|
text: string;
|
|
5655
|
-
type: "
|
|
5655
|
+
type: "error" | "success" | "info" | "warning";
|
|
5656
5656
|
id?: number | undefined;
|
|
5657
5657
|
}[] | undefined;
|
|
5658
5658
|
required?: boolean | undefined;
|
|
@@ -5676,7 +5676,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5676
5676
|
hint?: string | undefined;
|
|
5677
5677
|
messages?: {
|
|
5678
5678
|
text: string;
|
|
5679
|
-
type: "
|
|
5679
|
+
type: "error" | "success" | "info" | "warning";
|
|
5680
5680
|
id?: number | undefined;
|
|
5681
5681
|
}[] | undefined;
|
|
5682
5682
|
required?: boolean | undefined;
|
|
@@ -5686,7 +5686,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5686
5686
|
value: string;
|
|
5687
5687
|
label: string;
|
|
5688
5688
|
}[] | undefined;
|
|
5689
|
-
display?: "
|
|
5689
|
+
display?: "radio" | "checkbox" | undefined;
|
|
5690
5690
|
multiple?: boolean | undefined;
|
|
5691
5691
|
default_value?: string | string[] | undefined;
|
|
5692
5692
|
} | undefined;
|
|
@@ -5700,7 +5700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5700
5700
|
hint?: string | undefined;
|
|
5701
5701
|
messages?: {
|
|
5702
5702
|
text: string;
|
|
5703
|
-
type: "
|
|
5703
|
+
type: "error" | "success" | "info" | "warning";
|
|
5704
5704
|
id?: number | undefined;
|
|
5705
5705
|
}[] | undefined;
|
|
5706
5706
|
required?: boolean | undefined;
|
|
@@ -5724,7 +5724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5724
5724
|
hint?: string | undefined;
|
|
5725
5725
|
messages?: {
|
|
5726
5726
|
text: string;
|
|
5727
|
-
type: "
|
|
5727
|
+
type: "error" | "success" | "info" | "warning";
|
|
5728
5728
|
id?: number | undefined;
|
|
5729
5729
|
}[] | undefined;
|
|
5730
5730
|
required?: boolean | undefined;
|
|
@@ -5753,7 +5753,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5753
5753
|
hint?: string | undefined;
|
|
5754
5754
|
messages?: {
|
|
5755
5755
|
text: string;
|
|
5756
|
-
type: "
|
|
5756
|
+
type: "error" | "success" | "info" | "warning";
|
|
5757
5757
|
id?: number | undefined;
|
|
5758
5758
|
}[] | undefined;
|
|
5759
5759
|
required?: boolean | undefined;
|
|
@@ -5768,7 +5768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5768
5768
|
hint?: string | undefined;
|
|
5769
5769
|
messages?: {
|
|
5770
5770
|
text: string;
|
|
5771
|
-
type: "
|
|
5771
|
+
type: "error" | "success" | "info" | "warning";
|
|
5772
5772
|
id?: number | undefined;
|
|
5773
5773
|
}[] | undefined;
|
|
5774
5774
|
required?: boolean | undefined;
|
|
@@ -5789,7 +5789,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5789
5789
|
hint?: string | undefined;
|
|
5790
5790
|
messages?: {
|
|
5791
5791
|
text: string;
|
|
5792
|
-
type: "
|
|
5792
|
+
type: "error" | "success" | "info" | "warning";
|
|
5793
5793
|
id?: number | undefined;
|
|
5794
5794
|
}[] | undefined;
|
|
5795
5795
|
required?: boolean | undefined;
|
|
@@ -5814,7 +5814,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5814
5814
|
hint?: string | undefined;
|
|
5815
5815
|
messages?: {
|
|
5816
5816
|
text: string;
|
|
5817
|
-
type: "
|
|
5817
|
+
type: "error" | "success" | "info" | "warning";
|
|
5818
5818
|
id?: number | undefined;
|
|
5819
5819
|
}[] | undefined;
|
|
5820
5820
|
required?: boolean | undefined;
|
|
@@ -5833,7 +5833,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5833
5833
|
hint?: string | undefined;
|
|
5834
5834
|
messages?: {
|
|
5835
5835
|
text: string;
|
|
5836
|
-
type: "
|
|
5836
|
+
type: "error" | "success" | "info" | "warning";
|
|
5837
5837
|
id?: number | undefined;
|
|
5838
5838
|
}[] | undefined;
|
|
5839
5839
|
required?: boolean | undefined;
|
|
@@ -5853,7 +5853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5853
5853
|
hint?: string | undefined;
|
|
5854
5854
|
messages?: {
|
|
5855
5855
|
text: string;
|
|
5856
|
-
type: "
|
|
5856
|
+
type: "error" | "success" | "info" | "warning";
|
|
5857
5857
|
id?: number | undefined;
|
|
5858
5858
|
}[] | undefined;
|
|
5859
5859
|
required?: boolean | undefined;
|
|
@@ -5872,7 +5872,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5872
5872
|
hint?: string | undefined;
|
|
5873
5873
|
messages?: {
|
|
5874
5874
|
text: string;
|
|
5875
|
-
type: "
|
|
5875
|
+
type: "error" | "success" | "info" | "warning";
|
|
5876
5876
|
id?: number | undefined;
|
|
5877
5877
|
}[] | undefined;
|
|
5878
5878
|
required?: boolean | undefined;
|
|
@@ -5894,7 +5894,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5894
5894
|
hint?: string | undefined;
|
|
5895
5895
|
messages?: {
|
|
5896
5896
|
text: string;
|
|
5897
|
-
type: "
|
|
5897
|
+
type: "error" | "success" | "info" | "warning";
|
|
5898
5898
|
id?: number | undefined;
|
|
5899
5899
|
}[] | undefined;
|
|
5900
5900
|
required?: boolean | undefined;
|
|
@@ -5916,7 +5916,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5916
5916
|
hint?: string | undefined;
|
|
5917
5917
|
messages?: {
|
|
5918
5918
|
text: string;
|
|
5919
|
-
type: "
|
|
5919
|
+
type: "error" | "success" | "info" | "warning";
|
|
5920
5920
|
id?: number | undefined;
|
|
5921
5921
|
}[] | undefined;
|
|
5922
5922
|
required?: boolean | undefined;
|
|
@@ -5935,7 +5935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5935
5935
|
hint?: string | undefined;
|
|
5936
5936
|
messages?: {
|
|
5937
5937
|
text: string;
|
|
5938
|
-
type: "
|
|
5938
|
+
type: "error" | "success" | "info" | "warning";
|
|
5939
5939
|
id?: number | undefined;
|
|
5940
5940
|
}[] | undefined;
|
|
5941
5941
|
required?: boolean | undefined;
|
|
@@ -5960,7 +5960,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5960
5960
|
hint?: string | undefined;
|
|
5961
5961
|
messages?: {
|
|
5962
5962
|
text: string;
|
|
5963
|
-
type: "
|
|
5963
|
+
type: "error" | "success" | "info" | "warning";
|
|
5964
5964
|
id?: number | undefined;
|
|
5965
5965
|
}[] | undefined;
|
|
5966
5966
|
required?: boolean | undefined;
|
|
@@ -5981,7 +5981,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5981
5981
|
hint?: string | undefined;
|
|
5982
5982
|
messages?: {
|
|
5983
5983
|
text: string;
|
|
5984
|
-
type: "
|
|
5984
|
+
type: "error" | "success" | "info" | "warning";
|
|
5985
5985
|
id?: number | undefined;
|
|
5986
5986
|
}[] | undefined;
|
|
5987
5987
|
required?: boolean | undefined;
|
|
@@ -6002,7 +6002,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6002
6002
|
hint?: string | undefined;
|
|
6003
6003
|
messages?: {
|
|
6004
6004
|
text: string;
|
|
6005
|
-
type: "
|
|
6005
|
+
type: "error" | "success" | "info" | "warning";
|
|
6006
6006
|
id?: number | undefined;
|
|
6007
6007
|
}[] | undefined;
|
|
6008
6008
|
required?: boolean | undefined;
|
|
@@ -6235,7 +6235,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6235
6235
|
hint?: string | undefined;
|
|
6236
6236
|
messages?: {
|
|
6237
6237
|
text: string;
|
|
6238
|
-
type: "
|
|
6238
|
+
type: "error" | "success" | "info" | "warning";
|
|
6239
6239
|
id?: number | undefined;
|
|
6240
6240
|
}[] | undefined;
|
|
6241
6241
|
required?: boolean | undefined;
|
|
@@ -6253,7 +6253,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6253
6253
|
hint?: string | undefined;
|
|
6254
6254
|
messages?: {
|
|
6255
6255
|
text: string;
|
|
6256
|
-
type: "
|
|
6256
|
+
type: "error" | "success" | "info" | "warning";
|
|
6257
6257
|
id?: number | undefined;
|
|
6258
6258
|
}[] | undefined;
|
|
6259
6259
|
required?: boolean | undefined;
|
|
@@ -6277,7 +6277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6277
6277
|
hint?: string | undefined;
|
|
6278
6278
|
messages?: {
|
|
6279
6279
|
text: string;
|
|
6280
|
-
type: "
|
|
6280
|
+
type: "error" | "success" | "info" | "warning";
|
|
6281
6281
|
id?: number | undefined;
|
|
6282
6282
|
}[] | undefined;
|
|
6283
6283
|
required?: boolean | undefined;
|
|
@@ -6287,7 +6287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6287
6287
|
value: string;
|
|
6288
6288
|
label: string;
|
|
6289
6289
|
}[] | undefined;
|
|
6290
|
-
display?: "
|
|
6290
|
+
display?: "radio" | "checkbox" | undefined;
|
|
6291
6291
|
multiple?: boolean | undefined;
|
|
6292
6292
|
default_value?: string | string[] | undefined;
|
|
6293
6293
|
} | undefined;
|
|
@@ -6301,7 +6301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6301
6301
|
hint?: string | undefined;
|
|
6302
6302
|
messages?: {
|
|
6303
6303
|
text: string;
|
|
6304
|
-
type: "
|
|
6304
|
+
type: "error" | "success" | "info" | "warning";
|
|
6305
6305
|
id?: number | undefined;
|
|
6306
6306
|
}[] | undefined;
|
|
6307
6307
|
required?: boolean | undefined;
|
|
@@ -6325,7 +6325,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6325
6325
|
hint?: string | undefined;
|
|
6326
6326
|
messages?: {
|
|
6327
6327
|
text: string;
|
|
6328
|
-
type: "
|
|
6328
|
+
type: "error" | "success" | "info" | "warning";
|
|
6329
6329
|
id?: number | undefined;
|
|
6330
6330
|
}[] | undefined;
|
|
6331
6331
|
required?: boolean | undefined;
|
|
@@ -6354,7 +6354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6354
6354
|
hint?: string | undefined;
|
|
6355
6355
|
messages?: {
|
|
6356
6356
|
text: string;
|
|
6357
|
-
type: "
|
|
6357
|
+
type: "error" | "success" | "info" | "warning";
|
|
6358
6358
|
id?: number | undefined;
|
|
6359
6359
|
}[] | undefined;
|
|
6360
6360
|
required?: boolean | undefined;
|
|
@@ -6369,7 +6369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6369
6369
|
hint?: string | undefined;
|
|
6370
6370
|
messages?: {
|
|
6371
6371
|
text: string;
|
|
6372
|
-
type: "
|
|
6372
|
+
type: "error" | "success" | "info" | "warning";
|
|
6373
6373
|
id?: number | undefined;
|
|
6374
6374
|
}[] | undefined;
|
|
6375
6375
|
required?: boolean | undefined;
|
|
@@ -6390,7 +6390,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6390
6390
|
hint?: string | undefined;
|
|
6391
6391
|
messages?: {
|
|
6392
6392
|
text: string;
|
|
6393
|
-
type: "
|
|
6393
|
+
type: "error" | "success" | "info" | "warning";
|
|
6394
6394
|
id?: number | undefined;
|
|
6395
6395
|
}[] | undefined;
|
|
6396
6396
|
required?: boolean | undefined;
|
|
@@ -6415,7 +6415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6415
6415
|
hint?: string | undefined;
|
|
6416
6416
|
messages?: {
|
|
6417
6417
|
text: string;
|
|
6418
|
-
type: "
|
|
6418
|
+
type: "error" | "success" | "info" | "warning";
|
|
6419
6419
|
id?: number | undefined;
|
|
6420
6420
|
}[] | undefined;
|
|
6421
6421
|
required?: boolean | undefined;
|
|
@@ -6434,7 +6434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6434
6434
|
hint?: string | undefined;
|
|
6435
6435
|
messages?: {
|
|
6436
6436
|
text: string;
|
|
6437
|
-
type: "
|
|
6437
|
+
type: "error" | "success" | "info" | "warning";
|
|
6438
6438
|
id?: number | undefined;
|
|
6439
6439
|
}[] | undefined;
|
|
6440
6440
|
required?: boolean | undefined;
|
|
@@ -6454,7 +6454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6454
6454
|
hint?: string | undefined;
|
|
6455
6455
|
messages?: {
|
|
6456
6456
|
text: string;
|
|
6457
|
-
type: "
|
|
6457
|
+
type: "error" | "success" | "info" | "warning";
|
|
6458
6458
|
id?: number | undefined;
|
|
6459
6459
|
}[] | undefined;
|
|
6460
6460
|
required?: boolean | undefined;
|
|
@@ -6473,7 +6473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6473
6473
|
hint?: string | undefined;
|
|
6474
6474
|
messages?: {
|
|
6475
6475
|
text: string;
|
|
6476
|
-
type: "
|
|
6476
|
+
type: "error" | "success" | "info" | "warning";
|
|
6477
6477
|
id?: number | undefined;
|
|
6478
6478
|
}[] | undefined;
|
|
6479
6479
|
required?: boolean | undefined;
|
|
@@ -6495,7 +6495,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6495
6495
|
hint?: string | undefined;
|
|
6496
6496
|
messages?: {
|
|
6497
6497
|
text: string;
|
|
6498
|
-
type: "
|
|
6498
|
+
type: "error" | "success" | "info" | "warning";
|
|
6499
6499
|
id?: number | undefined;
|
|
6500
6500
|
}[] | undefined;
|
|
6501
6501
|
required?: boolean | undefined;
|
|
@@ -6517,7 +6517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6517
6517
|
hint?: string | undefined;
|
|
6518
6518
|
messages?: {
|
|
6519
6519
|
text: string;
|
|
6520
|
-
type: "
|
|
6520
|
+
type: "error" | "success" | "info" | "warning";
|
|
6521
6521
|
id?: number | undefined;
|
|
6522
6522
|
}[] | undefined;
|
|
6523
6523
|
required?: boolean | undefined;
|
|
@@ -6536,7 +6536,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6536
6536
|
hint?: string | undefined;
|
|
6537
6537
|
messages?: {
|
|
6538
6538
|
text: string;
|
|
6539
|
-
type: "
|
|
6539
|
+
type: "error" | "success" | "info" | "warning";
|
|
6540
6540
|
id?: number | undefined;
|
|
6541
6541
|
}[] | undefined;
|
|
6542
6542
|
required?: boolean | undefined;
|
|
@@ -6561,7 +6561,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6561
6561
|
hint?: string | undefined;
|
|
6562
6562
|
messages?: {
|
|
6563
6563
|
text: string;
|
|
6564
|
-
type: "
|
|
6564
|
+
type: "error" | "success" | "info" | "warning";
|
|
6565
6565
|
id?: number | undefined;
|
|
6566
6566
|
}[] | undefined;
|
|
6567
6567
|
required?: boolean | undefined;
|
|
@@ -6582,7 +6582,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6582
6582
|
hint?: string | undefined;
|
|
6583
6583
|
messages?: {
|
|
6584
6584
|
text: string;
|
|
6585
|
-
type: "
|
|
6585
|
+
type: "error" | "success" | "info" | "warning";
|
|
6586
6586
|
id?: number | undefined;
|
|
6587
6587
|
}[] | undefined;
|
|
6588
6588
|
required?: boolean | undefined;
|
|
@@ -6603,7 +6603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6603
6603
|
hint?: string | undefined;
|
|
6604
6604
|
messages?: {
|
|
6605
6605
|
text: string;
|
|
6606
|
-
type: "
|
|
6606
|
+
type: "error" | "success" | "info" | "warning";
|
|
6607
6607
|
id?: number | undefined;
|
|
6608
6608
|
}[] | undefined;
|
|
6609
6609
|
required?: boolean | undefined;
|
|
@@ -6851,7 +6851,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6851
6851
|
hint?: string | undefined;
|
|
6852
6852
|
messages?: {
|
|
6853
6853
|
text: string;
|
|
6854
|
-
type: "
|
|
6854
|
+
type: "error" | "success" | "info" | "warning";
|
|
6855
6855
|
id?: number | undefined;
|
|
6856
6856
|
}[] | undefined;
|
|
6857
6857
|
required?: boolean | undefined;
|
|
@@ -6869,7 +6869,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6869
6869
|
hint?: string | undefined;
|
|
6870
6870
|
messages?: {
|
|
6871
6871
|
text: string;
|
|
6872
|
-
type: "
|
|
6872
|
+
type: "error" | "success" | "info" | "warning";
|
|
6873
6873
|
id?: number | undefined;
|
|
6874
6874
|
}[] | undefined;
|
|
6875
6875
|
required?: boolean | undefined;
|
|
@@ -6893,7 +6893,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6893
6893
|
hint?: string | undefined;
|
|
6894
6894
|
messages?: {
|
|
6895
6895
|
text: string;
|
|
6896
|
-
type: "
|
|
6896
|
+
type: "error" | "success" | "info" | "warning";
|
|
6897
6897
|
id?: number | undefined;
|
|
6898
6898
|
}[] | undefined;
|
|
6899
6899
|
required?: boolean | undefined;
|
|
@@ -6903,7 +6903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6903
6903
|
value: string;
|
|
6904
6904
|
label: string;
|
|
6905
6905
|
}[] | undefined;
|
|
6906
|
-
display?: "
|
|
6906
|
+
display?: "radio" | "checkbox" | undefined;
|
|
6907
6907
|
multiple?: boolean | undefined;
|
|
6908
6908
|
default_value?: string | string[] | undefined;
|
|
6909
6909
|
} | undefined;
|
|
@@ -6917,7 +6917,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6917
6917
|
hint?: string | undefined;
|
|
6918
6918
|
messages?: {
|
|
6919
6919
|
text: string;
|
|
6920
|
-
type: "
|
|
6920
|
+
type: "error" | "success" | "info" | "warning";
|
|
6921
6921
|
id?: number | undefined;
|
|
6922
6922
|
}[] | undefined;
|
|
6923
6923
|
required?: boolean | undefined;
|
|
@@ -6941,7 +6941,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6941
6941
|
hint?: string | undefined;
|
|
6942
6942
|
messages?: {
|
|
6943
6943
|
text: string;
|
|
6944
|
-
type: "
|
|
6944
|
+
type: "error" | "success" | "info" | "warning";
|
|
6945
6945
|
id?: number | undefined;
|
|
6946
6946
|
}[] | undefined;
|
|
6947
6947
|
required?: boolean | undefined;
|
|
@@ -6970,7 +6970,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6970
6970
|
hint?: string | undefined;
|
|
6971
6971
|
messages?: {
|
|
6972
6972
|
text: string;
|
|
6973
|
-
type: "
|
|
6973
|
+
type: "error" | "success" | "info" | "warning";
|
|
6974
6974
|
id?: number | undefined;
|
|
6975
6975
|
}[] | undefined;
|
|
6976
6976
|
required?: boolean | undefined;
|
|
@@ -6985,7 +6985,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6985
6985
|
hint?: string | undefined;
|
|
6986
6986
|
messages?: {
|
|
6987
6987
|
text: string;
|
|
6988
|
-
type: "
|
|
6988
|
+
type: "error" | "success" | "info" | "warning";
|
|
6989
6989
|
id?: number | undefined;
|
|
6990
6990
|
}[] | undefined;
|
|
6991
6991
|
required?: boolean | undefined;
|
|
@@ -7006,7 +7006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7006
7006
|
hint?: string | undefined;
|
|
7007
7007
|
messages?: {
|
|
7008
7008
|
text: string;
|
|
7009
|
-
type: "
|
|
7009
|
+
type: "error" | "success" | "info" | "warning";
|
|
7010
7010
|
id?: number | undefined;
|
|
7011
7011
|
}[] | undefined;
|
|
7012
7012
|
required?: boolean | undefined;
|
|
@@ -7031,7 +7031,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7031
7031
|
hint?: string | undefined;
|
|
7032
7032
|
messages?: {
|
|
7033
7033
|
text: string;
|
|
7034
|
-
type: "
|
|
7034
|
+
type: "error" | "success" | "info" | "warning";
|
|
7035
7035
|
id?: number | undefined;
|
|
7036
7036
|
}[] | undefined;
|
|
7037
7037
|
required?: boolean | undefined;
|
|
@@ -7050,7 +7050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7050
7050
|
hint?: string | undefined;
|
|
7051
7051
|
messages?: {
|
|
7052
7052
|
text: string;
|
|
7053
|
-
type: "
|
|
7053
|
+
type: "error" | "success" | "info" | "warning";
|
|
7054
7054
|
id?: number | undefined;
|
|
7055
7055
|
}[] | undefined;
|
|
7056
7056
|
required?: boolean | undefined;
|
|
@@ -7070,7 +7070,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7070
7070
|
hint?: string | undefined;
|
|
7071
7071
|
messages?: {
|
|
7072
7072
|
text: string;
|
|
7073
|
-
type: "
|
|
7073
|
+
type: "error" | "success" | "info" | "warning";
|
|
7074
7074
|
id?: number | undefined;
|
|
7075
7075
|
}[] | undefined;
|
|
7076
7076
|
required?: boolean | undefined;
|
|
@@ -7089,7 +7089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7089
7089
|
hint?: string | undefined;
|
|
7090
7090
|
messages?: {
|
|
7091
7091
|
text: string;
|
|
7092
|
-
type: "
|
|
7092
|
+
type: "error" | "success" | "info" | "warning";
|
|
7093
7093
|
id?: number | undefined;
|
|
7094
7094
|
}[] | undefined;
|
|
7095
7095
|
required?: boolean | undefined;
|
|
@@ -7111,7 +7111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7111
7111
|
hint?: string | undefined;
|
|
7112
7112
|
messages?: {
|
|
7113
7113
|
text: string;
|
|
7114
|
-
type: "
|
|
7114
|
+
type: "error" | "success" | "info" | "warning";
|
|
7115
7115
|
id?: number | undefined;
|
|
7116
7116
|
}[] | undefined;
|
|
7117
7117
|
required?: boolean | undefined;
|
|
@@ -7133,7 +7133,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7133
7133
|
hint?: string | undefined;
|
|
7134
7134
|
messages?: {
|
|
7135
7135
|
text: string;
|
|
7136
|
-
type: "
|
|
7136
|
+
type: "error" | "success" | "info" | "warning";
|
|
7137
7137
|
id?: number | undefined;
|
|
7138
7138
|
}[] | undefined;
|
|
7139
7139
|
required?: boolean | undefined;
|
|
@@ -7152,7 +7152,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7152
7152
|
hint?: string | undefined;
|
|
7153
7153
|
messages?: {
|
|
7154
7154
|
text: string;
|
|
7155
|
-
type: "
|
|
7155
|
+
type: "error" | "success" | "info" | "warning";
|
|
7156
7156
|
id?: number | undefined;
|
|
7157
7157
|
}[] | undefined;
|
|
7158
7158
|
required?: boolean | undefined;
|
|
@@ -7177,7 +7177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7177
7177
|
hint?: string | undefined;
|
|
7178
7178
|
messages?: {
|
|
7179
7179
|
text: string;
|
|
7180
|
-
type: "
|
|
7180
|
+
type: "error" | "success" | "info" | "warning";
|
|
7181
7181
|
id?: number | undefined;
|
|
7182
7182
|
}[] | undefined;
|
|
7183
7183
|
required?: boolean | undefined;
|
|
@@ -7198,7 +7198,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7198
7198
|
hint?: string | undefined;
|
|
7199
7199
|
messages?: {
|
|
7200
7200
|
text: string;
|
|
7201
|
-
type: "
|
|
7201
|
+
type: "error" | "success" | "info" | "warning";
|
|
7202
7202
|
id?: number | undefined;
|
|
7203
7203
|
}[] | undefined;
|
|
7204
7204
|
required?: boolean | undefined;
|
|
@@ -7219,7 +7219,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7219
7219
|
hint?: string | undefined;
|
|
7220
7220
|
messages?: {
|
|
7221
7221
|
text: string;
|
|
7222
|
-
type: "
|
|
7222
|
+
type: "error" | "success" | "info" | "warning";
|
|
7223
7223
|
id?: number | undefined;
|
|
7224
7224
|
}[] | undefined;
|
|
7225
7225
|
required?: boolean | undefined;
|
|
@@ -7473,7 +7473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7473
7473
|
hint?: string | undefined;
|
|
7474
7474
|
messages?: {
|
|
7475
7475
|
text: string;
|
|
7476
|
-
type: "
|
|
7476
|
+
type: "error" | "success" | "info" | "warning";
|
|
7477
7477
|
id?: number | undefined;
|
|
7478
7478
|
}[] | undefined;
|
|
7479
7479
|
required?: boolean | undefined;
|
|
@@ -7491,7 +7491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7491
7491
|
hint?: string | undefined;
|
|
7492
7492
|
messages?: {
|
|
7493
7493
|
text: string;
|
|
7494
|
-
type: "
|
|
7494
|
+
type: "error" | "success" | "info" | "warning";
|
|
7495
7495
|
id?: number | undefined;
|
|
7496
7496
|
}[] | undefined;
|
|
7497
7497
|
required?: boolean | undefined;
|
|
@@ -7515,7 +7515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7515
7515
|
hint?: string | undefined;
|
|
7516
7516
|
messages?: {
|
|
7517
7517
|
text: string;
|
|
7518
|
-
type: "
|
|
7518
|
+
type: "error" | "success" | "info" | "warning";
|
|
7519
7519
|
id?: number | undefined;
|
|
7520
7520
|
}[] | undefined;
|
|
7521
7521
|
required?: boolean | undefined;
|
|
@@ -7525,7 +7525,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7525
7525
|
value: string;
|
|
7526
7526
|
label: string;
|
|
7527
7527
|
}[] | undefined;
|
|
7528
|
-
display?: "
|
|
7528
|
+
display?: "radio" | "checkbox" | undefined;
|
|
7529
7529
|
multiple?: boolean | undefined;
|
|
7530
7530
|
default_value?: string | string[] | undefined;
|
|
7531
7531
|
} | undefined;
|
|
@@ -7539,7 +7539,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7539
7539
|
hint?: string | undefined;
|
|
7540
7540
|
messages?: {
|
|
7541
7541
|
text: string;
|
|
7542
|
-
type: "
|
|
7542
|
+
type: "error" | "success" | "info" | "warning";
|
|
7543
7543
|
id?: number | undefined;
|
|
7544
7544
|
}[] | undefined;
|
|
7545
7545
|
required?: boolean | undefined;
|
|
@@ -7563,7 +7563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7563
7563
|
hint?: string | undefined;
|
|
7564
7564
|
messages?: {
|
|
7565
7565
|
text: string;
|
|
7566
|
-
type: "
|
|
7566
|
+
type: "error" | "success" | "info" | "warning";
|
|
7567
7567
|
id?: number | undefined;
|
|
7568
7568
|
}[] | undefined;
|
|
7569
7569
|
required?: boolean | undefined;
|
|
@@ -7588,7 +7588,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7588
7588
|
hint?: string | undefined;
|
|
7589
7589
|
messages?: {
|
|
7590
7590
|
text: string;
|
|
7591
|
-
type: "
|
|
7591
|
+
type: "error" | "success" | "info" | "warning";
|
|
7592
7592
|
id?: number | undefined;
|
|
7593
7593
|
}[] | undefined;
|
|
7594
7594
|
required?: boolean | undefined;
|
|
@@ -7603,7 +7603,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7603
7603
|
hint?: string | undefined;
|
|
7604
7604
|
messages?: {
|
|
7605
7605
|
text: string;
|
|
7606
|
-
type: "
|
|
7606
|
+
type: "error" | "success" | "info" | "warning";
|
|
7607
7607
|
id?: number | undefined;
|
|
7608
7608
|
}[] | undefined;
|
|
7609
7609
|
required?: boolean | undefined;
|
|
@@ -7624,7 +7624,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7624
7624
|
hint?: string | undefined;
|
|
7625
7625
|
messages?: {
|
|
7626
7626
|
text: string;
|
|
7627
|
-
type: "
|
|
7627
|
+
type: "error" | "success" | "info" | "warning";
|
|
7628
7628
|
id?: number | undefined;
|
|
7629
7629
|
}[] | undefined;
|
|
7630
7630
|
required?: boolean | undefined;
|
|
@@ -7649,7 +7649,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7649
7649
|
hint?: string | undefined;
|
|
7650
7650
|
messages?: {
|
|
7651
7651
|
text: string;
|
|
7652
|
-
type: "
|
|
7652
|
+
type: "error" | "success" | "info" | "warning";
|
|
7653
7653
|
id?: number | undefined;
|
|
7654
7654
|
}[] | undefined;
|
|
7655
7655
|
required?: boolean | undefined;
|
|
@@ -7668,7 +7668,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7668
7668
|
hint?: string | undefined;
|
|
7669
7669
|
messages?: {
|
|
7670
7670
|
text: string;
|
|
7671
|
-
type: "
|
|
7671
|
+
type: "error" | "success" | "info" | "warning";
|
|
7672
7672
|
id?: number | undefined;
|
|
7673
7673
|
}[] | undefined;
|
|
7674
7674
|
required?: boolean | undefined;
|
|
@@ -7688,7 +7688,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7688
7688
|
hint?: string | undefined;
|
|
7689
7689
|
messages?: {
|
|
7690
7690
|
text: string;
|
|
7691
|
-
type: "
|
|
7691
|
+
type: "error" | "success" | "info" | "warning";
|
|
7692
7692
|
id?: number | undefined;
|
|
7693
7693
|
}[] | undefined;
|
|
7694
7694
|
required?: boolean | undefined;
|
|
@@ -7707,7 +7707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7707
7707
|
hint?: string | undefined;
|
|
7708
7708
|
messages?: {
|
|
7709
7709
|
text: string;
|
|
7710
|
-
type: "
|
|
7710
|
+
type: "error" | "success" | "info" | "warning";
|
|
7711
7711
|
id?: number | undefined;
|
|
7712
7712
|
}[] | undefined;
|
|
7713
7713
|
required?: boolean | undefined;
|
|
@@ -7729,7 +7729,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7729
7729
|
hint?: string | undefined;
|
|
7730
7730
|
messages?: {
|
|
7731
7731
|
text: string;
|
|
7732
|
-
type: "
|
|
7732
|
+
type: "error" | "success" | "info" | "warning";
|
|
7733
7733
|
id?: number | undefined;
|
|
7734
7734
|
}[] | undefined;
|
|
7735
7735
|
required?: boolean | undefined;
|
|
@@ -7751,7 +7751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7751
7751
|
hint?: string | undefined;
|
|
7752
7752
|
messages?: {
|
|
7753
7753
|
text: string;
|
|
7754
|
-
type: "
|
|
7754
|
+
type: "error" | "success" | "info" | "warning";
|
|
7755
7755
|
id?: number | undefined;
|
|
7756
7756
|
}[] | undefined;
|
|
7757
7757
|
required?: boolean | undefined;
|
|
@@ -7770,7 +7770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7770
7770
|
hint?: string | undefined;
|
|
7771
7771
|
messages?: {
|
|
7772
7772
|
text: string;
|
|
7773
|
-
type: "
|
|
7773
|
+
type: "error" | "success" | "info" | "warning";
|
|
7774
7774
|
id?: number | undefined;
|
|
7775
7775
|
}[] | undefined;
|
|
7776
7776
|
required?: boolean | undefined;
|
|
@@ -7795,7 +7795,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7795
7795
|
hint?: string | undefined;
|
|
7796
7796
|
messages?: {
|
|
7797
7797
|
text: string;
|
|
7798
|
-
type: "
|
|
7798
|
+
type: "error" | "success" | "info" | "warning";
|
|
7799
7799
|
id?: number | undefined;
|
|
7800
7800
|
}[] | undefined;
|
|
7801
7801
|
required?: boolean | undefined;
|
|
@@ -7816,7 +7816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7816
7816
|
hint?: string | undefined;
|
|
7817
7817
|
messages?: {
|
|
7818
7818
|
text: string;
|
|
7819
|
-
type: "
|
|
7819
|
+
type: "error" | "success" | "info" | "warning";
|
|
7820
7820
|
id?: number | undefined;
|
|
7821
7821
|
}[] | undefined;
|
|
7822
7822
|
required?: boolean | undefined;
|
|
@@ -7837,7 +7837,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7837
7837
|
hint?: string | undefined;
|
|
7838
7838
|
messages?: {
|
|
7839
7839
|
text: string;
|
|
7840
|
-
type: "
|
|
7840
|
+
type: "error" | "success" | "info" | "warning";
|
|
7841
7841
|
id?: number | undefined;
|
|
7842
7842
|
}[] | undefined;
|
|
7843
7843
|
required?: boolean | undefined;
|
|
@@ -8068,7 +8068,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8068
8068
|
hint?: string | undefined;
|
|
8069
8069
|
messages?: {
|
|
8070
8070
|
text: string;
|
|
8071
|
-
type: "
|
|
8071
|
+
type: "error" | "success" | "info" | "warning";
|
|
8072
8072
|
id?: number | undefined;
|
|
8073
8073
|
}[] | undefined;
|
|
8074
8074
|
required?: boolean | undefined;
|
|
@@ -8086,7 +8086,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8086
8086
|
hint?: string | undefined;
|
|
8087
8087
|
messages?: {
|
|
8088
8088
|
text: string;
|
|
8089
|
-
type: "
|
|
8089
|
+
type: "error" | "success" | "info" | "warning";
|
|
8090
8090
|
id?: number | undefined;
|
|
8091
8091
|
}[] | undefined;
|
|
8092
8092
|
required?: boolean | undefined;
|
|
@@ -8110,7 +8110,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8110
8110
|
hint?: string | undefined;
|
|
8111
8111
|
messages?: {
|
|
8112
8112
|
text: string;
|
|
8113
|
-
type: "
|
|
8113
|
+
type: "error" | "success" | "info" | "warning";
|
|
8114
8114
|
id?: number | undefined;
|
|
8115
8115
|
}[] | undefined;
|
|
8116
8116
|
required?: boolean | undefined;
|
|
@@ -8120,7 +8120,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8120
8120
|
value: string;
|
|
8121
8121
|
label: string;
|
|
8122
8122
|
}[] | undefined;
|
|
8123
|
-
display?: "
|
|
8123
|
+
display?: "radio" | "checkbox" | undefined;
|
|
8124
8124
|
multiple?: boolean | undefined;
|
|
8125
8125
|
default_value?: string | string[] | undefined;
|
|
8126
8126
|
} | undefined;
|
|
@@ -8134,7 +8134,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8134
8134
|
hint?: string | undefined;
|
|
8135
8135
|
messages?: {
|
|
8136
8136
|
text: string;
|
|
8137
|
-
type: "
|
|
8137
|
+
type: "error" | "success" | "info" | "warning";
|
|
8138
8138
|
id?: number | undefined;
|
|
8139
8139
|
}[] | undefined;
|
|
8140
8140
|
required?: boolean | undefined;
|
|
@@ -8158,7 +8158,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8158
8158
|
hint?: string | undefined;
|
|
8159
8159
|
messages?: {
|
|
8160
8160
|
text: string;
|
|
8161
|
-
type: "
|
|
8161
|
+
type: "error" | "success" | "info" | "warning";
|
|
8162
8162
|
id?: number | undefined;
|
|
8163
8163
|
}[] | undefined;
|
|
8164
8164
|
required?: boolean | undefined;
|
|
@@ -8187,7 +8187,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8187
8187
|
hint?: string | undefined;
|
|
8188
8188
|
messages?: {
|
|
8189
8189
|
text: string;
|
|
8190
|
-
type: "
|
|
8190
|
+
type: "error" | "success" | "info" | "warning";
|
|
8191
8191
|
id?: number | undefined;
|
|
8192
8192
|
}[] | undefined;
|
|
8193
8193
|
required?: boolean | undefined;
|
|
@@ -8202,7 +8202,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8202
8202
|
hint?: string | undefined;
|
|
8203
8203
|
messages?: {
|
|
8204
8204
|
text: string;
|
|
8205
|
-
type: "
|
|
8205
|
+
type: "error" | "success" | "info" | "warning";
|
|
8206
8206
|
id?: number | undefined;
|
|
8207
8207
|
}[] | undefined;
|
|
8208
8208
|
required?: boolean | undefined;
|
|
@@ -8223,7 +8223,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8223
8223
|
hint?: string | undefined;
|
|
8224
8224
|
messages?: {
|
|
8225
8225
|
text: string;
|
|
8226
|
-
type: "
|
|
8226
|
+
type: "error" | "success" | "info" | "warning";
|
|
8227
8227
|
id?: number | undefined;
|
|
8228
8228
|
}[] | undefined;
|
|
8229
8229
|
required?: boolean | undefined;
|
|
@@ -8248,7 +8248,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8248
8248
|
hint?: string | undefined;
|
|
8249
8249
|
messages?: {
|
|
8250
8250
|
text: string;
|
|
8251
|
-
type: "
|
|
8251
|
+
type: "error" | "success" | "info" | "warning";
|
|
8252
8252
|
id?: number | undefined;
|
|
8253
8253
|
}[] | undefined;
|
|
8254
8254
|
required?: boolean | undefined;
|
|
@@ -8267,7 +8267,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8267
8267
|
hint?: string | undefined;
|
|
8268
8268
|
messages?: {
|
|
8269
8269
|
text: string;
|
|
8270
|
-
type: "
|
|
8270
|
+
type: "error" | "success" | "info" | "warning";
|
|
8271
8271
|
id?: number | undefined;
|
|
8272
8272
|
}[] | undefined;
|
|
8273
8273
|
required?: boolean | undefined;
|
|
@@ -8287,7 +8287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8287
8287
|
hint?: string | undefined;
|
|
8288
8288
|
messages?: {
|
|
8289
8289
|
text: string;
|
|
8290
|
-
type: "
|
|
8290
|
+
type: "error" | "success" | "info" | "warning";
|
|
8291
8291
|
id?: number | undefined;
|
|
8292
8292
|
}[] | undefined;
|
|
8293
8293
|
required?: boolean | undefined;
|
|
@@ -8306,7 +8306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8306
8306
|
hint?: string | undefined;
|
|
8307
8307
|
messages?: {
|
|
8308
8308
|
text: string;
|
|
8309
|
-
type: "
|
|
8309
|
+
type: "error" | "success" | "info" | "warning";
|
|
8310
8310
|
id?: number | undefined;
|
|
8311
8311
|
}[] | undefined;
|
|
8312
8312
|
required?: boolean | undefined;
|
|
@@ -8328,7 +8328,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8328
8328
|
hint?: string | undefined;
|
|
8329
8329
|
messages?: {
|
|
8330
8330
|
text: string;
|
|
8331
|
-
type: "
|
|
8331
|
+
type: "error" | "success" | "info" | "warning";
|
|
8332
8332
|
id?: number | undefined;
|
|
8333
8333
|
}[] | undefined;
|
|
8334
8334
|
required?: boolean | undefined;
|
|
@@ -8350,7 +8350,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8350
8350
|
hint?: string | undefined;
|
|
8351
8351
|
messages?: {
|
|
8352
8352
|
text: string;
|
|
8353
|
-
type: "
|
|
8353
|
+
type: "error" | "success" | "info" | "warning";
|
|
8354
8354
|
id?: number | undefined;
|
|
8355
8355
|
}[] | undefined;
|
|
8356
8356
|
required?: boolean | undefined;
|
|
@@ -8369,7 +8369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8369
8369
|
hint?: string | undefined;
|
|
8370
8370
|
messages?: {
|
|
8371
8371
|
text: string;
|
|
8372
|
-
type: "
|
|
8372
|
+
type: "error" | "success" | "info" | "warning";
|
|
8373
8373
|
id?: number | undefined;
|
|
8374
8374
|
}[] | undefined;
|
|
8375
8375
|
required?: boolean | undefined;
|
|
@@ -8394,7 +8394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8394
8394
|
hint?: string | undefined;
|
|
8395
8395
|
messages?: {
|
|
8396
8396
|
text: string;
|
|
8397
|
-
type: "
|
|
8397
|
+
type: "error" | "success" | "info" | "warning";
|
|
8398
8398
|
id?: number | undefined;
|
|
8399
8399
|
}[] | undefined;
|
|
8400
8400
|
required?: boolean | undefined;
|
|
@@ -8415,7 +8415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8415
8415
|
hint?: string | undefined;
|
|
8416
8416
|
messages?: {
|
|
8417
8417
|
text: string;
|
|
8418
|
-
type: "
|
|
8418
|
+
type: "error" | "success" | "info" | "warning";
|
|
8419
8419
|
id?: number | undefined;
|
|
8420
8420
|
}[] | undefined;
|
|
8421
8421
|
required?: boolean | undefined;
|
|
@@ -8436,7 +8436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8436
8436
|
hint?: string | undefined;
|
|
8437
8437
|
messages?: {
|
|
8438
8438
|
text: string;
|
|
8439
|
-
type: "
|
|
8439
|
+
type: "error" | "success" | "info" | "warning";
|
|
8440
8440
|
id?: number | undefined;
|
|
8441
8441
|
}[] | undefined;
|
|
8442
8442
|
required?: boolean | undefined;
|
|
@@ -8669,7 +8669,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8669
8669
|
hint?: string | undefined;
|
|
8670
8670
|
messages?: {
|
|
8671
8671
|
text: string;
|
|
8672
|
-
type: "
|
|
8672
|
+
type: "error" | "success" | "info" | "warning";
|
|
8673
8673
|
id?: number | undefined;
|
|
8674
8674
|
}[] | undefined;
|
|
8675
8675
|
required?: boolean | undefined;
|
|
@@ -8687,7 +8687,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8687
8687
|
hint?: string | undefined;
|
|
8688
8688
|
messages?: {
|
|
8689
8689
|
text: string;
|
|
8690
|
-
type: "
|
|
8690
|
+
type: "error" | "success" | "info" | "warning";
|
|
8691
8691
|
id?: number | undefined;
|
|
8692
8692
|
}[] | undefined;
|
|
8693
8693
|
required?: boolean | undefined;
|
|
@@ -8711,7 +8711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8711
8711
|
hint?: string | undefined;
|
|
8712
8712
|
messages?: {
|
|
8713
8713
|
text: string;
|
|
8714
|
-
type: "
|
|
8714
|
+
type: "error" | "success" | "info" | "warning";
|
|
8715
8715
|
id?: number | undefined;
|
|
8716
8716
|
}[] | undefined;
|
|
8717
8717
|
required?: boolean | undefined;
|
|
@@ -8721,7 +8721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8721
8721
|
value: string;
|
|
8722
8722
|
label: string;
|
|
8723
8723
|
}[] | undefined;
|
|
8724
|
-
display?: "
|
|
8724
|
+
display?: "radio" | "checkbox" | undefined;
|
|
8725
8725
|
multiple?: boolean | undefined;
|
|
8726
8726
|
default_value?: string | string[] | undefined;
|
|
8727
8727
|
} | undefined;
|
|
@@ -8735,7 +8735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8735
8735
|
hint?: string | undefined;
|
|
8736
8736
|
messages?: {
|
|
8737
8737
|
text: string;
|
|
8738
|
-
type: "
|
|
8738
|
+
type: "error" | "success" | "info" | "warning";
|
|
8739
8739
|
id?: number | undefined;
|
|
8740
8740
|
}[] | undefined;
|
|
8741
8741
|
required?: boolean | undefined;
|
|
@@ -8759,7 +8759,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8759
8759
|
hint?: string | undefined;
|
|
8760
8760
|
messages?: {
|
|
8761
8761
|
text: string;
|
|
8762
|
-
type: "
|
|
8762
|
+
type: "error" | "success" | "info" | "warning";
|
|
8763
8763
|
id?: number | undefined;
|
|
8764
8764
|
}[] | undefined;
|
|
8765
8765
|
required?: boolean | undefined;
|
|
@@ -8784,7 +8784,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8784
8784
|
hint?: string | undefined;
|
|
8785
8785
|
messages?: {
|
|
8786
8786
|
text: string;
|
|
8787
|
-
type: "
|
|
8787
|
+
type: "error" | "success" | "info" | "warning";
|
|
8788
8788
|
id?: number | undefined;
|
|
8789
8789
|
}[] | undefined;
|
|
8790
8790
|
required?: boolean | undefined;
|
|
@@ -8799,7 +8799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8799
8799
|
hint?: string | undefined;
|
|
8800
8800
|
messages?: {
|
|
8801
8801
|
text: string;
|
|
8802
|
-
type: "
|
|
8802
|
+
type: "error" | "success" | "info" | "warning";
|
|
8803
8803
|
id?: number | undefined;
|
|
8804
8804
|
}[] | undefined;
|
|
8805
8805
|
required?: boolean | undefined;
|
|
@@ -8820,7 +8820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8820
8820
|
hint?: string | undefined;
|
|
8821
8821
|
messages?: {
|
|
8822
8822
|
text: string;
|
|
8823
|
-
type: "
|
|
8823
|
+
type: "error" | "success" | "info" | "warning";
|
|
8824
8824
|
id?: number | undefined;
|
|
8825
8825
|
}[] | undefined;
|
|
8826
8826
|
required?: boolean | undefined;
|
|
@@ -8845,7 +8845,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8845
8845
|
hint?: string | undefined;
|
|
8846
8846
|
messages?: {
|
|
8847
8847
|
text: string;
|
|
8848
|
-
type: "
|
|
8848
|
+
type: "error" | "success" | "info" | "warning";
|
|
8849
8849
|
id?: number | undefined;
|
|
8850
8850
|
}[] | undefined;
|
|
8851
8851
|
required?: boolean | undefined;
|
|
@@ -8864,7 +8864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8864
8864
|
hint?: string | undefined;
|
|
8865
8865
|
messages?: {
|
|
8866
8866
|
text: string;
|
|
8867
|
-
type: "
|
|
8867
|
+
type: "error" | "success" | "info" | "warning";
|
|
8868
8868
|
id?: number | undefined;
|
|
8869
8869
|
}[] | undefined;
|
|
8870
8870
|
required?: boolean | undefined;
|
|
@@ -8884,7 +8884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8884
8884
|
hint?: string | undefined;
|
|
8885
8885
|
messages?: {
|
|
8886
8886
|
text: string;
|
|
8887
|
-
type: "
|
|
8887
|
+
type: "error" | "success" | "info" | "warning";
|
|
8888
8888
|
id?: number | undefined;
|
|
8889
8889
|
}[] | undefined;
|
|
8890
8890
|
required?: boolean | undefined;
|
|
@@ -8903,7 +8903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8903
8903
|
hint?: string | undefined;
|
|
8904
8904
|
messages?: {
|
|
8905
8905
|
text: string;
|
|
8906
|
-
type: "
|
|
8906
|
+
type: "error" | "success" | "info" | "warning";
|
|
8907
8907
|
id?: number | undefined;
|
|
8908
8908
|
}[] | undefined;
|
|
8909
8909
|
required?: boolean | undefined;
|
|
@@ -8925,7 +8925,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8925
8925
|
hint?: string | undefined;
|
|
8926
8926
|
messages?: {
|
|
8927
8927
|
text: string;
|
|
8928
|
-
type: "
|
|
8928
|
+
type: "error" | "success" | "info" | "warning";
|
|
8929
8929
|
id?: number | undefined;
|
|
8930
8930
|
}[] | undefined;
|
|
8931
8931
|
required?: boolean | undefined;
|
|
@@ -8947,7 +8947,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8947
8947
|
hint?: string | undefined;
|
|
8948
8948
|
messages?: {
|
|
8949
8949
|
text: string;
|
|
8950
|
-
type: "
|
|
8950
|
+
type: "error" | "success" | "info" | "warning";
|
|
8951
8951
|
id?: number | undefined;
|
|
8952
8952
|
}[] | undefined;
|
|
8953
8953
|
required?: boolean | undefined;
|
|
@@ -8966,7 +8966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8966
8966
|
hint?: string | undefined;
|
|
8967
8967
|
messages?: {
|
|
8968
8968
|
text: string;
|
|
8969
|
-
type: "
|
|
8969
|
+
type: "error" | "success" | "info" | "warning";
|
|
8970
8970
|
id?: number | undefined;
|
|
8971
8971
|
}[] | undefined;
|
|
8972
8972
|
required?: boolean | undefined;
|
|
@@ -8991,7 +8991,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8991
8991
|
hint?: string | undefined;
|
|
8992
8992
|
messages?: {
|
|
8993
8993
|
text: string;
|
|
8994
|
-
type: "
|
|
8994
|
+
type: "error" | "success" | "info" | "warning";
|
|
8995
8995
|
id?: number | undefined;
|
|
8996
8996
|
}[] | undefined;
|
|
8997
8997
|
required?: boolean | undefined;
|
|
@@ -9012,7 +9012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9012
9012
|
hint?: string | undefined;
|
|
9013
9013
|
messages?: {
|
|
9014
9014
|
text: string;
|
|
9015
|
-
type: "
|
|
9015
|
+
type: "error" | "success" | "info" | "warning";
|
|
9016
9016
|
id?: number | undefined;
|
|
9017
9017
|
}[] | undefined;
|
|
9018
9018
|
required?: boolean | undefined;
|
|
@@ -9033,7 +9033,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9033
9033
|
hint?: string | undefined;
|
|
9034
9034
|
messages?: {
|
|
9035
9035
|
text: string;
|
|
9036
|
-
type: "
|
|
9036
|
+
type: "error" | "success" | "info" | "warning";
|
|
9037
9037
|
id?: number | undefined;
|
|
9038
9038
|
}[] | undefined;
|
|
9039
9039
|
required?: boolean | undefined;
|
|
@@ -9264,7 +9264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9264
9264
|
hint?: string | undefined;
|
|
9265
9265
|
messages?: {
|
|
9266
9266
|
text: string;
|
|
9267
|
-
type: "
|
|
9267
|
+
type: "error" | "success" | "info" | "warning";
|
|
9268
9268
|
id?: number | undefined;
|
|
9269
9269
|
}[] | undefined;
|
|
9270
9270
|
required?: boolean | undefined;
|
|
@@ -9282,7 +9282,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9282
9282
|
hint?: string | undefined;
|
|
9283
9283
|
messages?: {
|
|
9284
9284
|
text: string;
|
|
9285
|
-
type: "
|
|
9285
|
+
type: "error" | "success" | "info" | "warning";
|
|
9286
9286
|
id?: number | undefined;
|
|
9287
9287
|
}[] | undefined;
|
|
9288
9288
|
required?: boolean | undefined;
|
|
@@ -9306,7 +9306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9306
9306
|
hint?: string | undefined;
|
|
9307
9307
|
messages?: {
|
|
9308
9308
|
text: string;
|
|
9309
|
-
type: "
|
|
9309
|
+
type: "error" | "success" | "info" | "warning";
|
|
9310
9310
|
id?: number | undefined;
|
|
9311
9311
|
}[] | undefined;
|
|
9312
9312
|
required?: boolean | undefined;
|
|
@@ -9316,7 +9316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9316
9316
|
value: string;
|
|
9317
9317
|
label: string;
|
|
9318
9318
|
}[] | undefined;
|
|
9319
|
-
display?: "
|
|
9319
|
+
display?: "radio" | "checkbox" | undefined;
|
|
9320
9320
|
multiple?: boolean | undefined;
|
|
9321
9321
|
default_value?: string | string[] | undefined;
|
|
9322
9322
|
} | undefined;
|
|
@@ -9330,7 +9330,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9330
9330
|
hint?: string | undefined;
|
|
9331
9331
|
messages?: {
|
|
9332
9332
|
text: string;
|
|
9333
|
-
type: "
|
|
9333
|
+
type: "error" | "success" | "info" | "warning";
|
|
9334
9334
|
id?: number | undefined;
|
|
9335
9335
|
}[] | undefined;
|
|
9336
9336
|
required?: boolean | undefined;
|
|
@@ -9354,7 +9354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9354
9354
|
hint?: string | undefined;
|
|
9355
9355
|
messages?: {
|
|
9356
9356
|
text: string;
|
|
9357
|
-
type: "
|
|
9357
|
+
type: "error" | "success" | "info" | "warning";
|
|
9358
9358
|
id?: number | undefined;
|
|
9359
9359
|
}[] | undefined;
|
|
9360
9360
|
required?: boolean | undefined;
|
|
@@ -9383,7 +9383,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9383
9383
|
hint?: string | undefined;
|
|
9384
9384
|
messages?: {
|
|
9385
9385
|
text: string;
|
|
9386
|
-
type: "
|
|
9386
|
+
type: "error" | "success" | "info" | "warning";
|
|
9387
9387
|
id?: number | undefined;
|
|
9388
9388
|
}[] | undefined;
|
|
9389
9389
|
required?: boolean | undefined;
|
|
@@ -9398,7 +9398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9398
9398
|
hint?: string | undefined;
|
|
9399
9399
|
messages?: {
|
|
9400
9400
|
text: string;
|
|
9401
|
-
type: "
|
|
9401
|
+
type: "error" | "success" | "info" | "warning";
|
|
9402
9402
|
id?: number | undefined;
|
|
9403
9403
|
}[] | undefined;
|
|
9404
9404
|
required?: boolean | undefined;
|
|
@@ -9419,7 +9419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9419
9419
|
hint?: string | undefined;
|
|
9420
9420
|
messages?: {
|
|
9421
9421
|
text: string;
|
|
9422
|
-
type: "
|
|
9422
|
+
type: "error" | "success" | "info" | "warning";
|
|
9423
9423
|
id?: number | undefined;
|
|
9424
9424
|
}[] | undefined;
|
|
9425
9425
|
required?: boolean | undefined;
|
|
@@ -9444,7 +9444,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9444
9444
|
hint?: string | undefined;
|
|
9445
9445
|
messages?: {
|
|
9446
9446
|
text: string;
|
|
9447
|
-
type: "
|
|
9447
|
+
type: "error" | "success" | "info" | "warning";
|
|
9448
9448
|
id?: number | undefined;
|
|
9449
9449
|
}[] | undefined;
|
|
9450
9450
|
required?: boolean | undefined;
|
|
@@ -9463,7 +9463,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9463
9463
|
hint?: string | undefined;
|
|
9464
9464
|
messages?: {
|
|
9465
9465
|
text: string;
|
|
9466
|
-
type: "
|
|
9466
|
+
type: "error" | "success" | "info" | "warning";
|
|
9467
9467
|
id?: number | undefined;
|
|
9468
9468
|
}[] | undefined;
|
|
9469
9469
|
required?: boolean | undefined;
|
|
@@ -9483,7 +9483,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9483
9483
|
hint?: string | undefined;
|
|
9484
9484
|
messages?: {
|
|
9485
9485
|
text: string;
|
|
9486
|
-
type: "
|
|
9486
|
+
type: "error" | "success" | "info" | "warning";
|
|
9487
9487
|
id?: number | undefined;
|
|
9488
9488
|
}[] | undefined;
|
|
9489
9489
|
required?: boolean | undefined;
|
|
@@ -9502,7 +9502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9502
9502
|
hint?: string | undefined;
|
|
9503
9503
|
messages?: {
|
|
9504
9504
|
text: string;
|
|
9505
|
-
type: "
|
|
9505
|
+
type: "error" | "success" | "info" | "warning";
|
|
9506
9506
|
id?: number | undefined;
|
|
9507
9507
|
}[] | undefined;
|
|
9508
9508
|
required?: boolean | undefined;
|
|
@@ -9524,7 +9524,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9524
9524
|
hint?: string | undefined;
|
|
9525
9525
|
messages?: {
|
|
9526
9526
|
text: string;
|
|
9527
|
-
type: "
|
|
9527
|
+
type: "error" | "success" | "info" | "warning";
|
|
9528
9528
|
id?: number | undefined;
|
|
9529
9529
|
}[] | undefined;
|
|
9530
9530
|
required?: boolean | undefined;
|
|
@@ -9546,7 +9546,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9546
9546
|
hint?: string | undefined;
|
|
9547
9547
|
messages?: {
|
|
9548
9548
|
text: string;
|
|
9549
|
-
type: "
|
|
9549
|
+
type: "error" | "success" | "info" | "warning";
|
|
9550
9550
|
id?: number | undefined;
|
|
9551
9551
|
}[] | undefined;
|
|
9552
9552
|
required?: boolean | undefined;
|
|
@@ -9565,7 +9565,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9565
9565
|
hint?: string | undefined;
|
|
9566
9566
|
messages?: {
|
|
9567
9567
|
text: string;
|
|
9568
|
-
type: "
|
|
9568
|
+
type: "error" | "success" | "info" | "warning";
|
|
9569
9569
|
id?: number | undefined;
|
|
9570
9570
|
}[] | undefined;
|
|
9571
9571
|
required?: boolean | undefined;
|
|
@@ -9590,7 +9590,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9590
9590
|
hint?: string | undefined;
|
|
9591
9591
|
messages?: {
|
|
9592
9592
|
text: string;
|
|
9593
|
-
type: "
|
|
9593
|
+
type: "error" | "success" | "info" | "warning";
|
|
9594
9594
|
id?: number | undefined;
|
|
9595
9595
|
}[] | undefined;
|
|
9596
9596
|
required?: boolean | undefined;
|
|
@@ -9611,7 +9611,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9611
9611
|
hint?: string | undefined;
|
|
9612
9612
|
messages?: {
|
|
9613
9613
|
text: string;
|
|
9614
|
-
type: "
|
|
9614
|
+
type: "error" | "success" | "info" | "warning";
|
|
9615
9615
|
id?: number | undefined;
|
|
9616
9616
|
}[] | undefined;
|
|
9617
9617
|
required?: boolean | undefined;
|
|
@@ -9632,7 +9632,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9632
9632
|
hint?: string | undefined;
|
|
9633
9633
|
messages?: {
|
|
9634
9634
|
text: string;
|
|
9635
|
-
type: "
|
|
9635
|
+
type: "error" | "success" | "info" | "warning";
|
|
9636
9636
|
id?: number | undefined;
|
|
9637
9637
|
}[] | undefined;
|
|
9638
9638
|
required?: boolean | undefined;
|
|
@@ -9824,7 +9824,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9824
9824
|
};
|
|
9825
9825
|
};
|
|
9826
9826
|
output: {
|
|
9827
|
-
universal_login_experience: "
|
|
9827
|
+
universal_login_experience: "new" | "classic";
|
|
9828
9828
|
identifier_first: boolean;
|
|
9829
9829
|
password_first: boolean;
|
|
9830
9830
|
webauthn_platform_first_factor: boolean;
|
|
@@ -9842,7 +9842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9842
9842
|
};
|
|
9843
9843
|
} & {
|
|
9844
9844
|
json: {
|
|
9845
|
-
universal_login_experience?: "
|
|
9845
|
+
universal_login_experience?: "new" | "classic" | undefined;
|
|
9846
9846
|
identifier_first?: boolean | undefined;
|
|
9847
9847
|
password_first?: boolean | undefined;
|
|
9848
9848
|
webauthn_platform_first_factor?: boolean | undefined;
|
|
@@ -9862,7 +9862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9862
9862
|
};
|
|
9863
9863
|
};
|
|
9864
9864
|
output: {
|
|
9865
|
-
prompt: "
|
|
9865
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9866
9866
|
language: string;
|
|
9867
9867
|
}[];
|
|
9868
9868
|
outputFormat: "json";
|
|
@@ -9900,7 +9900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9900
9900
|
$get: {
|
|
9901
9901
|
input: {
|
|
9902
9902
|
param: {
|
|
9903
|
-
prompt: "
|
|
9903
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9904
9904
|
language: string;
|
|
9905
9905
|
};
|
|
9906
9906
|
} & {
|
|
@@ -9922,7 +9922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9922
9922
|
$put: {
|
|
9923
9923
|
input: {
|
|
9924
9924
|
param: {
|
|
9925
|
-
prompt: "
|
|
9925
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9926
9926
|
language: string;
|
|
9927
9927
|
};
|
|
9928
9928
|
} & {
|
|
@@ -9946,7 +9946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9946
9946
|
$delete: {
|
|
9947
9947
|
input: {
|
|
9948
9948
|
param: {
|
|
9949
|
-
prompt: "
|
|
9949
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9950
9950
|
language: string;
|
|
9951
9951
|
};
|
|
9952
9952
|
} & {
|
|
@@ -10808,7 +10808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10808
10808
|
};
|
|
10809
10809
|
} | {
|
|
10810
10810
|
mode: "inline";
|
|
10811
|
-
status: "
|
|
10811
|
+
status: "error" | "success";
|
|
10812
10812
|
connection_id: string;
|
|
10813
10813
|
connection_name: string;
|
|
10814
10814
|
strategy: string;
|
|
@@ -11447,7 +11447,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11447
11447
|
log_type: string;
|
|
11448
11448
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11449
11449
|
actor: {
|
|
11450
|
-
type: "
|
|
11450
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
11451
11451
|
id?: string | undefined;
|
|
11452
11452
|
email?: string | undefined;
|
|
11453
11453
|
org_id?: string | undefined;
|
|
@@ -12097,7 +12097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12097
12097
|
};
|
|
12098
12098
|
};
|
|
12099
12099
|
output: {
|
|
12100
|
-
type: "fn" | "i" | "
|
|
12100
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12101
12101
|
date: string;
|
|
12102
12102
|
isMobile: boolean;
|
|
12103
12103
|
log_id: string;
|
|
@@ -12136,7 +12136,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12136
12136
|
limit: number;
|
|
12137
12137
|
length: number;
|
|
12138
12138
|
logs: {
|
|
12139
|
-
type: "fn" | "i" | "
|
|
12139
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12140
12140
|
date: string;
|
|
12141
12141
|
isMobile: boolean;
|
|
12142
12142
|
log_id: string;
|
|
@@ -12190,7 +12190,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12190
12190
|
};
|
|
12191
12191
|
};
|
|
12192
12192
|
output: {
|
|
12193
|
-
type: "fn" | "i" | "
|
|
12193
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12194
12194
|
date: string;
|
|
12195
12195
|
isMobile: boolean;
|
|
12196
12196
|
log_id: string;
|
|
@@ -12578,7 +12578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12578
12578
|
addons?: {
|
|
12579
12579
|
[x: string]: any;
|
|
12580
12580
|
} | undefined;
|
|
12581
|
-
token_endpoint_auth_method?: "none" | "
|
|
12581
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12582
12582
|
client_metadata?: {
|
|
12583
12583
|
[x: string]: string;
|
|
12584
12584
|
} | undefined;
|
|
@@ -12674,7 +12674,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12674
12674
|
addons?: {
|
|
12675
12675
|
[x: string]: any;
|
|
12676
12676
|
} | undefined;
|
|
12677
|
-
token_endpoint_auth_method?: "none" | "
|
|
12677
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12678
12678
|
client_metadata?: {
|
|
12679
12679
|
[x: string]: string;
|
|
12680
12680
|
} | undefined;
|
|
@@ -12785,7 +12785,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12785
12785
|
addons?: {
|
|
12786
12786
|
[x: string]: any;
|
|
12787
12787
|
} | undefined;
|
|
12788
|
-
token_endpoint_auth_method?: "none" | "
|
|
12788
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12789
12789
|
client_metadata?: {
|
|
12790
12790
|
[x: string]: string;
|
|
12791
12791
|
} | undefined;
|
|
@@ -12895,7 +12895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12895
12895
|
custom_login_page_preview?: string | undefined;
|
|
12896
12896
|
form_template?: string | undefined;
|
|
12897
12897
|
addons?: Record<string, any> | undefined;
|
|
12898
|
-
token_endpoint_auth_method?: "none" | "
|
|
12898
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12899
12899
|
client_metadata?: Record<string, string> | undefined;
|
|
12900
12900
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12901
12901
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12975,7 +12975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12975
12975
|
addons?: {
|
|
12976
12976
|
[x: string]: any;
|
|
12977
12977
|
} | undefined;
|
|
12978
|
-
token_endpoint_auth_method?: "none" | "
|
|
12978
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12979
12979
|
client_metadata?: {
|
|
12980
12980
|
[x: string]: string;
|
|
12981
12981
|
} | undefined;
|
|
@@ -13064,7 +13064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13064
13064
|
custom_login_page_preview?: string | undefined;
|
|
13065
13065
|
form_template?: string | undefined;
|
|
13066
13066
|
addons?: Record<string, any> | undefined;
|
|
13067
|
-
token_endpoint_auth_method?: "none" | "
|
|
13067
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
13068
13068
|
client_metadata?: Record<string, string> | undefined;
|
|
13069
13069
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13070
13070
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13144,7 +13144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13144
13144
|
addons?: {
|
|
13145
13145
|
[x: string]: any;
|
|
13146
13146
|
} | undefined;
|
|
13147
|
-
token_endpoint_auth_method?: "none" | "
|
|
13147
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
13148
13148
|
client_metadata?: {
|
|
13149
13149
|
[x: string]: string;
|
|
13150
13150
|
} | undefined;
|
|
@@ -14408,7 +14408,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14408
14408
|
};
|
|
14409
14409
|
};
|
|
14410
14410
|
output: {
|
|
14411
|
-
type: "fn" | "i" | "
|
|
14411
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14412
14412
|
date: string;
|
|
14413
14413
|
isMobile: boolean;
|
|
14414
14414
|
log_id: string;
|
|
@@ -14447,7 +14447,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14447
14447
|
limit: number;
|
|
14448
14448
|
length: number;
|
|
14449
14449
|
logs: {
|
|
14450
|
-
type: "fn" | "i" | "
|
|
14450
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14451
14451
|
date: string;
|
|
14452
14452
|
isMobile: boolean;
|
|
14453
14453
|
log_id: string;
|
|
@@ -15917,7 +15917,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15917
15917
|
};
|
|
15918
15918
|
output: {};
|
|
15919
15919
|
outputFormat: string;
|
|
15920
|
-
status:
|
|
15920
|
+
status: 204;
|
|
15921
15921
|
} | {
|
|
15922
15922
|
input: {
|
|
15923
15923
|
header: {
|
|
@@ -15930,7 +15930,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15930
15930
|
};
|
|
15931
15931
|
output: {};
|
|
15932
15932
|
outputFormat: string;
|
|
15933
|
-
status:
|
|
15933
|
+
status: 400;
|
|
15934
15934
|
};
|
|
15935
15935
|
};
|
|
15936
15936
|
} & {
|
|
@@ -15956,7 +15956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15956
15956
|
} & {
|
|
15957
15957
|
json: {
|
|
15958
15958
|
body?: string | undefined;
|
|
15959
|
-
screen?: "
|
|
15959
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
15960
15960
|
branding?: {
|
|
15961
15961
|
colors?: {
|
|
15962
15962
|
primary: string;
|
|
@@ -16247,7 +16247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16247
16247
|
logs: {
|
|
16248
16248
|
action_name: string;
|
|
16249
16249
|
lines: {
|
|
16250
|
-
level: "
|
|
16250
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16251
16251
|
message: string;
|
|
16252
16252
|
}[];
|
|
16253
16253
|
}[];
|
|
@@ -16914,7 +16914,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16914
16914
|
args: hono_utils_types.JSONValue[];
|
|
16915
16915
|
}[];
|
|
16916
16916
|
logs: {
|
|
16917
|
-
level: "
|
|
16917
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16918
16918
|
message: string;
|
|
16919
16919
|
}[];
|
|
16920
16920
|
error?: string | undefined;
|
|
@@ -17225,7 +17225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17225
17225
|
scope?: string | undefined;
|
|
17226
17226
|
grant_types?: string[] | undefined;
|
|
17227
17227
|
response_types?: string[] | undefined;
|
|
17228
|
-
token_endpoint_auth_method?: "none" | "
|
|
17228
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
17229
17229
|
jwks_uri?: string | undefined;
|
|
17230
17230
|
jwks?: Record<string, unknown> | undefined;
|
|
17231
17231
|
software_id?: string | undefined;
|
|
@@ -17314,7 +17314,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17314
17314
|
scope?: string | undefined;
|
|
17315
17315
|
grant_types?: string[] | undefined;
|
|
17316
17316
|
response_types?: string[] | undefined;
|
|
17317
|
-
token_endpoint_auth_method?: "none" | "
|
|
17317
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
17318
17318
|
jwks_uri?: string | undefined;
|
|
17319
17319
|
jwks?: Record<string, unknown> | undefined;
|
|
17320
17320
|
software_id?: string | undefined;
|
|
@@ -17371,7 +17371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17371
17371
|
client_id: string;
|
|
17372
17372
|
redirect_url?: string | undefined;
|
|
17373
17373
|
login_hint?: string | undefined;
|
|
17374
|
-
screen_hint?: "
|
|
17374
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
17375
17375
|
};
|
|
17376
17376
|
};
|
|
17377
17377
|
output: {};
|
|
@@ -17383,7 +17383,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17383
17383
|
client_id: string;
|
|
17384
17384
|
redirect_url?: string | undefined;
|
|
17385
17385
|
login_hint?: string | undefined;
|
|
17386
|
-
screen_hint?: "
|
|
17386
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
17387
17387
|
};
|
|
17388
17388
|
};
|
|
17389
17389
|
output: {
|
|
@@ -17460,17 +17460,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17460
17460
|
request_uri?: string | undefined;
|
|
17461
17461
|
};
|
|
17462
17462
|
};
|
|
17463
|
-
output:
|
|
17464
|
-
|
|
17465
|
-
|
|
17466
|
-
expires_in: number;
|
|
17467
|
-
id_token?: string | undefined;
|
|
17468
|
-
scope?: string | undefined;
|
|
17469
|
-
state?: string | undefined;
|
|
17470
|
-
refresh_token?: string | undefined;
|
|
17471
|
-
};
|
|
17472
|
-
outputFormat: "json";
|
|
17473
|
-
status: 200;
|
|
17463
|
+
output: {};
|
|
17464
|
+
outputFormat: string;
|
|
17465
|
+
status: 302;
|
|
17474
17466
|
} | {
|
|
17475
17467
|
input: {
|
|
17476
17468
|
query: {
|
|
@@ -17502,9 +17494,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17502
17494
|
request_uri?: string | undefined;
|
|
17503
17495
|
};
|
|
17504
17496
|
};
|
|
17505
|
-
output: {
|
|
17506
|
-
|
|
17507
|
-
|
|
17497
|
+
output: string | {
|
|
17498
|
+
access_token: string;
|
|
17499
|
+
token_type: string;
|
|
17500
|
+
expires_in: number;
|
|
17501
|
+
id_token?: string | undefined;
|
|
17502
|
+
scope?: string | undefined;
|
|
17503
|
+
state?: string | undefined;
|
|
17504
|
+
refresh_token?: string | undefined;
|
|
17505
|
+
};
|
|
17506
|
+
outputFormat: "json";
|
|
17507
|
+
status: 200;
|
|
17508
17508
|
} | {
|
|
17509
17509
|
input: {
|
|
17510
17510
|
query: {
|
|
@@ -17660,21 +17660,22 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17660
17660
|
email: string;
|
|
17661
17661
|
send: "code" | "link";
|
|
17662
17662
|
authParams: {
|
|
17663
|
-
|
|
17664
|
-
redirect_uri?: string | undefined;
|
|
17665
|
-
scope?: string | undefined;
|
|
17663
|
+
username?: string | undefined;
|
|
17666
17664
|
state?: string | undefined;
|
|
17667
|
-
prompt?: string | undefined;
|
|
17668
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17669
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17670
17665
|
audience?: string | undefined;
|
|
17666
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17667
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17668
|
+
scope?: string | undefined;
|
|
17669
|
+
organization?: string | undefined;
|
|
17671
17670
|
nonce?: string | undefined;
|
|
17672
|
-
|
|
17673
|
-
|
|
17671
|
+
redirect_uri?: string | undefined;
|
|
17672
|
+
act_as?: string | undefined;
|
|
17673
|
+
prompt?: string | undefined;
|
|
17674
17674
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17675
17675
|
code_challenge?: string | undefined;
|
|
17676
|
-
organization?: string | undefined;
|
|
17677
17676
|
ui_locales?: string | undefined;
|
|
17677
|
+
max_age?: number | undefined;
|
|
17678
|
+
acr_values?: string | undefined;
|
|
17678
17679
|
claims?: {
|
|
17679
17680
|
userinfo?: Record<string, {
|
|
17680
17681
|
essential?: boolean | undefined;
|
|
@@ -17687,8 +17688,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17687
17688
|
values?: unknown[] | undefined;
|
|
17688
17689
|
} | null> | undefined;
|
|
17689
17690
|
} | undefined;
|
|
17690
|
-
|
|
17691
|
-
username?: string | undefined;
|
|
17691
|
+
vendor_id?: string | undefined;
|
|
17692
17692
|
};
|
|
17693
17693
|
} | {
|
|
17694
17694
|
client_id: string;
|
|
@@ -17696,21 +17696,22 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17696
17696
|
phone_number: string;
|
|
17697
17697
|
send: "code" | "link";
|
|
17698
17698
|
authParams: {
|
|
17699
|
-
|
|
17700
|
-
redirect_uri?: string | undefined;
|
|
17701
|
-
scope?: string | undefined;
|
|
17699
|
+
username?: string | undefined;
|
|
17702
17700
|
state?: string | undefined;
|
|
17703
|
-
prompt?: string | undefined;
|
|
17704
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17705
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17706
17701
|
audience?: string | undefined;
|
|
17702
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17703
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17704
|
+
scope?: string | undefined;
|
|
17705
|
+
organization?: string | undefined;
|
|
17707
17706
|
nonce?: string | undefined;
|
|
17708
|
-
|
|
17709
|
-
|
|
17707
|
+
redirect_uri?: string | undefined;
|
|
17708
|
+
act_as?: string | undefined;
|
|
17709
|
+
prompt?: string | undefined;
|
|
17710
17710
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17711
17711
|
code_challenge?: string | undefined;
|
|
17712
|
-
organization?: string | undefined;
|
|
17713
17712
|
ui_locales?: string | undefined;
|
|
17713
|
+
max_age?: number | undefined;
|
|
17714
|
+
acr_values?: string | undefined;
|
|
17714
17715
|
claims?: {
|
|
17715
17716
|
userinfo?: Record<string, {
|
|
17716
17717
|
essential?: boolean | undefined;
|
|
@@ -17723,8 +17724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17723
17724
|
values?: unknown[] | undefined;
|
|
17724
17725
|
} | null> | undefined;
|
|
17725
17726
|
} | undefined;
|
|
17726
|
-
|
|
17727
|
-
username?: string | undefined;
|
|
17727
|
+
vendor_id?: string | undefined;
|
|
17728
17728
|
};
|
|
17729
17729
|
};
|
|
17730
17730
|
};
|
|
@@ -17840,14 +17840,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17840
17840
|
input: {
|
|
17841
17841
|
form: {
|
|
17842
17842
|
token: string;
|
|
17843
|
-
token_type_hint?: "
|
|
17843
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17844
17844
|
client_id?: string | undefined;
|
|
17845
17845
|
client_secret?: string | undefined;
|
|
17846
17846
|
};
|
|
17847
17847
|
} & {
|
|
17848
17848
|
json: {
|
|
17849
17849
|
token: string;
|
|
17850
|
-
token_type_hint?: "
|
|
17850
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17851
17851
|
client_id?: string | undefined;
|
|
17852
17852
|
client_secret?: string | undefined;
|
|
17853
17853
|
};
|
|
@@ -17859,14 +17859,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17859
17859
|
input: {
|
|
17860
17860
|
form: {
|
|
17861
17861
|
token: string;
|
|
17862
|
-
token_type_hint?: "
|
|
17862
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17863
17863
|
client_id?: string | undefined;
|
|
17864
17864
|
client_secret?: string | undefined;
|
|
17865
17865
|
};
|
|
17866
17866
|
} & {
|
|
17867
17867
|
json: {
|
|
17868
17868
|
token: string;
|
|
17869
|
-
token_type_hint?: "
|
|
17869
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17870
17870
|
client_id?: string | undefined;
|
|
17871
17871
|
client_secret?: string | undefined;
|
|
17872
17872
|
};
|
|
@@ -17881,14 +17881,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17881
17881
|
input: {
|
|
17882
17882
|
form: {
|
|
17883
17883
|
token: string;
|
|
17884
|
-
token_type_hint?: "
|
|
17884
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17885
17885
|
client_id?: string | undefined;
|
|
17886
17886
|
client_secret?: string | undefined;
|
|
17887
17887
|
};
|
|
17888
17888
|
} & {
|
|
17889
17889
|
json: {
|
|
17890
17890
|
token: string;
|
|
17891
|
-
token_type_hint?: "
|
|
17891
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
17892
17892
|
client_id?: string | undefined;
|
|
17893
17893
|
client_secret?: string | undefined;
|
|
17894
17894
|
};
|
|
@@ -18312,7 +18312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18312
18312
|
error_description?: string | undefined;
|
|
18313
18313
|
};
|
|
18314
18314
|
outputFormat: "json";
|
|
18315
|
-
status:
|
|
18315
|
+
status: 401;
|
|
18316
18316
|
} | {
|
|
18317
18317
|
input: {
|
|
18318
18318
|
form: {
|
|
@@ -18414,7 +18414,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18414
18414
|
error_description?: string | undefined;
|
|
18415
18415
|
};
|
|
18416
18416
|
outputFormat: "json";
|
|
18417
|
-
status:
|
|
18417
|
+
status: 403;
|
|
18418
18418
|
};
|
|
18419
18419
|
};
|
|
18420
18420
|
}, "/oauth/token"> & hono_types.MergeSchemaPath<{
|
|
@@ -18613,7 +18613,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18613
18613
|
};
|
|
18614
18614
|
output: {};
|
|
18615
18615
|
outputFormat: string;
|
|
18616
|
-
status:
|
|
18616
|
+
status: 200;
|
|
18617
18617
|
} | {
|
|
18618
18618
|
input: {
|
|
18619
18619
|
query: {
|
|
@@ -18627,7 +18627,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18627
18627
|
};
|
|
18628
18628
|
output: {};
|
|
18629
18629
|
outputFormat: string;
|
|
18630
|
-
status:
|
|
18630
|
+
status: 302;
|
|
18631
18631
|
} | {
|
|
18632
18632
|
input: {
|
|
18633
18633
|
query: {
|
|
@@ -19236,7 +19236,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19236
19236
|
} & {
|
|
19237
19237
|
form: {
|
|
19238
19238
|
username: string;
|
|
19239
|
-
login_selection?: "
|
|
19239
|
+
login_selection?: "code" | "password" | undefined;
|
|
19240
19240
|
};
|
|
19241
19241
|
};
|
|
19242
19242
|
output: {};
|
|
@@ -19250,7 +19250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19250
19250
|
} & {
|
|
19251
19251
|
form: {
|
|
19252
19252
|
username: string;
|
|
19253
|
-
login_selection?: "
|
|
19253
|
+
login_selection?: "code" | "password" | undefined;
|
|
19254
19254
|
};
|
|
19255
19255
|
};
|
|
19256
19256
|
output: {};
|
|
@@ -19615,7 +19615,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19615
19615
|
$get: {
|
|
19616
19616
|
input: {
|
|
19617
19617
|
param: {
|
|
19618
|
-
screen: "signup" | "
|
|
19618
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19619
19619
|
};
|
|
19620
19620
|
} & {
|
|
19621
19621
|
query: {
|
|
@@ -19631,7 +19631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19631
19631
|
} | {
|
|
19632
19632
|
input: {
|
|
19633
19633
|
param: {
|
|
19634
|
-
screen: "signup" | "
|
|
19634
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19635
19635
|
};
|
|
19636
19636
|
} & {
|
|
19637
19637
|
query: {
|
|
@@ -19647,7 +19647,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19647
19647
|
} | {
|
|
19648
19648
|
input: {
|
|
19649
19649
|
param: {
|
|
19650
|
-
screen: "signup" | "
|
|
19650
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19651
19651
|
};
|
|
19652
19652
|
} & {
|
|
19653
19653
|
query: {
|
|
@@ -19667,7 +19667,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19667
19667
|
$post: {
|
|
19668
19668
|
input: {
|
|
19669
19669
|
param: {
|
|
19670
|
-
screen: "signup" | "
|
|
19670
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19671
19671
|
};
|
|
19672
19672
|
} & {
|
|
19673
19673
|
query: {
|
|
@@ -19685,7 +19685,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19685
19685
|
} | {
|
|
19686
19686
|
input: {
|
|
19687
19687
|
param: {
|
|
19688
|
-
screen: "signup" | "
|
|
19688
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19689
19689
|
};
|
|
19690
19690
|
} & {
|
|
19691
19691
|
query: {
|