authhero 9.1.1 → 9.2.0
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-e95c436f.entry.js +1 -0
- package/dist/authhero.cjs +133 -133
- package/dist/authhero.d.ts +298 -233
- package/dist/authhero.mjs +5803 -5765
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/action-executions-cleanup.d.ts +34 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/run-retention.d.ts +4 -1
- package/dist/types/index.d.ts +259 -229
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +28 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +234 -206
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +6 -6
- package/dist/assets/u/widget/p-c179b5da.entry.js +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -16,8 +16,10 @@ export { drainOutbox } from "./helpers/outbox-relay";
|
|
|
16
16
|
export type { EventDestination } from "./helpers/outbox-relay";
|
|
17
17
|
export { cleanupOutbox } from "./helpers/outbox-cleanup";
|
|
18
18
|
export { cleanupCodes } from "./helpers/codes-cleanup";
|
|
19
|
+
export { cleanupActionExecutions } from "./helpers/action-executions-cleanup";
|
|
19
20
|
export type { OutboxCleanupParams } from "./helpers/outbox-cleanup";
|
|
20
21
|
export type { CodesCleanupParams } from "./helpers/codes-cleanup";
|
|
22
|
+
export type { ActionExecutionsCleanupParams } from "./helpers/action-executions-cleanup";
|
|
21
23
|
export { createDefaultDestinations } from "./helpers/default-destinations";
|
|
22
24
|
export type { CreateDefaultDestinationsConfig } from "./helpers/default-destinations";
|
|
23
25
|
export { provisionDefaultClients, isInteractiveClient, } from "./helpers/provision-tenant-clients";
|
|
@@ -78,8 +80,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
78
80
|
$get: {
|
|
79
81
|
input: {
|
|
80
82
|
query: {
|
|
81
|
-
include_password_hashes?: "
|
|
82
|
-
gzip?: "
|
|
83
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
84
|
+
gzip?: "true" | "false" | undefined;
|
|
83
85
|
};
|
|
84
86
|
} & {
|
|
85
87
|
header: {
|
|
@@ -92,8 +94,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
92
94
|
} | {
|
|
93
95
|
input: {
|
|
94
96
|
query: {
|
|
95
|
-
include_password_hashes?: "
|
|
96
|
-
gzip?: "
|
|
97
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
98
|
+
gzip?: "true" | "false" | undefined;
|
|
97
99
|
};
|
|
98
100
|
} & {
|
|
99
101
|
header: {
|
|
@@ -112,7 +114,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
112
114
|
$post: {
|
|
113
115
|
input: {
|
|
114
116
|
query: {
|
|
115
|
-
include_password_hashes?: "
|
|
117
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
116
118
|
};
|
|
117
119
|
} & {
|
|
118
120
|
header: {
|
|
@@ -166,7 +168,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
166
168
|
};
|
|
167
169
|
} & {
|
|
168
170
|
json: {
|
|
169
|
-
type: "email" | "
|
|
171
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
170
172
|
phone_number?: string | undefined;
|
|
171
173
|
totp_secret?: string | undefined;
|
|
172
174
|
credential_id?: string | undefined;
|
|
@@ -306,7 +308,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
306
308
|
};
|
|
307
309
|
};
|
|
308
310
|
output: {
|
|
309
|
-
name: "email" | "
|
|
311
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
310
312
|
enabled: boolean;
|
|
311
313
|
trial_expired?: boolean | undefined;
|
|
312
314
|
}[];
|
|
@@ -461,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
461
463
|
$get: {
|
|
462
464
|
input: {
|
|
463
465
|
param: {
|
|
464
|
-
factor_name: "email" | "
|
|
466
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
465
467
|
};
|
|
466
468
|
} & {
|
|
467
469
|
header: {
|
|
@@ -469,7 +471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
469
471
|
};
|
|
470
472
|
};
|
|
471
473
|
output: {
|
|
472
|
-
name: "email" | "
|
|
474
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
473
475
|
enabled: boolean;
|
|
474
476
|
trial_expired?: boolean | undefined;
|
|
475
477
|
};
|
|
@@ -482,7 +484,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
482
484
|
$put: {
|
|
483
485
|
input: {
|
|
484
486
|
param: {
|
|
485
|
-
factor_name: "email" | "
|
|
487
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
486
488
|
};
|
|
487
489
|
} & {
|
|
488
490
|
header: {
|
|
@@ -494,7 +496,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
494
496
|
};
|
|
495
497
|
};
|
|
496
498
|
output: {
|
|
497
|
-
name: "email" | "
|
|
499
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
498
500
|
enabled: boolean;
|
|
499
501
|
trial_expired?: boolean | undefined;
|
|
500
502
|
};
|
|
@@ -1266,19 +1268,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1266
1268
|
} & {
|
|
1267
1269
|
json: {
|
|
1268
1270
|
client_id: string;
|
|
1269
|
-
inviter: {
|
|
1270
|
-
name?: string | undefined;
|
|
1271
|
-
};
|
|
1272
1271
|
invitee: {
|
|
1273
1272
|
email?: string | undefined;
|
|
1274
1273
|
};
|
|
1274
|
+
inviter: {
|
|
1275
|
+
name?: string | undefined;
|
|
1276
|
+
};
|
|
1277
|
+
id?: string | undefined;
|
|
1275
1278
|
app_metadata?: Record<string, any> | undefined;
|
|
1276
1279
|
user_metadata?: Record<string, any> | undefined;
|
|
1277
|
-
id?: string | undefined;
|
|
1278
1280
|
connection_id?: string | undefined;
|
|
1279
1281
|
roles?: string[] | undefined;
|
|
1280
|
-
ttl_sec?: number | undefined;
|
|
1281
1282
|
send_invitation_email?: boolean | undefined;
|
|
1283
|
+
ttl_sec?: number | undefined;
|
|
1282
1284
|
};
|
|
1283
1285
|
};
|
|
1284
1286
|
output: {
|
|
@@ -1461,8 +1463,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1461
1463
|
};
|
|
1462
1464
|
} & {
|
|
1463
1465
|
json: {
|
|
1464
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1465
1466
|
show_as_button?: boolean | undefined;
|
|
1467
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1466
1468
|
is_signup_enabled?: boolean | undefined;
|
|
1467
1469
|
};
|
|
1468
1470
|
};
|
|
@@ -2758,7 +2760,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2758
2760
|
hint?: string | undefined;
|
|
2759
2761
|
messages?: {
|
|
2760
2762
|
text: string;
|
|
2761
|
-
type: "
|
|
2763
|
+
type: "error" | "success" | "info" | "warning";
|
|
2762
2764
|
id?: number | undefined;
|
|
2763
2765
|
}[] | undefined;
|
|
2764
2766
|
required?: boolean | undefined;
|
|
@@ -2776,7 +2778,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2776
2778
|
hint?: string | undefined;
|
|
2777
2779
|
messages?: {
|
|
2778
2780
|
text: string;
|
|
2779
|
-
type: "
|
|
2781
|
+
type: "error" | "success" | "info" | "warning";
|
|
2780
2782
|
id?: number | undefined;
|
|
2781
2783
|
}[] | undefined;
|
|
2782
2784
|
required?: boolean | undefined;
|
|
@@ -2800,7 +2802,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2800
2802
|
hint?: string | undefined;
|
|
2801
2803
|
messages?: {
|
|
2802
2804
|
text: string;
|
|
2803
|
-
type: "
|
|
2805
|
+
type: "error" | "success" | "info" | "warning";
|
|
2804
2806
|
id?: number | undefined;
|
|
2805
2807
|
}[] | undefined;
|
|
2806
2808
|
required?: boolean | undefined;
|
|
@@ -2824,7 +2826,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2824
2826
|
hint?: string | undefined;
|
|
2825
2827
|
messages?: {
|
|
2826
2828
|
text: string;
|
|
2827
|
-
type: "
|
|
2829
|
+
type: "error" | "success" | "info" | "warning";
|
|
2828
2830
|
id?: number | undefined;
|
|
2829
2831
|
}[] | undefined;
|
|
2830
2832
|
required?: boolean | undefined;
|
|
@@ -2848,7 +2850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2848
2850
|
hint?: string | undefined;
|
|
2849
2851
|
messages?: {
|
|
2850
2852
|
text: string;
|
|
2851
|
-
type: "
|
|
2853
|
+
type: "error" | "success" | "info" | "warning";
|
|
2852
2854
|
id?: number | undefined;
|
|
2853
2855
|
}[] | undefined;
|
|
2854
2856
|
required?: boolean | undefined;
|
|
@@ -2877,7 +2879,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2877
2879
|
hint?: string | undefined;
|
|
2878
2880
|
messages?: {
|
|
2879
2881
|
text: string;
|
|
2880
|
-
type: "
|
|
2882
|
+
type: "error" | "success" | "info" | "warning";
|
|
2881
2883
|
id?: number | undefined;
|
|
2882
2884
|
}[] | undefined;
|
|
2883
2885
|
required?: boolean | undefined;
|
|
@@ -2892,7 +2894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2892
2894
|
hint?: string | undefined;
|
|
2893
2895
|
messages?: {
|
|
2894
2896
|
text: string;
|
|
2895
|
-
type: "
|
|
2897
|
+
type: "error" | "success" | "info" | "warning";
|
|
2896
2898
|
id?: number | undefined;
|
|
2897
2899
|
}[] | undefined;
|
|
2898
2900
|
required?: boolean | undefined;
|
|
@@ -2913,7 +2915,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2913
2915
|
hint?: string | undefined;
|
|
2914
2916
|
messages?: {
|
|
2915
2917
|
text: string;
|
|
2916
|
-
type: "
|
|
2918
|
+
type: "error" | "success" | "info" | "warning";
|
|
2917
2919
|
id?: number | undefined;
|
|
2918
2920
|
}[] | undefined;
|
|
2919
2921
|
required?: boolean | undefined;
|
|
@@ -2938,7 +2940,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2938
2940
|
hint?: string | undefined;
|
|
2939
2941
|
messages?: {
|
|
2940
2942
|
text: string;
|
|
2941
|
-
type: "
|
|
2943
|
+
type: "error" | "success" | "info" | "warning";
|
|
2942
2944
|
id?: number | undefined;
|
|
2943
2945
|
}[] | undefined;
|
|
2944
2946
|
required?: boolean | undefined;
|
|
@@ -2946,6 +2948,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2946
2948
|
config?: {
|
|
2947
2949
|
placeholder?: string | undefined;
|
|
2948
2950
|
default_value?: string | undefined;
|
|
2951
|
+
last_used?: boolean | undefined;
|
|
2952
|
+
last_used_label?: string | undefined;
|
|
2949
2953
|
} | undefined;
|
|
2950
2954
|
} | {
|
|
2951
2955
|
id: string;
|
|
@@ -2957,7 +2961,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2957
2961
|
hint?: string | undefined;
|
|
2958
2962
|
messages?: {
|
|
2959
2963
|
text: string;
|
|
2960
|
-
type: "
|
|
2964
|
+
type: "error" | "success" | "info" | "warning";
|
|
2961
2965
|
id?: number | undefined;
|
|
2962
2966
|
}[] | undefined;
|
|
2963
2967
|
required?: boolean | undefined;
|
|
@@ -2977,7 +2981,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2977
2981
|
hint?: string | undefined;
|
|
2978
2982
|
messages?: {
|
|
2979
2983
|
text: string;
|
|
2980
|
-
type: "
|
|
2984
|
+
type: "error" | "success" | "info" | "warning";
|
|
2981
2985
|
id?: number | undefined;
|
|
2982
2986
|
}[] | undefined;
|
|
2983
2987
|
required?: boolean | undefined;
|
|
@@ -2996,7 +3000,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2996
3000
|
hint?: string | undefined;
|
|
2997
3001
|
messages?: {
|
|
2998
3002
|
text: string;
|
|
2999
|
-
type: "
|
|
3003
|
+
type: "error" | "success" | "info" | "warning";
|
|
3000
3004
|
id?: number | undefined;
|
|
3001
3005
|
}[] | undefined;
|
|
3002
3006
|
required?: boolean | undefined;
|
|
@@ -3018,7 +3022,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3018
3022
|
hint?: string | undefined;
|
|
3019
3023
|
messages?: {
|
|
3020
3024
|
text: string;
|
|
3021
|
-
type: "
|
|
3025
|
+
type: "error" | "success" | "info" | "warning";
|
|
3022
3026
|
id?: number | undefined;
|
|
3023
3027
|
}[] | undefined;
|
|
3024
3028
|
required?: boolean | undefined;
|
|
@@ -3040,7 +3044,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3040
3044
|
hint?: string | undefined;
|
|
3041
3045
|
messages?: {
|
|
3042
3046
|
text: string;
|
|
3043
|
-
type: "
|
|
3047
|
+
type: "error" | "success" | "info" | "warning";
|
|
3044
3048
|
id?: number | undefined;
|
|
3045
3049
|
}[] | undefined;
|
|
3046
3050
|
required?: boolean | undefined;
|
|
@@ -3059,7 +3063,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3059
3063
|
hint?: string | undefined;
|
|
3060
3064
|
messages?: {
|
|
3061
3065
|
text: string;
|
|
3062
|
-
type: "
|
|
3066
|
+
type: "error" | "success" | "info" | "warning";
|
|
3063
3067
|
id?: number | undefined;
|
|
3064
3068
|
}[] | undefined;
|
|
3065
3069
|
required?: boolean | undefined;
|
|
@@ -3086,7 +3090,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3086
3090
|
hint?: string | undefined;
|
|
3087
3091
|
messages?: {
|
|
3088
3092
|
text: string;
|
|
3089
|
-
type: "
|
|
3093
|
+
type: "error" | "success" | "info" | "warning";
|
|
3090
3094
|
id?: number | undefined;
|
|
3091
3095
|
}[] | undefined;
|
|
3092
3096
|
required?: boolean | undefined;
|
|
@@ -3107,7 +3111,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3107
3111
|
hint?: string | undefined;
|
|
3108
3112
|
messages?: {
|
|
3109
3113
|
text: string;
|
|
3110
|
-
type: "
|
|
3114
|
+
type: "error" | "success" | "info" | "warning";
|
|
3111
3115
|
id?: number | undefined;
|
|
3112
3116
|
}[] | undefined;
|
|
3113
3117
|
required?: boolean | undefined;
|
|
@@ -3117,6 +3121,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3117
3121
|
multiline?: boolean | undefined;
|
|
3118
3122
|
max_length?: number | undefined;
|
|
3119
3123
|
default_value?: string | undefined;
|
|
3124
|
+
last_used?: boolean | undefined;
|
|
3125
|
+
last_used_label?: string | undefined;
|
|
3120
3126
|
} | undefined;
|
|
3121
3127
|
} | {
|
|
3122
3128
|
id: string;
|
|
@@ -3128,7 +3134,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3128
3134
|
hint?: string | undefined;
|
|
3129
3135
|
messages?: {
|
|
3130
3136
|
text: string;
|
|
3131
|
-
type: "
|
|
3137
|
+
type: "error" | "success" | "info" | "warning";
|
|
3132
3138
|
id?: number | undefined;
|
|
3133
3139
|
}[] | undefined;
|
|
3134
3140
|
required?: boolean | undefined;
|
|
@@ -3361,7 +3367,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3361
3367
|
hint?: string | undefined;
|
|
3362
3368
|
messages?: {
|
|
3363
3369
|
text: string;
|
|
3364
|
-
type: "
|
|
3370
|
+
type: "error" | "success" | "info" | "warning";
|
|
3365
3371
|
id?: number | undefined;
|
|
3366
3372
|
}[] | undefined;
|
|
3367
3373
|
required?: boolean | undefined;
|
|
@@ -3379,7 +3385,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3379
3385
|
hint?: string | undefined;
|
|
3380
3386
|
messages?: {
|
|
3381
3387
|
text: string;
|
|
3382
|
-
type: "
|
|
3388
|
+
type: "error" | "success" | "info" | "warning";
|
|
3383
3389
|
id?: number | undefined;
|
|
3384
3390
|
}[] | undefined;
|
|
3385
3391
|
required?: boolean | undefined;
|
|
@@ -3403,7 +3409,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3403
3409
|
hint?: string | undefined;
|
|
3404
3410
|
messages?: {
|
|
3405
3411
|
text: string;
|
|
3406
|
-
type: "
|
|
3412
|
+
type: "error" | "success" | "info" | "warning";
|
|
3407
3413
|
id?: number | undefined;
|
|
3408
3414
|
}[] | undefined;
|
|
3409
3415
|
required?: boolean | undefined;
|
|
@@ -3427,7 +3433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3427
3433
|
hint?: string | undefined;
|
|
3428
3434
|
messages?: {
|
|
3429
3435
|
text: string;
|
|
3430
|
-
type: "
|
|
3436
|
+
type: "error" | "success" | "info" | "warning";
|
|
3431
3437
|
id?: number | undefined;
|
|
3432
3438
|
}[] | undefined;
|
|
3433
3439
|
required?: boolean | undefined;
|
|
@@ -3451,7 +3457,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3451
3457
|
hint?: string | undefined;
|
|
3452
3458
|
messages?: {
|
|
3453
3459
|
text: string;
|
|
3454
|
-
type: "
|
|
3460
|
+
type: "error" | "success" | "info" | "warning";
|
|
3455
3461
|
id?: number | undefined;
|
|
3456
3462
|
}[] | undefined;
|
|
3457
3463
|
required?: boolean | undefined;
|
|
@@ -3480,7 +3486,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3480
3486
|
hint?: string | undefined;
|
|
3481
3487
|
messages?: {
|
|
3482
3488
|
text: string;
|
|
3483
|
-
type: "
|
|
3489
|
+
type: "error" | "success" | "info" | "warning";
|
|
3484
3490
|
id?: number | undefined;
|
|
3485
3491
|
}[] | undefined;
|
|
3486
3492
|
required?: boolean | undefined;
|
|
@@ -3495,7 +3501,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3495
3501
|
hint?: string | undefined;
|
|
3496
3502
|
messages?: {
|
|
3497
3503
|
text: string;
|
|
3498
|
-
type: "
|
|
3504
|
+
type: "error" | "success" | "info" | "warning";
|
|
3499
3505
|
id?: number | undefined;
|
|
3500
3506
|
}[] | undefined;
|
|
3501
3507
|
required?: boolean | undefined;
|
|
@@ -3516,7 +3522,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3516
3522
|
hint?: string | undefined;
|
|
3517
3523
|
messages?: {
|
|
3518
3524
|
text: string;
|
|
3519
|
-
type: "
|
|
3525
|
+
type: "error" | "success" | "info" | "warning";
|
|
3520
3526
|
id?: number | undefined;
|
|
3521
3527
|
}[] | undefined;
|
|
3522
3528
|
required?: boolean | undefined;
|
|
@@ -3541,7 +3547,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3541
3547
|
hint?: string | undefined;
|
|
3542
3548
|
messages?: {
|
|
3543
3549
|
text: string;
|
|
3544
|
-
type: "
|
|
3550
|
+
type: "error" | "success" | "info" | "warning";
|
|
3545
3551
|
id?: number | undefined;
|
|
3546
3552
|
}[] | undefined;
|
|
3547
3553
|
required?: boolean | undefined;
|
|
@@ -3549,6 +3555,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3549
3555
|
config?: {
|
|
3550
3556
|
placeholder?: string | undefined;
|
|
3551
3557
|
default_value?: string | undefined;
|
|
3558
|
+
last_used?: boolean | undefined;
|
|
3559
|
+
last_used_label?: string | undefined;
|
|
3552
3560
|
} | undefined;
|
|
3553
3561
|
} | {
|
|
3554
3562
|
id: string;
|
|
@@ -3560,7 +3568,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3560
3568
|
hint?: string | undefined;
|
|
3561
3569
|
messages?: {
|
|
3562
3570
|
text: string;
|
|
3563
|
-
type: "
|
|
3571
|
+
type: "error" | "success" | "info" | "warning";
|
|
3564
3572
|
id?: number | undefined;
|
|
3565
3573
|
}[] | undefined;
|
|
3566
3574
|
required?: boolean | undefined;
|
|
@@ -3580,7 +3588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3580
3588
|
hint?: string | undefined;
|
|
3581
3589
|
messages?: {
|
|
3582
3590
|
text: string;
|
|
3583
|
-
type: "
|
|
3591
|
+
type: "error" | "success" | "info" | "warning";
|
|
3584
3592
|
id?: number | undefined;
|
|
3585
3593
|
}[] | undefined;
|
|
3586
3594
|
required?: boolean | undefined;
|
|
@@ -3599,7 +3607,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3599
3607
|
hint?: string | undefined;
|
|
3600
3608
|
messages?: {
|
|
3601
3609
|
text: string;
|
|
3602
|
-
type: "
|
|
3610
|
+
type: "error" | "success" | "info" | "warning";
|
|
3603
3611
|
id?: number | undefined;
|
|
3604
3612
|
}[] | undefined;
|
|
3605
3613
|
required?: boolean | undefined;
|
|
@@ -3621,7 +3629,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3621
3629
|
hint?: string | undefined;
|
|
3622
3630
|
messages?: {
|
|
3623
3631
|
text: string;
|
|
3624
|
-
type: "
|
|
3632
|
+
type: "error" | "success" | "info" | "warning";
|
|
3625
3633
|
id?: number | undefined;
|
|
3626
3634
|
}[] | undefined;
|
|
3627
3635
|
required?: boolean | undefined;
|
|
@@ -3643,7 +3651,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3643
3651
|
hint?: string | undefined;
|
|
3644
3652
|
messages?: {
|
|
3645
3653
|
text: string;
|
|
3646
|
-
type: "
|
|
3654
|
+
type: "error" | "success" | "info" | "warning";
|
|
3647
3655
|
id?: number | undefined;
|
|
3648
3656
|
}[] | undefined;
|
|
3649
3657
|
required?: boolean | undefined;
|
|
@@ -3662,7 +3670,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3662
3670
|
hint?: string | undefined;
|
|
3663
3671
|
messages?: {
|
|
3664
3672
|
text: string;
|
|
3665
|
-
type: "
|
|
3673
|
+
type: "error" | "success" | "info" | "warning";
|
|
3666
3674
|
id?: number | undefined;
|
|
3667
3675
|
}[] | undefined;
|
|
3668
3676
|
required?: boolean | undefined;
|
|
@@ -3689,7 +3697,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3689
3697
|
hint?: string | undefined;
|
|
3690
3698
|
messages?: {
|
|
3691
3699
|
text: string;
|
|
3692
|
-
type: "
|
|
3700
|
+
type: "error" | "success" | "info" | "warning";
|
|
3693
3701
|
id?: number | undefined;
|
|
3694
3702
|
}[] | undefined;
|
|
3695
3703
|
required?: boolean | undefined;
|
|
@@ -3710,7 +3718,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3710
3718
|
hint?: string | undefined;
|
|
3711
3719
|
messages?: {
|
|
3712
3720
|
text: string;
|
|
3713
|
-
type: "
|
|
3721
|
+
type: "error" | "success" | "info" | "warning";
|
|
3714
3722
|
id?: number | undefined;
|
|
3715
3723
|
}[] | undefined;
|
|
3716
3724
|
required?: boolean | undefined;
|
|
@@ -3720,6 +3728,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3720
3728
|
multiline?: boolean | undefined;
|
|
3721
3729
|
max_length?: number | undefined;
|
|
3722
3730
|
default_value?: string | undefined;
|
|
3731
|
+
last_used?: boolean | undefined;
|
|
3732
|
+
last_used_label?: string | undefined;
|
|
3723
3733
|
} | undefined;
|
|
3724
3734
|
} | {
|
|
3725
3735
|
id: string;
|
|
@@ -3731,7 +3741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3731
3741
|
hint?: string | undefined;
|
|
3732
3742
|
messages?: {
|
|
3733
3743
|
text: string;
|
|
3734
|
-
type: "
|
|
3744
|
+
type: "error" | "success" | "info" | "warning";
|
|
3735
3745
|
id?: number | undefined;
|
|
3736
3746
|
}[] | undefined;
|
|
3737
3747
|
required?: boolean | undefined;
|
|
@@ -3980,7 +3990,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3980
3990
|
hint?: string | undefined;
|
|
3981
3991
|
messages?: {
|
|
3982
3992
|
text: string;
|
|
3983
|
-
type: "
|
|
3993
|
+
type: "error" | "success" | "info" | "warning";
|
|
3984
3994
|
id?: number | undefined;
|
|
3985
3995
|
}[] | undefined;
|
|
3986
3996
|
required?: boolean | undefined;
|
|
@@ -3998,7 +4008,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3998
4008
|
hint?: string | undefined;
|
|
3999
4009
|
messages?: {
|
|
4000
4010
|
text: string;
|
|
4001
|
-
type: "
|
|
4011
|
+
type: "error" | "success" | "info" | "warning";
|
|
4002
4012
|
id?: number | undefined;
|
|
4003
4013
|
}[] | undefined;
|
|
4004
4014
|
required?: boolean | undefined;
|
|
@@ -4022,7 +4032,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4022
4032
|
hint?: string | undefined;
|
|
4023
4033
|
messages?: {
|
|
4024
4034
|
text: string;
|
|
4025
|
-
type: "
|
|
4035
|
+
type: "error" | "success" | "info" | "warning";
|
|
4026
4036
|
id?: number | undefined;
|
|
4027
4037
|
}[] | undefined;
|
|
4028
4038
|
required?: boolean | undefined;
|
|
@@ -4046,7 +4056,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4046
4056
|
hint?: string | undefined;
|
|
4047
4057
|
messages?: {
|
|
4048
4058
|
text: string;
|
|
4049
|
-
type: "
|
|
4059
|
+
type: "error" | "success" | "info" | "warning";
|
|
4050
4060
|
id?: number | undefined;
|
|
4051
4061
|
}[] | undefined;
|
|
4052
4062
|
required?: boolean | undefined;
|
|
@@ -4070,7 +4080,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4070
4080
|
hint?: string | undefined;
|
|
4071
4081
|
messages?: {
|
|
4072
4082
|
text: string;
|
|
4073
|
-
type: "
|
|
4083
|
+
type: "error" | "success" | "info" | "warning";
|
|
4074
4084
|
id?: number | undefined;
|
|
4075
4085
|
}[] | undefined;
|
|
4076
4086
|
required?: boolean | undefined;
|
|
@@ -4099,7 +4109,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4099
4109
|
hint?: string | undefined;
|
|
4100
4110
|
messages?: {
|
|
4101
4111
|
text: string;
|
|
4102
|
-
type: "
|
|
4112
|
+
type: "error" | "success" | "info" | "warning";
|
|
4103
4113
|
id?: number | undefined;
|
|
4104
4114
|
}[] | undefined;
|
|
4105
4115
|
required?: boolean | undefined;
|
|
@@ -4114,7 +4124,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4114
4124
|
hint?: string | undefined;
|
|
4115
4125
|
messages?: {
|
|
4116
4126
|
text: string;
|
|
4117
|
-
type: "
|
|
4127
|
+
type: "error" | "success" | "info" | "warning";
|
|
4118
4128
|
id?: number | undefined;
|
|
4119
4129
|
}[] | undefined;
|
|
4120
4130
|
required?: boolean | undefined;
|
|
@@ -4135,7 +4145,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4135
4145
|
hint?: string | undefined;
|
|
4136
4146
|
messages?: {
|
|
4137
4147
|
text: string;
|
|
4138
|
-
type: "
|
|
4148
|
+
type: "error" | "success" | "info" | "warning";
|
|
4139
4149
|
id?: number | undefined;
|
|
4140
4150
|
}[] | undefined;
|
|
4141
4151
|
required?: boolean | undefined;
|
|
@@ -4160,7 +4170,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4160
4170
|
hint?: string | undefined;
|
|
4161
4171
|
messages?: {
|
|
4162
4172
|
text: string;
|
|
4163
|
-
type: "
|
|
4173
|
+
type: "error" | "success" | "info" | "warning";
|
|
4164
4174
|
id?: number | undefined;
|
|
4165
4175
|
}[] | undefined;
|
|
4166
4176
|
required?: boolean | undefined;
|
|
@@ -4168,6 +4178,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4168
4178
|
config?: {
|
|
4169
4179
|
placeholder?: string | undefined;
|
|
4170
4180
|
default_value?: string | undefined;
|
|
4181
|
+
last_used?: boolean | undefined;
|
|
4182
|
+
last_used_label?: string | undefined;
|
|
4171
4183
|
} | undefined;
|
|
4172
4184
|
} | {
|
|
4173
4185
|
id: string;
|
|
@@ -4179,7 +4191,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4179
4191
|
hint?: string | undefined;
|
|
4180
4192
|
messages?: {
|
|
4181
4193
|
text: string;
|
|
4182
|
-
type: "
|
|
4194
|
+
type: "error" | "success" | "info" | "warning";
|
|
4183
4195
|
id?: number | undefined;
|
|
4184
4196
|
}[] | undefined;
|
|
4185
4197
|
required?: boolean | undefined;
|
|
@@ -4199,7 +4211,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4199
4211
|
hint?: string | undefined;
|
|
4200
4212
|
messages?: {
|
|
4201
4213
|
text: string;
|
|
4202
|
-
type: "
|
|
4214
|
+
type: "error" | "success" | "info" | "warning";
|
|
4203
4215
|
id?: number | undefined;
|
|
4204
4216
|
}[] | undefined;
|
|
4205
4217
|
required?: boolean | undefined;
|
|
@@ -4218,7 +4230,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4218
4230
|
hint?: string | undefined;
|
|
4219
4231
|
messages?: {
|
|
4220
4232
|
text: string;
|
|
4221
|
-
type: "
|
|
4233
|
+
type: "error" | "success" | "info" | "warning";
|
|
4222
4234
|
id?: number | undefined;
|
|
4223
4235
|
}[] | undefined;
|
|
4224
4236
|
required?: boolean | undefined;
|
|
@@ -4240,7 +4252,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4240
4252
|
hint?: string | undefined;
|
|
4241
4253
|
messages?: {
|
|
4242
4254
|
text: string;
|
|
4243
|
-
type: "
|
|
4255
|
+
type: "error" | "success" | "info" | "warning";
|
|
4244
4256
|
id?: number | undefined;
|
|
4245
4257
|
}[] | undefined;
|
|
4246
4258
|
required?: boolean | undefined;
|
|
@@ -4262,7 +4274,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4262
4274
|
hint?: string | undefined;
|
|
4263
4275
|
messages?: {
|
|
4264
4276
|
text: string;
|
|
4265
|
-
type: "
|
|
4277
|
+
type: "error" | "success" | "info" | "warning";
|
|
4266
4278
|
id?: number | undefined;
|
|
4267
4279
|
}[] | undefined;
|
|
4268
4280
|
required?: boolean | undefined;
|
|
@@ -4281,7 +4293,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4281
4293
|
hint?: string | undefined;
|
|
4282
4294
|
messages?: {
|
|
4283
4295
|
text: string;
|
|
4284
|
-
type: "
|
|
4296
|
+
type: "error" | "success" | "info" | "warning";
|
|
4285
4297
|
id?: number | undefined;
|
|
4286
4298
|
}[] | undefined;
|
|
4287
4299
|
required?: boolean | undefined;
|
|
@@ -4308,7 +4320,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4308
4320
|
hint?: string | undefined;
|
|
4309
4321
|
messages?: {
|
|
4310
4322
|
text: string;
|
|
4311
|
-
type: "
|
|
4323
|
+
type: "error" | "success" | "info" | "warning";
|
|
4312
4324
|
id?: number | undefined;
|
|
4313
4325
|
}[] | undefined;
|
|
4314
4326
|
required?: boolean | undefined;
|
|
@@ -4329,7 +4341,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4329
4341
|
hint?: string | undefined;
|
|
4330
4342
|
messages?: {
|
|
4331
4343
|
text: string;
|
|
4332
|
-
type: "
|
|
4344
|
+
type: "error" | "success" | "info" | "warning";
|
|
4333
4345
|
id?: number | undefined;
|
|
4334
4346
|
}[] | undefined;
|
|
4335
4347
|
required?: boolean | undefined;
|
|
@@ -4339,6 +4351,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4339
4351
|
multiline?: boolean | undefined;
|
|
4340
4352
|
max_length?: number | undefined;
|
|
4341
4353
|
default_value?: string | undefined;
|
|
4354
|
+
last_used?: boolean | undefined;
|
|
4355
|
+
last_used_label?: string | undefined;
|
|
4342
4356
|
} | undefined;
|
|
4343
4357
|
} | {
|
|
4344
4358
|
id: string;
|
|
@@ -4350,7 +4364,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4350
4364
|
hint?: string | undefined;
|
|
4351
4365
|
messages?: {
|
|
4352
4366
|
text: string;
|
|
4353
|
-
type: "
|
|
4367
|
+
type: "error" | "success" | "info" | "warning";
|
|
4354
4368
|
id?: number | undefined;
|
|
4355
4369
|
}[] | undefined;
|
|
4356
4370
|
required?: boolean | undefined;
|
|
@@ -4604,7 +4618,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4604
4618
|
hint?: string | undefined;
|
|
4605
4619
|
messages?: {
|
|
4606
4620
|
text: string;
|
|
4607
|
-
type: "
|
|
4621
|
+
type: "error" | "success" | "info" | "warning";
|
|
4608
4622
|
id?: number | undefined;
|
|
4609
4623
|
}[] | undefined;
|
|
4610
4624
|
required?: boolean | undefined;
|
|
@@ -4622,7 +4636,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4622
4636
|
hint?: string | undefined;
|
|
4623
4637
|
messages?: {
|
|
4624
4638
|
text: string;
|
|
4625
|
-
type: "
|
|
4639
|
+
type: "error" | "success" | "info" | "warning";
|
|
4626
4640
|
id?: number | undefined;
|
|
4627
4641
|
}[] | undefined;
|
|
4628
4642
|
required?: boolean | undefined;
|
|
@@ -4646,7 +4660,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4646
4660
|
hint?: string | undefined;
|
|
4647
4661
|
messages?: {
|
|
4648
4662
|
text: string;
|
|
4649
|
-
type: "
|
|
4663
|
+
type: "error" | "success" | "info" | "warning";
|
|
4650
4664
|
id?: number | undefined;
|
|
4651
4665
|
}[] | undefined;
|
|
4652
4666
|
required?: boolean | undefined;
|
|
@@ -4670,7 +4684,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4670
4684
|
hint?: string | undefined;
|
|
4671
4685
|
messages?: {
|
|
4672
4686
|
text: string;
|
|
4673
|
-
type: "
|
|
4687
|
+
type: "error" | "success" | "info" | "warning";
|
|
4674
4688
|
id?: number | undefined;
|
|
4675
4689
|
}[] | undefined;
|
|
4676
4690
|
required?: boolean | undefined;
|
|
@@ -4694,7 +4708,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4694
4708
|
hint?: string | undefined;
|
|
4695
4709
|
messages?: {
|
|
4696
4710
|
text: string;
|
|
4697
|
-
type: "
|
|
4711
|
+
type: "error" | "success" | "info" | "warning";
|
|
4698
4712
|
id?: number | undefined;
|
|
4699
4713
|
}[] | undefined;
|
|
4700
4714
|
required?: boolean | undefined;
|
|
@@ -4719,7 +4733,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4719
4733
|
hint?: string | undefined;
|
|
4720
4734
|
messages?: {
|
|
4721
4735
|
text: string;
|
|
4722
|
-
type: "
|
|
4736
|
+
type: "error" | "success" | "info" | "warning";
|
|
4723
4737
|
id?: number | undefined;
|
|
4724
4738
|
}[] | undefined;
|
|
4725
4739
|
required?: boolean | undefined;
|
|
@@ -4734,7 +4748,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4734
4748
|
hint?: string | undefined;
|
|
4735
4749
|
messages?: {
|
|
4736
4750
|
text: string;
|
|
4737
|
-
type: "
|
|
4751
|
+
type: "error" | "success" | "info" | "warning";
|
|
4738
4752
|
id?: number | undefined;
|
|
4739
4753
|
}[] | undefined;
|
|
4740
4754
|
required?: boolean | undefined;
|
|
@@ -4755,7 +4769,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4755
4769
|
hint?: string | undefined;
|
|
4756
4770
|
messages?: {
|
|
4757
4771
|
text: string;
|
|
4758
|
-
type: "
|
|
4772
|
+
type: "error" | "success" | "info" | "warning";
|
|
4759
4773
|
id?: number | undefined;
|
|
4760
4774
|
}[] | undefined;
|
|
4761
4775
|
required?: boolean | undefined;
|
|
@@ -4780,7 +4794,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4780
4794
|
hint?: string | undefined;
|
|
4781
4795
|
messages?: {
|
|
4782
4796
|
text: string;
|
|
4783
|
-
type: "
|
|
4797
|
+
type: "error" | "success" | "info" | "warning";
|
|
4784
4798
|
id?: number | undefined;
|
|
4785
4799
|
}[] | undefined;
|
|
4786
4800
|
required?: boolean | undefined;
|
|
@@ -4788,6 +4802,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4788
4802
|
config?: {
|
|
4789
4803
|
placeholder?: string | undefined;
|
|
4790
4804
|
default_value?: string | undefined;
|
|
4805
|
+
last_used?: boolean | undefined;
|
|
4806
|
+
last_used_label?: string | undefined;
|
|
4791
4807
|
} | undefined;
|
|
4792
4808
|
} | {
|
|
4793
4809
|
id: string;
|
|
@@ -4799,7 +4815,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4799
4815
|
hint?: string | undefined;
|
|
4800
4816
|
messages?: {
|
|
4801
4817
|
text: string;
|
|
4802
|
-
type: "
|
|
4818
|
+
type: "error" | "success" | "info" | "warning";
|
|
4803
4819
|
id?: number | undefined;
|
|
4804
4820
|
}[] | undefined;
|
|
4805
4821
|
required?: boolean | undefined;
|
|
@@ -4819,7 +4835,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4819
4835
|
hint?: string | undefined;
|
|
4820
4836
|
messages?: {
|
|
4821
4837
|
text: string;
|
|
4822
|
-
type: "
|
|
4838
|
+
type: "error" | "success" | "info" | "warning";
|
|
4823
4839
|
id?: number | undefined;
|
|
4824
4840
|
}[] | undefined;
|
|
4825
4841
|
required?: boolean | undefined;
|
|
@@ -4838,7 +4854,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4838
4854
|
hint?: string | undefined;
|
|
4839
4855
|
messages?: {
|
|
4840
4856
|
text: string;
|
|
4841
|
-
type: "
|
|
4857
|
+
type: "error" | "success" | "info" | "warning";
|
|
4842
4858
|
id?: number | undefined;
|
|
4843
4859
|
}[] | undefined;
|
|
4844
4860
|
required?: boolean | undefined;
|
|
@@ -4860,7 +4876,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4860
4876
|
hint?: string | undefined;
|
|
4861
4877
|
messages?: {
|
|
4862
4878
|
text: string;
|
|
4863
|
-
type: "
|
|
4879
|
+
type: "error" | "success" | "info" | "warning";
|
|
4864
4880
|
id?: number | undefined;
|
|
4865
4881
|
}[] | undefined;
|
|
4866
4882
|
required?: boolean | undefined;
|
|
@@ -4882,7 +4898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4882
4898
|
hint?: string | undefined;
|
|
4883
4899
|
messages?: {
|
|
4884
4900
|
text: string;
|
|
4885
|
-
type: "
|
|
4901
|
+
type: "error" | "success" | "info" | "warning";
|
|
4886
4902
|
id?: number | undefined;
|
|
4887
4903
|
}[] | undefined;
|
|
4888
4904
|
required?: boolean | undefined;
|
|
@@ -4901,7 +4917,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4901
4917
|
hint?: string | undefined;
|
|
4902
4918
|
messages?: {
|
|
4903
4919
|
text: string;
|
|
4904
|
-
type: "
|
|
4920
|
+
type: "error" | "success" | "info" | "warning";
|
|
4905
4921
|
id?: number | undefined;
|
|
4906
4922
|
}[] | undefined;
|
|
4907
4923
|
required?: boolean | undefined;
|
|
@@ -4928,7 +4944,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4928
4944
|
hint?: string | undefined;
|
|
4929
4945
|
messages?: {
|
|
4930
4946
|
text: string;
|
|
4931
|
-
type: "
|
|
4947
|
+
type: "error" | "success" | "info" | "warning";
|
|
4932
4948
|
id?: number | undefined;
|
|
4933
4949
|
}[] | undefined;
|
|
4934
4950
|
required?: boolean | undefined;
|
|
@@ -4949,7 +4965,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4949
4965
|
hint?: string | undefined;
|
|
4950
4966
|
messages?: {
|
|
4951
4967
|
text: string;
|
|
4952
|
-
type: "
|
|
4968
|
+
type: "error" | "success" | "info" | "warning";
|
|
4953
4969
|
id?: number | undefined;
|
|
4954
4970
|
}[] | undefined;
|
|
4955
4971
|
required?: boolean | undefined;
|
|
@@ -4959,6 +4975,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4959
4975
|
multiline?: boolean | undefined;
|
|
4960
4976
|
max_length?: number | undefined;
|
|
4961
4977
|
default_value?: string | undefined;
|
|
4978
|
+
last_used?: boolean | undefined;
|
|
4979
|
+
last_used_label?: string | undefined;
|
|
4962
4980
|
} | undefined;
|
|
4963
4981
|
} | {
|
|
4964
4982
|
id: string;
|
|
@@ -4970,7 +4988,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4970
4988
|
hint?: string | undefined;
|
|
4971
4989
|
messages?: {
|
|
4972
4990
|
text: string;
|
|
4973
|
-
type: "
|
|
4991
|
+
type: "error" | "success" | "info" | "warning";
|
|
4974
4992
|
id?: number | undefined;
|
|
4975
4993
|
}[] | undefined;
|
|
4976
4994
|
required?: boolean | undefined;
|
|
@@ -5201,7 +5219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5201
5219
|
hint?: string | undefined;
|
|
5202
5220
|
messages?: {
|
|
5203
5221
|
text: string;
|
|
5204
|
-
type: "
|
|
5222
|
+
type: "error" | "success" | "info" | "warning";
|
|
5205
5223
|
id?: number | undefined;
|
|
5206
5224
|
}[] | undefined;
|
|
5207
5225
|
required?: boolean | undefined;
|
|
@@ -5219,7 +5237,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5219
5237
|
hint?: string | undefined;
|
|
5220
5238
|
messages?: {
|
|
5221
5239
|
text: string;
|
|
5222
|
-
type: "
|
|
5240
|
+
type: "error" | "success" | "info" | "warning";
|
|
5223
5241
|
id?: number | undefined;
|
|
5224
5242
|
}[] | undefined;
|
|
5225
5243
|
required?: boolean | undefined;
|
|
@@ -5243,7 +5261,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5243
5261
|
hint?: string | undefined;
|
|
5244
5262
|
messages?: {
|
|
5245
5263
|
text: string;
|
|
5246
|
-
type: "
|
|
5264
|
+
type: "error" | "success" | "info" | "warning";
|
|
5247
5265
|
id?: number | undefined;
|
|
5248
5266
|
}[] | undefined;
|
|
5249
5267
|
required?: boolean | undefined;
|
|
@@ -5267,7 +5285,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5267
5285
|
hint?: string | undefined;
|
|
5268
5286
|
messages?: {
|
|
5269
5287
|
text: string;
|
|
5270
|
-
type: "
|
|
5288
|
+
type: "error" | "success" | "info" | "warning";
|
|
5271
5289
|
id?: number | undefined;
|
|
5272
5290
|
}[] | undefined;
|
|
5273
5291
|
required?: boolean | undefined;
|
|
@@ -5291,7 +5309,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5291
5309
|
hint?: string | undefined;
|
|
5292
5310
|
messages?: {
|
|
5293
5311
|
text: string;
|
|
5294
|
-
type: "
|
|
5312
|
+
type: "error" | "success" | "info" | "warning";
|
|
5295
5313
|
id?: number | undefined;
|
|
5296
5314
|
}[] | undefined;
|
|
5297
5315
|
required?: boolean | undefined;
|
|
@@ -5320,7 +5338,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5320
5338
|
hint?: string | undefined;
|
|
5321
5339
|
messages?: {
|
|
5322
5340
|
text: string;
|
|
5323
|
-
type: "
|
|
5341
|
+
type: "error" | "success" | "info" | "warning";
|
|
5324
5342
|
id?: number | undefined;
|
|
5325
5343
|
}[] | undefined;
|
|
5326
5344
|
required?: boolean | undefined;
|
|
@@ -5335,7 +5353,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5335
5353
|
hint?: string | undefined;
|
|
5336
5354
|
messages?: {
|
|
5337
5355
|
text: string;
|
|
5338
|
-
type: "
|
|
5356
|
+
type: "error" | "success" | "info" | "warning";
|
|
5339
5357
|
id?: number | undefined;
|
|
5340
5358
|
}[] | undefined;
|
|
5341
5359
|
required?: boolean | undefined;
|
|
@@ -5356,7 +5374,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5356
5374
|
hint?: string | undefined;
|
|
5357
5375
|
messages?: {
|
|
5358
5376
|
text: string;
|
|
5359
|
-
type: "
|
|
5377
|
+
type: "error" | "success" | "info" | "warning";
|
|
5360
5378
|
id?: number | undefined;
|
|
5361
5379
|
}[] | undefined;
|
|
5362
5380
|
required?: boolean | undefined;
|
|
@@ -5381,7 +5399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5381
5399
|
hint?: string | undefined;
|
|
5382
5400
|
messages?: {
|
|
5383
5401
|
text: string;
|
|
5384
|
-
type: "
|
|
5402
|
+
type: "error" | "success" | "info" | "warning";
|
|
5385
5403
|
id?: number | undefined;
|
|
5386
5404
|
}[] | undefined;
|
|
5387
5405
|
required?: boolean | undefined;
|
|
@@ -5389,6 +5407,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5389
5407
|
config?: {
|
|
5390
5408
|
placeholder?: string | undefined;
|
|
5391
5409
|
default_value?: string | undefined;
|
|
5410
|
+
last_used?: boolean | undefined;
|
|
5411
|
+
last_used_label?: string | undefined;
|
|
5392
5412
|
} | undefined;
|
|
5393
5413
|
} | {
|
|
5394
5414
|
id: string;
|
|
@@ -5400,7 +5420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5400
5420
|
hint?: string | undefined;
|
|
5401
5421
|
messages?: {
|
|
5402
5422
|
text: string;
|
|
5403
|
-
type: "
|
|
5423
|
+
type: "error" | "success" | "info" | "warning";
|
|
5404
5424
|
id?: number | undefined;
|
|
5405
5425
|
}[] | undefined;
|
|
5406
5426
|
required?: boolean | undefined;
|
|
@@ -5420,7 +5440,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5420
5440
|
hint?: string | undefined;
|
|
5421
5441
|
messages?: {
|
|
5422
5442
|
text: string;
|
|
5423
|
-
type: "
|
|
5443
|
+
type: "error" | "success" | "info" | "warning";
|
|
5424
5444
|
id?: number | undefined;
|
|
5425
5445
|
}[] | undefined;
|
|
5426
5446
|
required?: boolean | undefined;
|
|
@@ -5439,7 +5459,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5439
5459
|
hint?: string | undefined;
|
|
5440
5460
|
messages?: {
|
|
5441
5461
|
text: string;
|
|
5442
|
-
type: "
|
|
5462
|
+
type: "error" | "success" | "info" | "warning";
|
|
5443
5463
|
id?: number | undefined;
|
|
5444
5464
|
}[] | undefined;
|
|
5445
5465
|
required?: boolean | undefined;
|
|
@@ -5461,7 +5481,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5461
5481
|
hint?: string | undefined;
|
|
5462
5482
|
messages?: {
|
|
5463
5483
|
text: string;
|
|
5464
|
-
type: "
|
|
5484
|
+
type: "error" | "success" | "info" | "warning";
|
|
5465
5485
|
id?: number | undefined;
|
|
5466
5486
|
}[] | undefined;
|
|
5467
5487
|
required?: boolean | undefined;
|
|
@@ -5483,7 +5503,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5483
5503
|
hint?: string | undefined;
|
|
5484
5504
|
messages?: {
|
|
5485
5505
|
text: string;
|
|
5486
|
-
type: "
|
|
5506
|
+
type: "error" | "success" | "info" | "warning";
|
|
5487
5507
|
id?: number | undefined;
|
|
5488
5508
|
}[] | undefined;
|
|
5489
5509
|
required?: boolean | undefined;
|
|
@@ -5502,7 +5522,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5502
5522
|
hint?: string | undefined;
|
|
5503
5523
|
messages?: {
|
|
5504
5524
|
text: string;
|
|
5505
|
-
type: "
|
|
5525
|
+
type: "error" | "success" | "info" | "warning";
|
|
5506
5526
|
id?: number | undefined;
|
|
5507
5527
|
}[] | undefined;
|
|
5508
5528
|
required?: boolean | undefined;
|
|
@@ -5529,7 +5549,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5529
5549
|
hint?: string | undefined;
|
|
5530
5550
|
messages?: {
|
|
5531
5551
|
text: string;
|
|
5532
|
-
type: "
|
|
5552
|
+
type: "error" | "success" | "info" | "warning";
|
|
5533
5553
|
id?: number | undefined;
|
|
5534
5554
|
}[] | undefined;
|
|
5535
5555
|
required?: boolean | undefined;
|
|
@@ -5550,7 +5570,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5550
5570
|
hint?: string | undefined;
|
|
5551
5571
|
messages?: {
|
|
5552
5572
|
text: string;
|
|
5553
|
-
type: "
|
|
5573
|
+
type: "error" | "success" | "info" | "warning";
|
|
5554
5574
|
id?: number | undefined;
|
|
5555
5575
|
}[] | undefined;
|
|
5556
5576
|
required?: boolean | undefined;
|
|
@@ -5560,6 +5580,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5560
5580
|
multiline?: boolean | undefined;
|
|
5561
5581
|
max_length?: number | undefined;
|
|
5562
5582
|
default_value?: string | undefined;
|
|
5583
|
+
last_used?: boolean | undefined;
|
|
5584
|
+
last_used_label?: string | undefined;
|
|
5563
5585
|
} | undefined;
|
|
5564
5586
|
} | {
|
|
5565
5587
|
id: string;
|
|
@@ -5571,7 +5593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5571
5593
|
hint?: string | undefined;
|
|
5572
5594
|
messages?: {
|
|
5573
5595
|
text: string;
|
|
5574
|
-
type: "
|
|
5596
|
+
type: "error" | "success" | "info" | "warning";
|
|
5575
5597
|
id?: number | undefined;
|
|
5576
5598
|
}[] | undefined;
|
|
5577
5599
|
required?: boolean | undefined;
|
|
@@ -5804,7 +5826,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5804
5826
|
hint?: string | undefined;
|
|
5805
5827
|
messages?: {
|
|
5806
5828
|
text: string;
|
|
5807
|
-
type: "
|
|
5829
|
+
type: "error" | "success" | "info" | "warning";
|
|
5808
5830
|
id?: number | undefined;
|
|
5809
5831
|
}[] | undefined;
|
|
5810
5832
|
required?: boolean | undefined;
|
|
@@ -5822,7 +5844,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5822
5844
|
hint?: string | undefined;
|
|
5823
5845
|
messages?: {
|
|
5824
5846
|
text: string;
|
|
5825
|
-
type: "
|
|
5847
|
+
type: "error" | "success" | "info" | "warning";
|
|
5826
5848
|
id?: number | undefined;
|
|
5827
5849
|
}[] | undefined;
|
|
5828
5850
|
required?: boolean | undefined;
|
|
@@ -5846,7 +5868,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5846
5868
|
hint?: string | undefined;
|
|
5847
5869
|
messages?: {
|
|
5848
5870
|
text: string;
|
|
5849
|
-
type: "
|
|
5871
|
+
type: "error" | "success" | "info" | "warning";
|
|
5850
5872
|
id?: number | undefined;
|
|
5851
5873
|
}[] | undefined;
|
|
5852
5874
|
required?: boolean | undefined;
|
|
@@ -5870,7 +5892,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5870
5892
|
hint?: string | undefined;
|
|
5871
5893
|
messages?: {
|
|
5872
5894
|
text: string;
|
|
5873
|
-
type: "
|
|
5895
|
+
type: "error" | "success" | "info" | "warning";
|
|
5874
5896
|
id?: number | undefined;
|
|
5875
5897
|
}[] | undefined;
|
|
5876
5898
|
required?: boolean | undefined;
|
|
@@ -5894,7 +5916,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5894
5916
|
hint?: string | undefined;
|
|
5895
5917
|
messages?: {
|
|
5896
5918
|
text: string;
|
|
5897
|
-
type: "
|
|
5919
|
+
type: "error" | "success" | "info" | "warning";
|
|
5898
5920
|
id?: number | undefined;
|
|
5899
5921
|
}[] | undefined;
|
|
5900
5922
|
required?: boolean | undefined;
|
|
@@ -5919,7 +5941,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5919
5941
|
hint?: string | undefined;
|
|
5920
5942
|
messages?: {
|
|
5921
5943
|
text: string;
|
|
5922
|
-
type: "
|
|
5944
|
+
type: "error" | "success" | "info" | "warning";
|
|
5923
5945
|
id?: number | undefined;
|
|
5924
5946
|
}[] | undefined;
|
|
5925
5947
|
required?: boolean | undefined;
|
|
@@ -5934,7 +5956,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5934
5956
|
hint?: string | undefined;
|
|
5935
5957
|
messages?: {
|
|
5936
5958
|
text: string;
|
|
5937
|
-
type: "
|
|
5959
|
+
type: "error" | "success" | "info" | "warning";
|
|
5938
5960
|
id?: number | undefined;
|
|
5939
5961
|
}[] | undefined;
|
|
5940
5962
|
required?: boolean | undefined;
|
|
@@ -5955,7 +5977,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5955
5977
|
hint?: string | undefined;
|
|
5956
5978
|
messages?: {
|
|
5957
5979
|
text: string;
|
|
5958
|
-
type: "
|
|
5980
|
+
type: "error" | "success" | "info" | "warning";
|
|
5959
5981
|
id?: number | undefined;
|
|
5960
5982
|
}[] | undefined;
|
|
5961
5983
|
required?: boolean | undefined;
|
|
@@ -5980,7 +6002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5980
6002
|
hint?: string | undefined;
|
|
5981
6003
|
messages?: {
|
|
5982
6004
|
text: string;
|
|
5983
|
-
type: "
|
|
6005
|
+
type: "error" | "success" | "info" | "warning";
|
|
5984
6006
|
id?: number | undefined;
|
|
5985
6007
|
}[] | undefined;
|
|
5986
6008
|
required?: boolean | undefined;
|
|
@@ -5988,6 +6010,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5988
6010
|
config?: {
|
|
5989
6011
|
placeholder?: string | undefined;
|
|
5990
6012
|
default_value?: string | undefined;
|
|
6013
|
+
last_used?: boolean | undefined;
|
|
6014
|
+
last_used_label?: string | undefined;
|
|
5991
6015
|
} | undefined;
|
|
5992
6016
|
} | {
|
|
5993
6017
|
id: string;
|
|
@@ -5999,7 +6023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5999
6023
|
hint?: string | undefined;
|
|
6000
6024
|
messages?: {
|
|
6001
6025
|
text: string;
|
|
6002
|
-
type: "
|
|
6026
|
+
type: "error" | "success" | "info" | "warning";
|
|
6003
6027
|
id?: number | undefined;
|
|
6004
6028
|
}[] | undefined;
|
|
6005
6029
|
required?: boolean | undefined;
|
|
@@ -6019,7 +6043,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6019
6043
|
hint?: string | undefined;
|
|
6020
6044
|
messages?: {
|
|
6021
6045
|
text: string;
|
|
6022
|
-
type: "
|
|
6046
|
+
type: "error" | "success" | "info" | "warning";
|
|
6023
6047
|
id?: number | undefined;
|
|
6024
6048
|
}[] | undefined;
|
|
6025
6049
|
required?: boolean | undefined;
|
|
@@ -6038,7 +6062,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6038
6062
|
hint?: string | undefined;
|
|
6039
6063
|
messages?: {
|
|
6040
6064
|
text: string;
|
|
6041
|
-
type: "
|
|
6065
|
+
type: "error" | "success" | "info" | "warning";
|
|
6042
6066
|
id?: number | undefined;
|
|
6043
6067
|
}[] | undefined;
|
|
6044
6068
|
required?: boolean | undefined;
|
|
@@ -6060,7 +6084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6060
6084
|
hint?: string | undefined;
|
|
6061
6085
|
messages?: {
|
|
6062
6086
|
text: string;
|
|
6063
|
-
type: "
|
|
6087
|
+
type: "error" | "success" | "info" | "warning";
|
|
6064
6088
|
id?: number | undefined;
|
|
6065
6089
|
}[] | undefined;
|
|
6066
6090
|
required?: boolean | undefined;
|
|
@@ -6082,7 +6106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6082
6106
|
hint?: string | undefined;
|
|
6083
6107
|
messages?: {
|
|
6084
6108
|
text: string;
|
|
6085
|
-
type: "
|
|
6109
|
+
type: "error" | "success" | "info" | "warning";
|
|
6086
6110
|
id?: number | undefined;
|
|
6087
6111
|
}[] | undefined;
|
|
6088
6112
|
required?: boolean | undefined;
|
|
@@ -6101,7 +6125,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6101
6125
|
hint?: string | undefined;
|
|
6102
6126
|
messages?: {
|
|
6103
6127
|
text: string;
|
|
6104
|
-
type: "
|
|
6128
|
+
type: "error" | "success" | "info" | "warning";
|
|
6105
6129
|
id?: number | undefined;
|
|
6106
6130
|
}[] | undefined;
|
|
6107
6131
|
required?: boolean | undefined;
|
|
@@ -6128,7 +6152,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6128
6152
|
hint?: string | undefined;
|
|
6129
6153
|
messages?: {
|
|
6130
6154
|
text: string;
|
|
6131
|
-
type: "
|
|
6155
|
+
type: "error" | "success" | "info" | "warning";
|
|
6132
6156
|
id?: number | undefined;
|
|
6133
6157
|
}[] | undefined;
|
|
6134
6158
|
required?: boolean | undefined;
|
|
@@ -6149,7 +6173,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6149
6173
|
hint?: string | undefined;
|
|
6150
6174
|
messages?: {
|
|
6151
6175
|
text: string;
|
|
6152
|
-
type: "
|
|
6176
|
+
type: "error" | "success" | "info" | "warning";
|
|
6153
6177
|
id?: number | undefined;
|
|
6154
6178
|
}[] | undefined;
|
|
6155
6179
|
required?: boolean | undefined;
|
|
@@ -6159,6 +6183,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6159
6183
|
multiline?: boolean | undefined;
|
|
6160
6184
|
max_length?: number | undefined;
|
|
6161
6185
|
default_value?: string | undefined;
|
|
6186
|
+
last_used?: boolean | undefined;
|
|
6187
|
+
last_used_label?: string | undefined;
|
|
6162
6188
|
} | undefined;
|
|
6163
6189
|
} | {
|
|
6164
6190
|
id: string;
|
|
@@ -6170,7 +6196,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6170
6196
|
hint?: string | undefined;
|
|
6171
6197
|
messages?: {
|
|
6172
6198
|
text: string;
|
|
6173
|
-
type: "
|
|
6199
|
+
type: "error" | "success" | "info" | "warning";
|
|
6174
6200
|
id?: number | undefined;
|
|
6175
6201
|
}[] | undefined;
|
|
6176
6202
|
required?: boolean | undefined;
|
|
@@ -6401,7 +6427,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6401
6427
|
hint?: string | undefined;
|
|
6402
6428
|
messages?: {
|
|
6403
6429
|
text: string;
|
|
6404
|
-
type: "
|
|
6430
|
+
type: "error" | "success" | "info" | "warning";
|
|
6405
6431
|
id?: number | undefined;
|
|
6406
6432
|
}[] | undefined;
|
|
6407
6433
|
required?: boolean | undefined;
|
|
@@ -6419,7 +6445,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6419
6445
|
hint?: string | undefined;
|
|
6420
6446
|
messages?: {
|
|
6421
6447
|
text: string;
|
|
6422
|
-
type: "
|
|
6448
|
+
type: "error" | "success" | "info" | "warning";
|
|
6423
6449
|
id?: number | undefined;
|
|
6424
6450
|
}[] | undefined;
|
|
6425
6451
|
required?: boolean | undefined;
|
|
@@ -6443,7 +6469,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6443
6469
|
hint?: string | undefined;
|
|
6444
6470
|
messages?: {
|
|
6445
6471
|
text: string;
|
|
6446
|
-
type: "
|
|
6472
|
+
type: "error" | "success" | "info" | "warning";
|
|
6447
6473
|
id?: number | undefined;
|
|
6448
6474
|
}[] | undefined;
|
|
6449
6475
|
required?: boolean | undefined;
|
|
@@ -6467,7 +6493,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6467
6493
|
hint?: string | undefined;
|
|
6468
6494
|
messages?: {
|
|
6469
6495
|
text: string;
|
|
6470
|
-
type: "
|
|
6496
|
+
type: "error" | "success" | "info" | "warning";
|
|
6471
6497
|
id?: number | undefined;
|
|
6472
6498
|
}[] | undefined;
|
|
6473
6499
|
required?: boolean | undefined;
|
|
@@ -6491,7 +6517,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6491
6517
|
hint?: string | undefined;
|
|
6492
6518
|
messages?: {
|
|
6493
6519
|
text: string;
|
|
6494
|
-
type: "
|
|
6520
|
+
type: "error" | "success" | "info" | "warning";
|
|
6495
6521
|
id?: number | undefined;
|
|
6496
6522
|
}[] | undefined;
|
|
6497
6523
|
required?: boolean | undefined;
|
|
@@ -6520,7 +6546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6520
6546
|
hint?: string | undefined;
|
|
6521
6547
|
messages?: {
|
|
6522
6548
|
text: string;
|
|
6523
|
-
type: "
|
|
6549
|
+
type: "error" | "success" | "info" | "warning";
|
|
6524
6550
|
id?: number | undefined;
|
|
6525
6551
|
}[] | undefined;
|
|
6526
6552
|
required?: boolean | undefined;
|
|
@@ -6535,7 +6561,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6535
6561
|
hint?: string | undefined;
|
|
6536
6562
|
messages?: {
|
|
6537
6563
|
text: string;
|
|
6538
|
-
type: "
|
|
6564
|
+
type: "error" | "success" | "info" | "warning";
|
|
6539
6565
|
id?: number | undefined;
|
|
6540
6566
|
}[] | undefined;
|
|
6541
6567
|
required?: boolean | undefined;
|
|
@@ -6556,7 +6582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6556
6582
|
hint?: string | undefined;
|
|
6557
6583
|
messages?: {
|
|
6558
6584
|
text: string;
|
|
6559
|
-
type: "
|
|
6585
|
+
type: "error" | "success" | "info" | "warning";
|
|
6560
6586
|
id?: number | undefined;
|
|
6561
6587
|
}[] | undefined;
|
|
6562
6588
|
required?: boolean | undefined;
|
|
@@ -6581,7 +6607,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6581
6607
|
hint?: string | undefined;
|
|
6582
6608
|
messages?: {
|
|
6583
6609
|
text: string;
|
|
6584
|
-
type: "
|
|
6610
|
+
type: "error" | "success" | "info" | "warning";
|
|
6585
6611
|
id?: number | undefined;
|
|
6586
6612
|
}[] | undefined;
|
|
6587
6613
|
required?: boolean | undefined;
|
|
@@ -6589,6 +6615,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6589
6615
|
config?: {
|
|
6590
6616
|
placeholder?: string | undefined;
|
|
6591
6617
|
default_value?: string | undefined;
|
|
6618
|
+
last_used?: boolean | undefined;
|
|
6619
|
+
last_used_label?: string | undefined;
|
|
6592
6620
|
} | undefined;
|
|
6593
6621
|
} | {
|
|
6594
6622
|
id: string;
|
|
@@ -6600,7 +6628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6600
6628
|
hint?: string | undefined;
|
|
6601
6629
|
messages?: {
|
|
6602
6630
|
text: string;
|
|
6603
|
-
type: "
|
|
6631
|
+
type: "error" | "success" | "info" | "warning";
|
|
6604
6632
|
id?: number | undefined;
|
|
6605
6633
|
}[] | undefined;
|
|
6606
6634
|
required?: boolean | undefined;
|
|
@@ -6620,7 +6648,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6620
6648
|
hint?: string | undefined;
|
|
6621
6649
|
messages?: {
|
|
6622
6650
|
text: string;
|
|
6623
|
-
type: "
|
|
6651
|
+
type: "error" | "success" | "info" | "warning";
|
|
6624
6652
|
id?: number | undefined;
|
|
6625
6653
|
}[] | undefined;
|
|
6626
6654
|
required?: boolean | undefined;
|
|
@@ -6639,7 +6667,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6639
6667
|
hint?: string | undefined;
|
|
6640
6668
|
messages?: {
|
|
6641
6669
|
text: string;
|
|
6642
|
-
type: "
|
|
6670
|
+
type: "error" | "success" | "info" | "warning";
|
|
6643
6671
|
id?: number | undefined;
|
|
6644
6672
|
}[] | undefined;
|
|
6645
6673
|
required?: boolean | undefined;
|
|
@@ -6661,7 +6689,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6661
6689
|
hint?: string | undefined;
|
|
6662
6690
|
messages?: {
|
|
6663
6691
|
text: string;
|
|
6664
|
-
type: "
|
|
6692
|
+
type: "error" | "success" | "info" | "warning";
|
|
6665
6693
|
id?: number | undefined;
|
|
6666
6694
|
}[] | undefined;
|
|
6667
6695
|
required?: boolean | undefined;
|
|
@@ -6683,7 +6711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6683
6711
|
hint?: string | undefined;
|
|
6684
6712
|
messages?: {
|
|
6685
6713
|
text: string;
|
|
6686
|
-
type: "
|
|
6714
|
+
type: "error" | "success" | "info" | "warning";
|
|
6687
6715
|
id?: number | undefined;
|
|
6688
6716
|
}[] | undefined;
|
|
6689
6717
|
required?: boolean | undefined;
|
|
@@ -6702,7 +6730,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6702
6730
|
hint?: string | undefined;
|
|
6703
6731
|
messages?: {
|
|
6704
6732
|
text: string;
|
|
6705
|
-
type: "
|
|
6733
|
+
type: "error" | "success" | "info" | "warning";
|
|
6706
6734
|
id?: number | undefined;
|
|
6707
6735
|
}[] | undefined;
|
|
6708
6736
|
required?: boolean | undefined;
|
|
@@ -6729,7 +6757,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6729
6757
|
hint?: string | undefined;
|
|
6730
6758
|
messages?: {
|
|
6731
6759
|
text: string;
|
|
6732
|
-
type: "
|
|
6760
|
+
type: "error" | "success" | "info" | "warning";
|
|
6733
6761
|
id?: number | undefined;
|
|
6734
6762
|
}[] | undefined;
|
|
6735
6763
|
required?: boolean | undefined;
|
|
@@ -6750,7 +6778,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6750
6778
|
hint?: string | undefined;
|
|
6751
6779
|
messages?: {
|
|
6752
6780
|
text: string;
|
|
6753
|
-
type: "
|
|
6781
|
+
type: "error" | "success" | "info" | "warning";
|
|
6754
6782
|
id?: number | undefined;
|
|
6755
6783
|
}[] | undefined;
|
|
6756
6784
|
required?: boolean | undefined;
|
|
@@ -6760,6 +6788,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6760
6788
|
multiline?: boolean | undefined;
|
|
6761
6789
|
max_length?: number | undefined;
|
|
6762
6790
|
default_value?: string | undefined;
|
|
6791
|
+
last_used?: boolean | undefined;
|
|
6792
|
+
last_used_label?: string | undefined;
|
|
6763
6793
|
} | undefined;
|
|
6764
6794
|
} | {
|
|
6765
6795
|
id: string;
|
|
@@ -6771,7 +6801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6771
6801
|
hint?: string | undefined;
|
|
6772
6802
|
messages?: {
|
|
6773
6803
|
text: string;
|
|
6774
|
-
type: "
|
|
6804
|
+
type: "error" | "success" | "info" | "warning";
|
|
6775
6805
|
id?: number | undefined;
|
|
6776
6806
|
}[] | undefined;
|
|
6777
6807
|
required?: boolean | undefined;
|
|
@@ -7003,7 +7033,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7003
7033
|
};
|
|
7004
7034
|
};
|
|
7005
7035
|
output: {
|
|
7006
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
7036
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7007
7037
|
language: string;
|
|
7008
7038
|
}[];
|
|
7009
7039
|
outputFormat: "json";
|
|
@@ -7041,7 +7071,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7041
7071
|
$get: {
|
|
7042
7072
|
input: {
|
|
7043
7073
|
param: {
|
|
7044
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
7074
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7045
7075
|
language: string;
|
|
7046
7076
|
};
|
|
7047
7077
|
} & {
|
|
@@ -7063,7 +7093,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7063
7093
|
$put: {
|
|
7064
7094
|
input: {
|
|
7065
7095
|
param: {
|
|
7066
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
7096
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7067
7097
|
language: string;
|
|
7068
7098
|
};
|
|
7069
7099
|
} & {
|
|
@@ -7087,7 +7117,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7087
7117
|
$delete: {
|
|
7088
7118
|
input: {
|
|
7089
7119
|
param: {
|
|
7090
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
7120
|
+
prompt: "signup" | "status" | "login-id" | "login" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7091
7121
|
language: string;
|
|
7092
7122
|
};
|
|
7093
7123
|
} & {
|
|
@@ -7950,7 +7980,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7950
7980
|
};
|
|
7951
7981
|
} | {
|
|
7952
7982
|
mode: "inline";
|
|
7953
|
-
status: "
|
|
7983
|
+
status: "error" | "success";
|
|
7954
7984
|
connection_id: string;
|
|
7955
7985
|
connection_name: string;
|
|
7956
7986
|
strategy: string;
|
|
@@ -8590,7 +8620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8590
8620
|
log_type: string;
|
|
8591
8621
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8592
8622
|
actor: {
|
|
8593
|
-
type: "
|
|
8623
|
+
type: "api_key" | "user" | "client_credentials" | "system" | "admin";
|
|
8594
8624
|
id?: string | undefined;
|
|
8595
8625
|
email?: string | undefined;
|
|
8596
8626
|
org_id?: string | undefined;
|
|
@@ -8901,7 +8931,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8901
8931
|
created_at: string;
|
|
8902
8932
|
updated_at: string;
|
|
8903
8933
|
name: string;
|
|
8904
|
-
provider: "auth0" | "
|
|
8934
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8905
8935
|
connection: string;
|
|
8906
8936
|
enabled: boolean;
|
|
8907
8937
|
credentials: {
|
|
@@ -8933,7 +8963,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8933
8963
|
created_at: string;
|
|
8934
8964
|
updated_at: string;
|
|
8935
8965
|
name: string;
|
|
8936
|
-
provider: "auth0" | "
|
|
8966
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8937
8967
|
connection: string;
|
|
8938
8968
|
enabled: boolean;
|
|
8939
8969
|
credentials: {
|
|
@@ -8959,7 +8989,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8959
8989
|
} & {
|
|
8960
8990
|
json: {
|
|
8961
8991
|
name: string;
|
|
8962
|
-
provider: "auth0" | "
|
|
8992
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8963
8993
|
connection: string;
|
|
8964
8994
|
credentials: {
|
|
8965
8995
|
domain: string;
|
|
@@ -8976,7 +9006,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8976
9006
|
created_at: string;
|
|
8977
9007
|
updated_at: string;
|
|
8978
9008
|
name: string;
|
|
8979
|
-
provider: "auth0" | "
|
|
9009
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8980
9010
|
connection: string;
|
|
8981
9011
|
enabled: boolean;
|
|
8982
9012
|
credentials: {
|
|
@@ -9007,7 +9037,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9007
9037
|
json: {
|
|
9008
9038
|
id?: string | undefined;
|
|
9009
9039
|
name?: string | undefined;
|
|
9010
|
-
provider?: "auth0" | "
|
|
9040
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
9011
9041
|
connection?: string | undefined;
|
|
9012
9042
|
enabled?: boolean | undefined;
|
|
9013
9043
|
credentials?: {
|
|
@@ -9023,7 +9053,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9023
9053
|
created_at: string;
|
|
9024
9054
|
updated_at: string;
|
|
9025
9055
|
name: string;
|
|
9026
|
-
provider: "auth0" | "
|
|
9056
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9027
9057
|
connection: string;
|
|
9028
9058
|
enabled: boolean;
|
|
9029
9059
|
credentials: {
|
|
@@ -9241,7 +9271,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9241
9271
|
};
|
|
9242
9272
|
};
|
|
9243
9273
|
output: {
|
|
9244
|
-
type: "
|
|
9274
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9245
9275
|
date: string;
|
|
9246
9276
|
isMobile: boolean;
|
|
9247
9277
|
log_id: string;
|
|
@@ -9280,7 +9310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9280
9310
|
limit: number;
|
|
9281
9311
|
length: number;
|
|
9282
9312
|
logs: {
|
|
9283
|
-
type: "
|
|
9313
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9284
9314
|
date: string;
|
|
9285
9315
|
isMobile: boolean;
|
|
9286
9316
|
log_id: string;
|
|
@@ -9319,7 +9349,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9319
9349
|
next?: string | undefined;
|
|
9320
9350
|
} | {
|
|
9321
9351
|
logs: {
|
|
9322
|
-
type: "
|
|
9352
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9323
9353
|
date: string;
|
|
9324
9354
|
isMobile: boolean;
|
|
9325
9355
|
log_id: string;
|
|
@@ -9373,7 +9403,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9373
9403
|
};
|
|
9374
9404
|
};
|
|
9375
9405
|
output: {
|
|
9376
|
-
type: "
|
|
9406
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9377
9407
|
date: string;
|
|
9378
9408
|
isMobile: boolean;
|
|
9379
9409
|
log_id: string;
|
|
@@ -9529,7 +9559,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9529
9559
|
audience?: string | undefined;
|
|
9530
9560
|
client_id?: string | undefined;
|
|
9531
9561
|
allow_any_organization?: string | undefined;
|
|
9532
|
-
subject_type?: "
|
|
9562
|
+
subject_type?: "client" | "user" | undefined;
|
|
9533
9563
|
};
|
|
9534
9564
|
} & {
|
|
9535
9565
|
header: {
|
|
@@ -9544,7 +9574,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9544
9574
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9545
9575
|
allow_any_organization?: boolean | undefined;
|
|
9546
9576
|
is_system?: boolean | undefined;
|
|
9547
|
-
subject_type?: "
|
|
9577
|
+
subject_type?: "client" | "user" | undefined;
|
|
9548
9578
|
authorization_details_types?: string[] | undefined;
|
|
9549
9579
|
created_at?: string | undefined;
|
|
9550
9580
|
updated_at?: string | undefined;
|
|
@@ -9560,7 +9590,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9560
9590
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9561
9591
|
allow_any_organization?: boolean | undefined;
|
|
9562
9592
|
is_system?: boolean | undefined;
|
|
9563
|
-
subject_type?: "
|
|
9593
|
+
subject_type?: "client" | "user" | undefined;
|
|
9564
9594
|
authorization_details_types?: string[] | undefined;
|
|
9565
9595
|
created_at?: string | undefined;
|
|
9566
9596
|
updated_at?: string | undefined;
|
|
@@ -9576,7 +9606,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9576
9606
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9577
9607
|
allow_any_organization?: boolean | undefined;
|
|
9578
9608
|
is_system?: boolean | undefined;
|
|
9579
|
-
subject_type?: "
|
|
9609
|
+
subject_type?: "client" | "user" | undefined;
|
|
9580
9610
|
authorization_details_types?: string[] | undefined;
|
|
9581
9611
|
created_at?: string | undefined;
|
|
9582
9612
|
updated_at?: string | undefined;
|
|
@@ -9607,7 +9637,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9607
9637
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9608
9638
|
allow_any_organization?: boolean | undefined;
|
|
9609
9639
|
is_system?: boolean | undefined;
|
|
9610
|
-
subject_type?: "
|
|
9640
|
+
subject_type?: "client" | "user" | undefined;
|
|
9611
9641
|
authorization_details_types?: string[] | undefined;
|
|
9612
9642
|
created_at?: string | undefined;
|
|
9613
9643
|
updated_at?: string | undefined;
|
|
@@ -9652,7 +9682,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9652
9682
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9653
9683
|
allow_any_organization?: boolean | undefined;
|
|
9654
9684
|
is_system?: boolean | undefined;
|
|
9655
|
-
subject_type?: "
|
|
9685
|
+
subject_type?: "client" | "user" | undefined;
|
|
9656
9686
|
authorization_details_types?: string[] | undefined;
|
|
9657
9687
|
};
|
|
9658
9688
|
};
|
|
@@ -9664,7 +9694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9664
9694
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9665
9695
|
allow_any_organization?: boolean | undefined;
|
|
9666
9696
|
is_system?: boolean | undefined;
|
|
9667
|
-
subject_type?: "
|
|
9697
|
+
subject_type?: "client" | "user" | undefined;
|
|
9668
9698
|
authorization_details_types?: string[] | undefined;
|
|
9669
9699
|
created_at?: string | undefined;
|
|
9670
9700
|
updated_at?: string | undefined;
|
|
@@ -9688,7 +9718,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9688
9718
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9689
9719
|
allow_any_organization?: boolean | undefined;
|
|
9690
9720
|
is_system?: boolean | undefined;
|
|
9691
|
-
subject_type?: "
|
|
9721
|
+
subject_type?: "client" | "user" | undefined;
|
|
9692
9722
|
authorization_details_types?: string[] | undefined;
|
|
9693
9723
|
};
|
|
9694
9724
|
};
|
|
@@ -9700,7 +9730,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9700
9730
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9701
9731
|
allow_any_organization?: boolean | undefined;
|
|
9702
9732
|
is_system?: boolean | undefined;
|
|
9703
|
-
subject_type?: "
|
|
9733
|
+
subject_type?: "client" | "user" | undefined;
|
|
9704
9734
|
authorization_details_types?: string[] | undefined;
|
|
9705
9735
|
created_at?: string | undefined;
|
|
9706
9736
|
updated_at?: string | undefined;
|
|
@@ -9784,7 +9814,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9784
9814
|
addons?: {
|
|
9785
9815
|
[x: string]: any;
|
|
9786
9816
|
} | undefined;
|
|
9787
|
-
token_endpoint_auth_method?: "
|
|
9817
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9788
9818
|
client_metadata?: {
|
|
9789
9819
|
[x: string]: string;
|
|
9790
9820
|
} | undefined;
|
|
@@ -9886,7 +9916,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9886
9916
|
addons?: {
|
|
9887
9917
|
[x: string]: any;
|
|
9888
9918
|
} | undefined;
|
|
9889
|
-
token_endpoint_auth_method?: "
|
|
9919
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9890
9920
|
client_metadata?: {
|
|
9891
9921
|
[x: string]: string;
|
|
9892
9922
|
} | undefined;
|
|
@@ -9988,7 +10018,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9988
10018
|
addons?: {
|
|
9989
10019
|
[x: string]: any;
|
|
9990
10020
|
} | undefined;
|
|
9991
|
-
token_endpoint_auth_method?: "
|
|
10021
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9992
10022
|
client_metadata?: {
|
|
9993
10023
|
[x: string]: string;
|
|
9994
10024
|
} | undefined;
|
|
@@ -10105,7 +10135,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10105
10135
|
addons?: {
|
|
10106
10136
|
[x: string]: any;
|
|
10107
10137
|
} | undefined;
|
|
10108
|
-
token_endpoint_auth_method?: "
|
|
10138
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10109
10139
|
client_metadata?: {
|
|
10110
10140
|
[x: string]: string;
|
|
10111
10141
|
} | undefined;
|
|
@@ -10223,7 +10253,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10223
10253
|
custom_login_page_preview?: string | undefined;
|
|
10224
10254
|
form_template?: string | undefined;
|
|
10225
10255
|
addons?: Record<string, any> | undefined;
|
|
10226
|
-
token_endpoint_auth_method?: "
|
|
10256
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10227
10257
|
client_metadata?: Record<string, string> | undefined;
|
|
10228
10258
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10229
10259
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10309,7 +10339,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10309
10339
|
addons?: {
|
|
10310
10340
|
[x: string]: any;
|
|
10311
10341
|
} | undefined;
|
|
10312
|
-
token_endpoint_auth_method?: "
|
|
10342
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10313
10343
|
client_metadata?: {
|
|
10314
10344
|
[x: string]: string;
|
|
10315
10345
|
} | undefined;
|
|
@@ -10406,7 +10436,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10406
10436
|
custom_login_page_preview?: string | undefined;
|
|
10407
10437
|
form_template?: string | undefined;
|
|
10408
10438
|
addons?: Record<string, any> | undefined;
|
|
10409
|
-
token_endpoint_auth_method?: "
|
|
10439
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10410
10440
|
client_metadata?: Record<string, string> | undefined;
|
|
10411
10441
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10412
10442
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10492,7 +10522,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10492
10522
|
addons?: {
|
|
10493
10523
|
[x: string]: any;
|
|
10494
10524
|
} | undefined;
|
|
10495
|
-
token_endpoint_auth_method?: "
|
|
10525
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10496
10526
|
client_metadata?: {
|
|
10497
10527
|
[x: string]: string;
|
|
10498
10528
|
} | undefined;
|
|
@@ -11837,7 +11867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11837
11867
|
};
|
|
11838
11868
|
};
|
|
11839
11869
|
output: {
|
|
11840
|
-
type: "
|
|
11870
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11841
11871
|
date: string;
|
|
11842
11872
|
isMobile: boolean;
|
|
11843
11873
|
log_id: string;
|
|
@@ -11876,7 +11906,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11876
11906
|
limit: number;
|
|
11877
11907
|
length: number;
|
|
11878
11908
|
logs: {
|
|
11879
|
-
type: "
|
|
11909
|
+
type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11880
11910
|
date: string;
|
|
11881
11911
|
isMobile: boolean;
|
|
11882
11912
|
log_id: string;
|
|
@@ -12195,7 +12225,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12195
12225
|
};
|
|
12196
12226
|
} & {
|
|
12197
12227
|
json: {
|
|
12198
|
-
template: "
|
|
12228
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12199
12229
|
body: string;
|
|
12200
12230
|
from: string;
|
|
12201
12231
|
subject: string;
|
|
@@ -12216,7 +12246,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12216
12246
|
};
|
|
12217
12247
|
} & {
|
|
12218
12248
|
json: {
|
|
12219
|
-
template: "
|
|
12249
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12220
12250
|
body: string;
|
|
12221
12251
|
from: string;
|
|
12222
12252
|
subject: string;
|
|
@@ -12228,7 +12258,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12228
12258
|
};
|
|
12229
12259
|
};
|
|
12230
12260
|
output: {
|
|
12231
|
-
template: "
|
|
12261
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12232
12262
|
body: string;
|
|
12233
12263
|
from: string;
|
|
12234
12264
|
subject: string;
|
|
@@ -12251,7 +12281,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12251
12281
|
};
|
|
12252
12282
|
};
|
|
12253
12283
|
output: {
|
|
12254
|
-
name: "
|
|
12284
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12255
12285
|
body: string;
|
|
12256
12286
|
subject: string;
|
|
12257
12287
|
}[];
|
|
@@ -12264,7 +12294,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12264
12294
|
$get: {
|
|
12265
12295
|
input: {
|
|
12266
12296
|
param: {
|
|
12267
|
-
templateName: "
|
|
12297
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12268
12298
|
};
|
|
12269
12299
|
} & {
|
|
12270
12300
|
header: {
|
|
@@ -12277,7 +12307,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12277
12307
|
} | {
|
|
12278
12308
|
input: {
|
|
12279
12309
|
param: {
|
|
12280
|
-
templateName: "
|
|
12310
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12281
12311
|
};
|
|
12282
12312
|
} & {
|
|
12283
12313
|
header: {
|
|
@@ -12285,7 +12315,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12285
12315
|
};
|
|
12286
12316
|
};
|
|
12287
12317
|
output: {
|
|
12288
|
-
template: "
|
|
12318
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12289
12319
|
body: string;
|
|
12290
12320
|
from: string;
|
|
12291
12321
|
subject: string;
|
|
@@ -12304,7 +12334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12304
12334
|
$put: {
|
|
12305
12335
|
input: {
|
|
12306
12336
|
param: {
|
|
12307
|
-
templateName: "
|
|
12337
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12308
12338
|
};
|
|
12309
12339
|
} & {
|
|
12310
12340
|
header: {
|
|
@@ -12312,7 +12342,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12312
12342
|
};
|
|
12313
12343
|
} & {
|
|
12314
12344
|
json: {
|
|
12315
|
-
template: "
|
|
12345
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12316
12346
|
body: string;
|
|
12317
12347
|
subject: string;
|
|
12318
12348
|
syntax?: "liquid" | undefined;
|
|
@@ -12324,7 +12354,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12324
12354
|
};
|
|
12325
12355
|
};
|
|
12326
12356
|
output: {
|
|
12327
|
-
template: "
|
|
12357
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12328
12358
|
body: string;
|
|
12329
12359
|
from: string;
|
|
12330
12360
|
subject: string;
|
|
@@ -12343,7 +12373,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12343
12373
|
$patch: {
|
|
12344
12374
|
input: {
|
|
12345
12375
|
param: {
|
|
12346
|
-
templateName: "
|
|
12376
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12347
12377
|
};
|
|
12348
12378
|
} & {
|
|
12349
12379
|
header: {
|
|
@@ -12351,7 +12381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12351
12381
|
};
|
|
12352
12382
|
} & {
|
|
12353
12383
|
json: {
|
|
12354
|
-
template?: "
|
|
12384
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12355
12385
|
body?: string | undefined;
|
|
12356
12386
|
from?: string | undefined;
|
|
12357
12387
|
subject?: string | undefined;
|
|
@@ -12368,7 +12398,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12368
12398
|
} | {
|
|
12369
12399
|
input: {
|
|
12370
12400
|
param: {
|
|
12371
|
-
templateName: "
|
|
12401
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12372
12402
|
};
|
|
12373
12403
|
} & {
|
|
12374
12404
|
header: {
|
|
@@ -12376,7 +12406,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12376
12406
|
};
|
|
12377
12407
|
} & {
|
|
12378
12408
|
json: {
|
|
12379
|
-
template?: "
|
|
12409
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12380
12410
|
body?: string | undefined;
|
|
12381
12411
|
from?: string | undefined;
|
|
12382
12412
|
subject?: string | undefined;
|
|
@@ -12388,7 +12418,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12388
12418
|
};
|
|
12389
12419
|
};
|
|
12390
12420
|
output: {
|
|
12391
|
-
template: "
|
|
12421
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12392
12422
|
body: string;
|
|
12393
12423
|
from: string;
|
|
12394
12424
|
subject: string;
|
|
@@ -12407,7 +12437,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12407
12437
|
$delete: {
|
|
12408
12438
|
input: {
|
|
12409
12439
|
param: {
|
|
12410
|
-
templateName: "
|
|
12440
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12411
12441
|
};
|
|
12412
12442
|
} & {
|
|
12413
12443
|
header: {
|
|
@@ -12420,7 +12450,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12420
12450
|
} | {
|
|
12421
12451
|
input: {
|
|
12422
12452
|
param: {
|
|
12423
|
-
templateName: "
|
|
12453
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12424
12454
|
};
|
|
12425
12455
|
} & {
|
|
12426
12456
|
header: {
|
|
@@ -12437,7 +12467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12437
12467
|
$post: {
|
|
12438
12468
|
input: {
|
|
12439
12469
|
param: {
|
|
12440
|
-
templateName: "
|
|
12470
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12441
12471
|
};
|
|
12442
12472
|
} & {
|
|
12443
12473
|
header: {
|
|
@@ -12720,7 +12750,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12720
12750
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12721
12751
|
custom_domain_id: string;
|
|
12722
12752
|
primary: boolean;
|
|
12723
|
-
status: "
|
|
12753
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12724
12754
|
verification_method?: "txt" | undefined;
|
|
12725
12755
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12726
12756
|
domain_metadata?: {
|
|
@@ -12761,7 +12791,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12761
12791
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12762
12792
|
custom_domain_id: string;
|
|
12763
12793
|
primary: boolean;
|
|
12764
|
-
status: "
|
|
12794
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12765
12795
|
verification_method?: "txt" | undefined;
|
|
12766
12796
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12767
12797
|
domain_metadata?: {
|
|
@@ -12825,7 +12855,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12825
12855
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12826
12856
|
custom_domain_id: string;
|
|
12827
12857
|
primary: boolean;
|
|
12828
|
-
status: "
|
|
12858
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12829
12859
|
verification_method?: "txt" | undefined;
|
|
12830
12860
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12831
12861
|
domain_metadata?: {
|
|
@@ -12872,7 +12902,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12872
12902
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12873
12903
|
custom_domain_id: string;
|
|
12874
12904
|
primary: boolean;
|
|
12875
|
-
status: "
|
|
12905
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12876
12906
|
verification_method?: "txt" | undefined;
|
|
12877
12907
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12878
12908
|
domain_metadata?: {
|
|
@@ -12918,7 +12948,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12918
12948
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12919
12949
|
custom_domain_id: string;
|
|
12920
12950
|
primary: boolean;
|
|
12921
|
-
status: "
|
|
12951
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12922
12952
|
verification_method?: "txt" | undefined;
|
|
12923
12953
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12924
12954
|
domain_metadata?: {
|
|
@@ -12959,7 +12989,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12959
12989
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12960
12990
|
custom_domain_id: string;
|
|
12961
12991
|
primary: boolean;
|
|
12962
|
-
status: "
|
|
12992
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12963
12993
|
verification_method?: "txt" | undefined;
|
|
12964
12994
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12965
12995
|
domain_metadata?: {
|
|
@@ -13389,7 +13419,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13389
13419
|
} & {
|
|
13390
13420
|
json: {
|
|
13391
13421
|
body?: string | undefined;
|
|
13392
|
-
screen?: "
|
|
13422
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
13393
13423
|
branding?: {
|
|
13394
13424
|
colors?: {
|
|
13395
13425
|
primary: string;
|
|
@@ -13558,7 +13588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13558
13588
|
json: {
|
|
13559
13589
|
bindings: {
|
|
13560
13590
|
ref: {
|
|
13561
|
-
type?: "
|
|
13591
|
+
type?: "action_id" | "action_name" | undefined;
|
|
13562
13592
|
value?: string | undefined;
|
|
13563
13593
|
id?: string | undefined;
|
|
13564
13594
|
name?: string | undefined;
|
|
@@ -13680,7 +13710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13680
13710
|
logs: {
|
|
13681
13711
|
action_name: string;
|
|
13682
13712
|
lines: {
|
|
13683
|
-
level: "
|
|
13713
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
13684
13714
|
message: string;
|
|
13685
13715
|
}[];
|
|
13686
13716
|
}[];
|
|
@@ -14349,7 +14379,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14349
14379
|
args: import("hono/utils/types").JSONValue[];
|
|
14350
14380
|
}[];
|
|
14351
14381
|
logs: {
|
|
14352
|
-
level: "
|
|
14382
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
14353
14383
|
message: string;
|
|
14354
14384
|
}[];
|
|
14355
14385
|
error?: string | undefined;
|
|
@@ -14660,7 +14690,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14660
14690
|
scope?: string | undefined;
|
|
14661
14691
|
grant_types?: string[] | undefined;
|
|
14662
14692
|
response_types?: string[] | undefined;
|
|
14663
|
-
token_endpoint_auth_method?: "
|
|
14693
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14664
14694
|
jwks_uri?: string | undefined;
|
|
14665
14695
|
jwks?: Record<string, unknown> | undefined;
|
|
14666
14696
|
software_id?: string | undefined;
|
|
@@ -14749,7 +14779,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14749
14779
|
scope?: string | undefined;
|
|
14750
14780
|
grant_types?: string[] | undefined;
|
|
14751
14781
|
response_types?: string[] | undefined;
|
|
14752
|
-
token_endpoint_auth_method?: "
|
|
14782
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14753
14783
|
jwks_uri?: string | undefined;
|
|
14754
14784
|
jwks?: Record<string, unknown> | undefined;
|
|
14755
14785
|
software_id?: string | undefined;
|
|
@@ -15095,16 +15125,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15095
15125
|
email: string;
|
|
15096
15126
|
send: "code" | "link";
|
|
15097
15127
|
authParams: {
|
|
15128
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15129
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15130
|
+
scope?: string | undefined;
|
|
15098
15131
|
username?: string | undefined;
|
|
15099
15132
|
state?: string | undefined;
|
|
15133
|
+
audience?: string | undefined;
|
|
15100
15134
|
act_as?: string | undefined;
|
|
15101
|
-
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15102
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15103
15135
|
redirect_uri?: string | undefined;
|
|
15104
|
-
audience?: string | undefined;
|
|
15105
15136
|
organization?: string | undefined;
|
|
15106
15137
|
nonce?: string | undefined;
|
|
15107
|
-
scope?: string | undefined;
|
|
15108
15138
|
prompt?: string | undefined;
|
|
15109
15139
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15110
15140
|
code_challenge?: string | undefined;
|
|
@@ -15131,16 +15161,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15131
15161
|
phone_number: string;
|
|
15132
15162
|
send: "code" | "link";
|
|
15133
15163
|
authParams: {
|
|
15164
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15165
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15166
|
+
scope?: string | undefined;
|
|
15134
15167
|
username?: string | undefined;
|
|
15135
15168
|
state?: string | undefined;
|
|
15169
|
+
audience?: string | undefined;
|
|
15136
15170
|
act_as?: string | undefined;
|
|
15137
|
-
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15138
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15139
15171
|
redirect_uri?: string | undefined;
|
|
15140
|
-
audience?: string | undefined;
|
|
15141
15172
|
organization?: string | undefined;
|
|
15142
15173
|
nonce?: string | undefined;
|
|
15143
|
-
scope?: string | undefined;
|
|
15144
15174
|
prompt?: string | undefined;
|
|
15145
15175
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15146
15176
|
code_challenge?: string | undefined;
|
|
@@ -15275,14 +15305,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15275
15305
|
input: {
|
|
15276
15306
|
form: {
|
|
15277
15307
|
token: string;
|
|
15278
|
-
token_type_hint?: "
|
|
15308
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15279
15309
|
client_id?: string | undefined;
|
|
15280
15310
|
client_secret?: string | undefined;
|
|
15281
15311
|
};
|
|
15282
15312
|
} & {
|
|
15283
15313
|
json: {
|
|
15284
15314
|
token: string;
|
|
15285
|
-
token_type_hint?: "
|
|
15315
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15286
15316
|
client_id?: string | undefined;
|
|
15287
15317
|
client_secret?: string | undefined;
|
|
15288
15318
|
};
|
|
@@ -15294,14 +15324,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15294
15324
|
input: {
|
|
15295
15325
|
form: {
|
|
15296
15326
|
token: string;
|
|
15297
|
-
token_type_hint?: "
|
|
15327
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15298
15328
|
client_id?: string | undefined;
|
|
15299
15329
|
client_secret?: string | undefined;
|
|
15300
15330
|
};
|
|
15301
15331
|
} & {
|
|
15302
15332
|
json: {
|
|
15303
15333
|
token: string;
|
|
15304
|
-
token_type_hint?: "
|
|
15334
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15305
15335
|
client_id?: string | undefined;
|
|
15306
15336
|
client_secret?: string | undefined;
|
|
15307
15337
|
};
|
|
@@ -15316,14 +15346,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15316
15346
|
input: {
|
|
15317
15347
|
form: {
|
|
15318
15348
|
token: string;
|
|
15319
|
-
token_type_hint?: "
|
|
15349
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15320
15350
|
client_id?: string | undefined;
|
|
15321
15351
|
client_secret?: string | undefined;
|
|
15322
15352
|
};
|
|
15323
15353
|
} & {
|
|
15324
15354
|
json: {
|
|
15325
15355
|
token: string;
|
|
15326
|
-
token_type_hint?: "
|
|
15356
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15327
15357
|
client_id?: string | undefined;
|
|
15328
15358
|
client_secret?: string | undefined;
|
|
15329
15359
|
};
|
|
@@ -16052,7 +16082,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16052
16082
|
};
|
|
16053
16083
|
output: {};
|
|
16054
16084
|
outputFormat: string;
|
|
16055
|
-
status:
|
|
16085
|
+
status: 302;
|
|
16056
16086
|
} | {
|
|
16057
16087
|
input: {
|
|
16058
16088
|
query: {
|
|
@@ -16066,7 +16096,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16066
16096
|
};
|
|
16067
16097
|
output: {};
|
|
16068
16098
|
outputFormat: string;
|
|
16069
|
-
status:
|
|
16099
|
+
status: 200;
|
|
16070
16100
|
} | {
|
|
16071
16101
|
input: {
|
|
16072
16102
|
query: {
|
|
@@ -17054,7 +17084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17054
17084
|
$get: {
|
|
17055
17085
|
input: {
|
|
17056
17086
|
param: {
|
|
17057
|
-
screen: "
|
|
17087
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17058
17088
|
};
|
|
17059
17089
|
} & {
|
|
17060
17090
|
query: {
|
|
@@ -17070,7 +17100,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17070
17100
|
} | {
|
|
17071
17101
|
input: {
|
|
17072
17102
|
param: {
|
|
17073
|
-
screen: "
|
|
17103
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17074
17104
|
};
|
|
17075
17105
|
} & {
|
|
17076
17106
|
query: {
|
|
@@ -17086,7 +17116,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17086
17116
|
} | {
|
|
17087
17117
|
input: {
|
|
17088
17118
|
param: {
|
|
17089
|
-
screen: "
|
|
17119
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17090
17120
|
};
|
|
17091
17121
|
} & {
|
|
17092
17122
|
query: {
|
|
@@ -17106,7 +17136,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17106
17136
|
$post: {
|
|
17107
17137
|
input: {
|
|
17108
17138
|
param: {
|
|
17109
|
-
screen: "
|
|
17139
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17110
17140
|
};
|
|
17111
17141
|
} & {
|
|
17112
17142
|
query: {
|
|
@@ -17124,7 +17154,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17124
17154
|
} | {
|
|
17125
17155
|
input: {
|
|
17126
17156
|
param: {
|
|
17127
|
-
screen: "
|
|
17157
|
+
screen: "signup" | "login" | "consent" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17128
17158
|
};
|
|
17129
17159
|
} & {
|
|
17130
17160
|
query: {
|