authhero 8.22.1 → 8.23.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +106 -106
- package/dist/authhero.d.ts +394 -279
- package/dist/authhero.mjs +9736 -9566
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +14 -6
- package/dist/types/helpers/backchannel-logout.d.ts +19 -0
- package/dist/types/helpers/client.d.ts +10 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +384 -278
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +48 -44
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/well-known.d.ts +6 -2
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +76 -24
- package/dist/types/routes/management-api/connections.d.ts +21 -21
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +329 -227
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +50 -0
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +28 -12
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- 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/dist/types/types/IdToken.d.ts +2 -2
- package/dist/types/utils/jwks.d.ts +4 -4
- package/dist/types/variables.d.ts +8 -0
- package/package.json +8 -8
package/dist/types/index.d.ts
CHANGED
|
@@ -63,8 +63,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
63
63
|
$get: {
|
|
64
64
|
input: {
|
|
65
65
|
query: {
|
|
66
|
-
include_password_hashes?: "
|
|
67
|
-
gzip?: "
|
|
66
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
67
|
+
gzip?: "false" | "true" | undefined;
|
|
68
68
|
};
|
|
69
69
|
} & {
|
|
70
70
|
header: {
|
|
@@ -77,8 +77,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
77
77
|
} | {
|
|
78
78
|
input: {
|
|
79
79
|
query: {
|
|
80
|
-
include_password_hashes?: "
|
|
81
|
-
gzip?: "
|
|
80
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
81
|
+
gzip?: "false" | "true" | undefined;
|
|
82
82
|
};
|
|
83
83
|
} & {
|
|
84
84
|
header: {
|
|
@@ -97,7 +97,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
97
97
|
$post: {
|
|
98
98
|
input: {
|
|
99
99
|
query: {
|
|
100
|
-
include_password_hashes?: "
|
|
100
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
101
101
|
};
|
|
102
102
|
} & {
|
|
103
103
|
header: {
|
|
@@ -291,7 +291,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
291
291
|
};
|
|
292
292
|
};
|
|
293
293
|
output: {
|
|
294
|
-
name: "email" | "
|
|
294
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
295
295
|
enabled: boolean;
|
|
296
296
|
trial_expired?: boolean | undefined;
|
|
297
297
|
}[];
|
|
@@ -446,7 +446,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
446
446
|
$get: {
|
|
447
447
|
input: {
|
|
448
448
|
param: {
|
|
449
|
-
factor_name: "email" | "
|
|
449
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
450
450
|
};
|
|
451
451
|
} & {
|
|
452
452
|
header: {
|
|
@@ -454,7 +454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
454
454
|
};
|
|
455
455
|
};
|
|
456
456
|
output: {
|
|
457
|
-
name: "email" | "
|
|
457
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
458
458
|
enabled: boolean;
|
|
459
459
|
trial_expired?: boolean | undefined;
|
|
460
460
|
};
|
|
@@ -467,7 +467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
467
467
|
$put: {
|
|
468
468
|
input: {
|
|
469
469
|
param: {
|
|
470
|
-
factor_name: "email" | "
|
|
470
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
471
471
|
};
|
|
472
472
|
} & {
|
|
473
473
|
header: {
|
|
@@ -479,7 +479,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
479
479
|
};
|
|
480
480
|
};
|
|
481
481
|
output: {
|
|
482
|
-
name: "email" | "
|
|
482
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
483
483
|
enabled: boolean;
|
|
484
484
|
trial_expired?: boolean | undefined;
|
|
485
485
|
};
|
|
@@ -1257,11 +1257,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1257
1257
|
invitee: {
|
|
1258
1258
|
email?: string | undefined;
|
|
1259
1259
|
};
|
|
1260
|
+
roles?: string[] | undefined;
|
|
1260
1261
|
id?: string | undefined;
|
|
1261
|
-
connection_id?: string | undefined;
|
|
1262
1262
|
app_metadata?: Record<string, any> | undefined;
|
|
1263
1263
|
user_metadata?: Record<string, any> | undefined;
|
|
1264
|
-
|
|
1264
|
+
connection_id?: string | undefined;
|
|
1265
1265
|
ttl_sec?: number | undefined;
|
|
1266
1266
|
send_invitation_email?: boolean | undefined;
|
|
1267
1267
|
};
|
|
@@ -2009,6 +2009,56 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2009
2009
|
status: 200;
|
|
2010
2010
|
};
|
|
2011
2011
|
};
|
|
2012
|
+
} & {
|
|
2013
|
+
"/:id/users": {
|
|
2014
|
+
$get: {
|
|
2015
|
+
input: {
|
|
2016
|
+
param: {
|
|
2017
|
+
id: string;
|
|
2018
|
+
};
|
|
2019
|
+
} & {
|
|
2020
|
+
query: {
|
|
2021
|
+
page?: string | undefined;
|
|
2022
|
+
include_totals?: string | undefined;
|
|
2023
|
+
from?: string | undefined;
|
|
2024
|
+
per_page?: string | undefined;
|
|
2025
|
+
take?: string | undefined;
|
|
2026
|
+
};
|
|
2027
|
+
} & {
|
|
2028
|
+
header: {
|
|
2029
|
+
"tenant-id"?: string | undefined;
|
|
2030
|
+
};
|
|
2031
|
+
};
|
|
2032
|
+
output: {
|
|
2033
|
+
user_id: string;
|
|
2034
|
+
email?: string | undefined;
|
|
2035
|
+
name?: string | undefined;
|
|
2036
|
+
picture?: string | undefined;
|
|
2037
|
+
}[] | {
|
|
2038
|
+
start: number;
|
|
2039
|
+
limit: number;
|
|
2040
|
+
length: number;
|
|
2041
|
+
users: {
|
|
2042
|
+
user_id: string;
|
|
2043
|
+
email?: string | undefined;
|
|
2044
|
+
name?: string | undefined;
|
|
2045
|
+
picture?: string | undefined;
|
|
2046
|
+
}[];
|
|
2047
|
+
total?: number | undefined;
|
|
2048
|
+
next?: string | undefined;
|
|
2049
|
+
} | {
|
|
2050
|
+
users: {
|
|
2051
|
+
user_id: string;
|
|
2052
|
+
email?: string | undefined;
|
|
2053
|
+
name?: string | undefined;
|
|
2054
|
+
picture?: string | undefined;
|
|
2055
|
+
}[];
|
|
2056
|
+
next?: string | undefined;
|
|
2057
|
+
};
|
|
2058
|
+
outputFormat: "json";
|
|
2059
|
+
status: 200;
|
|
2060
|
+
};
|
|
2061
|
+
};
|
|
2012
2062
|
} & {
|
|
2013
2063
|
"/:id/permissions": {
|
|
2014
2064
|
$post: {
|
|
@@ -2116,7 +2166,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2116
2166
|
type: "REDIRECT";
|
|
2117
2167
|
action: "REDIRECT_USER";
|
|
2118
2168
|
params: {
|
|
2119
|
-
target: "custom" | "
|
|
2169
|
+
target: "custom" | "change-email" | "account";
|
|
2120
2170
|
custom_url?: string | undefined;
|
|
2121
2171
|
};
|
|
2122
2172
|
alias?: string | undefined;
|
|
@@ -2169,7 +2219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2169
2219
|
type: "REDIRECT";
|
|
2170
2220
|
action: "REDIRECT_USER";
|
|
2171
2221
|
params: {
|
|
2172
|
-
target: "custom" | "
|
|
2222
|
+
target: "custom" | "change-email" | "account";
|
|
2173
2223
|
custom_url?: string | undefined;
|
|
2174
2224
|
};
|
|
2175
2225
|
alias?: string | undefined;
|
|
@@ -2238,7 +2288,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2238
2288
|
type: "REDIRECT";
|
|
2239
2289
|
action: "REDIRECT_USER";
|
|
2240
2290
|
params: {
|
|
2241
|
-
target: "custom" | "
|
|
2291
|
+
target: "custom" | "change-email" | "account";
|
|
2242
2292
|
custom_url?: string | undefined;
|
|
2243
2293
|
};
|
|
2244
2294
|
alias?: string | undefined;
|
|
@@ -2319,7 +2369,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2319
2369
|
type: "REDIRECT";
|
|
2320
2370
|
action: "REDIRECT_USER";
|
|
2321
2371
|
params: {
|
|
2322
|
-
target: "custom" | "
|
|
2372
|
+
target: "custom" | "change-email" | "account";
|
|
2323
2373
|
custom_url?: string | undefined;
|
|
2324
2374
|
};
|
|
2325
2375
|
alias?: string | undefined;
|
|
@@ -2367,7 +2417,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2367
2417
|
type: "REDIRECT";
|
|
2368
2418
|
action: "REDIRECT_USER";
|
|
2369
2419
|
params: {
|
|
2370
|
-
target: "custom" | "
|
|
2420
|
+
target: "custom" | "change-email" | "account";
|
|
2371
2421
|
custom_url?: string | undefined;
|
|
2372
2422
|
};
|
|
2373
2423
|
alias?: string | undefined;
|
|
@@ -2427,7 +2477,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2427
2477
|
type: "REDIRECT";
|
|
2428
2478
|
action: "REDIRECT_USER";
|
|
2429
2479
|
params: {
|
|
2430
|
-
target: "custom" | "
|
|
2480
|
+
target: "custom" | "change-email" | "account";
|
|
2431
2481
|
custom_url?: string | undefined;
|
|
2432
2482
|
};
|
|
2433
2483
|
alias?: string | undefined;
|
|
@@ -2475,7 +2525,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2475
2525
|
type: "REDIRECT";
|
|
2476
2526
|
action: "REDIRECT_USER";
|
|
2477
2527
|
params: {
|
|
2478
|
-
target: "custom" | "
|
|
2528
|
+
target: "custom" | "change-email" | "account";
|
|
2479
2529
|
custom_url?: string | undefined;
|
|
2480
2530
|
};
|
|
2481
2531
|
alias?: string | undefined;
|
|
@@ -2693,7 +2743,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2693
2743
|
hint?: string | undefined;
|
|
2694
2744
|
messages?: {
|
|
2695
2745
|
text: string;
|
|
2696
|
-
type: "
|
|
2746
|
+
type: "error" | "success" | "info" | "warning";
|
|
2697
2747
|
id?: number | undefined;
|
|
2698
2748
|
}[] | undefined;
|
|
2699
2749
|
required?: boolean | undefined;
|
|
@@ -2711,7 +2761,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2711
2761
|
hint?: string | undefined;
|
|
2712
2762
|
messages?: {
|
|
2713
2763
|
text: string;
|
|
2714
|
-
type: "
|
|
2764
|
+
type: "error" | "success" | "info" | "warning";
|
|
2715
2765
|
id?: number | undefined;
|
|
2716
2766
|
}[] | undefined;
|
|
2717
2767
|
required?: boolean | undefined;
|
|
@@ -2735,7 +2785,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2735
2785
|
hint?: string | undefined;
|
|
2736
2786
|
messages?: {
|
|
2737
2787
|
text: string;
|
|
2738
|
-
type: "
|
|
2788
|
+
type: "error" | "success" | "info" | "warning";
|
|
2739
2789
|
id?: number | undefined;
|
|
2740
2790
|
}[] | undefined;
|
|
2741
2791
|
required?: boolean | undefined;
|
|
@@ -2759,7 +2809,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2759
2809
|
hint?: string | undefined;
|
|
2760
2810
|
messages?: {
|
|
2761
2811
|
text: string;
|
|
2762
|
-
type: "
|
|
2812
|
+
type: "error" | "success" | "info" | "warning";
|
|
2763
2813
|
id?: number | undefined;
|
|
2764
2814
|
}[] | undefined;
|
|
2765
2815
|
required?: boolean | undefined;
|
|
@@ -2783,7 +2833,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2783
2833
|
hint?: string | undefined;
|
|
2784
2834
|
messages?: {
|
|
2785
2835
|
text: string;
|
|
2786
|
-
type: "
|
|
2836
|
+
type: "error" | "success" | "info" | "warning";
|
|
2787
2837
|
id?: number | undefined;
|
|
2788
2838
|
}[] | undefined;
|
|
2789
2839
|
required?: boolean | undefined;
|
|
@@ -2812,7 +2862,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2812
2862
|
hint?: string | undefined;
|
|
2813
2863
|
messages?: {
|
|
2814
2864
|
text: string;
|
|
2815
|
-
type: "
|
|
2865
|
+
type: "error" | "success" | "info" | "warning";
|
|
2816
2866
|
id?: number | undefined;
|
|
2817
2867
|
}[] | undefined;
|
|
2818
2868
|
required?: boolean | undefined;
|
|
@@ -2827,7 +2877,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2827
2877
|
hint?: string | undefined;
|
|
2828
2878
|
messages?: {
|
|
2829
2879
|
text: string;
|
|
2830
|
-
type: "
|
|
2880
|
+
type: "error" | "success" | "info" | "warning";
|
|
2831
2881
|
id?: number | undefined;
|
|
2832
2882
|
}[] | undefined;
|
|
2833
2883
|
required?: boolean | undefined;
|
|
@@ -2848,7 +2898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2848
2898
|
hint?: string | undefined;
|
|
2849
2899
|
messages?: {
|
|
2850
2900
|
text: string;
|
|
2851
|
-
type: "
|
|
2901
|
+
type: "error" | "success" | "info" | "warning";
|
|
2852
2902
|
id?: number | undefined;
|
|
2853
2903
|
}[] | undefined;
|
|
2854
2904
|
required?: boolean | undefined;
|
|
@@ -2873,7 +2923,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2873
2923
|
hint?: string | undefined;
|
|
2874
2924
|
messages?: {
|
|
2875
2925
|
text: string;
|
|
2876
|
-
type: "
|
|
2926
|
+
type: "error" | "success" | "info" | "warning";
|
|
2877
2927
|
id?: number | undefined;
|
|
2878
2928
|
}[] | undefined;
|
|
2879
2929
|
required?: boolean | undefined;
|
|
@@ -2892,7 +2942,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2892
2942
|
hint?: string | undefined;
|
|
2893
2943
|
messages?: {
|
|
2894
2944
|
text: string;
|
|
2895
|
-
type: "
|
|
2945
|
+
type: "error" | "success" | "info" | "warning";
|
|
2896
2946
|
id?: number | undefined;
|
|
2897
2947
|
}[] | undefined;
|
|
2898
2948
|
required?: boolean | undefined;
|
|
@@ -2912,7 +2962,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2912
2962
|
hint?: string | undefined;
|
|
2913
2963
|
messages?: {
|
|
2914
2964
|
text: string;
|
|
2915
|
-
type: "
|
|
2965
|
+
type: "error" | "success" | "info" | "warning";
|
|
2916
2966
|
id?: number | undefined;
|
|
2917
2967
|
}[] | undefined;
|
|
2918
2968
|
required?: boolean | undefined;
|
|
@@ -2931,7 +2981,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2931
2981
|
hint?: string | undefined;
|
|
2932
2982
|
messages?: {
|
|
2933
2983
|
text: string;
|
|
2934
|
-
type: "
|
|
2984
|
+
type: "error" | "success" | "info" | "warning";
|
|
2935
2985
|
id?: number | undefined;
|
|
2936
2986
|
}[] | undefined;
|
|
2937
2987
|
required?: boolean | undefined;
|
|
@@ -2953,7 +3003,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2953
3003
|
hint?: string | undefined;
|
|
2954
3004
|
messages?: {
|
|
2955
3005
|
text: string;
|
|
2956
|
-
type: "
|
|
3006
|
+
type: "error" | "success" | "info" | "warning";
|
|
2957
3007
|
id?: number | undefined;
|
|
2958
3008
|
}[] | undefined;
|
|
2959
3009
|
required?: boolean | undefined;
|
|
@@ -2975,7 +3025,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2975
3025
|
hint?: string | undefined;
|
|
2976
3026
|
messages?: {
|
|
2977
3027
|
text: string;
|
|
2978
|
-
type: "
|
|
3028
|
+
type: "error" | "success" | "info" | "warning";
|
|
2979
3029
|
id?: number | undefined;
|
|
2980
3030
|
}[] | undefined;
|
|
2981
3031
|
required?: boolean | undefined;
|
|
@@ -2994,7 +3044,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2994
3044
|
hint?: string | undefined;
|
|
2995
3045
|
messages?: {
|
|
2996
3046
|
text: string;
|
|
2997
|
-
type: "
|
|
3047
|
+
type: "error" | "success" | "info" | "warning";
|
|
2998
3048
|
id?: number | undefined;
|
|
2999
3049
|
}[] | undefined;
|
|
3000
3050
|
required?: boolean | undefined;
|
|
@@ -3019,7 +3069,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3019
3069
|
hint?: string | undefined;
|
|
3020
3070
|
messages?: {
|
|
3021
3071
|
text: string;
|
|
3022
|
-
type: "
|
|
3072
|
+
type: "error" | "success" | "info" | "warning";
|
|
3023
3073
|
id?: number | undefined;
|
|
3024
3074
|
}[] | undefined;
|
|
3025
3075
|
required?: boolean | undefined;
|
|
@@ -3040,7 +3090,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3040
3090
|
hint?: string | undefined;
|
|
3041
3091
|
messages?: {
|
|
3042
3092
|
text: string;
|
|
3043
|
-
type: "
|
|
3093
|
+
type: "error" | "success" | "info" | "warning";
|
|
3044
3094
|
id?: number | undefined;
|
|
3045
3095
|
}[] | undefined;
|
|
3046
3096
|
required?: boolean | undefined;
|
|
@@ -3061,7 +3111,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3061
3111
|
hint?: string | undefined;
|
|
3062
3112
|
messages?: {
|
|
3063
3113
|
text: string;
|
|
3064
|
-
type: "
|
|
3114
|
+
type: "error" | "success" | "info" | "warning";
|
|
3065
3115
|
id?: number | undefined;
|
|
3066
3116
|
}[] | undefined;
|
|
3067
3117
|
required?: boolean | undefined;
|
|
@@ -3294,7 +3344,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3294
3344
|
hint?: string | undefined;
|
|
3295
3345
|
messages?: {
|
|
3296
3346
|
text: string;
|
|
3297
|
-
type: "
|
|
3347
|
+
type: "error" | "success" | "info" | "warning";
|
|
3298
3348
|
id?: number | undefined;
|
|
3299
3349
|
}[] | undefined;
|
|
3300
3350
|
required?: boolean | undefined;
|
|
@@ -3312,7 +3362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3312
3362
|
hint?: string | undefined;
|
|
3313
3363
|
messages?: {
|
|
3314
3364
|
text: string;
|
|
3315
|
-
type: "
|
|
3365
|
+
type: "error" | "success" | "info" | "warning";
|
|
3316
3366
|
id?: number | undefined;
|
|
3317
3367
|
}[] | undefined;
|
|
3318
3368
|
required?: boolean | undefined;
|
|
@@ -3336,7 +3386,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3336
3386
|
hint?: string | undefined;
|
|
3337
3387
|
messages?: {
|
|
3338
3388
|
text: string;
|
|
3339
|
-
type: "
|
|
3389
|
+
type: "error" | "success" | "info" | "warning";
|
|
3340
3390
|
id?: number | undefined;
|
|
3341
3391
|
}[] | undefined;
|
|
3342
3392
|
required?: boolean | undefined;
|
|
@@ -3360,7 +3410,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3360
3410
|
hint?: string | undefined;
|
|
3361
3411
|
messages?: {
|
|
3362
3412
|
text: string;
|
|
3363
|
-
type: "
|
|
3413
|
+
type: "error" | "success" | "info" | "warning";
|
|
3364
3414
|
id?: number | undefined;
|
|
3365
3415
|
}[] | undefined;
|
|
3366
3416
|
required?: boolean | undefined;
|
|
@@ -3384,7 +3434,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3384
3434
|
hint?: string | undefined;
|
|
3385
3435
|
messages?: {
|
|
3386
3436
|
text: string;
|
|
3387
|
-
type: "
|
|
3437
|
+
type: "error" | "success" | "info" | "warning";
|
|
3388
3438
|
id?: number | undefined;
|
|
3389
3439
|
}[] | undefined;
|
|
3390
3440
|
required?: boolean | undefined;
|
|
@@ -3413,7 +3463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3413
3463
|
hint?: string | undefined;
|
|
3414
3464
|
messages?: {
|
|
3415
3465
|
text: string;
|
|
3416
|
-
type: "
|
|
3466
|
+
type: "error" | "success" | "info" | "warning";
|
|
3417
3467
|
id?: number | undefined;
|
|
3418
3468
|
}[] | undefined;
|
|
3419
3469
|
required?: boolean | undefined;
|
|
@@ -3428,7 +3478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3428
3478
|
hint?: string | undefined;
|
|
3429
3479
|
messages?: {
|
|
3430
3480
|
text: string;
|
|
3431
|
-
type: "
|
|
3481
|
+
type: "error" | "success" | "info" | "warning";
|
|
3432
3482
|
id?: number | undefined;
|
|
3433
3483
|
}[] | undefined;
|
|
3434
3484
|
required?: boolean | undefined;
|
|
@@ -3449,7 +3499,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3449
3499
|
hint?: string | undefined;
|
|
3450
3500
|
messages?: {
|
|
3451
3501
|
text: string;
|
|
3452
|
-
type: "
|
|
3502
|
+
type: "error" | "success" | "info" | "warning";
|
|
3453
3503
|
id?: number | undefined;
|
|
3454
3504
|
}[] | undefined;
|
|
3455
3505
|
required?: boolean | undefined;
|
|
@@ -3474,7 +3524,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3474
3524
|
hint?: string | undefined;
|
|
3475
3525
|
messages?: {
|
|
3476
3526
|
text: string;
|
|
3477
|
-
type: "
|
|
3527
|
+
type: "error" | "success" | "info" | "warning";
|
|
3478
3528
|
id?: number | undefined;
|
|
3479
3529
|
}[] | undefined;
|
|
3480
3530
|
required?: boolean | undefined;
|
|
@@ -3493,7 +3543,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3493
3543
|
hint?: string | undefined;
|
|
3494
3544
|
messages?: {
|
|
3495
3545
|
text: string;
|
|
3496
|
-
type: "
|
|
3546
|
+
type: "error" | "success" | "info" | "warning";
|
|
3497
3547
|
id?: number | undefined;
|
|
3498
3548
|
}[] | undefined;
|
|
3499
3549
|
required?: boolean | undefined;
|
|
@@ -3513,7 +3563,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3513
3563
|
hint?: string | undefined;
|
|
3514
3564
|
messages?: {
|
|
3515
3565
|
text: string;
|
|
3516
|
-
type: "
|
|
3566
|
+
type: "error" | "success" | "info" | "warning";
|
|
3517
3567
|
id?: number | undefined;
|
|
3518
3568
|
}[] | undefined;
|
|
3519
3569
|
required?: boolean | undefined;
|
|
@@ -3532,7 +3582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3532
3582
|
hint?: string | undefined;
|
|
3533
3583
|
messages?: {
|
|
3534
3584
|
text: string;
|
|
3535
|
-
type: "
|
|
3585
|
+
type: "error" | "success" | "info" | "warning";
|
|
3536
3586
|
id?: number | undefined;
|
|
3537
3587
|
}[] | undefined;
|
|
3538
3588
|
required?: boolean | undefined;
|
|
@@ -3554,7 +3604,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3554
3604
|
hint?: string | undefined;
|
|
3555
3605
|
messages?: {
|
|
3556
3606
|
text: string;
|
|
3557
|
-
type: "
|
|
3607
|
+
type: "error" | "success" | "info" | "warning";
|
|
3558
3608
|
id?: number | undefined;
|
|
3559
3609
|
}[] | undefined;
|
|
3560
3610
|
required?: boolean | undefined;
|
|
@@ -3576,7 +3626,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3576
3626
|
hint?: string | undefined;
|
|
3577
3627
|
messages?: {
|
|
3578
3628
|
text: string;
|
|
3579
|
-
type: "
|
|
3629
|
+
type: "error" | "success" | "info" | "warning";
|
|
3580
3630
|
id?: number | undefined;
|
|
3581
3631
|
}[] | undefined;
|
|
3582
3632
|
required?: boolean | undefined;
|
|
@@ -3595,7 +3645,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3595
3645
|
hint?: string | undefined;
|
|
3596
3646
|
messages?: {
|
|
3597
3647
|
text: string;
|
|
3598
|
-
type: "
|
|
3648
|
+
type: "error" | "success" | "info" | "warning";
|
|
3599
3649
|
id?: number | undefined;
|
|
3600
3650
|
}[] | undefined;
|
|
3601
3651
|
required?: boolean | undefined;
|
|
@@ -3620,7 +3670,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3620
3670
|
hint?: string | undefined;
|
|
3621
3671
|
messages?: {
|
|
3622
3672
|
text: string;
|
|
3623
|
-
type: "
|
|
3673
|
+
type: "error" | "success" | "info" | "warning";
|
|
3624
3674
|
id?: number | undefined;
|
|
3625
3675
|
}[] | undefined;
|
|
3626
3676
|
required?: boolean | undefined;
|
|
@@ -3641,7 +3691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3641
3691
|
hint?: string | undefined;
|
|
3642
3692
|
messages?: {
|
|
3643
3693
|
text: string;
|
|
3644
|
-
type: "
|
|
3694
|
+
type: "error" | "success" | "info" | "warning";
|
|
3645
3695
|
id?: number | undefined;
|
|
3646
3696
|
}[] | undefined;
|
|
3647
3697
|
required?: boolean | undefined;
|
|
@@ -3662,7 +3712,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3662
3712
|
hint?: string | undefined;
|
|
3663
3713
|
messages?: {
|
|
3664
3714
|
text: string;
|
|
3665
|
-
type: "
|
|
3715
|
+
type: "error" | "success" | "info" | "warning";
|
|
3666
3716
|
id?: number | undefined;
|
|
3667
3717
|
}[] | undefined;
|
|
3668
3718
|
required?: boolean | undefined;
|
|
@@ -3911,7 +3961,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3911
3961
|
hint?: string | undefined;
|
|
3912
3962
|
messages?: {
|
|
3913
3963
|
text: string;
|
|
3914
|
-
type: "
|
|
3964
|
+
type: "error" | "success" | "info" | "warning";
|
|
3915
3965
|
id?: number | undefined;
|
|
3916
3966
|
}[] | undefined;
|
|
3917
3967
|
required?: boolean | undefined;
|
|
@@ -3929,7 +3979,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3929
3979
|
hint?: string | undefined;
|
|
3930
3980
|
messages?: {
|
|
3931
3981
|
text: string;
|
|
3932
|
-
type: "
|
|
3982
|
+
type: "error" | "success" | "info" | "warning";
|
|
3933
3983
|
id?: number | undefined;
|
|
3934
3984
|
}[] | undefined;
|
|
3935
3985
|
required?: boolean | undefined;
|
|
@@ -3953,7 +4003,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3953
4003
|
hint?: string | undefined;
|
|
3954
4004
|
messages?: {
|
|
3955
4005
|
text: string;
|
|
3956
|
-
type: "
|
|
4006
|
+
type: "error" | "success" | "info" | "warning";
|
|
3957
4007
|
id?: number | undefined;
|
|
3958
4008
|
}[] | undefined;
|
|
3959
4009
|
required?: boolean | undefined;
|
|
@@ -3977,7 +4027,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3977
4027
|
hint?: string | undefined;
|
|
3978
4028
|
messages?: {
|
|
3979
4029
|
text: string;
|
|
3980
|
-
type: "
|
|
4030
|
+
type: "error" | "success" | "info" | "warning";
|
|
3981
4031
|
id?: number | undefined;
|
|
3982
4032
|
}[] | undefined;
|
|
3983
4033
|
required?: boolean | undefined;
|
|
@@ -4001,7 +4051,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4001
4051
|
hint?: string | undefined;
|
|
4002
4052
|
messages?: {
|
|
4003
4053
|
text: string;
|
|
4004
|
-
type: "
|
|
4054
|
+
type: "error" | "success" | "info" | "warning";
|
|
4005
4055
|
id?: number | undefined;
|
|
4006
4056
|
}[] | undefined;
|
|
4007
4057
|
required?: boolean | undefined;
|
|
@@ -4030,7 +4080,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4030
4080
|
hint?: string | undefined;
|
|
4031
4081
|
messages?: {
|
|
4032
4082
|
text: string;
|
|
4033
|
-
type: "
|
|
4083
|
+
type: "error" | "success" | "info" | "warning";
|
|
4034
4084
|
id?: number | undefined;
|
|
4035
4085
|
}[] | undefined;
|
|
4036
4086
|
required?: boolean | undefined;
|
|
@@ -4045,7 +4095,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4045
4095
|
hint?: string | undefined;
|
|
4046
4096
|
messages?: {
|
|
4047
4097
|
text: string;
|
|
4048
|
-
type: "
|
|
4098
|
+
type: "error" | "success" | "info" | "warning";
|
|
4049
4099
|
id?: number | undefined;
|
|
4050
4100
|
}[] | undefined;
|
|
4051
4101
|
required?: boolean | undefined;
|
|
@@ -4066,7 +4116,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4066
4116
|
hint?: string | undefined;
|
|
4067
4117
|
messages?: {
|
|
4068
4118
|
text: string;
|
|
4069
|
-
type: "
|
|
4119
|
+
type: "error" | "success" | "info" | "warning";
|
|
4070
4120
|
id?: number | undefined;
|
|
4071
4121
|
}[] | undefined;
|
|
4072
4122
|
required?: boolean | undefined;
|
|
@@ -4091,7 +4141,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4091
4141
|
hint?: string | undefined;
|
|
4092
4142
|
messages?: {
|
|
4093
4143
|
text: string;
|
|
4094
|
-
type: "
|
|
4144
|
+
type: "error" | "success" | "info" | "warning";
|
|
4095
4145
|
id?: number | undefined;
|
|
4096
4146
|
}[] | undefined;
|
|
4097
4147
|
required?: boolean | undefined;
|
|
@@ -4110,7 +4160,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4110
4160
|
hint?: string | undefined;
|
|
4111
4161
|
messages?: {
|
|
4112
4162
|
text: string;
|
|
4113
|
-
type: "
|
|
4163
|
+
type: "error" | "success" | "info" | "warning";
|
|
4114
4164
|
id?: number | undefined;
|
|
4115
4165
|
}[] | undefined;
|
|
4116
4166
|
required?: boolean | undefined;
|
|
@@ -4130,7 +4180,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4130
4180
|
hint?: string | undefined;
|
|
4131
4181
|
messages?: {
|
|
4132
4182
|
text: string;
|
|
4133
|
-
type: "
|
|
4183
|
+
type: "error" | "success" | "info" | "warning";
|
|
4134
4184
|
id?: number | undefined;
|
|
4135
4185
|
}[] | undefined;
|
|
4136
4186
|
required?: boolean | undefined;
|
|
@@ -4149,7 +4199,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4149
4199
|
hint?: string | undefined;
|
|
4150
4200
|
messages?: {
|
|
4151
4201
|
text: string;
|
|
4152
|
-
type: "
|
|
4202
|
+
type: "error" | "success" | "info" | "warning";
|
|
4153
4203
|
id?: number | undefined;
|
|
4154
4204
|
}[] | undefined;
|
|
4155
4205
|
required?: boolean | undefined;
|
|
@@ -4171,7 +4221,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4171
4221
|
hint?: string | undefined;
|
|
4172
4222
|
messages?: {
|
|
4173
4223
|
text: string;
|
|
4174
|
-
type: "
|
|
4224
|
+
type: "error" | "success" | "info" | "warning";
|
|
4175
4225
|
id?: number | undefined;
|
|
4176
4226
|
}[] | undefined;
|
|
4177
4227
|
required?: boolean | undefined;
|
|
@@ -4193,7 +4243,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4193
4243
|
hint?: string | undefined;
|
|
4194
4244
|
messages?: {
|
|
4195
4245
|
text: string;
|
|
4196
|
-
type: "
|
|
4246
|
+
type: "error" | "success" | "info" | "warning";
|
|
4197
4247
|
id?: number | undefined;
|
|
4198
4248
|
}[] | undefined;
|
|
4199
4249
|
required?: boolean | undefined;
|
|
@@ -4212,7 +4262,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4212
4262
|
hint?: string | undefined;
|
|
4213
4263
|
messages?: {
|
|
4214
4264
|
text: string;
|
|
4215
|
-
type: "
|
|
4265
|
+
type: "error" | "success" | "info" | "warning";
|
|
4216
4266
|
id?: number | undefined;
|
|
4217
4267
|
}[] | undefined;
|
|
4218
4268
|
required?: boolean | undefined;
|
|
@@ -4237,7 +4287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4237
4287
|
hint?: string | undefined;
|
|
4238
4288
|
messages?: {
|
|
4239
4289
|
text: string;
|
|
4240
|
-
type: "
|
|
4290
|
+
type: "error" | "success" | "info" | "warning";
|
|
4241
4291
|
id?: number | undefined;
|
|
4242
4292
|
}[] | undefined;
|
|
4243
4293
|
required?: boolean | undefined;
|
|
@@ -4258,7 +4308,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4258
4308
|
hint?: string | undefined;
|
|
4259
4309
|
messages?: {
|
|
4260
4310
|
text: string;
|
|
4261
|
-
type: "
|
|
4311
|
+
type: "error" | "success" | "info" | "warning";
|
|
4262
4312
|
id?: number | undefined;
|
|
4263
4313
|
}[] | undefined;
|
|
4264
4314
|
required?: boolean | undefined;
|
|
@@ -4279,7 +4329,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4279
4329
|
hint?: string | undefined;
|
|
4280
4330
|
messages?: {
|
|
4281
4331
|
text: string;
|
|
4282
|
-
type: "
|
|
4332
|
+
type: "error" | "success" | "info" | "warning";
|
|
4283
4333
|
id?: number | undefined;
|
|
4284
4334
|
}[] | undefined;
|
|
4285
4335
|
required?: boolean | undefined;
|
|
@@ -4533,7 +4583,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4533
4583
|
hint?: string | undefined;
|
|
4534
4584
|
messages?: {
|
|
4535
4585
|
text: string;
|
|
4536
|
-
type: "
|
|
4586
|
+
type: "error" | "success" | "info" | "warning";
|
|
4537
4587
|
id?: number | undefined;
|
|
4538
4588
|
}[] | undefined;
|
|
4539
4589
|
required?: boolean | undefined;
|
|
@@ -4551,7 +4601,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4551
4601
|
hint?: string | undefined;
|
|
4552
4602
|
messages?: {
|
|
4553
4603
|
text: string;
|
|
4554
|
-
type: "
|
|
4604
|
+
type: "error" | "success" | "info" | "warning";
|
|
4555
4605
|
id?: number | undefined;
|
|
4556
4606
|
}[] | undefined;
|
|
4557
4607
|
required?: boolean | undefined;
|
|
@@ -4575,7 +4625,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4575
4625
|
hint?: string | undefined;
|
|
4576
4626
|
messages?: {
|
|
4577
4627
|
text: string;
|
|
4578
|
-
type: "
|
|
4628
|
+
type: "error" | "success" | "info" | "warning";
|
|
4579
4629
|
id?: number | undefined;
|
|
4580
4630
|
}[] | undefined;
|
|
4581
4631
|
required?: boolean | undefined;
|
|
@@ -4599,7 +4649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4599
4649
|
hint?: string | undefined;
|
|
4600
4650
|
messages?: {
|
|
4601
4651
|
text: string;
|
|
4602
|
-
type: "
|
|
4652
|
+
type: "error" | "success" | "info" | "warning";
|
|
4603
4653
|
id?: number | undefined;
|
|
4604
4654
|
}[] | undefined;
|
|
4605
4655
|
required?: boolean | undefined;
|
|
@@ -4623,7 +4673,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4623
4673
|
hint?: string | undefined;
|
|
4624
4674
|
messages?: {
|
|
4625
4675
|
text: string;
|
|
4626
|
-
type: "
|
|
4676
|
+
type: "error" | "success" | "info" | "warning";
|
|
4627
4677
|
id?: number | undefined;
|
|
4628
4678
|
}[] | undefined;
|
|
4629
4679
|
required?: boolean | undefined;
|
|
@@ -4648,7 +4698,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4648
4698
|
hint?: string | undefined;
|
|
4649
4699
|
messages?: {
|
|
4650
4700
|
text: string;
|
|
4651
|
-
type: "
|
|
4701
|
+
type: "error" | "success" | "info" | "warning";
|
|
4652
4702
|
id?: number | undefined;
|
|
4653
4703
|
}[] | undefined;
|
|
4654
4704
|
required?: boolean | undefined;
|
|
@@ -4663,7 +4713,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4663
4713
|
hint?: string | undefined;
|
|
4664
4714
|
messages?: {
|
|
4665
4715
|
text: string;
|
|
4666
|
-
type: "
|
|
4716
|
+
type: "error" | "success" | "info" | "warning";
|
|
4667
4717
|
id?: number | undefined;
|
|
4668
4718
|
}[] | undefined;
|
|
4669
4719
|
required?: boolean | undefined;
|
|
@@ -4684,7 +4734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4684
4734
|
hint?: string | undefined;
|
|
4685
4735
|
messages?: {
|
|
4686
4736
|
text: string;
|
|
4687
|
-
type: "
|
|
4737
|
+
type: "error" | "success" | "info" | "warning";
|
|
4688
4738
|
id?: number | undefined;
|
|
4689
4739
|
}[] | undefined;
|
|
4690
4740
|
required?: boolean | undefined;
|
|
@@ -4709,7 +4759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4709
4759
|
hint?: string | undefined;
|
|
4710
4760
|
messages?: {
|
|
4711
4761
|
text: string;
|
|
4712
|
-
type: "
|
|
4762
|
+
type: "error" | "success" | "info" | "warning";
|
|
4713
4763
|
id?: number | undefined;
|
|
4714
4764
|
}[] | undefined;
|
|
4715
4765
|
required?: boolean | undefined;
|
|
@@ -4728,7 +4778,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4728
4778
|
hint?: string | undefined;
|
|
4729
4779
|
messages?: {
|
|
4730
4780
|
text: string;
|
|
4731
|
-
type: "
|
|
4781
|
+
type: "error" | "success" | "info" | "warning";
|
|
4732
4782
|
id?: number | undefined;
|
|
4733
4783
|
}[] | undefined;
|
|
4734
4784
|
required?: boolean | undefined;
|
|
@@ -4748,7 +4798,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4748
4798
|
hint?: string | undefined;
|
|
4749
4799
|
messages?: {
|
|
4750
4800
|
text: string;
|
|
4751
|
-
type: "
|
|
4801
|
+
type: "error" | "success" | "info" | "warning";
|
|
4752
4802
|
id?: number | undefined;
|
|
4753
4803
|
}[] | undefined;
|
|
4754
4804
|
required?: boolean | undefined;
|
|
@@ -4767,7 +4817,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4767
4817
|
hint?: string | undefined;
|
|
4768
4818
|
messages?: {
|
|
4769
4819
|
text: string;
|
|
4770
|
-
type: "
|
|
4820
|
+
type: "error" | "success" | "info" | "warning";
|
|
4771
4821
|
id?: number | undefined;
|
|
4772
4822
|
}[] | undefined;
|
|
4773
4823
|
required?: boolean | undefined;
|
|
@@ -4789,7 +4839,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4789
4839
|
hint?: string | undefined;
|
|
4790
4840
|
messages?: {
|
|
4791
4841
|
text: string;
|
|
4792
|
-
type: "
|
|
4842
|
+
type: "error" | "success" | "info" | "warning";
|
|
4793
4843
|
id?: number | undefined;
|
|
4794
4844
|
}[] | undefined;
|
|
4795
4845
|
required?: boolean | undefined;
|
|
@@ -4811,7 +4861,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4811
4861
|
hint?: string | undefined;
|
|
4812
4862
|
messages?: {
|
|
4813
4863
|
text: string;
|
|
4814
|
-
type: "
|
|
4864
|
+
type: "error" | "success" | "info" | "warning";
|
|
4815
4865
|
id?: number | undefined;
|
|
4816
4866
|
}[] | undefined;
|
|
4817
4867
|
required?: boolean | undefined;
|
|
@@ -4830,7 +4880,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4830
4880
|
hint?: string | undefined;
|
|
4831
4881
|
messages?: {
|
|
4832
4882
|
text: string;
|
|
4833
|
-
type: "
|
|
4883
|
+
type: "error" | "success" | "info" | "warning";
|
|
4834
4884
|
id?: number | undefined;
|
|
4835
4885
|
}[] | undefined;
|
|
4836
4886
|
required?: boolean | undefined;
|
|
@@ -4855,7 +4905,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4855
4905
|
hint?: string | undefined;
|
|
4856
4906
|
messages?: {
|
|
4857
4907
|
text: string;
|
|
4858
|
-
type: "
|
|
4908
|
+
type: "error" | "success" | "info" | "warning";
|
|
4859
4909
|
id?: number | undefined;
|
|
4860
4910
|
}[] | undefined;
|
|
4861
4911
|
required?: boolean | undefined;
|
|
@@ -4876,7 +4926,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4876
4926
|
hint?: string | undefined;
|
|
4877
4927
|
messages?: {
|
|
4878
4928
|
text: string;
|
|
4879
|
-
type: "
|
|
4929
|
+
type: "error" | "success" | "info" | "warning";
|
|
4880
4930
|
id?: number | undefined;
|
|
4881
4931
|
}[] | undefined;
|
|
4882
4932
|
required?: boolean | undefined;
|
|
@@ -4897,7 +4947,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4897
4947
|
hint?: string | undefined;
|
|
4898
4948
|
messages?: {
|
|
4899
4949
|
text: string;
|
|
4900
|
-
type: "
|
|
4950
|
+
type: "error" | "success" | "info" | "warning";
|
|
4901
4951
|
id?: number | undefined;
|
|
4902
4952
|
}[] | undefined;
|
|
4903
4953
|
required?: boolean | undefined;
|
|
@@ -5128,7 +5178,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5128
5178
|
hint?: string | undefined;
|
|
5129
5179
|
messages?: {
|
|
5130
5180
|
text: string;
|
|
5131
|
-
type: "
|
|
5181
|
+
type: "error" | "success" | "info" | "warning";
|
|
5132
5182
|
id?: number | undefined;
|
|
5133
5183
|
}[] | undefined;
|
|
5134
5184
|
required?: boolean | undefined;
|
|
@@ -5146,7 +5196,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5146
5196
|
hint?: string | undefined;
|
|
5147
5197
|
messages?: {
|
|
5148
5198
|
text: string;
|
|
5149
|
-
type: "
|
|
5199
|
+
type: "error" | "success" | "info" | "warning";
|
|
5150
5200
|
id?: number | undefined;
|
|
5151
5201
|
}[] | undefined;
|
|
5152
5202
|
required?: boolean | undefined;
|
|
@@ -5170,7 +5220,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5170
5220
|
hint?: string | undefined;
|
|
5171
5221
|
messages?: {
|
|
5172
5222
|
text: string;
|
|
5173
|
-
type: "
|
|
5223
|
+
type: "error" | "success" | "info" | "warning";
|
|
5174
5224
|
id?: number | undefined;
|
|
5175
5225
|
}[] | undefined;
|
|
5176
5226
|
required?: boolean | undefined;
|
|
@@ -5194,7 +5244,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5194
5244
|
hint?: string | undefined;
|
|
5195
5245
|
messages?: {
|
|
5196
5246
|
text: string;
|
|
5197
|
-
type: "
|
|
5247
|
+
type: "error" | "success" | "info" | "warning";
|
|
5198
5248
|
id?: number | undefined;
|
|
5199
5249
|
}[] | undefined;
|
|
5200
5250
|
required?: boolean | undefined;
|
|
@@ -5218,7 +5268,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5218
5268
|
hint?: string | undefined;
|
|
5219
5269
|
messages?: {
|
|
5220
5270
|
text: string;
|
|
5221
|
-
type: "
|
|
5271
|
+
type: "error" | "success" | "info" | "warning";
|
|
5222
5272
|
id?: number | undefined;
|
|
5223
5273
|
}[] | undefined;
|
|
5224
5274
|
required?: boolean | undefined;
|
|
@@ -5247,7 +5297,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5247
5297
|
hint?: string | undefined;
|
|
5248
5298
|
messages?: {
|
|
5249
5299
|
text: string;
|
|
5250
|
-
type: "
|
|
5300
|
+
type: "error" | "success" | "info" | "warning";
|
|
5251
5301
|
id?: number | undefined;
|
|
5252
5302
|
}[] | undefined;
|
|
5253
5303
|
required?: boolean | undefined;
|
|
@@ -5262,7 +5312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5262
5312
|
hint?: string | undefined;
|
|
5263
5313
|
messages?: {
|
|
5264
5314
|
text: string;
|
|
5265
|
-
type: "
|
|
5315
|
+
type: "error" | "success" | "info" | "warning";
|
|
5266
5316
|
id?: number | undefined;
|
|
5267
5317
|
}[] | undefined;
|
|
5268
5318
|
required?: boolean | undefined;
|
|
@@ -5283,7 +5333,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5283
5333
|
hint?: string | undefined;
|
|
5284
5334
|
messages?: {
|
|
5285
5335
|
text: string;
|
|
5286
|
-
type: "
|
|
5336
|
+
type: "error" | "success" | "info" | "warning";
|
|
5287
5337
|
id?: number | undefined;
|
|
5288
5338
|
}[] | undefined;
|
|
5289
5339
|
required?: boolean | undefined;
|
|
@@ -5308,7 +5358,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5308
5358
|
hint?: string | undefined;
|
|
5309
5359
|
messages?: {
|
|
5310
5360
|
text: string;
|
|
5311
|
-
type: "
|
|
5361
|
+
type: "error" | "success" | "info" | "warning";
|
|
5312
5362
|
id?: number | undefined;
|
|
5313
5363
|
}[] | undefined;
|
|
5314
5364
|
required?: boolean | undefined;
|
|
@@ -5327,7 +5377,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5327
5377
|
hint?: string | undefined;
|
|
5328
5378
|
messages?: {
|
|
5329
5379
|
text: string;
|
|
5330
|
-
type: "
|
|
5380
|
+
type: "error" | "success" | "info" | "warning";
|
|
5331
5381
|
id?: number | undefined;
|
|
5332
5382
|
}[] | undefined;
|
|
5333
5383
|
required?: boolean | undefined;
|
|
@@ -5347,7 +5397,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5347
5397
|
hint?: string | undefined;
|
|
5348
5398
|
messages?: {
|
|
5349
5399
|
text: string;
|
|
5350
|
-
type: "
|
|
5400
|
+
type: "error" | "success" | "info" | "warning";
|
|
5351
5401
|
id?: number | undefined;
|
|
5352
5402
|
}[] | undefined;
|
|
5353
5403
|
required?: boolean | undefined;
|
|
@@ -5366,7 +5416,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5366
5416
|
hint?: string | undefined;
|
|
5367
5417
|
messages?: {
|
|
5368
5418
|
text: string;
|
|
5369
|
-
type: "
|
|
5419
|
+
type: "error" | "success" | "info" | "warning";
|
|
5370
5420
|
id?: number | undefined;
|
|
5371
5421
|
}[] | undefined;
|
|
5372
5422
|
required?: boolean | undefined;
|
|
@@ -5388,7 +5438,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5388
5438
|
hint?: string | undefined;
|
|
5389
5439
|
messages?: {
|
|
5390
5440
|
text: string;
|
|
5391
|
-
type: "
|
|
5441
|
+
type: "error" | "success" | "info" | "warning";
|
|
5392
5442
|
id?: number | undefined;
|
|
5393
5443
|
}[] | undefined;
|
|
5394
5444
|
required?: boolean | undefined;
|
|
@@ -5410,7 +5460,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5410
5460
|
hint?: string | undefined;
|
|
5411
5461
|
messages?: {
|
|
5412
5462
|
text: string;
|
|
5413
|
-
type: "
|
|
5463
|
+
type: "error" | "success" | "info" | "warning";
|
|
5414
5464
|
id?: number | undefined;
|
|
5415
5465
|
}[] | undefined;
|
|
5416
5466
|
required?: boolean | undefined;
|
|
@@ -5429,7 +5479,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5429
5479
|
hint?: string | undefined;
|
|
5430
5480
|
messages?: {
|
|
5431
5481
|
text: string;
|
|
5432
|
-
type: "
|
|
5482
|
+
type: "error" | "success" | "info" | "warning";
|
|
5433
5483
|
id?: number | undefined;
|
|
5434
5484
|
}[] | undefined;
|
|
5435
5485
|
required?: boolean | undefined;
|
|
@@ -5454,7 +5504,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5454
5504
|
hint?: string | undefined;
|
|
5455
5505
|
messages?: {
|
|
5456
5506
|
text: string;
|
|
5457
|
-
type: "
|
|
5507
|
+
type: "error" | "success" | "info" | "warning";
|
|
5458
5508
|
id?: number | undefined;
|
|
5459
5509
|
}[] | undefined;
|
|
5460
5510
|
required?: boolean | undefined;
|
|
@@ -5475,7 +5525,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5475
5525
|
hint?: string | undefined;
|
|
5476
5526
|
messages?: {
|
|
5477
5527
|
text: string;
|
|
5478
|
-
type: "
|
|
5528
|
+
type: "error" | "success" | "info" | "warning";
|
|
5479
5529
|
id?: number | undefined;
|
|
5480
5530
|
}[] | undefined;
|
|
5481
5531
|
required?: boolean | undefined;
|
|
@@ -5496,7 +5546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5496
5546
|
hint?: string | undefined;
|
|
5497
5547
|
messages?: {
|
|
5498
5548
|
text: string;
|
|
5499
|
-
type: "
|
|
5549
|
+
type: "error" | "success" | "info" | "warning";
|
|
5500
5550
|
id?: number | undefined;
|
|
5501
5551
|
}[] | undefined;
|
|
5502
5552
|
required?: boolean | undefined;
|
|
@@ -5729,7 +5779,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5729
5779
|
hint?: string | undefined;
|
|
5730
5780
|
messages?: {
|
|
5731
5781
|
text: string;
|
|
5732
|
-
type: "
|
|
5782
|
+
type: "error" | "success" | "info" | "warning";
|
|
5733
5783
|
id?: number | undefined;
|
|
5734
5784
|
}[] | undefined;
|
|
5735
5785
|
required?: boolean | undefined;
|
|
@@ -5747,7 +5797,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5747
5797
|
hint?: string | undefined;
|
|
5748
5798
|
messages?: {
|
|
5749
5799
|
text: string;
|
|
5750
|
-
type: "
|
|
5800
|
+
type: "error" | "success" | "info" | "warning";
|
|
5751
5801
|
id?: number | undefined;
|
|
5752
5802
|
}[] | undefined;
|
|
5753
5803
|
required?: boolean | undefined;
|
|
@@ -5771,7 +5821,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5771
5821
|
hint?: string | undefined;
|
|
5772
5822
|
messages?: {
|
|
5773
5823
|
text: string;
|
|
5774
|
-
type: "
|
|
5824
|
+
type: "error" | "success" | "info" | "warning";
|
|
5775
5825
|
id?: number | undefined;
|
|
5776
5826
|
}[] | undefined;
|
|
5777
5827
|
required?: boolean | undefined;
|
|
@@ -5795,7 +5845,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5795
5845
|
hint?: string | undefined;
|
|
5796
5846
|
messages?: {
|
|
5797
5847
|
text: string;
|
|
5798
|
-
type: "
|
|
5848
|
+
type: "error" | "success" | "info" | "warning";
|
|
5799
5849
|
id?: number | undefined;
|
|
5800
5850
|
}[] | undefined;
|
|
5801
5851
|
required?: boolean | undefined;
|
|
@@ -5819,7 +5869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5819
5869
|
hint?: string | undefined;
|
|
5820
5870
|
messages?: {
|
|
5821
5871
|
text: string;
|
|
5822
|
-
type: "
|
|
5872
|
+
type: "error" | "success" | "info" | "warning";
|
|
5823
5873
|
id?: number | undefined;
|
|
5824
5874
|
}[] | undefined;
|
|
5825
5875
|
required?: boolean | undefined;
|
|
@@ -5844,7 +5894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5844
5894
|
hint?: string | undefined;
|
|
5845
5895
|
messages?: {
|
|
5846
5896
|
text: string;
|
|
5847
|
-
type: "
|
|
5897
|
+
type: "error" | "success" | "info" | "warning";
|
|
5848
5898
|
id?: number | undefined;
|
|
5849
5899
|
}[] | undefined;
|
|
5850
5900
|
required?: boolean | undefined;
|
|
@@ -5859,7 +5909,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5859
5909
|
hint?: string | undefined;
|
|
5860
5910
|
messages?: {
|
|
5861
5911
|
text: string;
|
|
5862
|
-
type: "
|
|
5912
|
+
type: "error" | "success" | "info" | "warning";
|
|
5863
5913
|
id?: number | undefined;
|
|
5864
5914
|
}[] | undefined;
|
|
5865
5915
|
required?: boolean | undefined;
|
|
@@ -5880,7 +5930,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5880
5930
|
hint?: string | undefined;
|
|
5881
5931
|
messages?: {
|
|
5882
5932
|
text: string;
|
|
5883
|
-
type: "
|
|
5933
|
+
type: "error" | "success" | "info" | "warning";
|
|
5884
5934
|
id?: number | undefined;
|
|
5885
5935
|
}[] | undefined;
|
|
5886
5936
|
required?: boolean | undefined;
|
|
@@ -5905,7 +5955,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5905
5955
|
hint?: string | undefined;
|
|
5906
5956
|
messages?: {
|
|
5907
5957
|
text: string;
|
|
5908
|
-
type: "
|
|
5958
|
+
type: "error" | "success" | "info" | "warning";
|
|
5909
5959
|
id?: number | undefined;
|
|
5910
5960
|
}[] | undefined;
|
|
5911
5961
|
required?: boolean | undefined;
|
|
@@ -5924,7 +5974,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5924
5974
|
hint?: string | undefined;
|
|
5925
5975
|
messages?: {
|
|
5926
5976
|
text: string;
|
|
5927
|
-
type: "
|
|
5977
|
+
type: "error" | "success" | "info" | "warning";
|
|
5928
5978
|
id?: number | undefined;
|
|
5929
5979
|
}[] | undefined;
|
|
5930
5980
|
required?: boolean | undefined;
|
|
@@ -5944,7 +5994,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5944
5994
|
hint?: string | undefined;
|
|
5945
5995
|
messages?: {
|
|
5946
5996
|
text: string;
|
|
5947
|
-
type: "
|
|
5997
|
+
type: "error" | "success" | "info" | "warning";
|
|
5948
5998
|
id?: number | undefined;
|
|
5949
5999
|
}[] | undefined;
|
|
5950
6000
|
required?: boolean | undefined;
|
|
@@ -5963,7 +6013,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5963
6013
|
hint?: string | undefined;
|
|
5964
6014
|
messages?: {
|
|
5965
6015
|
text: string;
|
|
5966
|
-
type: "
|
|
6016
|
+
type: "error" | "success" | "info" | "warning";
|
|
5967
6017
|
id?: number | undefined;
|
|
5968
6018
|
}[] | undefined;
|
|
5969
6019
|
required?: boolean | undefined;
|
|
@@ -5985,7 +6035,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5985
6035
|
hint?: string | undefined;
|
|
5986
6036
|
messages?: {
|
|
5987
6037
|
text: string;
|
|
5988
|
-
type: "
|
|
6038
|
+
type: "error" | "success" | "info" | "warning";
|
|
5989
6039
|
id?: number | undefined;
|
|
5990
6040
|
}[] | undefined;
|
|
5991
6041
|
required?: boolean | undefined;
|
|
@@ -6007,7 +6057,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6007
6057
|
hint?: string | undefined;
|
|
6008
6058
|
messages?: {
|
|
6009
6059
|
text: string;
|
|
6010
|
-
type: "
|
|
6060
|
+
type: "error" | "success" | "info" | "warning";
|
|
6011
6061
|
id?: number | undefined;
|
|
6012
6062
|
}[] | undefined;
|
|
6013
6063
|
required?: boolean | undefined;
|
|
@@ -6026,7 +6076,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6026
6076
|
hint?: string | undefined;
|
|
6027
6077
|
messages?: {
|
|
6028
6078
|
text: string;
|
|
6029
|
-
type: "
|
|
6079
|
+
type: "error" | "success" | "info" | "warning";
|
|
6030
6080
|
id?: number | undefined;
|
|
6031
6081
|
}[] | undefined;
|
|
6032
6082
|
required?: boolean | undefined;
|
|
@@ -6051,7 +6101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6051
6101
|
hint?: string | undefined;
|
|
6052
6102
|
messages?: {
|
|
6053
6103
|
text: string;
|
|
6054
|
-
type: "
|
|
6104
|
+
type: "error" | "success" | "info" | "warning";
|
|
6055
6105
|
id?: number | undefined;
|
|
6056
6106
|
}[] | undefined;
|
|
6057
6107
|
required?: boolean | undefined;
|
|
@@ -6072,7 +6122,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6072
6122
|
hint?: string | undefined;
|
|
6073
6123
|
messages?: {
|
|
6074
6124
|
text: string;
|
|
6075
|
-
type: "
|
|
6125
|
+
type: "error" | "success" | "info" | "warning";
|
|
6076
6126
|
id?: number | undefined;
|
|
6077
6127
|
}[] | undefined;
|
|
6078
6128
|
required?: boolean | undefined;
|
|
@@ -6093,7 +6143,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6093
6143
|
hint?: string | undefined;
|
|
6094
6144
|
messages?: {
|
|
6095
6145
|
text: string;
|
|
6096
|
-
type: "
|
|
6146
|
+
type: "error" | "success" | "info" | "warning";
|
|
6097
6147
|
id?: number | undefined;
|
|
6098
6148
|
}[] | undefined;
|
|
6099
6149
|
required?: boolean | undefined;
|
|
@@ -6324,7 +6374,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6324
6374
|
hint?: string | undefined;
|
|
6325
6375
|
messages?: {
|
|
6326
6376
|
text: string;
|
|
6327
|
-
type: "
|
|
6377
|
+
type: "error" | "success" | "info" | "warning";
|
|
6328
6378
|
id?: number | undefined;
|
|
6329
6379
|
}[] | undefined;
|
|
6330
6380
|
required?: boolean | undefined;
|
|
@@ -6342,7 +6392,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6342
6392
|
hint?: string | undefined;
|
|
6343
6393
|
messages?: {
|
|
6344
6394
|
text: string;
|
|
6345
|
-
type: "
|
|
6395
|
+
type: "error" | "success" | "info" | "warning";
|
|
6346
6396
|
id?: number | undefined;
|
|
6347
6397
|
}[] | undefined;
|
|
6348
6398
|
required?: boolean | undefined;
|
|
@@ -6366,7 +6416,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6366
6416
|
hint?: string | undefined;
|
|
6367
6417
|
messages?: {
|
|
6368
6418
|
text: string;
|
|
6369
|
-
type: "
|
|
6419
|
+
type: "error" | "success" | "info" | "warning";
|
|
6370
6420
|
id?: number | undefined;
|
|
6371
6421
|
}[] | undefined;
|
|
6372
6422
|
required?: boolean | undefined;
|
|
@@ -6390,7 +6440,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6390
6440
|
hint?: string | undefined;
|
|
6391
6441
|
messages?: {
|
|
6392
6442
|
text: string;
|
|
6393
|
-
type: "
|
|
6443
|
+
type: "error" | "success" | "info" | "warning";
|
|
6394
6444
|
id?: number | undefined;
|
|
6395
6445
|
}[] | undefined;
|
|
6396
6446
|
required?: boolean | undefined;
|
|
@@ -6414,7 +6464,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6414
6464
|
hint?: string | undefined;
|
|
6415
6465
|
messages?: {
|
|
6416
6466
|
text: string;
|
|
6417
|
-
type: "
|
|
6467
|
+
type: "error" | "success" | "info" | "warning";
|
|
6418
6468
|
id?: number | undefined;
|
|
6419
6469
|
}[] | undefined;
|
|
6420
6470
|
required?: boolean | undefined;
|
|
@@ -6443,7 +6493,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6443
6493
|
hint?: string | undefined;
|
|
6444
6494
|
messages?: {
|
|
6445
6495
|
text: string;
|
|
6446
|
-
type: "
|
|
6496
|
+
type: "error" | "success" | "info" | "warning";
|
|
6447
6497
|
id?: number | undefined;
|
|
6448
6498
|
}[] | undefined;
|
|
6449
6499
|
required?: boolean | undefined;
|
|
@@ -6458,7 +6508,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6458
6508
|
hint?: string | undefined;
|
|
6459
6509
|
messages?: {
|
|
6460
6510
|
text: string;
|
|
6461
|
-
type: "
|
|
6511
|
+
type: "error" | "success" | "info" | "warning";
|
|
6462
6512
|
id?: number | undefined;
|
|
6463
6513
|
}[] | undefined;
|
|
6464
6514
|
required?: boolean | undefined;
|
|
@@ -6479,7 +6529,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6479
6529
|
hint?: string | undefined;
|
|
6480
6530
|
messages?: {
|
|
6481
6531
|
text: string;
|
|
6482
|
-
type: "
|
|
6532
|
+
type: "error" | "success" | "info" | "warning";
|
|
6483
6533
|
id?: number | undefined;
|
|
6484
6534
|
}[] | undefined;
|
|
6485
6535
|
required?: boolean | undefined;
|
|
@@ -6504,7 +6554,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6504
6554
|
hint?: string | undefined;
|
|
6505
6555
|
messages?: {
|
|
6506
6556
|
text: string;
|
|
6507
|
-
type: "
|
|
6557
|
+
type: "error" | "success" | "info" | "warning";
|
|
6508
6558
|
id?: number | undefined;
|
|
6509
6559
|
}[] | undefined;
|
|
6510
6560
|
required?: boolean | undefined;
|
|
@@ -6523,7 +6573,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6523
6573
|
hint?: string | undefined;
|
|
6524
6574
|
messages?: {
|
|
6525
6575
|
text: string;
|
|
6526
|
-
type: "
|
|
6576
|
+
type: "error" | "success" | "info" | "warning";
|
|
6527
6577
|
id?: number | undefined;
|
|
6528
6578
|
}[] | undefined;
|
|
6529
6579
|
required?: boolean | undefined;
|
|
@@ -6543,7 +6593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6543
6593
|
hint?: string | undefined;
|
|
6544
6594
|
messages?: {
|
|
6545
6595
|
text: string;
|
|
6546
|
-
type: "
|
|
6596
|
+
type: "error" | "success" | "info" | "warning";
|
|
6547
6597
|
id?: number | undefined;
|
|
6548
6598
|
}[] | undefined;
|
|
6549
6599
|
required?: boolean | undefined;
|
|
@@ -6562,7 +6612,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6562
6612
|
hint?: string | undefined;
|
|
6563
6613
|
messages?: {
|
|
6564
6614
|
text: string;
|
|
6565
|
-
type: "
|
|
6615
|
+
type: "error" | "success" | "info" | "warning";
|
|
6566
6616
|
id?: number | undefined;
|
|
6567
6617
|
}[] | undefined;
|
|
6568
6618
|
required?: boolean | undefined;
|
|
@@ -6584,7 +6634,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6584
6634
|
hint?: string | undefined;
|
|
6585
6635
|
messages?: {
|
|
6586
6636
|
text: string;
|
|
6587
|
-
type: "
|
|
6637
|
+
type: "error" | "success" | "info" | "warning";
|
|
6588
6638
|
id?: number | undefined;
|
|
6589
6639
|
}[] | undefined;
|
|
6590
6640
|
required?: boolean | undefined;
|
|
@@ -6606,7 +6656,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6606
6656
|
hint?: string | undefined;
|
|
6607
6657
|
messages?: {
|
|
6608
6658
|
text: string;
|
|
6609
|
-
type: "
|
|
6659
|
+
type: "error" | "success" | "info" | "warning";
|
|
6610
6660
|
id?: number | undefined;
|
|
6611
6661
|
}[] | undefined;
|
|
6612
6662
|
required?: boolean | undefined;
|
|
@@ -6625,7 +6675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6625
6675
|
hint?: string | undefined;
|
|
6626
6676
|
messages?: {
|
|
6627
6677
|
text: string;
|
|
6628
|
-
type: "
|
|
6678
|
+
type: "error" | "success" | "info" | "warning";
|
|
6629
6679
|
id?: number | undefined;
|
|
6630
6680
|
}[] | undefined;
|
|
6631
6681
|
required?: boolean | undefined;
|
|
@@ -6650,7 +6700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6650
6700
|
hint?: string | undefined;
|
|
6651
6701
|
messages?: {
|
|
6652
6702
|
text: string;
|
|
6653
|
-
type: "
|
|
6703
|
+
type: "error" | "success" | "info" | "warning";
|
|
6654
6704
|
id?: number | undefined;
|
|
6655
6705
|
}[] | undefined;
|
|
6656
6706
|
required?: boolean | undefined;
|
|
@@ -6671,7 +6721,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6671
6721
|
hint?: string | undefined;
|
|
6672
6722
|
messages?: {
|
|
6673
6723
|
text: string;
|
|
6674
|
-
type: "
|
|
6724
|
+
type: "error" | "success" | "info" | "warning";
|
|
6675
6725
|
id?: number | undefined;
|
|
6676
6726
|
}[] | undefined;
|
|
6677
6727
|
required?: boolean | undefined;
|
|
@@ -6692,7 +6742,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6692
6742
|
hint?: string | undefined;
|
|
6693
6743
|
messages?: {
|
|
6694
6744
|
text: string;
|
|
6695
|
-
type: "
|
|
6745
|
+
type: "error" | "success" | "info" | "warning";
|
|
6696
6746
|
id?: number | undefined;
|
|
6697
6747
|
}[] | undefined;
|
|
6698
6748
|
required?: boolean | undefined;
|
|
@@ -6922,7 +6972,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6922
6972
|
};
|
|
6923
6973
|
};
|
|
6924
6974
|
output: {
|
|
6925
|
-
prompt: "
|
|
6975
|
+
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";
|
|
6926
6976
|
language: string;
|
|
6927
6977
|
}[];
|
|
6928
6978
|
outputFormat: "json";
|
|
@@ -6960,7 +7010,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6960
7010
|
$get: {
|
|
6961
7011
|
input: {
|
|
6962
7012
|
param: {
|
|
6963
|
-
prompt: "
|
|
7013
|
+
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";
|
|
6964
7014
|
language: string;
|
|
6965
7015
|
};
|
|
6966
7016
|
} & {
|
|
@@ -6982,7 +7032,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6982
7032
|
$put: {
|
|
6983
7033
|
input: {
|
|
6984
7034
|
param: {
|
|
6985
|
-
prompt: "
|
|
7035
|
+
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";
|
|
6986
7036
|
language: string;
|
|
6987
7037
|
};
|
|
6988
7038
|
} & {
|
|
@@ -7006,7 +7056,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7006
7056
|
$delete: {
|
|
7007
7057
|
input: {
|
|
7008
7058
|
param: {
|
|
7009
|
-
prompt: "
|
|
7059
|
+
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";
|
|
7010
7060
|
language: string;
|
|
7011
7061
|
};
|
|
7012
7062
|
} & {
|
|
@@ -7098,7 +7148,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7098
7148
|
active?: boolean | undefined;
|
|
7099
7149
|
} | undefined;
|
|
7100
7150
|
signup?: {
|
|
7101
|
-
status?: "
|
|
7151
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7102
7152
|
verification?: {
|
|
7103
7153
|
active?: boolean | undefined;
|
|
7104
7154
|
} | undefined;
|
|
@@ -7108,14 +7158,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7108
7158
|
} | undefined;
|
|
7109
7159
|
unique?: boolean | undefined;
|
|
7110
7160
|
profile_required?: boolean | undefined;
|
|
7111
|
-
verification_method?: "
|
|
7161
|
+
verification_method?: "code" | "link" | undefined;
|
|
7112
7162
|
} | undefined;
|
|
7113
7163
|
username?: {
|
|
7114
7164
|
identifier?: {
|
|
7115
7165
|
active?: boolean | undefined;
|
|
7116
7166
|
} | undefined;
|
|
7117
7167
|
signup?: {
|
|
7118
|
-
status?: "
|
|
7168
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7119
7169
|
} | undefined;
|
|
7120
7170
|
validation?: {
|
|
7121
7171
|
max_length?: number | undefined;
|
|
@@ -7132,7 +7182,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7132
7182
|
active?: boolean | undefined;
|
|
7133
7183
|
} | undefined;
|
|
7134
7184
|
signup?: {
|
|
7135
|
-
status?: "
|
|
7185
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7136
7186
|
} | undefined;
|
|
7137
7187
|
} | undefined;
|
|
7138
7188
|
} | undefined;
|
|
@@ -7232,7 +7282,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7232
7282
|
active?: boolean | undefined;
|
|
7233
7283
|
} | undefined;
|
|
7234
7284
|
signup?: {
|
|
7235
|
-
status?: "
|
|
7285
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7236
7286
|
verification?: {
|
|
7237
7287
|
active?: boolean | undefined;
|
|
7238
7288
|
} | undefined;
|
|
@@ -7242,14 +7292,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7242
7292
|
} | undefined;
|
|
7243
7293
|
unique?: boolean | undefined;
|
|
7244
7294
|
profile_required?: boolean | undefined;
|
|
7245
|
-
verification_method?: "
|
|
7295
|
+
verification_method?: "code" | "link" | undefined;
|
|
7246
7296
|
} | undefined;
|
|
7247
7297
|
username?: {
|
|
7248
7298
|
identifier?: {
|
|
7249
7299
|
active?: boolean | undefined;
|
|
7250
7300
|
} | undefined;
|
|
7251
7301
|
signup?: {
|
|
7252
|
-
status?: "
|
|
7302
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7253
7303
|
} | undefined;
|
|
7254
7304
|
validation?: {
|
|
7255
7305
|
max_length?: number | undefined;
|
|
@@ -7266,7 +7316,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7266
7316
|
active?: boolean | undefined;
|
|
7267
7317
|
} | undefined;
|
|
7268
7318
|
signup?: {
|
|
7269
|
-
status?: "
|
|
7319
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7270
7320
|
} | undefined;
|
|
7271
7321
|
} | undefined;
|
|
7272
7322
|
} | undefined;
|
|
@@ -7382,7 +7432,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7382
7432
|
active?: boolean | undefined;
|
|
7383
7433
|
} | undefined;
|
|
7384
7434
|
signup?: {
|
|
7385
|
-
status?: "
|
|
7435
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7386
7436
|
verification?: {
|
|
7387
7437
|
active?: boolean | undefined;
|
|
7388
7438
|
} | undefined;
|
|
@@ -7392,14 +7442,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7392
7442
|
} | undefined;
|
|
7393
7443
|
unique?: boolean | undefined;
|
|
7394
7444
|
profile_required?: boolean | undefined;
|
|
7395
|
-
verification_method?: "
|
|
7445
|
+
verification_method?: "code" | "link" | undefined;
|
|
7396
7446
|
} | undefined;
|
|
7397
7447
|
username?: {
|
|
7398
7448
|
identifier?: {
|
|
7399
7449
|
active?: boolean | undefined;
|
|
7400
7450
|
} | undefined;
|
|
7401
7451
|
signup?: {
|
|
7402
|
-
status?: "
|
|
7452
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7403
7453
|
} | undefined;
|
|
7404
7454
|
validation?: {
|
|
7405
7455
|
max_length?: number | undefined;
|
|
@@ -7416,7 +7466,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7416
7466
|
active?: boolean | undefined;
|
|
7417
7467
|
} | undefined;
|
|
7418
7468
|
signup?: {
|
|
7419
|
-
status?: "
|
|
7469
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7420
7470
|
} | undefined;
|
|
7421
7471
|
} | undefined;
|
|
7422
7472
|
} | undefined;
|
|
@@ -7561,7 +7611,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7561
7611
|
active?: boolean | undefined;
|
|
7562
7612
|
} | undefined;
|
|
7563
7613
|
signup?: {
|
|
7564
|
-
status?: "
|
|
7614
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7565
7615
|
verification?: {
|
|
7566
7616
|
active?: boolean | undefined;
|
|
7567
7617
|
} | undefined;
|
|
@@ -7571,14 +7621,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7571
7621
|
} | undefined;
|
|
7572
7622
|
unique?: boolean | undefined;
|
|
7573
7623
|
profile_required?: boolean | undefined;
|
|
7574
|
-
verification_method?: "
|
|
7624
|
+
verification_method?: "code" | "link" | undefined;
|
|
7575
7625
|
} | undefined;
|
|
7576
7626
|
username?: {
|
|
7577
7627
|
identifier?: {
|
|
7578
7628
|
active?: boolean | undefined;
|
|
7579
7629
|
} | undefined;
|
|
7580
7630
|
signup?: {
|
|
7581
|
-
status?: "
|
|
7631
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7582
7632
|
} | undefined;
|
|
7583
7633
|
validation?: {
|
|
7584
7634
|
max_length?: number | undefined;
|
|
@@ -7595,7 +7645,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7595
7645
|
active?: boolean | undefined;
|
|
7596
7646
|
} | undefined;
|
|
7597
7647
|
signup?: {
|
|
7598
|
-
status?: "
|
|
7648
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7599
7649
|
} | undefined;
|
|
7600
7650
|
} | undefined;
|
|
7601
7651
|
} | undefined;
|
|
@@ -7719,7 +7769,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7719
7769
|
active?: boolean | undefined;
|
|
7720
7770
|
} | undefined;
|
|
7721
7771
|
signup?: {
|
|
7722
|
-
status?: "
|
|
7772
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7723
7773
|
verification?: {
|
|
7724
7774
|
active?: boolean | undefined;
|
|
7725
7775
|
} | undefined;
|
|
@@ -7729,14 +7779,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7729
7779
|
} | undefined;
|
|
7730
7780
|
unique?: boolean | undefined;
|
|
7731
7781
|
profile_required?: boolean | undefined;
|
|
7732
|
-
verification_method?: "
|
|
7782
|
+
verification_method?: "code" | "link" | undefined;
|
|
7733
7783
|
} | undefined;
|
|
7734
7784
|
username?: {
|
|
7735
7785
|
identifier?: {
|
|
7736
7786
|
active?: boolean | undefined;
|
|
7737
7787
|
} | undefined;
|
|
7738
7788
|
signup?: {
|
|
7739
|
-
status?: "
|
|
7789
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7740
7790
|
} | undefined;
|
|
7741
7791
|
validation?: {
|
|
7742
7792
|
max_length?: number | undefined;
|
|
@@ -7753,7 +7803,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7753
7803
|
active?: boolean | undefined;
|
|
7754
7804
|
} | undefined;
|
|
7755
7805
|
signup?: {
|
|
7756
|
-
status?: "
|
|
7806
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7757
7807
|
} | undefined;
|
|
7758
7808
|
} | undefined;
|
|
7759
7809
|
} | undefined;
|
|
@@ -7869,7 +7919,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7869
7919
|
};
|
|
7870
7920
|
} | {
|
|
7871
7921
|
mode: "inline";
|
|
7872
|
-
status: "
|
|
7922
|
+
status: "error" | "success";
|
|
7873
7923
|
connection_id: string;
|
|
7874
7924
|
connection_name: string;
|
|
7875
7925
|
strategy: string;
|
|
@@ -9159,7 +9209,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9159
9209
|
};
|
|
9160
9210
|
};
|
|
9161
9211
|
output: {
|
|
9162
|
-
type: "
|
|
9212
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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";
|
|
9163
9213
|
date: string;
|
|
9164
9214
|
isMobile: boolean;
|
|
9165
9215
|
log_id: string;
|
|
@@ -9198,7 +9248,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9198
9248
|
limit: number;
|
|
9199
9249
|
length: number;
|
|
9200
9250
|
logs: {
|
|
9201
|
-
type: "
|
|
9251
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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";
|
|
9202
9252
|
date: string;
|
|
9203
9253
|
isMobile: boolean;
|
|
9204
9254
|
log_id: string;
|
|
@@ -9237,7 +9287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9237
9287
|
next?: string | undefined;
|
|
9238
9288
|
} | {
|
|
9239
9289
|
logs: {
|
|
9240
|
-
type: "
|
|
9290
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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";
|
|
9241
9291
|
date: string;
|
|
9242
9292
|
isMobile: boolean;
|
|
9243
9293
|
log_id: string;
|
|
@@ -9291,7 +9341,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9291
9341
|
};
|
|
9292
9342
|
};
|
|
9293
9343
|
output: {
|
|
9294
|
-
type: "
|
|
9344
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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";
|
|
9295
9345
|
date: string;
|
|
9296
9346
|
isMobile: boolean;
|
|
9297
9347
|
log_id: string;
|
|
@@ -9677,7 +9727,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9677
9727
|
[x: string]: any;
|
|
9678
9728
|
} | undefined;
|
|
9679
9729
|
oidc_logout?: {
|
|
9680
|
-
[x: string]:
|
|
9730
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9731
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
9732
|
+
backchannel_logout_initiators?: {
|
|
9733
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9734
|
+
mode?: "custom" | "all" | undefined;
|
|
9735
|
+
selected_initiators?: string[] | undefined;
|
|
9736
|
+
} | undefined;
|
|
9681
9737
|
} | undefined;
|
|
9682
9738
|
grant_types?: string[] | undefined;
|
|
9683
9739
|
jwt_configuration?: {
|
|
@@ -9696,7 +9752,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9696
9752
|
addons?: {
|
|
9697
9753
|
[x: string]: any;
|
|
9698
9754
|
} | undefined;
|
|
9699
|
-
token_endpoint_auth_method?: "
|
|
9755
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9700
9756
|
client_metadata?: {
|
|
9701
9757
|
[x: string]: string;
|
|
9702
9758
|
} | undefined;
|
|
@@ -9773,7 +9829,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9773
9829
|
[x: string]: any;
|
|
9774
9830
|
} | undefined;
|
|
9775
9831
|
oidc_logout?: {
|
|
9776
|
-
[x: string]:
|
|
9832
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9833
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
9834
|
+
backchannel_logout_initiators?: {
|
|
9835
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9836
|
+
mode?: "custom" | "all" | undefined;
|
|
9837
|
+
selected_initiators?: string[] | undefined;
|
|
9838
|
+
} | undefined;
|
|
9777
9839
|
} | undefined;
|
|
9778
9840
|
grant_types?: string[] | undefined;
|
|
9779
9841
|
jwt_configuration?: {
|
|
@@ -9792,7 +9854,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9792
9854
|
addons?: {
|
|
9793
9855
|
[x: string]: any;
|
|
9794
9856
|
} | undefined;
|
|
9795
|
-
token_endpoint_auth_method?: "
|
|
9857
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9796
9858
|
client_metadata?: {
|
|
9797
9859
|
[x: string]: string;
|
|
9798
9860
|
} | undefined;
|
|
@@ -9869,7 +9931,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9869
9931
|
[x: string]: any;
|
|
9870
9932
|
} | undefined;
|
|
9871
9933
|
oidc_logout?: {
|
|
9872
|
-
[x: string]:
|
|
9934
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9935
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
9936
|
+
backchannel_logout_initiators?: {
|
|
9937
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9938
|
+
mode?: "custom" | "all" | undefined;
|
|
9939
|
+
selected_initiators?: string[] | undefined;
|
|
9940
|
+
} | undefined;
|
|
9873
9941
|
} | undefined;
|
|
9874
9942
|
grant_types?: string[] | undefined;
|
|
9875
9943
|
jwt_configuration?: {
|
|
@@ -9888,7 +9956,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9888
9956
|
addons?: {
|
|
9889
9957
|
[x: string]: any;
|
|
9890
9958
|
} | undefined;
|
|
9891
|
-
token_endpoint_auth_method?: "
|
|
9959
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9892
9960
|
client_metadata?: {
|
|
9893
9961
|
[x: string]: string;
|
|
9894
9962
|
} | undefined;
|
|
@@ -9980,7 +10048,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9980
10048
|
[x: string]: any;
|
|
9981
10049
|
} | undefined;
|
|
9982
10050
|
oidc_logout?: {
|
|
9983
|
-
[x: string]:
|
|
10051
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10052
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10053
|
+
backchannel_logout_initiators?: {
|
|
10054
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10055
|
+
mode?: "custom" | "all" | undefined;
|
|
10056
|
+
selected_initiators?: string[] | undefined;
|
|
10057
|
+
} | undefined;
|
|
9984
10058
|
} | undefined;
|
|
9985
10059
|
grant_types?: string[] | undefined;
|
|
9986
10060
|
jwt_configuration?: {
|
|
@@ -9999,7 +10073,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9999
10073
|
addons?: {
|
|
10000
10074
|
[x: string]: any;
|
|
10001
10075
|
} | undefined;
|
|
10002
|
-
token_endpoint_auth_method?: "
|
|
10076
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10003
10077
|
client_metadata?: {
|
|
10004
10078
|
[x: string]: string;
|
|
10005
10079
|
} | undefined;
|
|
@@ -10095,7 +10169,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10095
10169
|
connections?: string[] | undefined;
|
|
10096
10170
|
allowed_logout_urls?: string[] | undefined;
|
|
10097
10171
|
session_transfer?: Record<string, any> | undefined;
|
|
10098
|
-
oidc_logout?:
|
|
10172
|
+
oidc_logout?: {
|
|
10173
|
+
[x: string]: unknown;
|
|
10174
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10175
|
+
backchannel_logout_initiators?: {
|
|
10176
|
+
[x: string]: unknown;
|
|
10177
|
+
mode?: "custom" | "all" | undefined;
|
|
10178
|
+
selected_initiators?: string[] | undefined;
|
|
10179
|
+
} | undefined;
|
|
10180
|
+
} | undefined;
|
|
10099
10181
|
grant_types?: string[] | undefined;
|
|
10100
10182
|
jwt_configuration?: Record<string, any> | undefined;
|
|
10101
10183
|
signing_keys?: Record<string, any>[] | undefined;
|
|
@@ -10109,7 +10191,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10109
10191
|
custom_login_page_preview?: string | undefined;
|
|
10110
10192
|
form_template?: string | undefined;
|
|
10111
10193
|
addons?: Record<string, any> | undefined;
|
|
10112
|
-
token_endpoint_auth_method?: "
|
|
10194
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10113
10195
|
client_metadata?: Record<string, string> | undefined;
|
|
10114
10196
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10115
10197
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10170,7 +10252,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10170
10252
|
[x: string]: any;
|
|
10171
10253
|
} | undefined;
|
|
10172
10254
|
oidc_logout?: {
|
|
10173
|
-
[x: string]:
|
|
10255
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10256
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10257
|
+
backchannel_logout_initiators?: {
|
|
10258
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10259
|
+
mode?: "custom" | "all" | undefined;
|
|
10260
|
+
selected_initiators?: string[] | undefined;
|
|
10261
|
+
} | undefined;
|
|
10174
10262
|
} | undefined;
|
|
10175
10263
|
grant_types?: string[] | undefined;
|
|
10176
10264
|
jwt_configuration?: {
|
|
@@ -10189,7 +10277,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10189
10277
|
addons?: {
|
|
10190
10278
|
[x: string]: any;
|
|
10191
10279
|
} | undefined;
|
|
10192
|
-
token_endpoint_auth_method?: "
|
|
10280
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10193
10281
|
client_metadata?: {
|
|
10194
10282
|
[x: string]: string;
|
|
10195
10283
|
} | undefined;
|
|
@@ -10264,7 +10352,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10264
10352
|
connections?: string[] | undefined;
|
|
10265
10353
|
allowed_logout_urls?: string[] | undefined;
|
|
10266
10354
|
session_transfer?: Record<string, any> | undefined;
|
|
10267
|
-
oidc_logout?:
|
|
10355
|
+
oidc_logout?: {
|
|
10356
|
+
[x: string]: unknown;
|
|
10357
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10358
|
+
backchannel_logout_initiators?: {
|
|
10359
|
+
[x: string]: unknown;
|
|
10360
|
+
mode?: "custom" | "all" | undefined;
|
|
10361
|
+
selected_initiators?: string[] | undefined;
|
|
10362
|
+
} | undefined;
|
|
10363
|
+
} | undefined;
|
|
10268
10364
|
grant_types?: string[] | undefined;
|
|
10269
10365
|
jwt_configuration?: Record<string, any> | undefined;
|
|
10270
10366
|
signing_keys?: Record<string, any>[] | undefined;
|
|
@@ -10278,7 +10374,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10278
10374
|
custom_login_page_preview?: string | undefined;
|
|
10279
10375
|
form_template?: string | undefined;
|
|
10280
10376
|
addons?: Record<string, any> | undefined;
|
|
10281
|
-
token_endpoint_auth_method?: "
|
|
10377
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10282
10378
|
client_metadata?: Record<string, string> | undefined;
|
|
10283
10379
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10284
10380
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10339,7 +10435,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10339
10435
|
[x: string]: any;
|
|
10340
10436
|
} | undefined;
|
|
10341
10437
|
oidc_logout?: {
|
|
10342
|
-
[x: string]:
|
|
10438
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10439
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10440
|
+
backchannel_logout_initiators?: {
|
|
10441
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10442
|
+
mode?: "custom" | "all" | undefined;
|
|
10443
|
+
selected_initiators?: string[] | undefined;
|
|
10444
|
+
} | undefined;
|
|
10343
10445
|
} | undefined;
|
|
10344
10446
|
grant_types?: string[] | undefined;
|
|
10345
10447
|
jwt_configuration?: {
|
|
@@ -10358,7 +10460,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10358
10460
|
addons?: {
|
|
10359
10461
|
[x: string]: any;
|
|
10360
10462
|
} | undefined;
|
|
10361
|
-
token_endpoint_auth_method?: "
|
|
10463
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10362
10464
|
client_metadata?: {
|
|
10363
10465
|
[x: string]: string;
|
|
10364
10466
|
} | undefined;
|
|
@@ -10480,7 +10582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10480
10582
|
active?: boolean | undefined;
|
|
10481
10583
|
} | undefined;
|
|
10482
10584
|
signup?: {
|
|
10483
|
-
status?: "
|
|
10585
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10484
10586
|
verification?: {
|
|
10485
10587
|
active?: boolean | undefined;
|
|
10486
10588
|
} | undefined;
|
|
@@ -10490,14 +10592,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10490
10592
|
} | undefined;
|
|
10491
10593
|
unique?: boolean | undefined;
|
|
10492
10594
|
profile_required?: boolean | undefined;
|
|
10493
|
-
verification_method?: "
|
|
10595
|
+
verification_method?: "code" | "link" | undefined;
|
|
10494
10596
|
} | undefined;
|
|
10495
10597
|
username?: {
|
|
10496
10598
|
identifier?: {
|
|
10497
10599
|
active?: boolean | undefined;
|
|
10498
10600
|
} | undefined;
|
|
10499
10601
|
signup?: {
|
|
10500
|
-
status?: "
|
|
10602
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10501
10603
|
} | undefined;
|
|
10502
10604
|
validation?: {
|
|
10503
10605
|
max_length?: number | undefined;
|
|
@@ -10514,7 +10616,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10514
10616
|
active?: boolean | undefined;
|
|
10515
10617
|
} | undefined;
|
|
10516
10618
|
signup?: {
|
|
10517
|
-
status?: "
|
|
10619
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10518
10620
|
} | undefined;
|
|
10519
10621
|
} | undefined;
|
|
10520
10622
|
} | undefined;
|
|
@@ -10634,7 +10736,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10634
10736
|
active?: boolean | undefined;
|
|
10635
10737
|
} | undefined;
|
|
10636
10738
|
signup?: {
|
|
10637
|
-
status?: "
|
|
10739
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10638
10740
|
verification?: {
|
|
10639
10741
|
active?: boolean | undefined;
|
|
10640
10742
|
} | undefined;
|
|
@@ -10644,14 +10746,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10644
10746
|
} | undefined;
|
|
10645
10747
|
unique?: boolean | undefined;
|
|
10646
10748
|
profile_required?: boolean | undefined;
|
|
10647
|
-
verification_method?: "
|
|
10749
|
+
verification_method?: "code" | "link" | undefined;
|
|
10648
10750
|
} | undefined;
|
|
10649
10751
|
username?: {
|
|
10650
10752
|
identifier?: {
|
|
10651
10753
|
active?: boolean | undefined;
|
|
10652
10754
|
} | undefined;
|
|
10653
10755
|
signup?: {
|
|
10654
|
-
status?: "
|
|
10756
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10655
10757
|
} | undefined;
|
|
10656
10758
|
validation?: {
|
|
10657
10759
|
max_length?: number | undefined;
|
|
@@ -10668,7 +10770,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10668
10770
|
active?: boolean | undefined;
|
|
10669
10771
|
} | undefined;
|
|
10670
10772
|
signup?: {
|
|
10671
|
-
status?: "
|
|
10773
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10672
10774
|
} | undefined;
|
|
10673
10775
|
} | undefined;
|
|
10674
10776
|
} | undefined;
|
|
@@ -11625,7 +11727,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11625
11727
|
};
|
|
11626
11728
|
};
|
|
11627
11729
|
output: {
|
|
11628
|
-
type: "
|
|
11730
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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";
|
|
11629
11731
|
date: string;
|
|
11630
11732
|
isMobile: boolean;
|
|
11631
11733
|
log_id: string;
|
|
@@ -11664,7 +11766,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11664
11766
|
limit: number;
|
|
11665
11767
|
length: number;
|
|
11666
11768
|
logs: {
|
|
11667
|
-
type: "
|
|
11769
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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";
|
|
11668
11770
|
date: string;
|
|
11669
11771
|
isMobile: boolean;
|
|
11670
11772
|
log_id: string;
|
|
@@ -11983,7 +12085,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11983
12085
|
};
|
|
11984
12086
|
} & {
|
|
11985
12087
|
json: {
|
|
11986
|
-
template: "
|
|
12088
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11987
12089
|
body: string;
|
|
11988
12090
|
from: string;
|
|
11989
12091
|
subject: string;
|
|
@@ -12004,7 +12106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12004
12106
|
};
|
|
12005
12107
|
} & {
|
|
12006
12108
|
json: {
|
|
12007
|
-
template: "
|
|
12109
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12008
12110
|
body: string;
|
|
12009
12111
|
from: string;
|
|
12010
12112
|
subject: string;
|
|
@@ -12016,7 +12118,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12016
12118
|
};
|
|
12017
12119
|
};
|
|
12018
12120
|
output: {
|
|
12019
|
-
template: "
|
|
12121
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12020
12122
|
body: string;
|
|
12021
12123
|
from: string;
|
|
12022
12124
|
subject: string;
|
|
@@ -12039,7 +12141,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12039
12141
|
};
|
|
12040
12142
|
};
|
|
12041
12143
|
output: {
|
|
12042
|
-
name: "
|
|
12144
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12043
12145
|
body: string;
|
|
12044
12146
|
subject: string;
|
|
12045
12147
|
}[];
|
|
@@ -12052,7 +12154,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12052
12154
|
$get: {
|
|
12053
12155
|
input: {
|
|
12054
12156
|
param: {
|
|
12055
|
-
templateName: "
|
|
12157
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12056
12158
|
};
|
|
12057
12159
|
} & {
|
|
12058
12160
|
header: {
|
|
@@ -12065,7 +12167,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12065
12167
|
} | {
|
|
12066
12168
|
input: {
|
|
12067
12169
|
param: {
|
|
12068
|
-
templateName: "
|
|
12170
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12069
12171
|
};
|
|
12070
12172
|
} & {
|
|
12071
12173
|
header: {
|
|
@@ -12073,7 +12175,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12073
12175
|
};
|
|
12074
12176
|
};
|
|
12075
12177
|
output: {
|
|
12076
|
-
template: "
|
|
12178
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12077
12179
|
body: string;
|
|
12078
12180
|
from: string;
|
|
12079
12181
|
subject: string;
|
|
@@ -12092,7 +12194,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12092
12194
|
$put: {
|
|
12093
12195
|
input: {
|
|
12094
12196
|
param: {
|
|
12095
|
-
templateName: "
|
|
12197
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12096
12198
|
};
|
|
12097
12199
|
} & {
|
|
12098
12200
|
header: {
|
|
@@ -12100,7 +12202,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12100
12202
|
};
|
|
12101
12203
|
} & {
|
|
12102
12204
|
json: {
|
|
12103
|
-
template: "
|
|
12205
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12104
12206
|
body: string;
|
|
12105
12207
|
subject: string;
|
|
12106
12208
|
syntax?: "liquid" | undefined;
|
|
@@ -12112,7 +12214,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12112
12214
|
};
|
|
12113
12215
|
};
|
|
12114
12216
|
output: {
|
|
12115
|
-
template: "
|
|
12217
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12116
12218
|
body: string;
|
|
12117
12219
|
from: string;
|
|
12118
12220
|
subject: string;
|
|
@@ -12131,7 +12233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12131
12233
|
$patch: {
|
|
12132
12234
|
input: {
|
|
12133
12235
|
param: {
|
|
12134
|
-
templateName: "
|
|
12236
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12135
12237
|
};
|
|
12136
12238
|
} & {
|
|
12137
12239
|
header: {
|
|
@@ -12139,7 +12241,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12139
12241
|
};
|
|
12140
12242
|
} & {
|
|
12141
12243
|
json: {
|
|
12142
|
-
template?: "
|
|
12244
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12143
12245
|
body?: string | undefined;
|
|
12144
12246
|
from?: string | undefined;
|
|
12145
12247
|
subject?: string | undefined;
|
|
@@ -12156,7 +12258,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12156
12258
|
} | {
|
|
12157
12259
|
input: {
|
|
12158
12260
|
param: {
|
|
12159
|
-
templateName: "
|
|
12261
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12160
12262
|
};
|
|
12161
12263
|
} & {
|
|
12162
12264
|
header: {
|
|
@@ -12164,7 +12266,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12164
12266
|
};
|
|
12165
12267
|
} & {
|
|
12166
12268
|
json: {
|
|
12167
|
-
template?: "
|
|
12269
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12168
12270
|
body?: string | undefined;
|
|
12169
12271
|
from?: string | undefined;
|
|
12170
12272
|
subject?: string | undefined;
|
|
@@ -12176,7 +12278,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12176
12278
|
};
|
|
12177
12279
|
};
|
|
12178
12280
|
output: {
|
|
12179
|
-
template: "
|
|
12281
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12180
12282
|
body: string;
|
|
12181
12283
|
from: string;
|
|
12182
12284
|
subject: string;
|
|
@@ -12195,7 +12297,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12195
12297
|
$delete: {
|
|
12196
12298
|
input: {
|
|
12197
12299
|
param: {
|
|
12198
|
-
templateName: "
|
|
12300
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12199
12301
|
};
|
|
12200
12302
|
} & {
|
|
12201
12303
|
header: {
|
|
@@ -12208,7 +12310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12208
12310
|
} | {
|
|
12209
12311
|
input: {
|
|
12210
12312
|
param: {
|
|
12211
|
-
templateName: "
|
|
12313
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12212
12314
|
};
|
|
12213
12315
|
} & {
|
|
12214
12316
|
header: {
|
|
@@ -12225,7 +12327,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12225
12327
|
$post: {
|
|
12226
12328
|
input: {
|
|
12227
12329
|
param: {
|
|
12228
|
-
templateName: "
|
|
12330
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12229
12331
|
};
|
|
12230
12332
|
} & {
|
|
12231
12333
|
header: {
|
|
@@ -12508,7 +12610,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12508
12610
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12509
12611
|
custom_domain_id: string;
|
|
12510
12612
|
primary: boolean;
|
|
12511
|
-
status: "
|
|
12613
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12512
12614
|
verification_method?: "txt" | undefined;
|
|
12513
12615
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12514
12616
|
domain_metadata?: {
|
|
@@ -12549,7 +12651,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12549
12651
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12550
12652
|
custom_domain_id: string;
|
|
12551
12653
|
primary: boolean;
|
|
12552
|
-
status: "
|
|
12654
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12553
12655
|
verification_method?: "txt" | undefined;
|
|
12554
12656
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12555
12657
|
domain_metadata?: {
|
|
@@ -12613,7 +12715,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12613
12715
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12614
12716
|
custom_domain_id: string;
|
|
12615
12717
|
primary: boolean;
|
|
12616
|
-
status: "
|
|
12718
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12617
12719
|
verification_method?: "txt" | undefined;
|
|
12618
12720
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12619
12721
|
domain_metadata?: {
|
|
@@ -12660,7 +12762,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12660
12762
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12661
12763
|
custom_domain_id: string;
|
|
12662
12764
|
primary: boolean;
|
|
12663
|
-
status: "
|
|
12765
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12664
12766
|
verification_method?: "txt" | undefined;
|
|
12665
12767
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12666
12768
|
domain_metadata?: {
|
|
@@ -12706,7 +12808,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12706
12808
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12707
12809
|
custom_domain_id: string;
|
|
12708
12810
|
primary: boolean;
|
|
12709
|
-
status: "
|
|
12811
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12710
12812
|
verification_method?: "txt" | undefined;
|
|
12711
12813
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12712
12814
|
domain_metadata?: {
|
|
@@ -12747,7 +12849,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12747
12849
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12748
12850
|
custom_domain_id: string;
|
|
12749
12851
|
primary: boolean;
|
|
12750
|
-
status: "
|
|
12852
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12751
12853
|
verification_method?: "txt" | undefined;
|
|
12752
12854
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12753
12855
|
domain_metadata?: {
|
|
@@ -13177,7 +13279,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13177
13279
|
} & {
|
|
13178
13280
|
json: {
|
|
13179
13281
|
body?: string | undefined;
|
|
13180
|
-
screen?: "
|
|
13282
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
13181
13283
|
branding?: {
|
|
13182
13284
|
colors?: {
|
|
13183
13285
|
primary: string;
|
|
@@ -13468,7 +13570,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13468
13570
|
logs: {
|
|
13469
13571
|
action_name: string;
|
|
13470
13572
|
lines: {
|
|
13471
|
-
level: "
|
|
13573
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13472
13574
|
message: string;
|
|
13473
13575
|
}[];
|
|
13474
13576
|
}[];
|
|
@@ -14137,7 +14239,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14137
14239
|
args: import("hono/utils/types").JSONValue[];
|
|
14138
14240
|
}[];
|
|
14139
14241
|
logs: {
|
|
14140
|
-
level: "
|
|
14242
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
14141
14243
|
message: string;
|
|
14142
14244
|
}[];
|
|
14143
14245
|
error?: string | undefined;
|
|
@@ -14448,7 +14550,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14448
14550
|
scope?: string | undefined;
|
|
14449
14551
|
grant_types?: string[] | undefined;
|
|
14450
14552
|
response_types?: string[] | undefined;
|
|
14451
|
-
token_endpoint_auth_method?: "
|
|
14553
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14452
14554
|
jwks_uri?: string | undefined;
|
|
14453
14555
|
jwks?: Record<string, unknown> | undefined;
|
|
14454
14556
|
software_id?: string | undefined;
|
|
@@ -14537,7 +14639,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14537
14639
|
scope?: string | undefined;
|
|
14538
14640
|
grant_types?: string[] | undefined;
|
|
14539
14641
|
response_types?: string[] | undefined;
|
|
14540
|
-
token_endpoint_auth_method?: "
|
|
14642
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14541
14643
|
jwks_uri?: string | undefined;
|
|
14542
14644
|
jwks?: Record<string, unknown> | undefined;
|
|
14543
14645
|
software_id?: string | undefined;
|
|
@@ -14594,7 +14696,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14594
14696
|
client_id: string;
|
|
14595
14697
|
redirect_url?: string | undefined;
|
|
14596
14698
|
login_hint?: string | undefined;
|
|
14597
|
-
screen_hint?: "
|
|
14699
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14598
14700
|
};
|
|
14599
14701
|
};
|
|
14600
14702
|
output: {};
|
|
@@ -14606,7 +14708,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14606
14708
|
client_id: string;
|
|
14607
14709
|
redirect_url?: string | undefined;
|
|
14608
14710
|
login_hint?: string | undefined;
|
|
14609
|
-
screen_hint?: "
|
|
14711
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14610
14712
|
};
|
|
14611
14713
|
};
|
|
14612
14714
|
output: {
|
|
@@ -14683,17 +14785,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14683
14785
|
request_uri?: string | undefined;
|
|
14684
14786
|
};
|
|
14685
14787
|
};
|
|
14686
|
-
output:
|
|
14687
|
-
|
|
14688
|
-
|
|
14689
|
-
expires_in: number;
|
|
14690
|
-
id_token?: string | undefined;
|
|
14691
|
-
scope?: string | undefined;
|
|
14692
|
-
state?: string | undefined;
|
|
14693
|
-
refresh_token?: string | undefined;
|
|
14694
|
-
};
|
|
14695
|
-
outputFormat: "json";
|
|
14696
|
-
status: 200;
|
|
14788
|
+
output: {};
|
|
14789
|
+
outputFormat: string;
|
|
14790
|
+
status: 302;
|
|
14697
14791
|
} | {
|
|
14698
14792
|
input: {
|
|
14699
14793
|
query: {
|
|
@@ -14725,9 +14819,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14725
14819
|
request_uri?: string | undefined;
|
|
14726
14820
|
};
|
|
14727
14821
|
};
|
|
14728
|
-
output: {
|
|
14729
|
-
|
|
14730
|
-
|
|
14822
|
+
output: string | {
|
|
14823
|
+
access_token: string;
|
|
14824
|
+
token_type: string;
|
|
14825
|
+
expires_in: number;
|
|
14826
|
+
id_token?: string | undefined;
|
|
14827
|
+
scope?: string | undefined;
|
|
14828
|
+
state?: string | undefined;
|
|
14829
|
+
refresh_token?: string | undefined;
|
|
14830
|
+
};
|
|
14831
|
+
outputFormat: "json";
|
|
14832
|
+
status: 200;
|
|
14731
14833
|
} | {
|
|
14732
14834
|
input: {
|
|
14733
14835
|
query: {
|
|
@@ -14881,21 +14983,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14881
14983
|
connection: "email";
|
|
14882
14984
|
client_id: string;
|
|
14883
14985
|
email: string;
|
|
14884
|
-
send: "
|
|
14986
|
+
send: "code" | "link";
|
|
14885
14987
|
authParams: {
|
|
14988
|
+
username?: string | undefined;
|
|
14989
|
+
state?: string | undefined;
|
|
14990
|
+
audience?: string | undefined;
|
|
14886
14991
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14887
14992
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14888
14993
|
scope?: string | undefined;
|
|
14889
|
-
|
|
14994
|
+
organization?: string | undefined;
|
|
14890
14995
|
nonce?: string | undefined;
|
|
14891
|
-
state?: string | undefined;
|
|
14892
|
-
audience?: string | undefined;
|
|
14893
|
-
code_challenge?: string | undefined;
|
|
14894
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14895
|
-
redirect_uri?: string | undefined;
|
|
14896
14996
|
act_as?: string | undefined;
|
|
14897
|
-
|
|
14997
|
+
redirect_uri?: string | undefined;
|
|
14898
14998
|
prompt?: string | undefined;
|
|
14999
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15000
|
+
code_challenge?: string | undefined;
|
|
14899
15001
|
ui_locales?: string | undefined;
|
|
14900
15002
|
max_age?: number | undefined;
|
|
14901
15003
|
acr_values?: string | undefined;
|
|
@@ -14917,21 +15019,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14917
15019
|
client_id: string;
|
|
14918
15020
|
connection: "sms";
|
|
14919
15021
|
phone_number: string;
|
|
14920
|
-
send: "
|
|
15022
|
+
send: "code" | "link";
|
|
14921
15023
|
authParams: {
|
|
15024
|
+
username?: string | undefined;
|
|
15025
|
+
state?: string | undefined;
|
|
15026
|
+
audience?: string | undefined;
|
|
14922
15027
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14923
15028
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14924
15029
|
scope?: string | undefined;
|
|
14925
|
-
|
|
15030
|
+
organization?: string | undefined;
|
|
14926
15031
|
nonce?: string | undefined;
|
|
14927
|
-
state?: string | undefined;
|
|
14928
|
-
audience?: string | undefined;
|
|
14929
|
-
code_challenge?: string | undefined;
|
|
14930
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14931
|
-
redirect_uri?: string | undefined;
|
|
14932
15032
|
act_as?: string | undefined;
|
|
14933
|
-
|
|
15033
|
+
redirect_uri?: string | undefined;
|
|
14934
15034
|
prompt?: string | undefined;
|
|
15035
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15036
|
+
code_challenge?: string | undefined;
|
|
14935
15037
|
ui_locales?: string | undefined;
|
|
14936
15038
|
max_age?: number | undefined;
|
|
14937
15039
|
acr_values?: string | undefined;
|
|
@@ -15063,14 +15165,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15063
15165
|
input: {
|
|
15064
15166
|
form: {
|
|
15065
15167
|
token: string;
|
|
15066
|
-
token_type_hint?: "
|
|
15168
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15067
15169
|
client_id?: string | undefined;
|
|
15068
15170
|
client_secret?: string | undefined;
|
|
15069
15171
|
};
|
|
15070
15172
|
} & {
|
|
15071
15173
|
json: {
|
|
15072
15174
|
token: string;
|
|
15073
|
-
token_type_hint?: "
|
|
15175
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15074
15176
|
client_id?: string | undefined;
|
|
15075
15177
|
client_secret?: string | undefined;
|
|
15076
15178
|
};
|
|
@@ -15082,14 +15184,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15082
15184
|
input: {
|
|
15083
15185
|
form: {
|
|
15084
15186
|
token: string;
|
|
15085
|
-
token_type_hint?: "
|
|
15187
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15086
15188
|
client_id?: string | undefined;
|
|
15087
15189
|
client_secret?: string | undefined;
|
|
15088
15190
|
};
|
|
15089
15191
|
} & {
|
|
15090
15192
|
json: {
|
|
15091
15193
|
token: string;
|
|
15092
|
-
token_type_hint?: "
|
|
15194
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15093
15195
|
client_id?: string | undefined;
|
|
15094
15196
|
client_secret?: string | undefined;
|
|
15095
15197
|
};
|
|
@@ -15104,14 +15206,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15104
15206
|
input: {
|
|
15105
15207
|
form: {
|
|
15106
15208
|
token: string;
|
|
15107
|
-
token_type_hint?: "
|
|
15209
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15108
15210
|
client_id?: string | undefined;
|
|
15109
15211
|
client_secret?: string | undefined;
|
|
15110
15212
|
};
|
|
15111
15213
|
} & {
|
|
15112
15214
|
json: {
|
|
15113
15215
|
token: string;
|
|
15114
|
-
token_type_hint?: "
|
|
15216
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15115
15217
|
client_id?: string | undefined;
|
|
15116
15218
|
client_secret?: string | undefined;
|
|
15117
15219
|
};
|
|
@@ -15646,8 +15748,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15646
15748
|
input: {};
|
|
15647
15749
|
output: {
|
|
15648
15750
|
keys: {
|
|
15649
|
-
alg: "
|
|
15650
|
-
kty: "
|
|
15751
|
+
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
15752
|
+
kty: "EC" | "RSA" | "oct";
|
|
15651
15753
|
kid?: string | undefined;
|
|
15652
15754
|
use?: "sig" | "enc" | undefined;
|
|
15653
15755
|
n?: string | undefined;
|
|
@@ -15691,6 +15793,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15691
15793
|
claims_parameter_supported?: boolean | undefined;
|
|
15692
15794
|
request_object_signing_alg_values_supported?: string[] | undefined;
|
|
15693
15795
|
client_id_metadata_document_supported?: boolean | undefined;
|
|
15796
|
+
backchannel_logout_supported?: boolean | undefined;
|
|
15797
|
+
backchannel_logout_session_supported?: boolean | undefined;
|
|
15694
15798
|
};
|
|
15695
15799
|
outputFormat: "json";
|
|
15696
15800
|
status: 200;
|
|
@@ -15724,6 +15828,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15724
15828
|
claims_parameter_supported?: boolean | undefined;
|
|
15725
15829
|
request_object_signing_alg_values_supported?: string[] | undefined;
|
|
15726
15830
|
client_id_metadata_document_supported?: boolean | undefined;
|
|
15831
|
+
backchannel_logout_supported?: boolean | undefined;
|
|
15832
|
+
backchannel_logout_session_supported?: boolean | undefined;
|
|
15727
15833
|
};
|
|
15728
15834
|
outputFormat: "json";
|
|
15729
15835
|
status: 200;
|
|
@@ -15836,7 +15942,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15836
15942
|
};
|
|
15837
15943
|
output: {};
|
|
15838
15944
|
outputFormat: string;
|
|
15839
|
-
status:
|
|
15945
|
+
status: 200;
|
|
15840
15946
|
} | {
|
|
15841
15947
|
input: {
|
|
15842
15948
|
query: {
|
|
@@ -15850,7 +15956,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15850
15956
|
};
|
|
15851
15957
|
output: {};
|
|
15852
15958
|
outputFormat: string;
|
|
15853
|
-
status:
|
|
15959
|
+
status: 302;
|
|
15854
15960
|
} | {
|
|
15855
15961
|
input: {
|
|
15856
15962
|
query: {
|
|
@@ -16459,7 +16565,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16459
16565
|
} & {
|
|
16460
16566
|
form: {
|
|
16461
16567
|
username: string;
|
|
16462
|
-
login_selection?: "
|
|
16568
|
+
login_selection?: "password" | "code" | undefined;
|
|
16463
16569
|
};
|
|
16464
16570
|
};
|
|
16465
16571
|
output: {};
|
|
@@ -16473,7 +16579,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16473
16579
|
} & {
|
|
16474
16580
|
form: {
|
|
16475
16581
|
username: string;
|
|
16476
|
-
login_selection?: "
|
|
16582
|
+
login_selection?: "password" | "code" | undefined;
|
|
16477
16583
|
};
|
|
16478
16584
|
};
|
|
16479
16585
|
output: {};
|
|
@@ -16838,7 +16944,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16838
16944
|
$get: {
|
|
16839
16945
|
input: {
|
|
16840
16946
|
param: {
|
|
16841
|
-
screen: "signup" | "
|
|
16947
|
+
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";
|
|
16842
16948
|
};
|
|
16843
16949
|
} & {
|
|
16844
16950
|
query: {
|
|
@@ -16854,7 +16960,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16854
16960
|
} | {
|
|
16855
16961
|
input: {
|
|
16856
16962
|
param: {
|
|
16857
|
-
screen: "signup" | "
|
|
16963
|
+
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";
|
|
16858
16964
|
};
|
|
16859
16965
|
} & {
|
|
16860
16966
|
query: {
|
|
@@ -16870,7 +16976,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16870
16976
|
} | {
|
|
16871
16977
|
input: {
|
|
16872
16978
|
param: {
|
|
16873
|
-
screen: "signup" | "
|
|
16979
|
+
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";
|
|
16874
16980
|
};
|
|
16875
16981
|
} & {
|
|
16876
16982
|
query: {
|
|
@@ -16890,7 +16996,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16890
16996
|
$post: {
|
|
16891
16997
|
input: {
|
|
16892
16998
|
param: {
|
|
16893
|
-
screen: "signup" | "
|
|
16999
|
+
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";
|
|
16894
17000
|
};
|
|
16895
17001
|
} & {
|
|
16896
17002
|
query: {
|
|
@@ -16908,7 +17014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16908
17014
|
} | {
|
|
16909
17015
|
input: {
|
|
16910
17016
|
param: {
|
|
16911
|
-
screen: "signup" | "
|
|
17017
|
+
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";
|
|
16912
17018
|
};
|
|
16913
17019
|
} & {
|
|
16914
17020
|
query: {
|