authhero 9.0.0 → 9.1.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/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/{p-f6babd26.entry.js → p-c179b5da.entry.js} +1 -1
- package/dist/assets/u/widget/{p-52a70476.entry.js → p-cdfc4555.entry.js} +1 -1
- package/dist/authhero.cjs +211 -208
- package/dist/authhero.d.ts +232 -197
- package/dist/authhero.mjs +26152 -24944
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +6 -0
- package/dist/types/authentication-flows/passwordless.d.ts +3 -2
- package/dist/types/constants.d.ts +2 -0
- package/dist/types/generated/locale-types.d.ts +2 -0
- package/dist/types/helpers/client.d.ts +2 -2
- package/dist/types/helpers/revoke-user-sessions.d.ts +15 -0
- package/dist/types/helpers/scim/default-mapping.d.ts +10 -0
- package/dist/types/helpers/scim/discovery.d.ts +49 -0
- package/dist/types/helpers/scim/filter.d.ts +58 -0
- package/dist/types/helpers/scim/mint-token.d.ts +11 -0
- package/dist/types/helpers/scim/patch.d.ts +23 -0
- package/dist/types/helpers/scim/responses.d.ts +36 -0
- package/dist/types/helpers/scim/user-mapping.d.ts +76 -0
- package/dist/types/helpers/service-token.d.ts +16 -5
- package/dist/types/helpers/users.d.ts +73 -1
- package/dist/types/hooks/post-user-login.d.ts +6 -0
- package/dist/types/hooks/user-registration.d.ts +1 -0
- package/dist/types/index.d.ts +224 -195
- package/dist/types/middlewares/scim-auth.d.ts +19 -0
- package/dist/types/routes/auth-api/index.d.ts +8 -8
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +14 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +207 -182
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +5 -5
- package/dist/types/routes/management-api/prompts.d.ts +6 -4
- package/dist/types/routes/management-api/scim.d.ts +187 -0
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users-by-email.d.ts +1 -0
- package/dist/types/routes/management-api/users.d.ts +10 -2
- package/dist/types/routes/scim/index.d.ts +6 -0
- package/dist/types/routes/universal-login/common.d.ts +1 -0
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/screens/types.d.ts +9 -0
- 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/AuthError.d.ts +1 -1
- package/dist/types/utils/cookies.d.ts +11 -0
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -78,8 +78,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
78
78
|
$get: {
|
|
79
79
|
input: {
|
|
80
80
|
query: {
|
|
81
|
-
include_password_hashes?: "
|
|
82
|
-
gzip?: "
|
|
81
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
82
|
+
gzip?: "false" | "true" | undefined;
|
|
83
83
|
};
|
|
84
84
|
} & {
|
|
85
85
|
header: {
|
|
@@ -92,8 +92,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
92
92
|
} | {
|
|
93
93
|
input: {
|
|
94
94
|
query: {
|
|
95
|
-
include_password_hashes?: "
|
|
96
|
-
gzip?: "
|
|
95
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
96
|
+
gzip?: "false" | "true" | undefined;
|
|
97
97
|
};
|
|
98
98
|
} & {
|
|
99
99
|
header: {
|
|
@@ -112,7 +112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
112
112
|
$post: {
|
|
113
113
|
input: {
|
|
114
114
|
query: {
|
|
115
|
-
include_password_hashes?: "
|
|
115
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
116
116
|
};
|
|
117
117
|
} & {
|
|
118
118
|
header: {
|
|
@@ -166,7 +166,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
166
166
|
};
|
|
167
167
|
} & {
|
|
168
168
|
json: {
|
|
169
|
-
type: "email" | "
|
|
169
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
170
170
|
phone_number?: string | undefined;
|
|
171
171
|
totp_secret?: string | undefined;
|
|
172
172
|
credential_id?: string | undefined;
|
|
@@ -306,7 +306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
306
306
|
};
|
|
307
307
|
};
|
|
308
308
|
output: {
|
|
309
|
-
name: "email" | "
|
|
309
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
310
310
|
enabled: boolean;
|
|
311
311
|
trial_expired?: boolean | undefined;
|
|
312
312
|
}[];
|
|
@@ -461,7 +461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
461
461
|
$get: {
|
|
462
462
|
input: {
|
|
463
463
|
param: {
|
|
464
|
-
factor_name: "email" | "
|
|
464
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
465
465
|
};
|
|
466
466
|
} & {
|
|
467
467
|
header: {
|
|
@@ -469,7 +469,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
469
469
|
};
|
|
470
470
|
};
|
|
471
471
|
output: {
|
|
472
|
-
name: "email" | "
|
|
472
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
473
473
|
enabled: boolean;
|
|
474
474
|
trial_expired?: boolean | undefined;
|
|
475
475
|
};
|
|
@@ -482,7 +482,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
482
482
|
$put: {
|
|
483
483
|
input: {
|
|
484
484
|
param: {
|
|
485
|
-
factor_name: "email" | "
|
|
485
|
+
factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
486
486
|
};
|
|
487
487
|
} & {
|
|
488
488
|
header: {
|
|
@@ -494,7 +494,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
494
494
|
};
|
|
495
495
|
};
|
|
496
496
|
output: {
|
|
497
|
-
name: "email" | "
|
|
497
|
+
name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
498
498
|
enabled: boolean;
|
|
499
499
|
trial_expired?: boolean | undefined;
|
|
500
500
|
};
|
|
@@ -1266,19 +1266,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1266
1266
|
} & {
|
|
1267
1267
|
json: {
|
|
1268
1268
|
client_id: string;
|
|
1269
|
-
invitee: {
|
|
1270
|
-
email?: string | undefined;
|
|
1271
|
-
};
|
|
1272
1269
|
inviter: {
|
|
1273
1270
|
name?: string | undefined;
|
|
1274
1271
|
};
|
|
1275
|
-
|
|
1272
|
+
invitee: {
|
|
1273
|
+
email?: string | undefined;
|
|
1274
|
+
};
|
|
1276
1275
|
app_metadata?: Record<string, any> | undefined;
|
|
1277
1276
|
user_metadata?: Record<string, any> | undefined;
|
|
1277
|
+
id?: string | undefined;
|
|
1278
1278
|
connection_id?: string | undefined;
|
|
1279
1279
|
roles?: string[] | undefined;
|
|
1280
|
-
send_invitation_email?: boolean | undefined;
|
|
1281
1280
|
ttl_sec?: number | undefined;
|
|
1281
|
+
send_invitation_email?: boolean | undefined;
|
|
1282
1282
|
};
|
|
1283
1283
|
};
|
|
1284
1284
|
output: {
|
|
@@ -2758,7 +2758,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2758
2758
|
hint?: string | undefined;
|
|
2759
2759
|
messages?: {
|
|
2760
2760
|
text: string;
|
|
2761
|
-
type: "
|
|
2761
|
+
type: "success" | "error" | "info" | "warning";
|
|
2762
2762
|
id?: number | undefined;
|
|
2763
2763
|
}[] | undefined;
|
|
2764
2764
|
required?: boolean | undefined;
|
|
@@ -2776,7 +2776,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2776
2776
|
hint?: string | undefined;
|
|
2777
2777
|
messages?: {
|
|
2778
2778
|
text: string;
|
|
2779
|
-
type: "
|
|
2779
|
+
type: "success" | "error" | "info" | "warning";
|
|
2780
2780
|
id?: number | undefined;
|
|
2781
2781
|
}[] | undefined;
|
|
2782
2782
|
required?: boolean | undefined;
|
|
@@ -2800,7 +2800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2800
2800
|
hint?: string | undefined;
|
|
2801
2801
|
messages?: {
|
|
2802
2802
|
text: string;
|
|
2803
|
-
type: "
|
|
2803
|
+
type: "success" | "error" | "info" | "warning";
|
|
2804
2804
|
id?: number | undefined;
|
|
2805
2805
|
}[] | undefined;
|
|
2806
2806
|
required?: boolean | undefined;
|
|
@@ -2824,7 +2824,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2824
2824
|
hint?: string | undefined;
|
|
2825
2825
|
messages?: {
|
|
2826
2826
|
text: string;
|
|
2827
|
-
type: "
|
|
2827
|
+
type: "success" | "error" | "info" | "warning";
|
|
2828
2828
|
id?: number | undefined;
|
|
2829
2829
|
}[] | undefined;
|
|
2830
2830
|
required?: boolean | undefined;
|
|
@@ -2848,7 +2848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2848
2848
|
hint?: string | undefined;
|
|
2849
2849
|
messages?: {
|
|
2850
2850
|
text: string;
|
|
2851
|
-
type: "
|
|
2851
|
+
type: "success" | "error" | "info" | "warning";
|
|
2852
2852
|
id?: number | undefined;
|
|
2853
2853
|
}[] | undefined;
|
|
2854
2854
|
required?: boolean | undefined;
|
|
@@ -2877,7 +2877,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2877
2877
|
hint?: string | undefined;
|
|
2878
2878
|
messages?: {
|
|
2879
2879
|
text: string;
|
|
2880
|
-
type: "
|
|
2880
|
+
type: "success" | "error" | "info" | "warning";
|
|
2881
2881
|
id?: number | undefined;
|
|
2882
2882
|
}[] | undefined;
|
|
2883
2883
|
required?: boolean | undefined;
|
|
@@ -2892,7 +2892,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2892
2892
|
hint?: string | undefined;
|
|
2893
2893
|
messages?: {
|
|
2894
2894
|
text: string;
|
|
2895
|
-
type: "
|
|
2895
|
+
type: "success" | "error" | "info" | "warning";
|
|
2896
2896
|
id?: number | undefined;
|
|
2897
2897
|
}[] | undefined;
|
|
2898
2898
|
required?: boolean | undefined;
|
|
@@ -2913,7 +2913,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2913
2913
|
hint?: string | undefined;
|
|
2914
2914
|
messages?: {
|
|
2915
2915
|
text: string;
|
|
2916
|
-
type: "
|
|
2916
|
+
type: "success" | "error" | "info" | "warning";
|
|
2917
2917
|
id?: number | undefined;
|
|
2918
2918
|
}[] | undefined;
|
|
2919
2919
|
required?: boolean | undefined;
|
|
@@ -2938,7 +2938,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2938
2938
|
hint?: string | undefined;
|
|
2939
2939
|
messages?: {
|
|
2940
2940
|
text: string;
|
|
2941
|
-
type: "
|
|
2941
|
+
type: "success" | "error" | "info" | "warning";
|
|
2942
2942
|
id?: number | undefined;
|
|
2943
2943
|
}[] | undefined;
|
|
2944
2944
|
required?: boolean | undefined;
|
|
@@ -2957,7 +2957,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2957
2957
|
hint?: string | undefined;
|
|
2958
2958
|
messages?: {
|
|
2959
2959
|
text: string;
|
|
2960
|
-
type: "
|
|
2960
|
+
type: "success" | "error" | "info" | "warning";
|
|
2961
2961
|
id?: number | undefined;
|
|
2962
2962
|
}[] | undefined;
|
|
2963
2963
|
required?: boolean | undefined;
|
|
@@ -2977,7 +2977,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2977
2977
|
hint?: string | undefined;
|
|
2978
2978
|
messages?: {
|
|
2979
2979
|
text: string;
|
|
2980
|
-
type: "
|
|
2980
|
+
type: "success" | "error" | "info" | "warning";
|
|
2981
2981
|
id?: number | undefined;
|
|
2982
2982
|
}[] | undefined;
|
|
2983
2983
|
required?: boolean | undefined;
|
|
@@ -2996,7 +2996,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2996
2996
|
hint?: string | undefined;
|
|
2997
2997
|
messages?: {
|
|
2998
2998
|
text: string;
|
|
2999
|
-
type: "
|
|
2999
|
+
type: "success" | "error" | "info" | "warning";
|
|
3000
3000
|
id?: number | undefined;
|
|
3001
3001
|
}[] | undefined;
|
|
3002
3002
|
required?: boolean | undefined;
|
|
@@ -3018,7 +3018,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3018
3018
|
hint?: string | undefined;
|
|
3019
3019
|
messages?: {
|
|
3020
3020
|
text: string;
|
|
3021
|
-
type: "
|
|
3021
|
+
type: "success" | "error" | "info" | "warning";
|
|
3022
3022
|
id?: number | undefined;
|
|
3023
3023
|
}[] | undefined;
|
|
3024
3024
|
required?: boolean | undefined;
|
|
@@ -3040,7 +3040,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3040
3040
|
hint?: string | undefined;
|
|
3041
3041
|
messages?: {
|
|
3042
3042
|
text: string;
|
|
3043
|
-
type: "
|
|
3043
|
+
type: "success" | "error" | "info" | "warning";
|
|
3044
3044
|
id?: number | undefined;
|
|
3045
3045
|
}[] | undefined;
|
|
3046
3046
|
required?: boolean | undefined;
|
|
@@ -3059,7 +3059,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3059
3059
|
hint?: string | undefined;
|
|
3060
3060
|
messages?: {
|
|
3061
3061
|
text: string;
|
|
3062
|
-
type: "
|
|
3062
|
+
type: "success" | "error" | "info" | "warning";
|
|
3063
3063
|
id?: number | undefined;
|
|
3064
3064
|
}[] | undefined;
|
|
3065
3065
|
required?: boolean | undefined;
|
|
@@ -3072,6 +3072,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3072
3072
|
display_name?: string | undefined;
|
|
3073
3073
|
icon_url?: string | undefined;
|
|
3074
3074
|
href?: string | undefined;
|
|
3075
|
+
last_used?: boolean | undefined;
|
|
3076
|
+
last_used_label?: string | undefined;
|
|
3075
3077
|
}[] | undefined;
|
|
3076
3078
|
} | undefined;
|
|
3077
3079
|
} | {
|
|
@@ -3084,7 +3086,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3084
3086
|
hint?: string | undefined;
|
|
3085
3087
|
messages?: {
|
|
3086
3088
|
text: string;
|
|
3087
|
-
type: "
|
|
3089
|
+
type: "success" | "error" | "info" | "warning";
|
|
3088
3090
|
id?: number | undefined;
|
|
3089
3091
|
}[] | undefined;
|
|
3090
3092
|
required?: boolean | undefined;
|
|
@@ -3105,7 +3107,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3105
3107
|
hint?: string | undefined;
|
|
3106
3108
|
messages?: {
|
|
3107
3109
|
text: string;
|
|
3108
|
-
type: "
|
|
3110
|
+
type: "success" | "error" | "info" | "warning";
|
|
3109
3111
|
id?: number | undefined;
|
|
3110
3112
|
}[] | undefined;
|
|
3111
3113
|
required?: boolean | undefined;
|
|
@@ -3126,7 +3128,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3126
3128
|
hint?: string | undefined;
|
|
3127
3129
|
messages?: {
|
|
3128
3130
|
text: string;
|
|
3129
|
-
type: "
|
|
3131
|
+
type: "success" | "error" | "info" | "warning";
|
|
3130
3132
|
id?: number | undefined;
|
|
3131
3133
|
}[] | undefined;
|
|
3132
3134
|
required?: boolean | undefined;
|
|
@@ -3359,7 +3361,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3359
3361
|
hint?: string | undefined;
|
|
3360
3362
|
messages?: {
|
|
3361
3363
|
text: string;
|
|
3362
|
-
type: "
|
|
3364
|
+
type: "success" | "error" | "info" | "warning";
|
|
3363
3365
|
id?: number | undefined;
|
|
3364
3366
|
}[] | undefined;
|
|
3365
3367
|
required?: boolean | undefined;
|
|
@@ -3377,7 +3379,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3377
3379
|
hint?: string | undefined;
|
|
3378
3380
|
messages?: {
|
|
3379
3381
|
text: string;
|
|
3380
|
-
type: "
|
|
3382
|
+
type: "success" | "error" | "info" | "warning";
|
|
3381
3383
|
id?: number | undefined;
|
|
3382
3384
|
}[] | undefined;
|
|
3383
3385
|
required?: boolean | undefined;
|
|
@@ -3401,7 +3403,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3401
3403
|
hint?: string | undefined;
|
|
3402
3404
|
messages?: {
|
|
3403
3405
|
text: string;
|
|
3404
|
-
type: "
|
|
3406
|
+
type: "success" | "error" | "info" | "warning";
|
|
3405
3407
|
id?: number | undefined;
|
|
3406
3408
|
}[] | undefined;
|
|
3407
3409
|
required?: boolean | undefined;
|
|
@@ -3425,7 +3427,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3425
3427
|
hint?: string | undefined;
|
|
3426
3428
|
messages?: {
|
|
3427
3429
|
text: string;
|
|
3428
|
-
type: "
|
|
3430
|
+
type: "success" | "error" | "info" | "warning";
|
|
3429
3431
|
id?: number | undefined;
|
|
3430
3432
|
}[] | undefined;
|
|
3431
3433
|
required?: boolean | undefined;
|
|
@@ -3449,7 +3451,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3449
3451
|
hint?: string | undefined;
|
|
3450
3452
|
messages?: {
|
|
3451
3453
|
text: string;
|
|
3452
|
-
type: "
|
|
3454
|
+
type: "success" | "error" | "info" | "warning";
|
|
3453
3455
|
id?: number | undefined;
|
|
3454
3456
|
}[] | undefined;
|
|
3455
3457
|
required?: boolean | undefined;
|
|
@@ -3478,7 +3480,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3478
3480
|
hint?: string | undefined;
|
|
3479
3481
|
messages?: {
|
|
3480
3482
|
text: string;
|
|
3481
|
-
type: "
|
|
3483
|
+
type: "success" | "error" | "info" | "warning";
|
|
3482
3484
|
id?: number | undefined;
|
|
3483
3485
|
}[] | undefined;
|
|
3484
3486
|
required?: boolean | undefined;
|
|
@@ -3493,7 +3495,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3493
3495
|
hint?: string | undefined;
|
|
3494
3496
|
messages?: {
|
|
3495
3497
|
text: string;
|
|
3496
|
-
type: "
|
|
3498
|
+
type: "success" | "error" | "info" | "warning";
|
|
3497
3499
|
id?: number | undefined;
|
|
3498
3500
|
}[] | undefined;
|
|
3499
3501
|
required?: boolean | undefined;
|
|
@@ -3514,7 +3516,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3514
3516
|
hint?: string | undefined;
|
|
3515
3517
|
messages?: {
|
|
3516
3518
|
text: string;
|
|
3517
|
-
type: "
|
|
3519
|
+
type: "success" | "error" | "info" | "warning";
|
|
3518
3520
|
id?: number | undefined;
|
|
3519
3521
|
}[] | undefined;
|
|
3520
3522
|
required?: boolean | undefined;
|
|
@@ -3539,7 +3541,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3539
3541
|
hint?: string | undefined;
|
|
3540
3542
|
messages?: {
|
|
3541
3543
|
text: string;
|
|
3542
|
-
type: "
|
|
3544
|
+
type: "success" | "error" | "info" | "warning";
|
|
3543
3545
|
id?: number | undefined;
|
|
3544
3546
|
}[] | undefined;
|
|
3545
3547
|
required?: boolean | undefined;
|
|
@@ -3558,7 +3560,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3558
3560
|
hint?: string | undefined;
|
|
3559
3561
|
messages?: {
|
|
3560
3562
|
text: string;
|
|
3561
|
-
type: "
|
|
3563
|
+
type: "success" | "error" | "info" | "warning";
|
|
3562
3564
|
id?: number | undefined;
|
|
3563
3565
|
}[] | undefined;
|
|
3564
3566
|
required?: boolean | undefined;
|
|
@@ -3578,7 +3580,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3578
3580
|
hint?: string | undefined;
|
|
3579
3581
|
messages?: {
|
|
3580
3582
|
text: string;
|
|
3581
|
-
type: "
|
|
3583
|
+
type: "success" | "error" | "info" | "warning";
|
|
3582
3584
|
id?: number | undefined;
|
|
3583
3585
|
}[] | undefined;
|
|
3584
3586
|
required?: boolean | undefined;
|
|
@@ -3597,7 +3599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3597
3599
|
hint?: string | undefined;
|
|
3598
3600
|
messages?: {
|
|
3599
3601
|
text: string;
|
|
3600
|
-
type: "
|
|
3602
|
+
type: "success" | "error" | "info" | "warning";
|
|
3601
3603
|
id?: number | undefined;
|
|
3602
3604
|
}[] | undefined;
|
|
3603
3605
|
required?: boolean | undefined;
|
|
@@ -3619,7 +3621,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3619
3621
|
hint?: string | undefined;
|
|
3620
3622
|
messages?: {
|
|
3621
3623
|
text: string;
|
|
3622
|
-
type: "
|
|
3624
|
+
type: "success" | "error" | "info" | "warning";
|
|
3623
3625
|
id?: number | undefined;
|
|
3624
3626
|
}[] | undefined;
|
|
3625
3627
|
required?: boolean | undefined;
|
|
@@ -3641,7 +3643,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3641
3643
|
hint?: string | undefined;
|
|
3642
3644
|
messages?: {
|
|
3643
3645
|
text: string;
|
|
3644
|
-
type: "
|
|
3646
|
+
type: "success" | "error" | "info" | "warning";
|
|
3645
3647
|
id?: number | undefined;
|
|
3646
3648
|
}[] | undefined;
|
|
3647
3649
|
required?: boolean | undefined;
|
|
@@ -3660,7 +3662,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3660
3662
|
hint?: string | undefined;
|
|
3661
3663
|
messages?: {
|
|
3662
3664
|
text: string;
|
|
3663
|
-
type: "
|
|
3665
|
+
type: "success" | "error" | "info" | "warning";
|
|
3664
3666
|
id?: number | undefined;
|
|
3665
3667
|
}[] | undefined;
|
|
3666
3668
|
required?: boolean | undefined;
|
|
@@ -3673,6 +3675,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3673
3675
|
display_name?: string | undefined;
|
|
3674
3676
|
icon_url?: string | undefined;
|
|
3675
3677
|
href?: string | undefined;
|
|
3678
|
+
last_used?: boolean | undefined;
|
|
3679
|
+
last_used_label?: string | undefined;
|
|
3676
3680
|
}[] | undefined;
|
|
3677
3681
|
} | undefined;
|
|
3678
3682
|
} | {
|
|
@@ -3685,7 +3689,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3685
3689
|
hint?: string | undefined;
|
|
3686
3690
|
messages?: {
|
|
3687
3691
|
text: string;
|
|
3688
|
-
type: "
|
|
3692
|
+
type: "success" | "error" | "info" | "warning";
|
|
3689
3693
|
id?: number | undefined;
|
|
3690
3694
|
}[] | undefined;
|
|
3691
3695
|
required?: boolean | undefined;
|
|
@@ -3706,7 +3710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3706
3710
|
hint?: string | undefined;
|
|
3707
3711
|
messages?: {
|
|
3708
3712
|
text: string;
|
|
3709
|
-
type: "
|
|
3713
|
+
type: "success" | "error" | "info" | "warning";
|
|
3710
3714
|
id?: number | undefined;
|
|
3711
3715
|
}[] | undefined;
|
|
3712
3716
|
required?: boolean | undefined;
|
|
@@ -3727,7 +3731,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3727
3731
|
hint?: string | undefined;
|
|
3728
3732
|
messages?: {
|
|
3729
3733
|
text: string;
|
|
3730
|
-
type: "
|
|
3734
|
+
type: "success" | "error" | "info" | "warning";
|
|
3731
3735
|
id?: number | undefined;
|
|
3732
3736
|
}[] | undefined;
|
|
3733
3737
|
required?: boolean | undefined;
|
|
@@ -3976,7 +3980,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3976
3980
|
hint?: string | undefined;
|
|
3977
3981
|
messages?: {
|
|
3978
3982
|
text: string;
|
|
3979
|
-
type: "
|
|
3983
|
+
type: "success" | "error" | "info" | "warning";
|
|
3980
3984
|
id?: number | undefined;
|
|
3981
3985
|
}[] | undefined;
|
|
3982
3986
|
required?: boolean | undefined;
|
|
@@ -3994,7 +3998,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3994
3998
|
hint?: string | undefined;
|
|
3995
3999
|
messages?: {
|
|
3996
4000
|
text: string;
|
|
3997
|
-
type: "
|
|
4001
|
+
type: "success" | "error" | "info" | "warning";
|
|
3998
4002
|
id?: number | undefined;
|
|
3999
4003
|
}[] | undefined;
|
|
4000
4004
|
required?: boolean | undefined;
|
|
@@ -4018,7 +4022,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4018
4022
|
hint?: string | undefined;
|
|
4019
4023
|
messages?: {
|
|
4020
4024
|
text: string;
|
|
4021
|
-
type: "
|
|
4025
|
+
type: "success" | "error" | "info" | "warning";
|
|
4022
4026
|
id?: number | undefined;
|
|
4023
4027
|
}[] | undefined;
|
|
4024
4028
|
required?: boolean | undefined;
|
|
@@ -4042,7 +4046,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4042
4046
|
hint?: string | undefined;
|
|
4043
4047
|
messages?: {
|
|
4044
4048
|
text: string;
|
|
4045
|
-
type: "
|
|
4049
|
+
type: "success" | "error" | "info" | "warning";
|
|
4046
4050
|
id?: number | undefined;
|
|
4047
4051
|
}[] | undefined;
|
|
4048
4052
|
required?: boolean | undefined;
|
|
@@ -4066,7 +4070,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4066
4070
|
hint?: string | undefined;
|
|
4067
4071
|
messages?: {
|
|
4068
4072
|
text: string;
|
|
4069
|
-
type: "
|
|
4073
|
+
type: "success" | "error" | "info" | "warning";
|
|
4070
4074
|
id?: number | undefined;
|
|
4071
4075
|
}[] | undefined;
|
|
4072
4076
|
required?: boolean | undefined;
|
|
@@ -4095,7 +4099,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4095
4099
|
hint?: string | undefined;
|
|
4096
4100
|
messages?: {
|
|
4097
4101
|
text: string;
|
|
4098
|
-
type: "
|
|
4102
|
+
type: "success" | "error" | "info" | "warning";
|
|
4099
4103
|
id?: number | undefined;
|
|
4100
4104
|
}[] | undefined;
|
|
4101
4105
|
required?: boolean | undefined;
|
|
@@ -4110,7 +4114,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4110
4114
|
hint?: string | undefined;
|
|
4111
4115
|
messages?: {
|
|
4112
4116
|
text: string;
|
|
4113
|
-
type: "
|
|
4117
|
+
type: "success" | "error" | "info" | "warning";
|
|
4114
4118
|
id?: number | undefined;
|
|
4115
4119
|
}[] | undefined;
|
|
4116
4120
|
required?: boolean | undefined;
|
|
@@ -4131,7 +4135,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4131
4135
|
hint?: string | undefined;
|
|
4132
4136
|
messages?: {
|
|
4133
4137
|
text: string;
|
|
4134
|
-
type: "
|
|
4138
|
+
type: "success" | "error" | "info" | "warning";
|
|
4135
4139
|
id?: number | undefined;
|
|
4136
4140
|
}[] | undefined;
|
|
4137
4141
|
required?: boolean | undefined;
|
|
@@ -4156,7 +4160,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4156
4160
|
hint?: string | undefined;
|
|
4157
4161
|
messages?: {
|
|
4158
4162
|
text: string;
|
|
4159
|
-
type: "
|
|
4163
|
+
type: "success" | "error" | "info" | "warning";
|
|
4160
4164
|
id?: number | undefined;
|
|
4161
4165
|
}[] | undefined;
|
|
4162
4166
|
required?: boolean | undefined;
|
|
@@ -4175,7 +4179,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4175
4179
|
hint?: string | undefined;
|
|
4176
4180
|
messages?: {
|
|
4177
4181
|
text: string;
|
|
4178
|
-
type: "
|
|
4182
|
+
type: "success" | "error" | "info" | "warning";
|
|
4179
4183
|
id?: number | undefined;
|
|
4180
4184
|
}[] | undefined;
|
|
4181
4185
|
required?: boolean | undefined;
|
|
@@ -4195,7 +4199,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4195
4199
|
hint?: string | undefined;
|
|
4196
4200
|
messages?: {
|
|
4197
4201
|
text: string;
|
|
4198
|
-
type: "
|
|
4202
|
+
type: "success" | "error" | "info" | "warning";
|
|
4199
4203
|
id?: number | undefined;
|
|
4200
4204
|
}[] | undefined;
|
|
4201
4205
|
required?: boolean | undefined;
|
|
@@ -4214,7 +4218,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4214
4218
|
hint?: string | undefined;
|
|
4215
4219
|
messages?: {
|
|
4216
4220
|
text: string;
|
|
4217
|
-
type: "
|
|
4221
|
+
type: "success" | "error" | "info" | "warning";
|
|
4218
4222
|
id?: number | undefined;
|
|
4219
4223
|
}[] | undefined;
|
|
4220
4224
|
required?: boolean | undefined;
|
|
@@ -4236,7 +4240,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4236
4240
|
hint?: string | undefined;
|
|
4237
4241
|
messages?: {
|
|
4238
4242
|
text: string;
|
|
4239
|
-
type: "
|
|
4243
|
+
type: "success" | "error" | "info" | "warning";
|
|
4240
4244
|
id?: number | undefined;
|
|
4241
4245
|
}[] | undefined;
|
|
4242
4246
|
required?: boolean | undefined;
|
|
@@ -4258,7 +4262,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4258
4262
|
hint?: string | undefined;
|
|
4259
4263
|
messages?: {
|
|
4260
4264
|
text: string;
|
|
4261
|
-
type: "
|
|
4265
|
+
type: "success" | "error" | "info" | "warning";
|
|
4262
4266
|
id?: number | undefined;
|
|
4263
4267
|
}[] | undefined;
|
|
4264
4268
|
required?: boolean | undefined;
|
|
@@ -4277,7 +4281,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4277
4281
|
hint?: string | undefined;
|
|
4278
4282
|
messages?: {
|
|
4279
4283
|
text: string;
|
|
4280
|
-
type: "
|
|
4284
|
+
type: "success" | "error" | "info" | "warning";
|
|
4281
4285
|
id?: number | undefined;
|
|
4282
4286
|
}[] | undefined;
|
|
4283
4287
|
required?: boolean | undefined;
|
|
@@ -4290,6 +4294,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4290
4294
|
display_name?: string | undefined;
|
|
4291
4295
|
icon_url?: string | undefined;
|
|
4292
4296
|
href?: string | undefined;
|
|
4297
|
+
last_used?: boolean | undefined;
|
|
4298
|
+
last_used_label?: string | undefined;
|
|
4293
4299
|
}[] | undefined;
|
|
4294
4300
|
} | undefined;
|
|
4295
4301
|
} | {
|
|
@@ -4302,7 +4308,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4302
4308
|
hint?: string | undefined;
|
|
4303
4309
|
messages?: {
|
|
4304
4310
|
text: string;
|
|
4305
|
-
type: "
|
|
4311
|
+
type: "success" | "error" | "info" | "warning";
|
|
4306
4312
|
id?: number | undefined;
|
|
4307
4313
|
}[] | undefined;
|
|
4308
4314
|
required?: boolean | undefined;
|
|
@@ -4323,7 +4329,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4323
4329
|
hint?: string | undefined;
|
|
4324
4330
|
messages?: {
|
|
4325
4331
|
text: string;
|
|
4326
|
-
type: "
|
|
4332
|
+
type: "success" | "error" | "info" | "warning";
|
|
4327
4333
|
id?: number | undefined;
|
|
4328
4334
|
}[] | undefined;
|
|
4329
4335
|
required?: boolean | undefined;
|
|
@@ -4344,7 +4350,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4344
4350
|
hint?: string | undefined;
|
|
4345
4351
|
messages?: {
|
|
4346
4352
|
text: string;
|
|
4347
|
-
type: "
|
|
4353
|
+
type: "success" | "error" | "info" | "warning";
|
|
4348
4354
|
id?: number | undefined;
|
|
4349
4355
|
}[] | undefined;
|
|
4350
4356
|
required?: boolean | undefined;
|
|
@@ -4598,7 +4604,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4598
4604
|
hint?: string | undefined;
|
|
4599
4605
|
messages?: {
|
|
4600
4606
|
text: string;
|
|
4601
|
-
type: "
|
|
4607
|
+
type: "success" | "error" | "info" | "warning";
|
|
4602
4608
|
id?: number | undefined;
|
|
4603
4609
|
}[] | undefined;
|
|
4604
4610
|
required?: boolean | undefined;
|
|
@@ -4616,7 +4622,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4616
4622
|
hint?: string | undefined;
|
|
4617
4623
|
messages?: {
|
|
4618
4624
|
text: string;
|
|
4619
|
-
type: "
|
|
4625
|
+
type: "success" | "error" | "info" | "warning";
|
|
4620
4626
|
id?: number | undefined;
|
|
4621
4627
|
}[] | undefined;
|
|
4622
4628
|
required?: boolean | undefined;
|
|
@@ -4640,7 +4646,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4640
4646
|
hint?: string | undefined;
|
|
4641
4647
|
messages?: {
|
|
4642
4648
|
text: string;
|
|
4643
|
-
type: "
|
|
4649
|
+
type: "success" | "error" | "info" | "warning";
|
|
4644
4650
|
id?: number | undefined;
|
|
4645
4651
|
}[] | undefined;
|
|
4646
4652
|
required?: boolean | undefined;
|
|
@@ -4664,7 +4670,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4664
4670
|
hint?: string | undefined;
|
|
4665
4671
|
messages?: {
|
|
4666
4672
|
text: string;
|
|
4667
|
-
type: "
|
|
4673
|
+
type: "success" | "error" | "info" | "warning";
|
|
4668
4674
|
id?: number | undefined;
|
|
4669
4675
|
}[] | undefined;
|
|
4670
4676
|
required?: boolean | undefined;
|
|
@@ -4688,7 +4694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4688
4694
|
hint?: string | undefined;
|
|
4689
4695
|
messages?: {
|
|
4690
4696
|
text: string;
|
|
4691
|
-
type: "
|
|
4697
|
+
type: "success" | "error" | "info" | "warning";
|
|
4692
4698
|
id?: number | undefined;
|
|
4693
4699
|
}[] | undefined;
|
|
4694
4700
|
required?: boolean | undefined;
|
|
@@ -4713,7 +4719,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4713
4719
|
hint?: string | undefined;
|
|
4714
4720
|
messages?: {
|
|
4715
4721
|
text: string;
|
|
4716
|
-
type: "
|
|
4722
|
+
type: "success" | "error" | "info" | "warning";
|
|
4717
4723
|
id?: number | undefined;
|
|
4718
4724
|
}[] | undefined;
|
|
4719
4725
|
required?: boolean | undefined;
|
|
@@ -4728,7 +4734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4728
4734
|
hint?: string | undefined;
|
|
4729
4735
|
messages?: {
|
|
4730
4736
|
text: string;
|
|
4731
|
-
type: "
|
|
4737
|
+
type: "success" | "error" | "info" | "warning";
|
|
4732
4738
|
id?: number | undefined;
|
|
4733
4739
|
}[] | undefined;
|
|
4734
4740
|
required?: boolean | undefined;
|
|
@@ -4749,7 +4755,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4749
4755
|
hint?: string | undefined;
|
|
4750
4756
|
messages?: {
|
|
4751
4757
|
text: string;
|
|
4752
|
-
type: "
|
|
4758
|
+
type: "success" | "error" | "info" | "warning";
|
|
4753
4759
|
id?: number | undefined;
|
|
4754
4760
|
}[] | undefined;
|
|
4755
4761
|
required?: boolean | undefined;
|
|
@@ -4774,7 +4780,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4774
4780
|
hint?: string | undefined;
|
|
4775
4781
|
messages?: {
|
|
4776
4782
|
text: string;
|
|
4777
|
-
type: "
|
|
4783
|
+
type: "success" | "error" | "info" | "warning";
|
|
4778
4784
|
id?: number | undefined;
|
|
4779
4785
|
}[] | undefined;
|
|
4780
4786
|
required?: boolean | undefined;
|
|
@@ -4793,7 +4799,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4793
4799
|
hint?: string | undefined;
|
|
4794
4800
|
messages?: {
|
|
4795
4801
|
text: string;
|
|
4796
|
-
type: "
|
|
4802
|
+
type: "success" | "error" | "info" | "warning";
|
|
4797
4803
|
id?: number | undefined;
|
|
4798
4804
|
}[] | undefined;
|
|
4799
4805
|
required?: boolean | undefined;
|
|
@@ -4813,7 +4819,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4813
4819
|
hint?: string | undefined;
|
|
4814
4820
|
messages?: {
|
|
4815
4821
|
text: string;
|
|
4816
|
-
type: "
|
|
4822
|
+
type: "success" | "error" | "info" | "warning";
|
|
4817
4823
|
id?: number | undefined;
|
|
4818
4824
|
}[] | undefined;
|
|
4819
4825
|
required?: boolean | undefined;
|
|
@@ -4832,7 +4838,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4832
4838
|
hint?: string | undefined;
|
|
4833
4839
|
messages?: {
|
|
4834
4840
|
text: string;
|
|
4835
|
-
type: "
|
|
4841
|
+
type: "success" | "error" | "info" | "warning";
|
|
4836
4842
|
id?: number | undefined;
|
|
4837
4843
|
}[] | undefined;
|
|
4838
4844
|
required?: boolean | undefined;
|
|
@@ -4854,7 +4860,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4854
4860
|
hint?: string | undefined;
|
|
4855
4861
|
messages?: {
|
|
4856
4862
|
text: string;
|
|
4857
|
-
type: "
|
|
4863
|
+
type: "success" | "error" | "info" | "warning";
|
|
4858
4864
|
id?: number | undefined;
|
|
4859
4865
|
}[] | undefined;
|
|
4860
4866
|
required?: boolean | undefined;
|
|
@@ -4876,7 +4882,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4876
4882
|
hint?: string | undefined;
|
|
4877
4883
|
messages?: {
|
|
4878
4884
|
text: string;
|
|
4879
|
-
type: "
|
|
4885
|
+
type: "success" | "error" | "info" | "warning";
|
|
4880
4886
|
id?: number | undefined;
|
|
4881
4887
|
}[] | undefined;
|
|
4882
4888
|
required?: boolean | undefined;
|
|
@@ -4895,7 +4901,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4895
4901
|
hint?: string | undefined;
|
|
4896
4902
|
messages?: {
|
|
4897
4903
|
text: string;
|
|
4898
|
-
type: "
|
|
4904
|
+
type: "success" | "error" | "info" | "warning";
|
|
4899
4905
|
id?: number | undefined;
|
|
4900
4906
|
}[] | undefined;
|
|
4901
4907
|
required?: boolean | undefined;
|
|
@@ -4908,6 +4914,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4908
4914
|
display_name?: string | undefined;
|
|
4909
4915
|
icon_url?: string | undefined;
|
|
4910
4916
|
href?: string | undefined;
|
|
4917
|
+
last_used?: boolean | undefined;
|
|
4918
|
+
last_used_label?: string | undefined;
|
|
4911
4919
|
}[] | undefined;
|
|
4912
4920
|
} | undefined;
|
|
4913
4921
|
} | {
|
|
@@ -4920,7 +4928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4920
4928
|
hint?: string | undefined;
|
|
4921
4929
|
messages?: {
|
|
4922
4930
|
text: string;
|
|
4923
|
-
type: "
|
|
4931
|
+
type: "success" | "error" | "info" | "warning";
|
|
4924
4932
|
id?: number | undefined;
|
|
4925
4933
|
}[] | undefined;
|
|
4926
4934
|
required?: boolean | undefined;
|
|
@@ -4941,7 +4949,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4941
4949
|
hint?: string | undefined;
|
|
4942
4950
|
messages?: {
|
|
4943
4951
|
text: string;
|
|
4944
|
-
type: "
|
|
4952
|
+
type: "success" | "error" | "info" | "warning";
|
|
4945
4953
|
id?: number | undefined;
|
|
4946
4954
|
}[] | undefined;
|
|
4947
4955
|
required?: boolean | undefined;
|
|
@@ -4962,7 +4970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4962
4970
|
hint?: string | undefined;
|
|
4963
4971
|
messages?: {
|
|
4964
4972
|
text: string;
|
|
4965
|
-
type: "
|
|
4973
|
+
type: "success" | "error" | "info" | "warning";
|
|
4966
4974
|
id?: number | undefined;
|
|
4967
4975
|
}[] | undefined;
|
|
4968
4976
|
required?: boolean | undefined;
|
|
@@ -5193,7 +5201,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5193
5201
|
hint?: string | undefined;
|
|
5194
5202
|
messages?: {
|
|
5195
5203
|
text: string;
|
|
5196
|
-
type: "
|
|
5204
|
+
type: "success" | "error" | "info" | "warning";
|
|
5197
5205
|
id?: number | undefined;
|
|
5198
5206
|
}[] | undefined;
|
|
5199
5207
|
required?: boolean | undefined;
|
|
@@ -5211,7 +5219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5211
5219
|
hint?: string | undefined;
|
|
5212
5220
|
messages?: {
|
|
5213
5221
|
text: string;
|
|
5214
|
-
type: "
|
|
5222
|
+
type: "success" | "error" | "info" | "warning";
|
|
5215
5223
|
id?: number | undefined;
|
|
5216
5224
|
}[] | undefined;
|
|
5217
5225
|
required?: boolean | undefined;
|
|
@@ -5235,7 +5243,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5235
5243
|
hint?: string | undefined;
|
|
5236
5244
|
messages?: {
|
|
5237
5245
|
text: string;
|
|
5238
|
-
type: "
|
|
5246
|
+
type: "success" | "error" | "info" | "warning";
|
|
5239
5247
|
id?: number | undefined;
|
|
5240
5248
|
}[] | undefined;
|
|
5241
5249
|
required?: boolean | undefined;
|
|
@@ -5259,7 +5267,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5259
5267
|
hint?: string | undefined;
|
|
5260
5268
|
messages?: {
|
|
5261
5269
|
text: string;
|
|
5262
|
-
type: "
|
|
5270
|
+
type: "success" | "error" | "info" | "warning";
|
|
5263
5271
|
id?: number | undefined;
|
|
5264
5272
|
}[] | undefined;
|
|
5265
5273
|
required?: boolean | undefined;
|
|
@@ -5283,7 +5291,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5283
5291
|
hint?: string | undefined;
|
|
5284
5292
|
messages?: {
|
|
5285
5293
|
text: string;
|
|
5286
|
-
type: "
|
|
5294
|
+
type: "success" | "error" | "info" | "warning";
|
|
5287
5295
|
id?: number | undefined;
|
|
5288
5296
|
}[] | undefined;
|
|
5289
5297
|
required?: boolean | undefined;
|
|
@@ -5312,7 +5320,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5312
5320
|
hint?: string | undefined;
|
|
5313
5321
|
messages?: {
|
|
5314
5322
|
text: string;
|
|
5315
|
-
type: "
|
|
5323
|
+
type: "success" | "error" | "info" | "warning";
|
|
5316
5324
|
id?: number | undefined;
|
|
5317
5325
|
}[] | undefined;
|
|
5318
5326
|
required?: boolean | undefined;
|
|
@@ -5327,7 +5335,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5327
5335
|
hint?: string | undefined;
|
|
5328
5336
|
messages?: {
|
|
5329
5337
|
text: string;
|
|
5330
|
-
type: "
|
|
5338
|
+
type: "success" | "error" | "info" | "warning";
|
|
5331
5339
|
id?: number | undefined;
|
|
5332
5340
|
}[] | undefined;
|
|
5333
5341
|
required?: boolean | undefined;
|
|
@@ -5348,7 +5356,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5348
5356
|
hint?: string | undefined;
|
|
5349
5357
|
messages?: {
|
|
5350
5358
|
text: string;
|
|
5351
|
-
type: "
|
|
5359
|
+
type: "success" | "error" | "info" | "warning";
|
|
5352
5360
|
id?: number | undefined;
|
|
5353
5361
|
}[] | undefined;
|
|
5354
5362
|
required?: boolean | undefined;
|
|
@@ -5373,7 +5381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5373
5381
|
hint?: string | undefined;
|
|
5374
5382
|
messages?: {
|
|
5375
5383
|
text: string;
|
|
5376
|
-
type: "
|
|
5384
|
+
type: "success" | "error" | "info" | "warning";
|
|
5377
5385
|
id?: number | undefined;
|
|
5378
5386
|
}[] | undefined;
|
|
5379
5387
|
required?: boolean | undefined;
|
|
@@ -5392,7 +5400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5392
5400
|
hint?: string | undefined;
|
|
5393
5401
|
messages?: {
|
|
5394
5402
|
text: string;
|
|
5395
|
-
type: "
|
|
5403
|
+
type: "success" | "error" | "info" | "warning";
|
|
5396
5404
|
id?: number | undefined;
|
|
5397
5405
|
}[] | undefined;
|
|
5398
5406
|
required?: boolean | undefined;
|
|
@@ -5412,7 +5420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5412
5420
|
hint?: string | undefined;
|
|
5413
5421
|
messages?: {
|
|
5414
5422
|
text: string;
|
|
5415
|
-
type: "
|
|
5423
|
+
type: "success" | "error" | "info" | "warning";
|
|
5416
5424
|
id?: number | undefined;
|
|
5417
5425
|
}[] | undefined;
|
|
5418
5426
|
required?: boolean | undefined;
|
|
@@ -5431,7 +5439,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5431
5439
|
hint?: string | undefined;
|
|
5432
5440
|
messages?: {
|
|
5433
5441
|
text: string;
|
|
5434
|
-
type: "
|
|
5442
|
+
type: "success" | "error" | "info" | "warning";
|
|
5435
5443
|
id?: number | undefined;
|
|
5436
5444
|
}[] | undefined;
|
|
5437
5445
|
required?: boolean | undefined;
|
|
@@ -5453,7 +5461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5453
5461
|
hint?: string | undefined;
|
|
5454
5462
|
messages?: {
|
|
5455
5463
|
text: string;
|
|
5456
|
-
type: "
|
|
5464
|
+
type: "success" | "error" | "info" | "warning";
|
|
5457
5465
|
id?: number | undefined;
|
|
5458
5466
|
}[] | undefined;
|
|
5459
5467
|
required?: boolean | undefined;
|
|
@@ -5475,7 +5483,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5475
5483
|
hint?: string | undefined;
|
|
5476
5484
|
messages?: {
|
|
5477
5485
|
text: string;
|
|
5478
|
-
type: "
|
|
5486
|
+
type: "success" | "error" | "info" | "warning";
|
|
5479
5487
|
id?: number | undefined;
|
|
5480
5488
|
}[] | undefined;
|
|
5481
5489
|
required?: boolean | undefined;
|
|
@@ -5494,7 +5502,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5494
5502
|
hint?: string | undefined;
|
|
5495
5503
|
messages?: {
|
|
5496
5504
|
text: string;
|
|
5497
|
-
type: "
|
|
5505
|
+
type: "success" | "error" | "info" | "warning";
|
|
5498
5506
|
id?: number | undefined;
|
|
5499
5507
|
}[] | undefined;
|
|
5500
5508
|
required?: boolean | undefined;
|
|
@@ -5507,6 +5515,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5507
5515
|
display_name?: string | undefined;
|
|
5508
5516
|
icon_url?: string | undefined;
|
|
5509
5517
|
href?: string | undefined;
|
|
5518
|
+
last_used?: boolean | undefined;
|
|
5519
|
+
last_used_label?: string | undefined;
|
|
5510
5520
|
}[] | undefined;
|
|
5511
5521
|
} | undefined;
|
|
5512
5522
|
} | {
|
|
@@ -5519,7 +5529,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5519
5529
|
hint?: string | undefined;
|
|
5520
5530
|
messages?: {
|
|
5521
5531
|
text: string;
|
|
5522
|
-
type: "
|
|
5532
|
+
type: "success" | "error" | "info" | "warning";
|
|
5523
5533
|
id?: number | undefined;
|
|
5524
5534
|
}[] | undefined;
|
|
5525
5535
|
required?: boolean | undefined;
|
|
@@ -5540,7 +5550,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5540
5550
|
hint?: string | undefined;
|
|
5541
5551
|
messages?: {
|
|
5542
5552
|
text: string;
|
|
5543
|
-
type: "
|
|
5553
|
+
type: "success" | "error" | "info" | "warning";
|
|
5544
5554
|
id?: number | undefined;
|
|
5545
5555
|
}[] | undefined;
|
|
5546
5556
|
required?: boolean | undefined;
|
|
@@ -5561,7 +5571,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5561
5571
|
hint?: string | undefined;
|
|
5562
5572
|
messages?: {
|
|
5563
5573
|
text: string;
|
|
5564
|
-
type: "
|
|
5574
|
+
type: "success" | "error" | "info" | "warning";
|
|
5565
5575
|
id?: number | undefined;
|
|
5566
5576
|
}[] | undefined;
|
|
5567
5577
|
required?: boolean | undefined;
|
|
@@ -5794,7 +5804,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5794
5804
|
hint?: string | undefined;
|
|
5795
5805
|
messages?: {
|
|
5796
5806
|
text: string;
|
|
5797
|
-
type: "
|
|
5807
|
+
type: "success" | "error" | "info" | "warning";
|
|
5798
5808
|
id?: number | undefined;
|
|
5799
5809
|
}[] | undefined;
|
|
5800
5810
|
required?: boolean | undefined;
|
|
@@ -5812,7 +5822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5812
5822
|
hint?: string | undefined;
|
|
5813
5823
|
messages?: {
|
|
5814
5824
|
text: string;
|
|
5815
|
-
type: "
|
|
5825
|
+
type: "success" | "error" | "info" | "warning";
|
|
5816
5826
|
id?: number | undefined;
|
|
5817
5827
|
}[] | undefined;
|
|
5818
5828
|
required?: boolean | undefined;
|
|
@@ -5836,7 +5846,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5836
5846
|
hint?: string | undefined;
|
|
5837
5847
|
messages?: {
|
|
5838
5848
|
text: string;
|
|
5839
|
-
type: "
|
|
5849
|
+
type: "success" | "error" | "info" | "warning";
|
|
5840
5850
|
id?: number | undefined;
|
|
5841
5851
|
}[] | undefined;
|
|
5842
5852
|
required?: boolean | undefined;
|
|
@@ -5860,7 +5870,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5860
5870
|
hint?: string | undefined;
|
|
5861
5871
|
messages?: {
|
|
5862
5872
|
text: string;
|
|
5863
|
-
type: "
|
|
5873
|
+
type: "success" | "error" | "info" | "warning";
|
|
5864
5874
|
id?: number | undefined;
|
|
5865
5875
|
}[] | undefined;
|
|
5866
5876
|
required?: boolean | undefined;
|
|
@@ -5884,7 +5894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5884
5894
|
hint?: string | undefined;
|
|
5885
5895
|
messages?: {
|
|
5886
5896
|
text: string;
|
|
5887
|
-
type: "
|
|
5897
|
+
type: "success" | "error" | "info" | "warning";
|
|
5888
5898
|
id?: number | undefined;
|
|
5889
5899
|
}[] | undefined;
|
|
5890
5900
|
required?: boolean | undefined;
|
|
@@ -5909,7 +5919,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5909
5919
|
hint?: string | undefined;
|
|
5910
5920
|
messages?: {
|
|
5911
5921
|
text: string;
|
|
5912
|
-
type: "
|
|
5922
|
+
type: "success" | "error" | "info" | "warning";
|
|
5913
5923
|
id?: number | undefined;
|
|
5914
5924
|
}[] | undefined;
|
|
5915
5925
|
required?: boolean | undefined;
|
|
@@ -5924,7 +5934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5924
5934
|
hint?: string | undefined;
|
|
5925
5935
|
messages?: {
|
|
5926
5936
|
text: string;
|
|
5927
|
-
type: "
|
|
5937
|
+
type: "success" | "error" | "info" | "warning";
|
|
5928
5938
|
id?: number | undefined;
|
|
5929
5939
|
}[] | undefined;
|
|
5930
5940
|
required?: boolean | undefined;
|
|
@@ -5945,7 +5955,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5945
5955
|
hint?: string | undefined;
|
|
5946
5956
|
messages?: {
|
|
5947
5957
|
text: string;
|
|
5948
|
-
type: "
|
|
5958
|
+
type: "success" | "error" | "info" | "warning";
|
|
5949
5959
|
id?: number | undefined;
|
|
5950
5960
|
}[] | undefined;
|
|
5951
5961
|
required?: boolean | undefined;
|
|
@@ -5970,7 +5980,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5970
5980
|
hint?: string | undefined;
|
|
5971
5981
|
messages?: {
|
|
5972
5982
|
text: string;
|
|
5973
|
-
type: "
|
|
5983
|
+
type: "success" | "error" | "info" | "warning";
|
|
5974
5984
|
id?: number | undefined;
|
|
5975
5985
|
}[] | undefined;
|
|
5976
5986
|
required?: boolean | undefined;
|
|
@@ -5989,7 +5999,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5989
5999
|
hint?: string | undefined;
|
|
5990
6000
|
messages?: {
|
|
5991
6001
|
text: string;
|
|
5992
|
-
type: "
|
|
6002
|
+
type: "success" | "error" | "info" | "warning";
|
|
5993
6003
|
id?: number | undefined;
|
|
5994
6004
|
}[] | undefined;
|
|
5995
6005
|
required?: boolean | undefined;
|
|
@@ -6009,7 +6019,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6009
6019
|
hint?: string | undefined;
|
|
6010
6020
|
messages?: {
|
|
6011
6021
|
text: string;
|
|
6012
|
-
type: "
|
|
6022
|
+
type: "success" | "error" | "info" | "warning";
|
|
6013
6023
|
id?: number | undefined;
|
|
6014
6024
|
}[] | undefined;
|
|
6015
6025
|
required?: boolean | undefined;
|
|
@@ -6028,7 +6038,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6028
6038
|
hint?: string | undefined;
|
|
6029
6039
|
messages?: {
|
|
6030
6040
|
text: string;
|
|
6031
|
-
type: "
|
|
6041
|
+
type: "success" | "error" | "info" | "warning";
|
|
6032
6042
|
id?: number | undefined;
|
|
6033
6043
|
}[] | undefined;
|
|
6034
6044
|
required?: boolean | undefined;
|
|
@@ -6050,7 +6060,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6050
6060
|
hint?: string | undefined;
|
|
6051
6061
|
messages?: {
|
|
6052
6062
|
text: string;
|
|
6053
|
-
type: "
|
|
6063
|
+
type: "success" | "error" | "info" | "warning";
|
|
6054
6064
|
id?: number | undefined;
|
|
6055
6065
|
}[] | undefined;
|
|
6056
6066
|
required?: boolean | undefined;
|
|
@@ -6072,7 +6082,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6072
6082
|
hint?: string | undefined;
|
|
6073
6083
|
messages?: {
|
|
6074
6084
|
text: string;
|
|
6075
|
-
type: "
|
|
6085
|
+
type: "success" | "error" | "info" | "warning";
|
|
6076
6086
|
id?: number | undefined;
|
|
6077
6087
|
}[] | undefined;
|
|
6078
6088
|
required?: boolean | undefined;
|
|
@@ -6091,7 +6101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6091
6101
|
hint?: string | undefined;
|
|
6092
6102
|
messages?: {
|
|
6093
6103
|
text: string;
|
|
6094
|
-
type: "
|
|
6104
|
+
type: "success" | "error" | "info" | "warning";
|
|
6095
6105
|
id?: number | undefined;
|
|
6096
6106
|
}[] | undefined;
|
|
6097
6107
|
required?: boolean | undefined;
|
|
@@ -6104,6 +6114,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6104
6114
|
display_name?: string | undefined;
|
|
6105
6115
|
icon_url?: string | undefined;
|
|
6106
6116
|
href?: string | undefined;
|
|
6117
|
+
last_used?: boolean | undefined;
|
|
6118
|
+
last_used_label?: string | undefined;
|
|
6107
6119
|
}[] | undefined;
|
|
6108
6120
|
} | undefined;
|
|
6109
6121
|
} | {
|
|
@@ -6116,7 +6128,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6116
6128
|
hint?: string | undefined;
|
|
6117
6129
|
messages?: {
|
|
6118
6130
|
text: string;
|
|
6119
|
-
type: "
|
|
6131
|
+
type: "success" | "error" | "info" | "warning";
|
|
6120
6132
|
id?: number | undefined;
|
|
6121
6133
|
}[] | undefined;
|
|
6122
6134
|
required?: boolean | undefined;
|
|
@@ -6137,7 +6149,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6137
6149
|
hint?: string | undefined;
|
|
6138
6150
|
messages?: {
|
|
6139
6151
|
text: string;
|
|
6140
|
-
type: "
|
|
6152
|
+
type: "success" | "error" | "info" | "warning";
|
|
6141
6153
|
id?: number | undefined;
|
|
6142
6154
|
}[] | undefined;
|
|
6143
6155
|
required?: boolean | undefined;
|
|
@@ -6158,7 +6170,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6158
6170
|
hint?: string | undefined;
|
|
6159
6171
|
messages?: {
|
|
6160
6172
|
text: string;
|
|
6161
|
-
type: "
|
|
6173
|
+
type: "success" | "error" | "info" | "warning";
|
|
6162
6174
|
id?: number | undefined;
|
|
6163
6175
|
}[] | undefined;
|
|
6164
6176
|
required?: boolean | undefined;
|
|
@@ -6389,7 +6401,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6389
6401
|
hint?: string | undefined;
|
|
6390
6402
|
messages?: {
|
|
6391
6403
|
text: string;
|
|
6392
|
-
type: "
|
|
6404
|
+
type: "success" | "error" | "info" | "warning";
|
|
6393
6405
|
id?: number | undefined;
|
|
6394
6406
|
}[] | undefined;
|
|
6395
6407
|
required?: boolean | undefined;
|
|
@@ -6407,7 +6419,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6407
6419
|
hint?: string | undefined;
|
|
6408
6420
|
messages?: {
|
|
6409
6421
|
text: string;
|
|
6410
|
-
type: "
|
|
6422
|
+
type: "success" | "error" | "info" | "warning";
|
|
6411
6423
|
id?: number | undefined;
|
|
6412
6424
|
}[] | undefined;
|
|
6413
6425
|
required?: boolean | undefined;
|
|
@@ -6431,7 +6443,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6431
6443
|
hint?: string | undefined;
|
|
6432
6444
|
messages?: {
|
|
6433
6445
|
text: string;
|
|
6434
|
-
type: "
|
|
6446
|
+
type: "success" | "error" | "info" | "warning";
|
|
6435
6447
|
id?: number | undefined;
|
|
6436
6448
|
}[] | undefined;
|
|
6437
6449
|
required?: boolean | undefined;
|
|
@@ -6455,7 +6467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6455
6467
|
hint?: string | undefined;
|
|
6456
6468
|
messages?: {
|
|
6457
6469
|
text: string;
|
|
6458
|
-
type: "
|
|
6470
|
+
type: "success" | "error" | "info" | "warning";
|
|
6459
6471
|
id?: number | undefined;
|
|
6460
6472
|
}[] | undefined;
|
|
6461
6473
|
required?: boolean | undefined;
|
|
@@ -6479,7 +6491,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6479
6491
|
hint?: string | undefined;
|
|
6480
6492
|
messages?: {
|
|
6481
6493
|
text: string;
|
|
6482
|
-
type: "
|
|
6494
|
+
type: "success" | "error" | "info" | "warning";
|
|
6483
6495
|
id?: number | undefined;
|
|
6484
6496
|
}[] | undefined;
|
|
6485
6497
|
required?: boolean | undefined;
|
|
@@ -6508,7 +6520,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6508
6520
|
hint?: string | undefined;
|
|
6509
6521
|
messages?: {
|
|
6510
6522
|
text: string;
|
|
6511
|
-
type: "
|
|
6523
|
+
type: "success" | "error" | "info" | "warning";
|
|
6512
6524
|
id?: number | undefined;
|
|
6513
6525
|
}[] | undefined;
|
|
6514
6526
|
required?: boolean | undefined;
|
|
@@ -6523,7 +6535,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6523
6535
|
hint?: string | undefined;
|
|
6524
6536
|
messages?: {
|
|
6525
6537
|
text: string;
|
|
6526
|
-
type: "
|
|
6538
|
+
type: "success" | "error" | "info" | "warning";
|
|
6527
6539
|
id?: number | undefined;
|
|
6528
6540
|
}[] | undefined;
|
|
6529
6541
|
required?: boolean | undefined;
|
|
@@ -6544,7 +6556,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6544
6556
|
hint?: string | undefined;
|
|
6545
6557
|
messages?: {
|
|
6546
6558
|
text: string;
|
|
6547
|
-
type: "
|
|
6559
|
+
type: "success" | "error" | "info" | "warning";
|
|
6548
6560
|
id?: number | undefined;
|
|
6549
6561
|
}[] | undefined;
|
|
6550
6562
|
required?: boolean | undefined;
|
|
@@ -6569,7 +6581,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6569
6581
|
hint?: string | undefined;
|
|
6570
6582
|
messages?: {
|
|
6571
6583
|
text: string;
|
|
6572
|
-
type: "
|
|
6584
|
+
type: "success" | "error" | "info" | "warning";
|
|
6573
6585
|
id?: number | undefined;
|
|
6574
6586
|
}[] | undefined;
|
|
6575
6587
|
required?: boolean | undefined;
|
|
@@ -6588,7 +6600,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6588
6600
|
hint?: string | undefined;
|
|
6589
6601
|
messages?: {
|
|
6590
6602
|
text: string;
|
|
6591
|
-
type: "
|
|
6603
|
+
type: "success" | "error" | "info" | "warning";
|
|
6592
6604
|
id?: number | undefined;
|
|
6593
6605
|
}[] | undefined;
|
|
6594
6606
|
required?: boolean | undefined;
|
|
@@ -6608,7 +6620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6608
6620
|
hint?: string | undefined;
|
|
6609
6621
|
messages?: {
|
|
6610
6622
|
text: string;
|
|
6611
|
-
type: "
|
|
6623
|
+
type: "success" | "error" | "info" | "warning";
|
|
6612
6624
|
id?: number | undefined;
|
|
6613
6625
|
}[] | undefined;
|
|
6614
6626
|
required?: boolean | undefined;
|
|
@@ -6627,7 +6639,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6627
6639
|
hint?: string | undefined;
|
|
6628
6640
|
messages?: {
|
|
6629
6641
|
text: string;
|
|
6630
|
-
type: "
|
|
6642
|
+
type: "success" | "error" | "info" | "warning";
|
|
6631
6643
|
id?: number | undefined;
|
|
6632
6644
|
}[] | undefined;
|
|
6633
6645
|
required?: boolean | undefined;
|
|
@@ -6649,7 +6661,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6649
6661
|
hint?: string | undefined;
|
|
6650
6662
|
messages?: {
|
|
6651
6663
|
text: string;
|
|
6652
|
-
type: "
|
|
6664
|
+
type: "success" | "error" | "info" | "warning";
|
|
6653
6665
|
id?: number | undefined;
|
|
6654
6666
|
}[] | undefined;
|
|
6655
6667
|
required?: boolean | undefined;
|
|
@@ -6671,7 +6683,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6671
6683
|
hint?: string | undefined;
|
|
6672
6684
|
messages?: {
|
|
6673
6685
|
text: string;
|
|
6674
|
-
type: "
|
|
6686
|
+
type: "success" | "error" | "info" | "warning";
|
|
6675
6687
|
id?: number | undefined;
|
|
6676
6688
|
}[] | undefined;
|
|
6677
6689
|
required?: boolean | undefined;
|
|
@@ -6690,7 +6702,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6690
6702
|
hint?: string | undefined;
|
|
6691
6703
|
messages?: {
|
|
6692
6704
|
text: string;
|
|
6693
|
-
type: "
|
|
6705
|
+
type: "success" | "error" | "info" | "warning";
|
|
6694
6706
|
id?: number | undefined;
|
|
6695
6707
|
}[] | undefined;
|
|
6696
6708
|
required?: boolean | undefined;
|
|
@@ -6703,6 +6715,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6703
6715
|
display_name?: string | undefined;
|
|
6704
6716
|
icon_url?: string | undefined;
|
|
6705
6717
|
href?: string | undefined;
|
|
6718
|
+
last_used?: boolean | undefined;
|
|
6719
|
+
last_used_label?: string | undefined;
|
|
6706
6720
|
}[] | undefined;
|
|
6707
6721
|
} | undefined;
|
|
6708
6722
|
} | {
|
|
@@ -6715,7 +6729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6715
6729
|
hint?: string | undefined;
|
|
6716
6730
|
messages?: {
|
|
6717
6731
|
text: string;
|
|
6718
|
-
type: "
|
|
6732
|
+
type: "success" | "error" | "info" | "warning";
|
|
6719
6733
|
id?: number | undefined;
|
|
6720
6734
|
}[] | undefined;
|
|
6721
6735
|
required?: boolean | undefined;
|
|
@@ -6736,7 +6750,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6736
6750
|
hint?: string | undefined;
|
|
6737
6751
|
messages?: {
|
|
6738
6752
|
text: string;
|
|
6739
|
-
type: "
|
|
6753
|
+
type: "success" | "error" | "info" | "warning";
|
|
6740
6754
|
id?: number | undefined;
|
|
6741
6755
|
}[] | undefined;
|
|
6742
6756
|
required?: boolean | undefined;
|
|
@@ -6757,7 +6771,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6757
6771
|
hint?: string | undefined;
|
|
6758
6772
|
messages?: {
|
|
6759
6773
|
text: string;
|
|
6760
|
-
type: "
|
|
6774
|
+
type: "success" | "error" | "info" | "warning";
|
|
6761
6775
|
id?: number | undefined;
|
|
6762
6776
|
}[] | undefined;
|
|
6763
6777
|
required?: boolean | undefined;
|
|
@@ -6952,6 +6966,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6952
6966
|
universal_login_experience: "new" | "classic";
|
|
6953
6967
|
identifier_first: boolean;
|
|
6954
6968
|
password_first: boolean;
|
|
6969
|
+
show_last_used_connection: boolean;
|
|
6955
6970
|
webauthn_platform_first_factor: boolean;
|
|
6956
6971
|
};
|
|
6957
6972
|
outputFormat: "json";
|
|
@@ -6970,6 +6985,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6970
6985
|
universal_login_experience?: "new" | "classic" | undefined;
|
|
6971
6986
|
identifier_first?: boolean | undefined;
|
|
6972
6987
|
password_first?: boolean | undefined;
|
|
6988
|
+
show_last_used_connection?: boolean | undefined;
|
|
6973
6989
|
webauthn_platform_first_factor?: boolean | undefined;
|
|
6974
6990
|
};
|
|
6975
6991
|
};
|
|
@@ -6987,7 +7003,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6987
7003
|
};
|
|
6988
7004
|
};
|
|
6989
7005
|
output: {
|
|
6990
|
-
prompt: "
|
|
7006
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6991
7007
|
language: string;
|
|
6992
7008
|
}[];
|
|
6993
7009
|
outputFormat: "json";
|
|
@@ -7025,7 +7041,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7025
7041
|
$get: {
|
|
7026
7042
|
input: {
|
|
7027
7043
|
param: {
|
|
7028
|
-
prompt: "
|
|
7044
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7029
7045
|
language: string;
|
|
7030
7046
|
};
|
|
7031
7047
|
} & {
|
|
@@ -7047,7 +7063,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7047
7063
|
$put: {
|
|
7048
7064
|
input: {
|
|
7049
7065
|
param: {
|
|
7050
|
-
prompt: "
|
|
7066
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7051
7067
|
language: string;
|
|
7052
7068
|
};
|
|
7053
7069
|
} & {
|
|
@@ -7071,7 +7087,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7071
7087
|
$delete: {
|
|
7072
7088
|
input: {
|
|
7073
7089
|
param: {
|
|
7074
|
-
prompt: "
|
|
7090
|
+
prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7075
7091
|
language: string;
|
|
7076
7092
|
};
|
|
7077
7093
|
} & {
|
|
@@ -7934,7 +7950,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7934
7950
|
};
|
|
7935
7951
|
} | {
|
|
7936
7952
|
mode: "inline";
|
|
7937
|
-
status: "
|
|
7953
|
+
status: "success" | "error";
|
|
7938
7954
|
connection_id: string;
|
|
7939
7955
|
connection_name: string;
|
|
7940
7956
|
strategy: string;
|
|
@@ -8574,7 +8590,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8574
8590
|
log_type: string;
|
|
8575
8591
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8576
8592
|
actor: {
|
|
8577
|
-
type: "client_credentials" | "user" | "
|
|
8593
|
+
type: "client_credentials" | "user" | "api_key" | "system" | "admin";
|
|
8578
8594
|
id?: string | undefined;
|
|
8579
8595
|
email?: string | undefined;
|
|
8580
8596
|
org_id?: string | undefined;
|
|
@@ -8885,7 +8901,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8885
8901
|
created_at: string;
|
|
8886
8902
|
updated_at: string;
|
|
8887
8903
|
name: string;
|
|
8888
|
-
provider: "auth0" | "
|
|
8904
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8889
8905
|
connection: string;
|
|
8890
8906
|
enabled: boolean;
|
|
8891
8907
|
credentials: {
|
|
@@ -8917,7 +8933,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8917
8933
|
created_at: string;
|
|
8918
8934
|
updated_at: string;
|
|
8919
8935
|
name: string;
|
|
8920
|
-
provider: "auth0" | "
|
|
8936
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8921
8937
|
connection: string;
|
|
8922
8938
|
enabled: boolean;
|
|
8923
8939
|
credentials: {
|
|
@@ -8943,7 +8959,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8943
8959
|
} & {
|
|
8944
8960
|
json: {
|
|
8945
8961
|
name: string;
|
|
8946
|
-
provider: "auth0" | "
|
|
8962
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8947
8963
|
connection: string;
|
|
8948
8964
|
credentials: {
|
|
8949
8965
|
domain: string;
|
|
@@ -8960,7 +8976,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8960
8976
|
created_at: string;
|
|
8961
8977
|
updated_at: string;
|
|
8962
8978
|
name: string;
|
|
8963
|
-
provider: "auth0" | "
|
|
8979
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8964
8980
|
connection: string;
|
|
8965
8981
|
enabled: boolean;
|
|
8966
8982
|
credentials: {
|
|
@@ -8991,7 +9007,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8991
9007
|
json: {
|
|
8992
9008
|
id?: string | undefined;
|
|
8993
9009
|
name?: string | undefined;
|
|
8994
|
-
provider?: "auth0" | "
|
|
9010
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8995
9011
|
connection?: string | undefined;
|
|
8996
9012
|
enabled?: boolean | undefined;
|
|
8997
9013
|
credentials?: {
|
|
@@ -9007,7 +9023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9007
9023
|
created_at: string;
|
|
9008
9024
|
updated_at: string;
|
|
9009
9025
|
name: string;
|
|
9010
|
-
provider: "auth0" | "
|
|
9026
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9011
9027
|
connection: string;
|
|
9012
9028
|
enabled: boolean;
|
|
9013
9029
|
credentials: {
|
|
@@ -9225,7 +9241,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9225
9241
|
};
|
|
9226
9242
|
};
|
|
9227
9243
|
output: {
|
|
9228
|
-
type: "
|
|
9244
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9229
9245
|
date: string;
|
|
9230
9246
|
isMobile: boolean;
|
|
9231
9247
|
log_id: string;
|
|
@@ -9264,7 +9280,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9264
9280
|
limit: number;
|
|
9265
9281
|
length: number;
|
|
9266
9282
|
logs: {
|
|
9267
|
-
type: "
|
|
9283
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9268
9284
|
date: string;
|
|
9269
9285
|
isMobile: boolean;
|
|
9270
9286
|
log_id: string;
|
|
@@ -9303,7 +9319,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9303
9319
|
next?: string | undefined;
|
|
9304
9320
|
} | {
|
|
9305
9321
|
logs: {
|
|
9306
|
-
type: "
|
|
9322
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9307
9323
|
date: string;
|
|
9308
9324
|
isMobile: boolean;
|
|
9309
9325
|
log_id: string;
|
|
@@ -9357,7 +9373,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9357
9373
|
};
|
|
9358
9374
|
};
|
|
9359
9375
|
output: {
|
|
9360
|
-
type: "
|
|
9376
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9361
9377
|
date: string;
|
|
9362
9378
|
isMobile: boolean;
|
|
9363
9379
|
log_id: string;
|
|
@@ -10882,6 +10898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10882
10898
|
verify_email?: boolean | undefined;
|
|
10883
10899
|
last_ip?: string | undefined;
|
|
10884
10900
|
last_login?: string | undefined;
|
|
10901
|
+
blocked?: boolean | undefined;
|
|
10885
10902
|
registration_completed_at?: string | undefined;
|
|
10886
10903
|
email?: string | undefined;
|
|
10887
10904
|
identities?: {
|
|
@@ -11067,6 +11084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11067
11084
|
verify_email?: boolean | undefined;
|
|
11068
11085
|
last_ip?: string | undefined;
|
|
11069
11086
|
last_login?: string | undefined;
|
|
11087
|
+
blocked?: boolean | undefined;
|
|
11070
11088
|
identities?: {
|
|
11071
11089
|
connection: string;
|
|
11072
11090
|
user_id: string;
|
|
@@ -11137,6 +11155,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11137
11155
|
verify_email?: boolean | undefined;
|
|
11138
11156
|
last_ip?: string | undefined;
|
|
11139
11157
|
last_login?: string | undefined;
|
|
11158
|
+
blocked?: boolean | undefined;
|
|
11140
11159
|
identities?: {
|
|
11141
11160
|
connection: string;
|
|
11142
11161
|
user_id: string;
|
|
@@ -11207,6 +11226,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11207
11226
|
verify_email?: boolean | undefined;
|
|
11208
11227
|
last_ip?: string | undefined;
|
|
11209
11228
|
last_login?: string | undefined;
|
|
11229
|
+
blocked?: boolean | undefined;
|
|
11210
11230
|
identities?: {
|
|
11211
11231
|
connection: string;
|
|
11212
11232
|
user_id: string;
|
|
@@ -11292,6 +11312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11292
11312
|
verify_email?: boolean | undefined;
|
|
11293
11313
|
last_ip?: string | undefined;
|
|
11294
11314
|
last_login?: string | undefined;
|
|
11315
|
+
blocked?: boolean | undefined;
|
|
11295
11316
|
identities?: {
|
|
11296
11317
|
connection: string;
|
|
11297
11318
|
user_id: string;
|
|
@@ -11385,6 +11406,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11385
11406
|
user_id?: string | undefined;
|
|
11386
11407
|
provider?: string | undefined;
|
|
11387
11408
|
is_social?: boolean | undefined;
|
|
11409
|
+
blocked?: boolean | undefined;
|
|
11388
11410
|
registration_completed_at?: string | undefined;
|
|
11389
11411
|
password?: string | undefined;
|
|
11390
11412
|
};
|
|
@@ -11430,6 +11452,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11430
11452
|
verify_email?: boolean | undefined;
|
|
11431
11453
|
last_ip?: string | undefined;
|
|
11432
11454
|
last_login?: string | undefined;
|
|
11455
|
+
blocked?: boolean | undefined;
|
|
11433
11456
|
identities?: {
|
|
11434
11457
|
connection: string;
|
|
11435
11458
|
user_id: string;
|
|
@@ -11506,6 +11529,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11506
11529
|
provider?: string | undefined;
|
|
11507
11530
|
connection?: string | undefined;
|
|
11508
11531
|
is_social?: boolean | undefined;
|
|
11532
|
+
blocked?: boolean | undefined;
|
|
11509
11533
|
registration_completed_at?: string | undefined;
|
|
11510
11534
|
verify_email?: boolean | undefined;
|
|
11511
11535
|
password?: string | undefined;
|
|
@@ -11623,6 +11647,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11623
11647
|
verify_email?: boolean | undefined;
|
|
11624
11648
|
last_ip?: string | undefined;
|
|
11625
11649
|
last_login?: string | undefined;
|
|
11650
|
+
blocked?: boolean | undefined;
|
|
11626
11651
|
identities?: {
|
|
11627
11652
|
connection: string;
|
|
11628
11653
|
user_id: string;
|
|
@@ -11812,7 +11837,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11812
11837
|
};
|
|
11813
11838
|
};
|
|
11814
11839
|
output: {
|
|
11815
|
-
type: "
|
|
11840
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11816
11841
|
date: string;
|
|
11817
11842
|
isMobile: boolean;
|
|
11818
11843
|
log_id: string;
|
|
@@ -11851,7 +11876,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11851
11876
|
limit: number;
|
|
11852
11877
|
length: number;
|
|
11853
11878
|
logs: {
|
|
11854
|
-
type: "
|
|
11879
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11855
11880
|
date: string;
|
|
11856
11881
|
isMobile: boolean;
|
|
11857
11882
|
log_id: string;
|
|
@@ -12170,7 +12195,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12170
12195
|
};
|
|
12171
12196
|
} & {
|
|
12172
12197
|
json: {
|
|
12173
|
-
template: "
|
|
12198
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12174
12199
|
body: string;
|
|
12175
12200
|
from: string;
|
|
12176
12201
|
subject: string;
|
|
@@ -12191,7 +12216,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12191
12216
|
};
|
|
12192
12217
|
} & {
|
|
12193
12218
|
json: {
|
|
12194
|
-
template: "
|
|
12219
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12195
12220
|
body: string;
|
|
12196
12221
|
from: string;
|
|
12197
12222
|
subject: string;
|
|
@@ -12203,7 +12228,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12203
12228
|
};
|
|
12204
12229
|
};
|
|
12205
12230
|
output: {
|
|
12206
|
-
template: "
|
|
12231
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12207
12232
|
body: string;
|
|
12208
12233
|
from: string;
|
|
12209
12234
|
subject: string;
|
|
@@ -12226,7 +12251,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12226
12251
|
};
|
|
12227
12252
|
};
|
|
12228
12253
|
output: {
|
|
12229
|
-
name: "
|
|
12254
|
+
name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12230
12255
|
body: string;
|
|
12231
12256
|
subject: string;
|
|
12232
12257
|
}[];
|
|
@@ -12239,7 +12264,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12239
12264
|
$get: {
|
|
12240
12265
|
input: {
|
|
12241
12266
|
param: {
|
|
12242
|
-
templateName: "
|
|
12267
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12243
12268
|
};
|
|
12244
12269
|
} & {
|
|
12245
12270
|
header: {
|
|
@@ -12252,7 +12277,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12252
12277
|
} | {
|
|
12253
12278
|
input: {
|
|
12254
12279
|
param: {
|
|
12255
|
-
templateName: "
|
|
12280
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12256
12281
|
};
|
|
12257
12282
|
} & {
|
|
12258
12283
|
header: {
|
|
@@ -12260,7 +12285,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12260
12285
|
};
|
|
12261
12286
|
};
|
|
12262
12287
|
output: {
|
|
12263
|
-
template: "
|
|
12288
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12264
12289
|
body: string;
|
|
12265
12290
|
from: string;
|
|
12266
12291
|
subject: string;
|
|
@@ -12279,7 +12304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12279
12304
|
$put: {
|
|
12280
12305
|
input: {
|
|
12281
12306
|
param: {
|
|
12282
|
-
templateName: "
|
|
12307
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12283
12308
|
};
|
|
12284
12309
|
} & {
|
|
12285
12310
|
header: {
|
|
@@ -12287,7 +12312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12287
12312
|
};
|
|
12288
12313
|
} & {
|
|
12289
12314
|
json: {
|
|
12290
|
-
template: "
|
|
12315
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12291
12316
|
body: string;
|
|
12292
12317
|
subject: string;
|
|
12293
12318
|
syntax?: "liquid" | undefined;
|
|
@@ -12299,7 +12324,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12299
12324
|
};
|
|
12300
12325
|
};
|
|
12301
12326
|
output: {
|
|
12302
|
-
template: "
|
|
12327
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12303
12328
|
body: string;
|
|
12304
12329
|
from: string;
|
|
12305
12330
|
subject: string;
|
|
@@ -12318,7 +12343,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12318
12343
|
$patch: {
|
|
12319
12344
|
input: {
|
|
12320
12345
|
param: {
|
|
12321
|
-
templateName: "
|
|
12346
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12322
12347
|
};
|
|
12323
12348
|
} & {
|
|
12324
12349
|
header: {
|
|
@@ -12326,7 +12351,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12326
12351
|
};
|
|
12327
12352
|
} & {
|
|
12328
12353
|
json: {
|
|
12329
|
-
template?: "
|
|
12354
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12330
12355
|
body?: string | undefined;
|
|
12331
12356
|
from?: string | undefined;
|
|
12332
12357
|
subject?: string | undefined;
|
|
@@ -12343,7 +12368,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12343
12368
|
} | {
|
|
12344
12369
|
input: {
|
|
12345
12370
|
param: {
|
|
12346
|
-
templateName: "
|
|
12371
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12347
12372
|
};
|
|
12348
12373
|
} & {
|
|
12349
12374
|
header: {
|
|
@@ -12351,7 +12376,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12351
12376
|
};
|
|
12352
12377
|
} & {
|
|
12353
12378
|
json: {
|
|
12354
|
-
template?: "
|
|
12379
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12355
12380
|
body?: string | undefined;
|
|
12356
12381
|
from?: string | undefined;
|
|
12357
12382
|
subject?: string | undefined;
|
|
@@ -12363,7 +12388,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12363
12388
|
};
|
|
12364
12389
|
};
|
|
12365
12390
|
output: {
|
|
12366
|
-
template: "
|
|
12391
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12367
12392
|
body: string;
|
|
12368
12393
|
from: string;
|
|
12369
12394
|
subject: string;
|
|
@@ -12382,7 +12407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12382
12407
|
$delete: {
|
|
12383
12408
|
input: {
|
|
12384
12409
|
param: {
|
|
12385
|
-
templateName: "
|
|
12410
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12386
12411
|
};
|
|
12387
12412
|
} & {
|
|
12388
12413
|
header: {
|
|
@@ -12395,7 +12420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12395
12420
|
} | {
|
|
12396
12421
|
input: {
|
|
12397
12422
|
param: {
|
|
12398
|
-
templateName: "
|
|
12423
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12399
12424
|
};
|
|
12400
12425
|
} & {
|
|
12401
12426
|
header: {
|
|
@@ -12412,7 +12437,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12412
12437
|
$post: {
|
|
12413
12438
|
input: {
|
|
12414
12439
|
param: {
|
|
12415
|
-
templateName: "
|
|
12440
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12416
12441
|
};
|
|
12417
12442
|
} & {
|
|
12418
12443
|
header: {
|
|
@@ -13364,7 +13389,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13364
13389
|
} & {
|
|
13365
13390
|
json: {
|
|
13366
13391
|
body?: string | undefined;
|
|
13367
|
-
screen?: "
|
|
13392
|
+
screen?: "login" | "identifier" | "signup" | "password" | undefined;
|
|
13368
13393
|
branding?: {
|
|
13369
13394
|
colors?: {
|
|
13370
13395
|
primary: string;
|
|
@@ -13533,7 +13558,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13533
13558
|
json: {
|
|
13534
13559
|
bindings: {
|
|
13535
13560
|
ref: {
|
|
13536
|
-
type?: "
|
|
13561
|
+
type?: "action_name" | "action_id" | undefined;
|
|
13537
13562
|
value?: string | undefined;
|
|
13538
13563
|
id?: string | undefined;
|
|
13539
13564
|
name?: string | undefined;
|
|
@@ -13655,7 +13680,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13655
13680
|
logs: {
|
|
13656
13681
|
action_name: string;
|
|
13657
13682
|
lines: {
|
|
13658
|
-
level: "
|
|
13683
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13659
13684
|
message: string;
|
|
13660
13685
|
}[];
|
|
13661
13686
|
}[];
|
|
@@ -14324,7 +14349,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14324
14349
|
args: import("hono/utils/types").JSONValue[];
|
|
14325
14350
|
}[];
|
|
14326
14351
|
logs: {
|
|
14327
|
-
level: "
|
|
14352
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
14328
14353
|
message: string;
|
|
14329
14354
|
}[];
|
|
14330
14355
|
error?: string | undefined;
|
|
@@ -15070,16 +15095,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15070
15095
|
email: string;
|
|
15071
15096
|
send: "code" | "link";
|
|
15072
15097
|
authParams: {
|
|
15073
|
-
audience?: string | undefined;
|
|
15074
|
-
scope?: string | undefined;
|
|
15075
|
-
redirect_uri?: string | undefined;
|
|
15076
|
-
organization?: string | undefined;
|
|
15077
15098
|
username?: string | undefined;
|
|
15078
15099
|
state?: string | undefined;
|
|
15079
15100
|
act_as?: string | undefined;
|
|
15080
15101
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15081
15102
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15103
|
+
redirect_uri?: string | undefined;
|
|
15104
|
+
audience?: string | undefined;
|
|
15105
|
+
organization?: string | undefined;
|
|
15082
15106
|
nonce?: string | undefined;
|
|
15107
|
+
scope?: string | undefined;
|
|
15083
15108
|
prompt?: string | undefined;
|
|
15084
15109
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15085
15110
|
code_challenge?: string | undefined;
|
|
@@ -15106,16 +15131,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15106
15131
|
phone_number: string;
|
|
15107
15132
|
send: "code" | "link";
|
|
15108
15133
|
authParams: {
|
|
15109
|
-
audience?: string | undefined;
|
|
15110
|
-
scope?: string | undefined;
|
|
15111
|
-
redirect_uri?: string | undefined;
|
|
15112
|
-
organization?: string | undefined;
|
|
15113
15134
|
username?: string | undefined;
|
|
15114
15135
|
state?: string | undefined;
|
|
15115
15136
|
act_as?: string | undefined;
|
|
15116
15137
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15117
15138
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15139
|
+
redirect_uri?: string | undefined;
|
|
15140
|
+
audience?: string | undefined;
|
|
15141
|
+
organization?: string | undefined;
|
|
15118
15142
|
nonce?: string | undefined;
|
|
15143
|
+
scope?: string | undefined;
|
|
15119
15144
|
prompt?: string | undefined;
|
|
15120
15145
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15121
15146
|
code_challenge?: string | undefined;
|
|
@@ -17029,7 +17054,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17029
17054
|
$get: {
|
|
17030
17055
|
input: {
|
|
17031
17056
|
param: {
|
|
17032
|
-
screen: "
|
|
17057
|
+
screen: "login" | "account" | "signup" | "reset-password" | "consent" | "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";
|
|
17033
17058
|
};
|
|
17034
17059
|
} & {
|
|
17035
17060
|
query: {
|
|
@@ -17045,7 +17070,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17045
17070
|
} | {
|
|
17046
17071
|
input: {
|
|
17047
17072
|
param: {
|
|
17048
|
-
screen: "
|
|
17073
|
+
screen: "login" | "account" | "signup" | "reset-password" | "consent" | "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";
|
|
17049
17074
|
};
|
|
17050
17075
|
} & {
|
|
17051
17076
|
query: {
|
|
@@ -17061,7 +17086,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17061
17086
|
} | {
|
|
17062
17087
|
input: {
|
|
17063
17088
|
param: {
|
|
17064
|
-
screen: "
|
|
17089
|
+
screen: "login" | "account" | "signup" | "reset-password" | "consent" | "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";
|
|
17065
17090
|
};
|
|
17066
17091
|
} & {
|
|
17067
17092
|
query: {
|
|
@@ -17081,7 +17106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17081
17106
|
$post: {
|
|
17082
17107
|
input: {
|
|
17083
17108
|
param: {
|
|
17084
|
-
screen: "
|
|
17109
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17085
17110
|
};
|
|
17086
17111
|
} & {
|
|
17087
17112
|
query: {
|
|
@@ -17099,7 +17124,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17099
17124
|
} | {
|
|
17100
17125
|
input: {
|
|
17101
17126
|
param: {
|
|
17102
|
-
screen: "
|
|
17127
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17103
17128
|
};
|
|
17104
17129
|
} & {
|
|
17105
17130
|
query: {
|
|
@@ -17194,5 +17219,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17194
17219
|
};
|
|
17195
17220
|
};
|
|
17196
17221
|
}, "/forms"> & import("hono/types").MergeSchemaPath<{}, "/screen">, "/">;
|
|
17222
|
+
scimApp: OpenAPIHono<{
|
|
17223
|
+
Bindings: Bindings;
|
|
17224
|
+
Variables: Variables;
|
|
17225
|
+
}, {}, "/"> | undefined;
|
|
17197
17226
|
createX509Certificate: typeof createX509Certificate;
|
|
17198
17227
|
};
|