authhero 8.23.1 → 8.25.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/index.esm.js +1 -1
- package/dist/authhero.cjs +139 -142
- package/dist/authhero.d.ts +1073 -292
- package/dist/authhero.mjs +20321 -15480
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/adapters/control-plane-custom-domains.d.ts +35 -0
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/helpers/control-plane-client.d.ts +46 -0
- package/dist/types/helpers/control-plane-sync-events.d.ts +12 -28
- package/dist/types/index.d.ts +326 -246
- package/dist/types/routes/auth-api/index.d.ts +28 -28
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +12 -12
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +14 -14
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +47 -0
- package/dist/types/routes/management-api/index.d.ts +280 -211
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +8 -8
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-members.d.ts +304 -0
- package/dist/types/routes/management-api/tenant-members.test.d.ts +1 -0
- package/dist/types/routes/management-api/tenants.d.ts +8 -8
- package/dist/types/routes/management-api/users.d.ts +71 -2
- package/dist/types/routes/proxy-control-plane/custom-domains.d.ts +45 -0
- package/dist/types/routes/proxy-control-plane/index.d.ts +47 -6
- package/dist/types/routes/proxy-control-plane/scopes.d.ts +20 -0
- package/dist/types/routes/proxy-control-plane/tenant-members.d.ts +37 -0
- package/dist/types/routes/proxy-control-plane/verify.d.ts +29 -4
- package/dist/types/routes/proxy-control-plane/verify.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +8 -8
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/tenant-members/control-plane-roundtrip.test.d.ts +1 -0
- package/dist/types/tenant-members/local-backend.d.ts +43 -0
- package/dist/types/tenant-members/local-backend.test.d.ts +1 -0
- package/dist/types/tenant-members/remote-backend.d.ts +17 -0
- package/dist/types/tenant-members/types.d.ts +112 -0
- package/dist/types/tenant-members/wire.d.ts +28 -0
- package/dist/types/types/AuthHeroConfig.d.ts +54 -7
- package/dist/types/types/IdToken.d.ts +4 -4
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -29,6 +29,17 @@ export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/
|
|
|
29
29
|
export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
|
|
30
30
|
export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
|
|
31
31
|
export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
|
|
32
|
+
export { CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, } from "./routes/proxy-control-plane/scopes";
|
|
33
|
+
export { createControlPlaneCustomDomainsAdapter, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, type ControlPlaneCustomDomainsOptions, } from "./adapters/control-plane-custom-domains";
|
|
34
|
+
export { createTenantMembersControlPlaneApp, type TenantMembersControlPlaneOptions, } from "./routes/proxy-control-plane/tenant-members";
|
|
35
|
+
export { createTenantMembersRoutes, type GetTenantMembersBackend, } from "./routes/management-api/tenant-members";
|
|
36
|
+
export { createLocalTenantMembersBackend, type LocalTenantMembersBackendOptions, } from "./tenant-members/local-backend";
|
|
37
|
+
export { createControlPlaneTenantMembersAdapter, type ControlPlaneTenantMembersOptions, } from "./tenant-members/remote-backend";
|
|
38
|
+
export { CONTROL_PLANE_TENANT_MEMBERS_PATH } from "./tenant-members/wire";
|
|
39
|
+
export { type TenantMembersBackend, type TenantMember, type TenantMembersListResult, type TenantInvitation, type TenantInvitationInput, type TenantRole, type TenantMembersPageParams, TenantMembersNotFoundError, TenantOrganizationNotFoundError, TenantInvitationNotFoundError, } from "./tenant-members/types";
|
|
40
|
+
export { createServiceTokenCore, type CreateServiceTokenCoreParams, type ServiceTokenResponse, } from "./helpers/service-token";
|
|
41
|
+
export { createServiceBindingFetch, type ServiceBindingFetcher, } from "@authhero/proxy";
|
|
42
|
+
export { createControlPlaneClient, type ControlPlaneClient, type ControlPlaneClientOptions, type ControlPlaneRequest, type ControlPlaneResponse, type GetControlPlaneToken, } from "./helpers/control-plane-client";
|
|
32
43
|
export { wrapProxyAdaptersWithKvPublish, backfillProxyHostsToKv, type KvPublishOptions, type WrappedProxyAdapters, type BackfillProxyHostsOptions, type BackfillResult, } from "./routes/proxy-control-plane/kv-publish";
|
|
33
44
|
export { createWfpTenantHostResolver, wrapTenantsAdapterWithWfpKvPublish, composeHostResolvers, wfpTenantHost, isWfpSubdomainSafeTenantId, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, type WfpTenantHostResolverOptions, type WfpTenantsKvPublishOptions, } from "./routes/proxy-control-plane/wfp-tenant-hosts";
|
|
34
45
|
export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, type VerifyControlPlaneTokenOptions, type VerifyControlPlaneTokenResult, } from "./routes/proxy-control-plane/verify";
|
|
@@ -151,7 +162,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
151
162
|
};
|
|
152
163
|
} & {
|
|
153
164
|
json: {
|
|
154
|
-
type: "
|
|
165
|
+
type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
155
166
|
phone_number?: string | undefined;
|
|
156
167
|
totp_secret?: string | undefined;
|
|
157
168
|
credential_id?: string | undefined;
|
|
@@ -291,7 +302,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
291
302
|
};
|
|
292
303
|
};
|
|
293
304
|
output: {
|
|
294
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
305
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
295
306
|
enabled: boolean;
|
|
296
307
|
trial_expired?: boolean | undefined;
|
|
297
308
|
}[];
|
|
@@ -446,7 +457,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
446
457
|
$get: {
|
|
447
458
|
input: {
|
|
448
459
|
param: {
|
|
449
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
460
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
450
461
|
};
|
|
451
462
|
} & {
|
|
452
463
|
header: {
|
|
@@ -454,7 +465,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
454
465
|
};
|
|
455
466
|
};
|
|
456
467
|
output: {
|
|
457
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
468
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
458
469
|
enabled: boolean;
|
|
459
470
|
trial_expired?: boolean | undefined;
|
|
460
471
|
};
|
|
@@ -467,7 +478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
467
478
|
$put: {
|
|
468
479
|
input: {
|
|
469
480
|
param: {
|
|
470
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
481
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
471
482
|
};
|
|
472
483
|
} & {
|
|
473
484
|
header: {
|
|
@@ -479,7 +490,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
479
490
|
};
|
|
480
491
|
};
|
|
481
492
|
output: {
|
|
482
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
493
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
483
494
|
enabled: boolean;
|
|
484
495
|
trial_expired?: boolean | undefined;
|
|
485
496
|
};
|
|
@@ -1250,20 +1261,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1250
1261
|
};
|
|
1251
1262
|
} & {
|
|
1252
1263
|
json: {
|
|
1253
|
-
client_id: string;
|
|
1254
|
-
inviter: {
|
|
1255
|
-
name?: string | undefined;
|
|
1256
|
-
};
|
|
1257
1264
|
invitee: {
|
|
1258
1265
|
email?: string | undefined;
|
|
1259
1266
|
};
|
|
1260
|
-
|
|
1267
|
+
inviter: {
|
|
1268
|
+
name?: string | undefined;
|
|
1269
|
+
};
|
|
1270
|
+
client_id: string;
|
|
1261
1271
|
id?: string | undefined;
|
|
1272
|
+
roles?: string[] | undefined;
|
|
1273
|
+
send_invitation_email?: boolean | undefined;
|
|
1274
|
+
ttl_sec?: number | undefined;
|
|
1275
|
+
connection_id?: string | undefined;
|
|
1262
1276
|
app_metadata?: Record<string, any> | undefined;
|
|
1263
1277
|
user_metadata?: Record<string, any> | undefined;
|
|
1264
|
-
connection_id?: string | undefined;
|
|
1265
|
-
ttl_sec?: number | undefined;
|
|
1266
|
-
send_invitation_email?: boolean | undefined;
|
|
1267
1278
|
};
|
|
1268
1279
|
};
|
|
1269
1280
|
output: {
|
|
@@ -2019,8 +2030,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2019
2030
|
} & {
|
|
2020
2031
|
query: {
|
|
2021
2032
|
page?: string | undefined;
|
|
2022
|
-
include_totals?: string | undefined;
|
|
2023
2033
|
from?: string | undefined;
|
|
2034
|
+
include_totals?: string | undefined;
|
|
2024
2035
|
per_page?: string | undefined;
|
|
2025
2036
|
take?: string | undefined;
|
|
2026
2037
|
};
|
|
@@ -2743,7 +2754,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2743
2754
|
hint?: string | undefined;
|
|
2744
2755
|
messages?: {
|
|
2745
2756
|
text: string;
|
|
2746
|
-
type: "
|
|
2757
|
+
type: "success" | "error" | "info" | "warning";
|
|
2747
2758
|
id?: number | undefined;
|
|
2748
2759
|
}[] | undefined;
|
|
2749
2760
|
required?: boolean | undefined;
|
|
@@ -2761,7 +2772,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2761
2772
|
hint?: string | undefined;
|
|
2762
2773
|
messages?: {
|
|
2763
2774
|
text: string;
|
|
2764
|
-
type: "
|
|
2775
|
+
type: "success" | "error" | "info" | "warning";
|
|
2765
2776
|
id?: number | undefined;
|
|
2766
2777
|
}[] | undefined;
|
|
2767
2778
|
required?: boolean | undefined;
|
|
@@ -2785,7 +2796,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2785
2796
|
hint?: string | undefined;
|
|
2786
2797
|
messages?: {
|
|
2787
2798
|
text: string;
|
|
2788
|
-
type: "
|
|
2799
|
+
type: "success" | "error" | "info" | "warning";
|
|
2789
2800
|
id?: number | undefined;
|
|
2790
2801
|
}[] | undefined;
|
|
2791
2802
|
required?: boolean | undefined;
|
|
@@ -2809,7 +2820,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2809
2820
|
hint?: string | undefined;
|
|
2810
2821
|
messages?: {
|
|
2811
2822
|
text: string;
|
|
2812
|
-
type: "
|
|
2823
|
+
type: "success" | "error" | "info" | "warning";
|
|
2813
2824
|
id?: number | undefined;
|
|
2814
2825
|
}[] | undefined;
|
|
2815
2826
|
required?: boolean | undefined;
|
|
@@ -2833,7 +2844,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2833
2844
|
hint?: string | undefined;
|
|
2834
2845
|
messages?: {
|
|
2835
2846
|
text: string;
|
|
2836
|
-
type: "
|
|
2847
|
+
type: "success" | "error" | "info" | "warning";
|
|
2837
2848
|
id?: number | undefined;
|
|
2838
2849
|
}[] | undefined;
|
|
2839
2850
|
required?: boolean | undefined;
|
|
@@ -2862,7 +2873,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2862
2873
|
hint?: string | undefined;
|
|
2863
2874
|
messages?: {
|
|
2864
2875
|
text: string;
|
|
2865
|
-
type: "
|
|
2876
|
+
type: "success" | "error" | "info" | "warning";
|
|
2866
2877
|
id?: number | undefined;
|
|
2867
2878
|
}[] | undefined;
|
|
2868
2879
|
required?: boolean | undefined;
|
|
@@ -2877,7 +2888,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2877
2888
|
hint?: string | undefined;
|
|
2878
2889
|
messages?: {
|
|
2879
2890
|
text: string;
|
|
2880
|
-
type: "
|
|
2891
|
+
type: "success" | "error" | "info" | "warning";
|
|
2881
2892
|
id?: number | undefined;
|
|
2882
2893
|
}[] | undefined;
|
|
2883
2894
|
required?: boolean | undefined;
|
|
@@ -2898,7 +2909,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2898
2909
|
hint?: string | undefined;
|
|
2899
2910
|
messages?: {
|
|
2900
2911
|
text: string;
|
|
2901
|
-
type: "
|
|
2912
|
+
type: "success" | "error" | "info" | "warning";
|
|
2902
2913
|
id?: number | undefined;
|
|
2903
2914
|
}[] | undefined;
|
|
2904
2915
|
required?: boolean | undefined;
|
|
@@ -2923,7 +2934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2923
2934
|
hint?: string | undefined;
|
|
2924
2935
|
messages?: {
|
|
2925
2936
|
text: string;
|
|
2926
|
-
type: "
|
|
2937
|
+
type: "success" | "error" | "info" | "warning";
|
|
2927
2938
|
id?: number | undefined;
|
|
2928
2939
|
}[] | undefined;
|
|
2929
2940
|
required?: boolean | undefined;
|
|
@@ -2942,7 +2953,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2942
2953
|
hint?: string | undefined;
|
|
2943
2954
|
messages?: {
|
|
2944
2955
|
text: string;
|
|
2945
|
-
type: "
|
|
2956
|
+
type: "success" | "error" | "info" | "warning";
|
|
2946
2957
|
id?: number | undefined;
|
|
2947
2958
|
}[] | undefined;
|
|
2948
2959
|
required?: boolean | undefined;
|
|
@@ -2962,7 +2973,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2962
2973
|
hint?: string | undefined;
|
|
2963
2974
|
messages?: {
|
|
2964
2975
|
text: string;
|
|
2965
|
-
type: "
|
|
2976
|
+
type: "success" | "error" | "info" | "warning";
|
|
2966
2977
|
id?: number | undefined;
|
|
2967
2978
|
}[] | undefined;
|
|
2968
2979
|
required?: boolean | undefined;
|
|
@@ -2981,7 +2992,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2981
2992
|
hint?: string | undefined;
|
|
2982
2993
|
messages?: {
|
|
2983
2994
|
text: string;
|
|
2984
|
-
type: "
|
|
2995
|
+
type: "success" | "error" | "info" | "warning";
|
|
2985
2996
|
id?: number | undefined;
|
|
2986
2997
|
}[] | undefined;
|
|
2987
2998
|
required?: boolean | undefined;
|
|
@@ -3003,7 +3014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3003
3014
|
hint?: string | undefined;
|
|
3004
3015
|
messages?: {
|
|
3005
3016
|
text: string;
|
|
3006
|
-
type: "
|
|
3017
|
+
type: "success" | "error" | "info" | "warning";
|
|
3007
3018
|
id?: number | undefined;
|
|
3008
3019
|
}[] | undefined;
|
|
3009
3020
|
required?: boolean | undefined;
|
|
@@ -3025,7 +3036,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3025
3036
|
hint?: string | undefined;
|
|
3026
3037
|
messages?: {
|
|
3027
3038
|
text: string;
|
|
3028
|
-
type: "
|
|
3039
|
+
type: "success" | "error" | "info" | "warning";
|
|
3029
3040
|
id?: number | undefined;
|
|
3030
3041
|
}[] | undefined;
|
|
3031
3042
|
required?: boolean | undefined;
|
|
@@ -3044,7 +3055,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3044
3055
|
hint?: string | undefined;
|
|
3045
3056
|
messages?: {
|
|
3046
3057
|
text: string;
|
|
3047
|
-
type: "
|
|
3058
|
+
type: "success" | "error" | "info" | "warning";
|
|
3048
3059
|
id?: number | undefined;
|
|
3049
3060
|
}[] | undefined;
|
|
3050
3061
|
required?: boolean | undefined;
|
|
@@ -3069,7 +3080,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3069
3080
|
hint?: string | undefined;
|
|
3070
3081
|
messages?: {
|
|
3071
3082
|
text: string;
|
|
3072
|
-
type: "
|
|
3083
|
+
type: "success" | "error" | "info" | "warning";
|
|
3073
3084
|
id?: number | undefined;
|
|
3074
3085
|
}[] | undefined;
|
|
3075
3086
|
required?: boolean | undefined;
|
|
@@ -3090,7 +3101,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3090
3101
|
hint?: string | undefined;
|
|
3091
3102
|
messages?: {
|
|
3092
3103
|
text: string;
|
|
3093
|
-
type: "
|
|
3104
|
+
type: "success" | "error" | "info" | "warning";
|
|
3094
3105
|
id?: number | undefined;
|
|
3095
3106
|
}[] | undefined;
|
|
3096
3107
|
required?: boolean | undefined;
|
|
@@ -3111,7 +3122,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3111
3122
|
hint?: string | undefined;
|
|
3112
3123
|
messages?: {
|
|
3113
3124
|
text: string;
|
|
3114
|
-
type: "
|
|
3125
|
+
type: "success" | "error" | "info" | "warning";
|
|
3115
3126
|
id?: number | undefined;
|
|
3116
3127
|
}[] | undefined;
|
|
3117
3128
|
required?: boolean | undefined;
|
|
@@ -3344,7 +3355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3344
3355
|
hint?: string | undefined;
|
|
3345
3356
|
messages?: {
|
|
3346
3357
|
text: string;
|
|
3347
|
-
type: "
|
|
3358
|
+
type: "success" | "error" | "info" | "warning";
|
|
3348
3359
|
id?: number | undefined;
|
|
3349
3360
|
}[] | undefined;
|
|
3350
3361
|
required?: boolean | undefined;
|
|
@@ -3362,7 +3373,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3362
3373
|
hint?: string | undefined;
|
|
3363
3374
|
messages?: {
|
|
3364
3375
|
text: string;
|
|
3365
|
-
type: "
|
|
3376
|
+
type: "success" | "error" | "info" | "warning";
|
|
3366
3377
|
id?: number | undefined;
|
|
3367
3378
|
}[] | undefined;
|
|
3368
3379
|
required?: boolean | undefined;
|
|
@@ -3386,7 +3397,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3386
3397
|
hint?: string | undefined;
|
|
3387
3398
|
messages?: {
|
|
3388
3399
|
text: string;
|
|
3389
|
-
type: "
|
|
3400
|
+
type: "success" | "error" | "info" | "warning";
|
|
3390
3401
|
id?: number | undefined;
|
|
3391
3402
|
}[] | undefined;
|
|
3392
3403
|
required?: boolean | undefined;
|
|
@@ -3410,7 +3421,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3410
3421
|
hint?: string | undefined;
|
|
3411
3422
|
messages?: {
|
|
3412
3423
|
text: string;
|
|
3413
|
-
type: "
|
|
3424
|
+
type: "success" | "error" | "info" | "warning";
|
|
3414
3425
|
id?: number | undefined;
|
|
3415
3426
|
}[] | undefined;
|
|
3416
3427
|
required?: boolean | undefined;
|
|
@@ -3434,7 +3445,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3434
3445
|
hint?: string | undefined;
|
|
3435
3446
|
messages?: {
|
|
3436
3447
|
text: string;
|
|
3437
|
-
type: "
|
|
3448
|
+
type: "success" | "error" | "info" | "warning";
|
|
3438
3449
|
id?: number | undefined;
|
|
3439
3450
|
}[] | undefined;
|
|
3440
3451
|
required?: boolean | undefined;
|
|
@@ -3463,7 +3474,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3463
3474
|
hint?: string | undefined;
|
|
3464
3475
|
messages?: {
|
|
3465
3476
|
text: string;
|
|
3466
|
-
type: "
|
|
3477
|
+
type: "success" | "error" | "info" | "warning";
|
|
3467
3478
|
id?: number | undefined;
|
|
3468
3479
|
}[] | undefined;
|
|
3469
3480
|
required?: boolean | undefined;
|
|
@@ -3478,7 +3489,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3478
3489
|
hint?: string | undefined;
|
|
3479
3490
|
messages?: {
|
|
3480
3491
|
text: string;
|
|
3481
|
-
type: "
|
|
3492
|
+
type: "success" | "error" | "info" | "warning";
|
|
3482
3493
|
id?: number | undefined;
|
|
3483
3494
|
}[] | undefined;
|
|
3484
3495
|
required?: boolean | undefined;
|
|
@@ -3499,7 +3510,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3499
3510
|
hint?: string | undefined;
|
|
3500
3511
|
messages?: {
|
|
3501
3512
|
text: string;
|
|
3502
|
-
type: "
|
|
3513
|
+
type: "success" | "error" | "info" | "warning";
|
|
3503
3514
|
id?: number | undefined;
|
|
3504
3515
|
}[] | undefined;
|
|
3505
3516
|
required?: boolean | undefined;
|
|
@@ -3524,7 +3535,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3524
3535
|
hint?: string | undefined;
|
|
3525
3536
|
messages?: {
|
|
3526
3537
|
text: string;
|
|
3527
|
-
type: "
|
|
3538
|
+
type: "success" | "error" | "info" | "warning";
|
|
3528
3539
|
id?: number | undefined;
|
|
3529
3540
|
}[] | undefined;
|
|
3530
3541
|
required?: boolean | undefined;
|
|
@@ -3543,7 +3554,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3543
3554
|
hint?: string | undefined;
|
|
3544
3555
|
messages?: {
|
|
3545
3556
|
text: string;
|
|
3546
|
-
type: "
|
|
3557
|
+
type: "success" | "error" | "info" | "warning";
|
|
3547
3558
|
id?: number | undefined;
|
|
3548
3559
|
}[] | undefined;
|
|
3549
3560
|
required?: boolean | undefined;
|
|
@@ -3563,7 +3574,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3563
3574
|
hint?: string | undefined;
|
|
3564
3575
|
messages?: {
|
|
3565
3576
|
text: string;
|
|
3566
|
-
type: "
|
|
3577
|
+
type: "success" | "error" | "info" | "warning";
|
|
3567
3578
|
id?: number | undefined;
|
|
3568
3579
|
}[] | undefined;
|
|
3569
3580
|
required?: boolean | undefined;
|
|
@@ -3582,7 +3593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3582
3593
|
hint?: string | undefined;
|
|
3583
3594
|
messages?: {
|
|
3584
3595
|
text: string;
|
|
3585
|
-
type: "
|
|
3596
|
+
type: "success" | "error" | "info" | "warning";
|
|
3586
3597
|
id?: number | undefined;
|
|
3587
3598
|
}[] | undefined;
|
|
3588
3599
|
required?: boolean | undefined;
|
|
@@ -3604,7 +3615,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3604
3615
|
hint?: string | undefined;
|
|
3605
3616
|
messages?: {
|
|
3606
3617
|
text: string;
|
|
3607
|
-
type: "
|
|
3618
|
+
type: "success" | "error" | "info" | "warning";
|
|
3608
3619
|
id?: number | undefined;
|
|
3609
3620
|
}[] | undefined;
|
|
3610
3621
|
required?: boolean | undefined;
|
|
@@ -3626,7 +3637,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3626
3637
|
hint?: string | undefined;
|
|
3627
3638
|
messages?: {
|
|
3628
3639
|
text: string;
|
|
3629
|
-
type: "
|
|
3640
|
+
type: "success" | "error" | "info" | "warning";
|
|
3630
3641
|
id?: number | undefined;
|
|
3631
3642
|
}[] | undefined;
|
|
3632
3643
|
required?: boolean | undefined;
|
|
@@ -3645,7 +3656,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3645
3656
|
hint?: string | undefined;
|
|
3646
3657
|
messages?: {
|
|
3647
3658
|
text: string;
|
|
3648
|
-
type: "
|
|
3659
|
+
type: "success" | "error" | "info" | "warning";
|
|
3649
3660
|
id?: number | undefined;
|
|
3650
3661
|
}[] | undefined;
|
|
3651
3662
|
required?: boolean | undefined;
|
|
@@ -3670,7 +3681,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3670
3681
|
hint?: string | undefined;
|
|
3671
3682
|
messages?: {
|
|
3672
3683
|
text: string;
|
|
3673
|
-
type: "
|
|
3684
|
+
type: "success" | "error" | "info" | "warning";
|
|
3674
3685
|
id?: number | undefined;
|
|
3675
3686
|
}[] | undefined;
|
|
3676
3687
|
required?: boolean | undefined;
|
|
@@ -3691,7 +3702,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3691
3702
|
hint?: string | undefined;
|
|
3692
3703
|
messages?: {
|
|
3693
3704
|
text: string;
|
|
3694
|
-
type: "
|
|
3705
|
+
type: "success" | "error" | "info" | "warning";
|
|
3695
3706
|
id?: number | undefined;
|
|
3696
3707
|
}[] | undefined;
|
|
3697
3708
|
required?: boolean | undefined;
|
|
@@ -3712,7 +3723,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3712
3723
|
hint?: string | undefined;
|
|
3713
3724
|
messages?: {
|
|
3714
3725
|
text: string;
|
|
3715
|
-
type: "
|
|
3726
|
+
type: "success" | "error" | "info" | "warning";
|
|
3716
3727
|
id?: number | undefined;
|
|
3717
3728
|
}[] | undefined;
|
|
3718
3729
|
required?: boolean | undefined;
|
|
@@ -3961,7 +3972,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3961
3972
|
hint?: string | undefined;
|
|
3962
3973
|
messages?: {
|
|
3963
3974
|
text: string;
|
|
3964
|
-
type: "
|
|
3975
|
+
type: "success" | "error" | "info" | "warning";
|
|
3965
3976
|
id?: number | undefined;
|
|
3966
3977
|
}[] | undefined;
|
|
3967
3978
|
required?: boolean | undefined;
|
|
@@ -3979,7 +3990,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3979
3990
|
hint?: string | undefined;
|
|
3980
3991
|
messages?: {
|
|
3981
3992
|
text: string;
|
|
3982
|
-
type: "
|
|
3993
|
+
type: "success" | "error" | "info" | "warning";
|
|
3983
3994
|
id?: number | undefined;
|
|
3984
3995
|
}[] | undefined;
|
|
3985
3996
|
required?: boolean | undefined;
|
|
@@ -4003,7 +4014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4003
4014
|
hint?: string | undefined;
|
|
4004
4015
|
messages?: {
|
|
4005
4016
|
text: string;
|
|
4006
|
-
type: "
|
|
4017
|
+
type: "success" | "error" | "info" | "warning";
|
|
4007
4018
|
id?: number | undefined;
|
|
4008
4019
|
}[] | undefined;
|
|
4009
4020
|
required?: boolean | undefined;
|
|
@@ -4027,7 +4038,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4027
4038
|
hint?: string | undefined;
|
|
4028
4039
|
messages?: {
|
|
4029
4040
|
text: string;
|
|
4030
|
-
type: "
|
|
4041
|
+
type: "success" | "error" | "info" | "warning";
|
|
4031
4042
|
id?: number | undefined;
|
|
4032
4043
|
}[] | undefined;
|
|
4033
4044
|
required?: boolean | undefined;
|
|
@@ -4051,7 +4062,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4051
4062
|
hint?: string | undefined;
|
|
4052
4063
|
messages?: {
|
|
4053
4064
|
text: string;
|
|
4054
|
-
type: "
|
|
4065
|
+
type: "success" | "error" | "info" | "warning";
|
|
4055
4066
|
id?: number | undefined;
|
|
4056
4067
|
}[] | undefined;
|
|
4057
4068
|
required?: boolean | undefined;
|
|
@@ -4080,7 +4091,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4080
4091
|
hint?: string | undefined;
|
|
4081
4092
|
messages?: {
|
|
4082
4093
|
text: string;
|
|
4083
|
-
type: "
|
|
4094
|
+
type: "success" | "error" | "info" | "warning";
|
|
4084
4095
|
id?: number | undefined;
|
|
4085
4096
|
}[] | undefined;
|
|
4086
4097
|
required?: boolean | undefined;
|
|
@@ -4095,7 +4106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4095
4106
|
hint?: string | undefined;
|
|
4096
4107
|
messages?: {
|
|
4097
4108
|
text: string;
|
|
4098
|
-
type: "
|
|
4109
|
+
type: "success" | "error" | "info" | "warning";
|
|
4099
4110
|
id?: number | undefined;
|
|
4100
4111
|
}[] | undefined;
|
|
4101
4112
|
required?: boolean | undefined;
|
|
@@ -4116,7 +4127,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4116
4127
|
hint?: string | undefined;
|
|
4117
4128
|
messages?: {
|
|
4118
4129
|
text: string;
|
|
4119
|
-
type: "
|
|
4130
|
+
type: "success" | "error" | "info" | "warning";
|
|
4120
4131
|
id?: number | undefined;
|
|
4121
4132
|
}[] | undefined;
|
|
4122
4133
|
required?: boolean | undefined;
|
|
@@ -4141,7 +4152,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4141
4152
|
hint?: string | undefined;
|
|
4142
4153
|
messages?: {
|
|
4143
4154
|
text: string;
|
|
4144
|
-
type: "
|
|
4155
|
+
type: "success" | "error" | "info" | "warning";
|
|
4145
4156
|
id?: number | undefined;
|
|
4146
4157
|
}[] | undefined;
|
|
4147
4158
|
required?: boolean | undefined;
|
|
@@ -4160,7 +4171,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4160
4171
|
hint?: string | undefined;
|
|
4161
4172
|
messages?: {
|
|
4162
4173
|
text: string;
|
|
4163
|
-
type: "
|
|
4174
|
+
type: "success" | "error" | "info" | "warning";
|
|
4164
4175
|
id?: number | undefined;
|
|
4165
4176
|
}[] | undefined;
|
|
4166
4177
|
required?: boolean | undefined;
|
|
@@ -4180,7 +4191,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4180
4191
|
hint?: string | undefined;
|
|
4181
4192
|
messages?: {
|
|
4182
4193
|
text: string;
|
|
4183
|
-
type: "
|
|
4194
|
+
type: "success" | "error" | "info" | "warning";
|
|
4184
4195
|
id?: number | undefined;
|
|
4185
4196
|
}[] | undefined;
|
|
4186
4197
|
required?: boolean | undefined;
|
|
@@ -4199,7 +4210,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4199
4210
|
hint?: string | undefined;
|
|
4200
4211
|
messages?: {
|
|
4201
4212
|
text: string;
|
|
4202
|
-
type: "
|
|
4213
|
+
type: "success" | "error" | "info" | "warning";
|
|
4203
4214
|
id?: number | undefined;
|
|
4204
4215
|
}[] | undefined;
|
|
4205
4216
|
required?: boolean | undefined;
|
|
@@ -4221,7 +4232,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4221
4232
|
hint?: string | undefined;
|
|
4222
4233
|
messages?: {
|
|
4223
4234
|
text: string;
|
|
4224
|
-
type: "
|
|
4235
|
+
type: "success" | "error" | "info" | "warning";
|
|
4225
4236
|
id?: number | undefined;
|
|
4226
4237
|
}[] | undefined;
|
|
4227
4238
|
required?: boolean | undefined;
|
|
@@ -4243,7 +4254,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4243
4254
|
hint?: string | undefined;
|
|
4244
4255
|
messages?: {
|
|
4245
4256
|
text: string;
|
|
4246
|
-
type: "
|
|
4257
|
+
type: "success" | "error" | "info" | "warning";
|
|
4247
4258
|
id?: number | undefined;
|
|
4248
4259
|
}[] | undefined;
|
|
4249
4260
|
required?: boolean | undefined;
|
|
@@ -4262,7 +4273,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4262
4273
|
hint?: string | undefined;
|
|
4263
4274
|
messages?: {
|
|
4264
4275
|
text: string;
|
|
4265
|
-
type: "
|
|
4276
|
+
type: "success" | "error" | "info" | "warning";
|
|
4266
4277
|
id?: number | undefined;
|
|
4267
4278
|
}[] | undefined;
|
|
4268
4279
|
required?: boolean | undefined;
|
|
@@ -4287,7 +4298,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4287
4298
|
hint?: string | undefined;
|
|
4288
4299
|
messages?: {
|
|
4289
4300
|
text: string;
|
|
4290
|
-
type: "
|
|
4301
|
+
type: "success" | "error" | "info" | "warning";
|
|
4291
4302
|
id?: number | undefined;
|
|
4292
4303
|
}[] | undefined;
|
|
4293
4304
|
required?: boolean | undefined;
|
|
@@ -4308,7 +4319,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4308
4319
|
hint?: string | undefined;
|
|
4309
4320
|
messages?: {
|
|
4310
4321
|
text: string;
|
|
4311
|
-
type: "
|
|
4322
|
+
type: "success" | "error" | "info" | "warning";
|
|
4312
4323
|
id?: number | undefined;
|
|
4313
4324
|
}[] | undefined;
|
|
4314
4325
|
required?: boolean | undefined;
|
|
@@ -4329,7 +4340,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4329
4340
|
hint?: string | undefined;
|
|
4330
4341
|
messages?: {
|
|
4331
4342
|
text: string;
|
|
4332
|
-
type: "
|
|
4343
|
+
type: "success" | "error" | "info" | "warning";
|
|
4333
4344
|
id?: number | undefined;
|
|
4334
4345
|
}[] | undefined;
|
|
4335
4346
|
required?: boolean | undefined;
|
|
@@ -4583,7 +4594,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4583
4594
|
hint?: string | undefined;
|
|
4584
4595
|
messages?: {
|
|
4585
4596
|
text: string;
|
|
4586
|
-
type: "
|
|
4597
|
+
type: "success" | "error" | "info" | "warning";
|
|
4587
4598
|
id?: number | undefined;
|
|
4588
4599
|
}[] | undefined;
|
|
4589
4600
|
required?: boolean | undefined;
|
|
@@ -4601,7 +4612,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4601
4612
|
hint?: string | undefined;
|
|
4602
4613
|
messages?: {
|
|
4603
4614
|
text: string;
|
|
4604
|
-
type: "
|
|
4615
|
+
type: "success" | "error" | "info" | "warning";
|
|
4605
4616
|
id?: number | undefined;
|
|
4606
4617
|
}[] | undefined;
|
|
4607
4618
|
required?: boolean | undefined;
|
|
@@ -4625,7 +4636,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4625
4636
|
hint?: string | undefined;
|
|
4626
4637
|
messages?: {
|
|
4627
4638
|
text: string;
|
|
4628
|
-
type: "
|
|
4639
|
+
type: "success" | "error" | "info" | "warning";
|
|
4629
4640
|
id?: number | undefined;
|
|
4630
4641
|
}[] | undefined;
|
|
4631
4642
|
required?: boolean | undefined;
|
|
@@ -4649,7 +4660,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4649
4660
|
hint?: string | undefined;
|
|
4650
4661
|
messages?: {
|
|
4651
4662
|
text: string;
|
|
4652
|
-
type: "
|
|
4663
|
+
type: "success" | "error" | "info" | "warning";
|
|
4653
4664
|
id?: number | undefined;
|
|
4654
4665
|
}[] | undefined;
|
|
4655
4666
|
required?: boolean | undefined;
|
|
@@ -4673,7 +4684,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4673
4684
|
hint?: string | undefined;
|
|
4674
4685
|
messages?: {
|
|
4675
4686
|
text: string;
|
|
4676
|
-
type: "
|
|
4687
|
+
type: "success" | "error" | "info" | "warning";
|
|
4677
4688
|
id?: number | undefined;
|
|
4678
4689
|
}[] | undefined;
|
|
4679
4690
|
required?: boolean | undefined;
|
|
@@ -4698,7 +4709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4698
4709
|
hint?: string | undefined;
|
|
4699
4710
|
messages?: {
|
|
4700
4711
|
text: string;
|
|
4701
|
-
type: "
|
|
4712
|
+
type: "success" | "error" | "info" | "warning";
|
|
4702
4713
|
id?: number | undefined;
|
|
4703
4714
|
}[] | undefined;
|
|
4704
4715
|
required?: boolean | undefined;
|
|
@@ -4713,7 +4724,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4713
4724
|
hint?: string | undefined;
|
|
4714
4725
|
messages?: {
|
|
4715
4726
|
text: string;
|
|
4716
|
-
type: "
|
|
4727
|
+
type: "success" | "error" | "info" | "warning";
|
|
4717
4728
|
id?: number | undefined;
|
|
4718
4729
|
}[] | undefined;
|
|
4719
4730
|
required?: boolean | undefined;
|
|
@@ -4734,7 +4745,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4734
4745
|
hint?: string | undefined;
|
|
4735
4746
|
messages?: {
|
|
4736
4747
|
text: string;
|
|
4737
|
-
type: "
|
|
4748
|
+
type: "success" | "error" | "info" | "warning";
|
|
4738
4749
|
id?: number | undefined;
|
|
4739
4750
|
}[] | undefined;
|
|
4740
4751
|
required?: boolean | undefined;
|
|
@@ -4759,7 +4770,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4759
4770
|
hint?: string | undefined;
|
|
4760
4771
|
messages?: {
|
|
4761
4772
|
text: string;
|
|
4762
|
-
type: "
|
|
4773
|
+
type: "success" | "error" | "info" | "warning";
|
|
4763
4774
|
id?: number | undefined;
|
|
4764
4775
|
}[] | undefined;
|
|
4765
4776
|
required?: boolean | undefined;
|
|
@@ -4778,7 +4789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4778
4789
|
hint?: string | undefined;
|
|
4779
4790
|
messages?: {
|
|
4780
4791
|
text: string;
|
|
4781
|
-
type: "
|
|
4792
|
+
type: "success" | "error" | "info" | "warning";
|
|
4782
4793
|
id?: number | undefined;
|
|
4783
4794
|
}[] | undefined;
|
|
4784
4795
|
required?: boolean | undefined;
|
|
@@ -4798,7 +4809,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4798
4809
|
hint?: string | undefined;
|
|
4799
4810
|
messages?: {
|
|
4800
4811
|
text: string;
|
|
4801
|
-
type: "
|
|
4812
|
+
type: "success" | "error" | "info" | "warning";
|
|
4802
4813
|
id?: number | undefined;
|
|
4803
4814
|
}[] | undefined;
|
|
4804
4815
|
required?: boolean | undefined;
|
|
@@ -4817,7 +4828,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4817
4828
|
hint?: string | undefined;
|
|
4818
4829
|
messages?: {
|
|
4819
4830
|
text: string;
|
|
4820
|
-
type: "
|
|
4831
|
+
type: "success" | "error" | "info" | "warning";
|
|
4821
4832
|
id?: number | undefined;
|
|
4822
4833
|
}[] | undefined;
|
|
4823
4834
|
required?: boolean | undefined;
|
|
@@ -4839,7 +4850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4839
4850
|
hint?: string | undefined;
|
|
4840
4851
|
messages?: {
|
|
4841
4852
|
text: string;
|
|
4842
|
-
type: "
|
|
4853
|
+
type: "success" | "error" | "info" | "warning";
|
|
4843
4854
|
id?: number | undefined;
|
|
4844
4855
|
}[] | undefined;
|
|
4845
4856
|
required?: boolean | undefined;
|
|
@@ -4861,7 +4872,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4861
4872
|
hint?: string | undefined;
|
|
4862
4873
|
messages?: {
|
|
4863
4874
|
text: string;
|
|
4864
|
-
type: "
|
|
4875
|
+
type: "success" | "error" | "info" | "warning";
|
|
4865
4876
|
id?: number | undefined;
|
|
4866
4877
|
}[] | undefined;
|
|
4867
4878
|
required?: boolean | undefined;
|
|
@@ -4880,7 +4891,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4880
4891
|
hint?: string | undefined;
|
|
4881
4892
|
messages?: {
|
|
4882
4893
|
text: string;
|
|
4883
|
-
type: "
|
|
4894
|
+
type: "success" | "error" | "info" | "warning";
|
|
4884
4895
|
id?: number | undefined;
|
|
4885
4896
|
}[] | undefined;
|
|
4886
4897
|
required?: boolean | undefined;
|
|
@@ -4905,7 +4916,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4905
4916
|
hint?: string | undefined;
|
|
4906
4917
|
messages?: {
|
|
4907
4918
|
text: string;
|
|
4908
|
-
type: "
|
|
4919
|
+
type: "success" | "error" | "info" | "warning";
|
|
4909
4920
|
id?: number | undefined;
|
|
4910
4921
|
}[] | undefined;
|
|
4911
4922
|
required?: boolean | undefined;
|
|
@@ -4926,7 +4937,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4926
4937
|
hint?: string | undefined;
|
|
4927
4938
|
messages?: {
|
|
4928
4939
|
text: string;
|
|
4929
|
-
type: "
|
|
4940
|
+
type: "success" | "error" | "info" | "warning";
|
|
4930
4941
|
id?: number | undefined;
|
|
4931
4942
|
}[] | undefined;
|
|
4932
4943
|
required?: boolean | undefined;
|
|
@@ -4947,7 +4958,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4947
4958
|
hint?: string | undefined;
|
|
4948
4959
|
messages?: {
|
|
4949
4960
|
text: string;
|
|
4950
|
-
type: "
|
|
4961
|
+
type: "success" | "error" | "info" | "warning";
|
|
4951
4962
|
id?: number | undefined;
|
|
4952
4963
|
}[] | undefined;
|
|
4953
4964
|
required?: boolean | undefined;
|
|
@@ -5178,7 +5189,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5178
5189
|
hint?: string | undefined;
|
|
5179
5190
|
messages?: {
|
|
5180
5191
|
text: string;
|
|
5181
|
-
type: "
|
|
5192
|
+
type: "success" | "error" | "info" | "warning";
|
|
5182
5193
|
id?: number | undefined;
|
|
5183
5194
|
}[] | undefined;
|
|
5184
5195
|
required?: boolean | undefined;
|
|
@@ -5196,7 +5207,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5196
5207
|
hint?: string | undefined;
|
|
5197
5208
|
messages?: {
|
|
5198
5209
|
text: string;
|
|
5199
|
-
type: "
|
|
5210
|
+
type: "success" | "error" | "info" | "warning";
|
|
5200
5211
|
id?: number | undefined;
|
|
5201
5212
|
}[] | undefined;
|
|
5202
5213
|
required?: boolean | undefined;
|
|
@@ -5220,7 +5231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5220
5231
|
hint?: string | undefined;
|
|
5221
5232
|
messages?: {
|
|
5222
5233
|
text: string;
|
|
5223
|
-
type: "
|
|
5234
|
+
type: "success" | "error" | "info" | "warning";
|
|
5224
5235
|
id?: number | undefined;
|
|
5225
5236
|
}[] | undefined;
|
|
5226
5237
|
required?: boolean | undefined;
|
|
@@ -5244,7 +5255,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5244
5255
|
hint?: string | undefined;
|
|
5245
5256
|
messages?: {
|
|
5246
5257
|
text: string;
|
|
5247
|
-
type: "
|
|
5258
|
+
type: "success" | "error" | "info" | "warning";
|
|
5248
5259
|
id?: number | undefined;
|
|
5249
5260
|
}[] | undefined;
|
|
5250
5261
|
required?: boolean | undefined;
|
|
@@ -5268,7 +5279,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5268
5279
|
hint?: string | undefined;
|
|
5269
5280
|
messages?: {
|
|
5270
5281
|
text: string;
|
|
5271
|
-
type: "
|
|
5282
|
+
type: "success" | "error" | "info" | "warning";
|
|
5272
5283
|
id?: number | undefined;
|
|
5273
5284
|
}[] | undefined;
|
|
5274
5285
|
required?: boolean | undefined;
|
|
@@ -5297,7 +5308,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5297
5308
|
hint?: string | undefined;
|
|
5298
5309
|
messages?: {
|
|
5299
5310
|
text: string;
|
|
5300
|
-
type: "
|
|
5311
|
+
type: "success" | "error" | "info" | "warning";
|
|
5301
5312
|
id?: number | undefined;
|
|
5302
5313
|
}[] | undefined;
|
|
5303
5314
|
required?: boolean | undefined;
|
|
@@ -5312,7 +5323,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5312
5323
|
hint?: string | undefined;
|
|
5313
5324
|
messages?: {
|
|
5314
5325
|
text: string;
|
|
5315
|
-
type: "
|
|
5326
|
+
type: "success" | "error" | "info" | "warning";
|
|
5316
5327
|
id?: number | undefined;
|
|
5317
5328
|
}[] | undefined;
|
|
5318
5329
|
required?: boolean | undefined;
|
|
@@ -5333,7 +5344,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5333
5344
|
hint?: string | undefined;
|
|
5334
5345
|
messages?: {
|
|
5335
5346
|
text: string;
|
|
5336
|
-
type: "
|
|
5347
|
+
type: "success" | "error" | "info" | "warning";
|
|
5337
5348
|
id?: number | undefined;
|
|
5338
5349
|
}[] | undefined;
|
|
5339
5350
|
required?: boolean | undefined;
|
|
@@ -5358,7 +5369,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5358
5369
|
hint?: string | undefined;
|
|
5359
5370
|
messages?: {
|
|
5360
5371
|
text: string;
|
|
5361
|
-
type: "
|
|
5372
|
+
type: "success" | "error" | "info" | "warning";
|
|
5362
5373
|
id?: number | undefined;
|
|
5363
5374
|
}[] | undefined;
|
|
5364
5375
|
required?: boolean | undefined;
|
|
@@ -5377,7 +5388,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5377
5388
|
hint?: string | undefined;
|
|
5378
5389
|
messages?: {
|
|
5379
5390
|
text: string;
|
|
5380
|
-
type: "
|
|
5391
|
+
type: "success" | "error" | "info" | "warning";
|
|
5381
5392
|
id?: number | undefined;
|
|
5382
5393
|
}[] | undefined;
|
|
5383
5394
|
required?: boolean | undefined;
|
|
@@ -5397,7 +5408,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5397
5408
|
hint?: string | undefined;
|
|
5398
5409
|
messages?: {
|
|
5399
5410
|
text: string;
|
|
5400
|
-
type: "
|
|
5411
|
+
type: "success" | "error" | "info" | "warning";
|
|
5401
5412
|
id?: number | undefined;
|
|
5402
5413
|
}[] | undefined;
|
|
5403
5414
|
required?: boolean | undefined;
|
|
@@ -5416,7 +5427,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5416
5427
|
hint?: string | undefined;
|
|
5417
5428
|
messages?: {
|
|
5418
5429
|
text: string;
|
|
5419
|
-
type: "
|
|
5430
|
+
type: "success" | "error" | "info" | "warning";
|
|
5420
5431
|
id?: number | undefined;
|
|
5421
5432
|
}[] | undefined;
|
|
5422
5433
|
required?: boolean | undefined;
|
|
@@ -5438,7 +5449,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5438
5449
|
hint?: string | undefined;
|
|
5439
5450
|
messages?: {
|
|
5440
5451
|
text: string;
|
|
5441
|
-
type: "
|
|
5452
|
+
type: "success" | "error" | "info" | "warning";
|
|
5442
5453
|
id?: number | undefined;
|
|
5443
5454
|
}[] | undefined;
|
|
5444
5455
|
required?: boolean | undefined;
|
|
@@ -5460,7 +5471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5460
5471
|
hint?: string | undefined;
|
|
5461
5472
|
messages?: {
|
|
5462
5473
|
text: string;
|
|
5463
|
-
type: "
|
|
5474
|
+
type: "success" | "error" | "info" | "warning";
|
|
5464
5475
|
id?: number | undefined;
|
|
5465
5476
|
}[] | undefined;
|
|
5466
5477
|
required?: boolean | undefined;
|
|
@@ -5479,7 +5490,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5479
5490
|
hint?: string | undefined;
|
|
5480
5491
|
messages?: {
|
|
5481
5492
|
text: string;
|
|
5482
|
-
type: "
|
|
5493
|
+
type: "success" | "error" | "info" | "warning";
|
|
5483
5494
|
id?: number | undefined;
|
|
5484
5495
|
}[] | undefined;
|
|
5485
5496
|
required?: boolean | undefined;
|
|
@@ -5504,7 +5515,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5504
5515
|
hint?: string | undefined;
|
|
5505
5516
|
messages?: {
|
|
5506
5517
|
text: string;
|
|
5507
|
-
type: "
|
|
5518
|
+
type: "success" | "error" | "info" | "warning";
|
|
5508
5519
|
id?: number | undefined;
|
|
5509
5520
|
}[] | undefined;
|
|
5510
5521
|
required?: boolean | undefined;
|
|
@@ -5525,7 +5536,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5525
5536
|
hint?: string | undefined;
|
|
5526
5537
|
messages?: {
|
|
5527
5538
|
text: string;
|
|
5528
|
-
type: "
|
|
5539
|
+
type: "success" | "error" | "info" | "warning";
|
|
5529
5540
|
id?: number | undefined;
|
|
5530
5541
|
}[] | undefined;
|
|
5531
5542
|
required?: boolean | undefined;
|
|
@@ -5546,7 +5557,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5546
5557
|
hint?: string | undefined;
|
|
5547
5558
|
messages?: {
|
|
5548
5559
|
text: string;
|
|
5549
|
-
type: "
|
|
5560
|
+
type: "success" | "error" | "info" | "warning";
|
|
5550
5561
|
id?: number | undefined;
|
|
5551
5562
|
}[] | undefined;
|
|
5552
5563
|
required?: boolean | undefined;
|
|
@@ -5779,7 +5790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5779
5790
|
hint?: string | undefined;
|
|
5780
5791
|
messages?: {
|
|
5781
5792
|
text: string;
|
|
5782
|
-
type: "
|
|
5793
|
+
type: "success" | "error" | "info" | "warning";
|
|
5783
5794
|
id?: number | undefined;
|
|
5784
5795
|
}[] | undefined;
|
|
5785
5796
|
required?: boolean | undefined;
|
|
@@ -5797,7 +5808,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5797
5808
|
hint?: string | undefined;
|
|
5798
5809
|
messages?: {
|
|
5799
5810
|
text: string;
|
|
5800
|
-
type: "
|
|
5811
|
+
type: "success" | "error" | "info" | "warning";
|
|
5801
5812
|
id?: number | undefined;
|
|
5802
5813
|
}[] | undefined;
|
|
5803
5814
|
required?: boolean | undefined;
|
|
@@ -5821,7 +5832,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5821
5832
|
hint?: string | undefined;
|
|
5822
5833
|
messages?: {
|
|
5823
5834
|
text: string;
|
|
5824
|
-
type: "
|
|
5835
|
+
type: "success" | "error" | "info" | "warning";
|
|
5825
5836
|
id?: number | undefined;
|
|
5826
5837
|
}[] | undefined;
|
|
5827
5838
|
required?: boolean | undefined;
|
|
@@ -5845,7 +5856,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5845
5856
|
hint?: string | undefined;
|
|
5846
5857
|
messages?: {
|
|
5847
5858
|
text: string;
|
|
5848
|
-
type: "
|
|
5859
|
+
type: "success" | "error" | "info" | "warning";
|
|
5849
5860
|
id?: number | undefined;
|
|
5850
5861
|
}[] | undefined;
|
|
5851
5862
|
required?: boolean | undefined;
|
|
@@ -5869,7 +5880,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5869
5880
|
hint?: string | undefined;
|
|
5870
5881
|
messages?: {
|
|
5871
5882
|
text: string;
|
|
5872
|
-
type: "
|
|
5883
|
+
type: "success" | "error" | "info" | "warning";
|
|
5873
5884
|
id?: number | undefined;
|
|
5874
5885
|
}[] | undefined;
|
|
5875
5886
|
required?: boolean | undefined;
|
|
@@ -5894,7 +5905,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5894
5905
|
hint?: string | undefined;
|
|
5895
5906
|
messages?: {
|
|
5896
5907
|
text: string;
|
|
5897
|
-
type: "
|
|
5908
|
+
type: "success" | "error" | "info" | "warning";
|
|
5898
5909
|
id?: number | undefined;
|
|
5899
5910
|
}[] | undefined;
|
|
5900
5911
|
required?: boolean | undefined;
|
|
@@ -5909,7 +5920,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5909
5920
|
hint?: string | undefined;
|
|
5910
5921
|
messages?: {
|
|
5911
5922
|
text: string;
|
|
5912
|
-
type: "
|
|
5923
|
+
type: "success" | "error" | "info" | "warning";
|
|
5913
5924
|
id?: number | undefined;
|
|
5914
5925
|
}[] | undefined;
|
|
5915
5926
|
required?: boolean | undefined;
|
|
@@ -5930,7 +5941,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5930
5941
|
hint?: string | undefined;
|
|
5931
5942
|
messages?: {
|
|
5932
5943
|
text: string;
|
|
5933
|
-
type: "
|
|
5944
|
+
type: "success" | "error" | "info" | "warning";
|
|
5934
5945
|
id?: number | undefined;
|
|
5935
5946
|
}[] | undefined;
|
|
5936
5947
|
required?: boolean | undefined;
|
|
@@ -5955,7 +5966,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5955
5966
|
hint?: string | undefined;
|
|
5956
5967
|
messages?: {
|
|
5957
5968
|
text: string;
|
|
5958
|
-
type: "
|
|
5969
|
+
type: "success" | "error" | "info" | "warning";
|
|
5959
5970
|
id?: number | undefined;
|
|
5960
5971
|
}[] | undefined;
|
|
5961
5972
|
required?: boolean | undefined;
|
|
@@ -5974,7 +5985,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5974
5985
|
hint?: string | undefined;
|
|
5975
5986
|
messages?: {
|
|
5976
5987
|
text: string;
|
|
5977
|
-
type: "
|
|
5988
|
+
type: "success" | "error" | "info" | "warning";
|
|
5978
5989
|
id?: number | undefined;
|
|
5979
5990
|
}[] | undefined;
|
|
5980
5991
|
required?: boolean | undefined;
|
|
@@ -5994,7 +6005,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5994
6005
|
hint?: string | undefined;
|
|
5995
6006
|
messages?: {
|
|
5996
6007
|
text: string;
|
|
5997
|
-
type: "
|
|
6008
|
+
type: "success" | "error" | "info" | "warning";
|
|
5998
6009
|
id?: number | undefined;
|
|
5999
6010
|
}[] | undefined;
|
|
6000
6011
|
required?: boolean | undefined;
|
|
@@ -6013,7 +6024,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6013
6024
|
hint?: string | undefined;
|
|
6014
6025
|
messages?: {
|
|
6015
6026
|
text: string;
|
|
6016
|
-
type: "
|
|
6027
|
+
type: "success" | "error" | "info" | "warning";
|
|
6017
6028
|
id?: number | undefined;
|
|
6018
6029
|
}[] | undefined;
|
|
6019
6030
|
required?: boolean | undefined;
|
|
@@ -6035,7 +6046,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6035
6046
|
hint?: string | undefined;
|
|
6036
6047
|
messages?: {
|
|
6037
6048
|
text: string;
|
|
6038
|
-
type: "
|
|
6049
|
+
type: "success" | "error" | "info" | "warning";
|
|
6039
6050
|
id?: number | undefined;
|
|
6040
6051
|
}[] | undefined;
|
|
6041
6052
|
required?: boolean | undefined;
|
|
@@ -6057,7 +6068,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6057
6068
|
hint?: string | undefined;
|
|
6058
6069
|
messages?: {
|
|
6059
6070
|
text: string;
|
|
6060
|
-
type: "
|
|
6071
|
+
type: "success" | "error" | "info" | "warning";
|
|
6061
6072
|
id?: number | undefined;
|
|
6062
6073
|
}[] | undefined;
|
|
6063
6074
|
required?: boolean | undefined;
|
|
@@ -6076,7 +6087,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6076
6087
|
hint?: string | undefined;
|
|
6077
6088
|
messages?: {
|
|
6078
6089
|
text: string;
|
|
6079
|
-
type: "
|
|
6090
|
+
type: "success" | "error" | "info" | "warning";
|
|
6080
6091
|
id?: number | undefined;
|
|
6081
6092
|
}[] | undefined;
|
|
6082
6093
|
required?: boolean | undefined;
|
|
@@ -6101,7 +6112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6101
6112
|
hint?: string | undefined;
|
|
6102
6113
|
messages?: {
|
|
6103
6114
|
text: string;
|
|
6104
|
-
type: "
|
|
6115
|
+
type: "success" | "error" | "info" | "warning";
|
|
6105
6116
|
id?: number | undefined;
|
|
6106
6117
|
}[] | undefined;
|
|
6107
6118
|
required?: boolean | undefined;
|
|
@@ -6122,7 +6133,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6122
6133
|
hint?: string | undefined;
|
|
6123
6134
|
messages?: {
|
|
6124
6135
|
text: string;
|
|
6125
|
-
type: "
|
|
6136
|
+
type: "success" | "error" | "info" | "warning";
|
|
6126
6137
|
id?: number | undefined;
|
|
6127
6138
|
}[] | undefined;
|
|
6128
6139
|
required?: boolean | undefined;
|
|
@@ -6143,7 +6154,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6143
6154
|
hint?: string | undefined;
|
|
6144
6155
|
messages?: {
|
|
6145
6156
|
text: string;
|
|
6146
|
-
type: "
|
|
6157
|
+
type: "success" | "error" | "info" | "warning";
|
|
6147
6158
|
id?: number | undefined;
|
|
6148
6159
|
}[] | undefined;
|
|
6149
6160
|
required?: boolean | undefined;
|
|
@@ -6374,7 +6385,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6374
6385
|
hint?: string | undefined;
|
|
6375
6386
|
messages?: {
|
|
6376
6387
|
text: string;
|
|
6377
|
-
type: "
|
|
6388
|
+
type: "success" | "error" | "info" | "warning";
|
|
6378
6389
|
id?: number | undefined;
|
|
6379
6390
|
}[] | undefined;
|
|
6380
6391
|
required?: boolean | undefined;
|
|
@@ -6392,7 +6403,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6392
6403
|
hint?: string | undefined;
|
|
6393
6404
|
messages?: {
|
|
6394
6405
|
text: string;
|
|
6395
|
-
type: "
|
|
6406
|
+
type: "success" | "error" | "info" | "warning";
|
|
6396
6407
|
id?: number | undefined;
|
|
6397
6408
|
}[] | undefined;
|
|
6398
6409
|
required?: boolean | undefined;
|
|
@@ -6416,7 +6427,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6416
6427
|
hint?: string | undefined;
|
|
6417
6428
|
messages?: {
|
|
6418
6429
|
text: string;
|
|
6419
|
-
type: "
|
|
6430
|
+
type: "success" | "error" | "info" | "warning";
|
|
6420
6431
|
id?: number | undefined;
|
|
6421
6432
|
}[] | undefined;
|
|
6422
6433
|
required?: boolean | undefined;
|
|
@@ -6440,7 +6451,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6440
6451
|
hint?: string | undefined;
|
|
6441
6452
|
messages?: {
|
|
6442
6453
|
text: string;
|
|
6443
|
-
type: "
|
|
6454
|
+
type: "success" | "error" | "info" | "warning";
|
|
6444
6455
|
id?: number | undefined;
|
|
6445
6456
|
}[] | undefined;
|
|
6446
6457
|
required?: boolean | undefined;
|
|
@@ -6464,7 +6475,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6464
6475
|
hint?: string | undefined;
|
|
6465
6476
|
messages?: {
|
|
6466
6477
|
text: string;
|
|
6467
|
-
type: "
|
|
6478
|
+
type: "success" | "error" | "info" | "warning";
|
|
6468
6479
|
id?: number | undefined;
|
|
6469
6480
|
}[] | undefined;
|
|
6470
6481
|
required?: boolean | undefined;
|
|
@@ -6493,7 +6504,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6493
6504
|
hint?: string | undefined;
|
|
6494
6505
|
messages?: {
|
|
6495
6506
|
text: string;
|
|
6496
|
-
type: "
|
|
6507
|
+
type: "success" | "error" | "info" | "warning";
|
|
6497
6508
|
id?: number | undefined;
|
|
6498
6509
|
}[] | undefined;
|
|
6499
6510
|
required?: boolean | undefined;
|
|
@@ -6508,7 +6519,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6508
6519
|
hint?: string | undefined;
|
|
6509
6520
|
messages?: {
|
|
6510
6521
|
text: string;
|
|
6511
|
-
type: "
|
|
6522
|
+
type: "success" | "error" | "info" | "warning";
|
|
6512
6523
|
id?: number | undefined;
|
|
6513
6524
|
}[] | undefined;
|
|
6514
6525
|
required?: boolean | undefined;
|
|
@@ -6529,7 +6540,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6529
6540
|
hint?: string | undefined;
|
|
6530
6541
|
messages?: {
|
|
6531
6542
|
text: string;
|
|
6532
|
-
type: "
|
|
6543
|
+
type: "success" | "error" | "info" | "warning";
|
|
6533
6544
|
id?: number | undefined;
|
|
6534
6545
|
}[] | undefined;
|
|
6535
6546
|
required?: boolean | undefined;
|
|
@@ -6554,7 +6565,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6554
6565
|
hint?: string | undefined;
|
|
6555
6566
|
messages?: {
|
|
6556
6567
|
text: string;
|
|
6557
|
-
type: "
|
|
6568
|
+
type: "success" | "error" | "info" | "warning";
|
|
6558
6569
|
id?: number | undefined;
|
|
6559
6570
|
}[] | undefined;
|
|
6560
6571
|
required?: boolean | undefined;
|
|
@@ -6573,7 +6584,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6573
6584
|
hint?: string | undefined;
|
|
6574
6585
|
messages?: {
|
|
6575
6586
|
text: string;
|
|
6576
|
-
type: "
|
|
6587
|
+
type: "success" | "error" | "info" | "warning";
|
|
6577
6588
|
id?: number | undefined;
|
|
6578
6589
|
}[] | undefined;
|
|
6579
6590
|
required?: boolean | undefined;
|
|
@@ -6593,7 +6604,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6593
6604
|
hint?: string | undefined;
|
|
6594
6605
|
messages?: {
|
|
6595
6606
|
text: string;
|
|
6596
|
-
type: "
|
|
6607
|
+
type: "success" | "error" | "info" | "warning";
|
|
6597
6608
|
id?: number | undefined;
|
|
6598
6609
|
}[] | undefined;
|
|
6599
6610
|
required?: boolean | undefined;
|
|
@@ -6612,7 +6623,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6612
6623
|
hint?: string | undefined;
|
|
6613
6624
|
messages?: {
|
|
6614
6625
|
text: string;
|
|
6615
|
-
type: "
|
|
6626
|
+
type: "success" | "error" | "info" | "warning";
|
|
6616
6627
|
id?: number | undefined;
|
|
6617
6628
|
}[] | undefined;
|
|
6618
6629
|
required?: boolean | undefined;
|
|
@@ -6634,7 +6645,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6634
6645
|
hint?: string | undefined;
|
|
6635
6646
|
messages?: {
|
|
6636
6647
|
text: string;
|
|
6637
|
-
type: "
|
|
6648
|
+
type: "success" | "error" | "info" | "warning";
|
|
6638
6649
|
id?: number | undefined;
|
|
6639
6650
|
}[] | undefined;
|
|
6640
6651
|
required?: boolean | undefined;
|
|
@@ -6656,7 +6667,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6656
6667
|
hint?: string | undefined;
|
|
6657
6668
|
messages?: {
|
|
6658
6669
|
text: string;
|
|
6659
|
-
type: "
|
|
6670
|
+
type: "success" | "error" | "info" | "warning";
|
|
6660
6671
|
id?: number | undefined;
|
|
6661
6672
|
}[] | undefined;
|
|
6662
6673
|
required?: boolean | undefined;
|
|
@@ -6675,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6675
6686
|
hint?: string | undefined;
|
|
6676
6687
|
messages?: {
|
|
6677
6688
|
text: string;
|
|
6678
|
-
type: "
|
|
6689
|
+
type: "success" | "error" | "info" | "warning";
|
|
6679
6690
|
id?: number | undefined;
|
|
6680
6691
|
}[] | undefined;
|
|
6681
6692
|
required?: boolean | undefined;
|
|
@@ -6700,7 +6711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6700
6711
|
hint?: string | undefined;
|
|
6701
6712
|
messages?: {
|
|
6702
6713
|
text: string;
|
|
6703
|
-
type: "
|
|
6714
|
+
type: "success" | "error" | "info" | "warning";
|
|
6704
6715
|
id?: number | undefined;
|
|
6705
6716
|
}[] | undefined;
|
|
6706
6717
|
required?: boolean | undefined;
|
|
@@ -6721,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6721
6732
|
hint?: string | undefined;
|
|
6722
6733
|
messages?: {
|
|
6723
6734
|
text: string;
|
|
6724
|
-
type: "
|
|
6735
|
+
type: "success" | "error" | "info" | "warning";
|
|
6725
6736
|
id?: number | undefined;
|
|
6726
6737
|
}[] | undefined;
|
|
6727
6738
|
required?: boolean | undefined;
|
|
@@ -6742,7 +6753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6742
6753
|
hint?: string | undefined;
|
|
6743
6754
|
messages?: {
|
|
6744
6755
|
text: string;
|
|
6745
|
-
type: "
|
|
6756
|
+
type: "success" | "error" | "info" | "warning";
|
|
6746
6757
|
id?: number | undefined;
|
|
6747
6758
|
}[] | undefined;
|
|
6748
6759
|
required?: boolean | undefined;
|
|
@@ -6972,7 +6983,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6972
6983
|
};
|
|
6973
6984
|
};
|
|
6974
6985
|
output: {
|
|
6975
|
-
prompt: "status" | "
|
|
6986
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6976
6987
|
language: string;
|
|
6977
6988
|
}[];
|
|
6978
6989
|
outputFormat: "json";
|
|
@@ -7010,7 +7021,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7010
7021
|
$get: {
|
|
7011
7022
|
input: {
|
|
7012
7023
|
param: {
|
|
7013
|
-
prompt: "status" | "
|
|
7024
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7014
7025
|
language: string;
|
|
7015
7026
|
};
|
|
7016
7027
|
} & {
|
|
@@ -7032,7 +7043,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7032
7043
|
$put: {
|
|
7033
7044
|
input: {
|
|
7034
7045
|
param: {
|
|
7035
|
-
prompt: "status" | "
|
|
7046
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7036
7047
|
language: string;
|
|
7037
7048
|
};
|
|
7038
7049
|
} & {
|
|
@@ -7056,7 +7067,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7056
7067
|
$delete: {
|
|
7057
7068
|
input: {
|
|
7058
7069
|
param: {
|
|
7059
|
-
prompt: "status" | "
|
|
7070
|
+
prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7060
7071
|
language: string;
|
|
7061
7072
|
};
|
|
7062
7073
|
} & {
|
|
@@ -7148,7 +7159,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7148
7159
|
active?: boolean | undefined;
|
|
7149
7160
|
} | undefined;
|
|
7150
7161
|
signup?: {
|
|
7151
|
-
status?: "
|
|
7162
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7152
7163
|
verification?: {
|
|
7153
7164
|
active?: boolean | undefined;
|
|
7154
7165
|
} | undefined;
|
|
@@ -7165,7 +7176,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7165
7176
|
active?: boolean | undefined;
|
|
7166
7177
|
} | undefined;
|
|
7167
7178
|
signup?: {
|
|
7168
|
-
status?: "
|
|
7179
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7169
7180
|
} | undefined;
|
|
7170
7181
|
validation?: {
|
|
7171
7182
|
max_length?: number | undefined;
|
|
@@ -7182,7 +7193,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7182
7193
|
active?: boolean | undefined;
|
|
7183
7194
|
} | undefined;
|
|
7184
7195
|
signup?: {
|
|
7185
|
-
status?: "
|
|
7196
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7186
7197
|
} | undefined;
|
|
7187
7198
|
} | undefined;
|
|
7188
7199
|
} | undefined;
|
|
@@ -7282,7 +7293,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7282
7293
|
active?: boolean | undefined;
|
|
7283
7294
|
} | undefined;
|
|
7284
7295
|
signup?: {
|
|
7285
|
-
status?: "
|
|
7296
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7286
7297
|
verification?: {
|
|
7287
7298
|
active?: boolean | undefined;
|
|
7288
7299
|
} | undefined;
|
|
@@ -7299,7 +7310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7299
7310
|
active?: boolean | undefined;
|
|
7300
7311
|
} | undefined;
|
|
7301
7312
|
signup?: {
|
|
7302
|
-
status?: "
|
|
7313
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7303
7314
|
} | undefined;
|
|
7304
7315
|
validation?: {
|
|
7305
7316
|
max_length?: number | undefined;
|
|
@@ -7316,7 +7327,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7316
7327
|
active?: boolean | undefined;
|
|
7317
7328
|
} | undefined;
|
|
7318
7329
|
signup?: {
|
|
7319
|
-
status?: "
|
|
7330
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7320
7331
|
} | undefined;
|
|
7321
7332
|
} | undefined;
|
|
7322
7333
|
} | undefined;
|
|
@@ -7432,7 +7443,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7432
7443
|
active?: boolean | undefined;
|
|
7433
7444
|
} | undefined;
|
|
7434
7445
|
signup?: {
|
|
7435
|
-
status?: "
|
|
7446
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7436
7447
|
verification?: {
|
|
7437
7448
|
active?: boolean | undefined;
|
|
7438
7449
|
} | undefined;
|
|
@@ -7449,7 +7460,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7449
7460
|
active?: boolean | undefined;
|
|
7450
7461
|
} | undefined;
|
|
7451
7462
|
signup?: {
|
|
7452
|
-
status?: "
|
|
7463
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7453
7464
|
} | undefined;
|
|
7454
7465
|
validation?: {
|
|
7455
7466
|
max_length?: number | undefined;
|
|
@@ -7466,7 +7477,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7466
7477
|
active?: boolean | undefined;
|
|
7467
7478
|
} | undefined;
|
|
7468
7479
|
signup?: {
|
|
7469
|
-
status?: "
|
|
7480
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7470
7481
|
} | undefined;
|
|
7471
7482
|
} | undefined;
|
|
7472
7483
|
} | undefined;
|
|
@@ -7611,7 +7622,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7611
7622
|
active?: boolean | undefined;
|
|
7612
7623
|
} | undefined;
|
|
7613
7624
|
signup?: {
|
|
7614
|
-
status?: "
|
|
7625
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7615
7626
|
verification?: {
|
|
7616
7627
|
active?: boolean | undefined;
|
|
7617
7628
|
} | undefined;
|
|
@@ -7628,7 +7639,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7628
7639
|
active?: boolean | undefined;
|
|
7629
7640
|
} | undefined;
|
|
7630
7641
|
signup?: {
|
|
7631
|
-
status?: "
|
|
7642
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7632
7643
|
} | undefined;
|
|
7633
7644
|
validation?: {
|
|
7634
7645
|
max_length?: number | undefined;
|
|
@@ -7645,7 +7656,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7645
7656
|
active?: boolean | undefined;
|
|
7646
7657
|
} | undefined;
|
|
7647
7658
|
signup?: {
|
|
7648
|
-
status?: "
|
|
7659
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7649
7660
|
} | undefined;
|
|
7650
7661
|
} | undefined;
|
|
7651
7662
|
} | undefined;
|
|
@@ -7769,7 +7780,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7769
7780
|
active?: boolean | undefined;
|
|
7770
7781
|
} | undefined;
|
|
7771
7782
|
signup?: {
|
|
7772
|
-
status?: "
|
|
7783
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7773
7784
|
verification?: {
|
|
7774
7785
|
active?: boolean | undefined;
|
|
7775
7786
|
} | undefined;
|
|
@@ -7786,7 +7797,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7786
7797
|
active?: boolean | undefined;
|
|
7787
7798
|
} | undefined;
|
|
7788
7799
|
signup?: {
|
|
7789
|
-
status?: "
|
|
7800
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7790
7801
|
} | undefined;
|
|
7791
7802
|
validation?: {
|
|
7792
7803
|
max_length?: number | undefined;
|
|
@@ -7803,7 +7814,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7803
7814
|
active?: boolean | undefined;
|
|
7804
7815
|
} | undefined;
|
|
7805
7816
|
signup?: {
|
|
7806
|
-
status?: "
|
|
7817
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7807
7818
|
} | undefined;
|
|
7808
7819
|
} | undefined;
|
|
7809
7820
|
} | undefined;
|
|
@@ -7919,7 +7930,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7919
7930
|
};
|
|
7920
7931
|
} | {
|
|
7921
7932
|
mode: "inline";
|
|
7922
|
-
status: "
|
|
7933
|
+
status: "success" | "error";
|
|
7923
7934
|
connection_id: string;
|
|
7924
7935
|
connection_name: string;
|
|
7925
7936
|
strategy: string;
|
|
@@ -8869,7 +8880,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8869
8880
|
created_at: string;
|
|
8870
8881
|
updated_at: string;
|
|
8871
8882
|
name: string;
|
|
8872
|
-
provider: "auth0" | "
|
|
8883
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8873
8884
|
connection: string;
|
|
8874
8885
|
enabled: boolean;
|
|
8875
8886
|
credentials: {
|
|
@@ -8901,7 +8912,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8901
8912
|
created_at: string;
|
|
8902
8913
|
updated_at: string;
|
|
8903
8914
|
name: string;
|
|
8904
|
-
provider: "auth0" | "
|
|
8915
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8905
8916
|
connection: string;
|
|
8906
8917
|
enabled: boolean;
|
|
8907
8918
|
credentials: {
|
|
@@ -8927,7 +8938,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8927
8938
|
} & {
|
|
8928
8939
|
json: {
|
|
8929
8940
|
name: string;
|
|
8930
|
-
provider: "auth0" | "
|
|
8941
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8931
8942
|
connection: string;
|
|
8932
8943
|
credentials: {
|
|
8933
8944
|
domain: string;
|
|
@@ -8944,7 +8955,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8944
8955
|
created_at: string;
|
|
8945
8956
|
updated_at: string;
|
|
8946
8957
|
name: string;
|
|
8947
|
-
provider: "auth0" | "
|
|
8958
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8948
8959
|
connection: string;
|
|
8949
8960
|
enabled: boolean;
|
|
8950
8961
|
credentials: {
|
|
@@ -8975,7 +8986,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8975
8986
|
json: {
|
|
8976
8987
|
id?: string | undefined;
|
|
8977
8988
|
name?: string | undefined;
|
|
8978
|
-
provider?: "auth0" | "
|
|
8989
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8979
8990
|
connection?: string | undefined;
|
|
8980
8991
|
enabled?: boolean | undefined;
|
|
8981
8992
|
credentials?: {
|
|
@@ -8991,7 +9002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8991
9002
|
created_at: string;
|
|
8992
9003
|
updated_at: string;
|
|
8993
9004
|
name: string;
|
|
8994
|
-
provider: "auth0" | "
|
|
9005
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8995
9006
|
connection: string;
|
|
8996
9007
|
enabled: boolean;
|
|
8997
9008
|
credentials: {
|
|
@@ -9209,7 +9220,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9209
9220
|
};
|
|
9210
9221
|
};
|
|
9211
9222
|
output: {
|
|
9212
|
-
type: "fn" | "i" | "
|
|
9223
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9213
9224
|
date: string;
|
|
9214
9225
|
isMobile: boolean;
|
|
9215
9226
|
log_id: string;
|
|
@@ -9248,7 +9259,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9248
9259
|
limit: number;
|
|
9249
9260
|
length: number;
|
|
9250
9261
|
logs: {
|
|
9251
|
-
type: "fn" | "i" | "
|
|
9262
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9252
9263
|
date: string;
|
|
9253
9264
|
isMobile: boolean;
|
|
9254
9265
|
log_id: string;
|
|
@@ -9287,7 +9298,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9287
9298
|
next?: string | undefined;
|
|
9288
9299
|
} | {
|
|
9289
9300
|
logs: {
|
|
9290
|
-
type: "fn" | "i" | "
|
|
9301
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9291
9302
|
date: string;
|
|
9292
9303
|
isMobile: boolean;
|
|
9293
9304
|
log_id: string;
|
|
@@ -9341,7 +9352,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9341
9352
|
};
|
|
9342
9353
|
};
|
|
9343
9354
|
output: {
|
|
9344
|
-
type: "fn" | "i" | "
|
|
9355
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9345
9356
|
date: string;
|
|
9346
9357
|
isMobile: boolean;
|
|
9347
9358
|
log_id: string;
|
|
@@ -9752,7 +9763,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9752
9763
|
addons?: {
|
|
9753
9764
|
[x: string]: any;
|
|
9754
9765
|
} | undefined;
|
|
9755
|
-
token_endpoint_auth_method?: "
|
|
9766
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9756
9767
|
client_metadata?: {
|
|
9757
9768
|
[x: string]: string;
|
|
9758
9769
|
} | undefined;
|
|
@@ -9854,7 +9865,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9854
9865
|
addons?: {
|
|
9855
9866
|
[x: string]: any;
|
|
9856
9867
|
} | undefined;
|
|
9857
|
-
token_endpoint_auth_method?: "
|
|
9868
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9858
9869
|
client_metadata?: {
|
|
9859
9870
|
[x: string]: string;
|
|
9860
9871
|
} | undefined;
|
|
@@ -9956,7 +9967,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9956
9967
|
addons?: {
|
|
9957
9968
|
[x: string]: any;
|
|
9958
9969
|
} | undefined;
|
|
9959
|
-
token_endpoint_auth_method?: "
|
|
9970
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9960
9971
|
client_metadata?: {
|
|
9961
9972
|
[x: string]: string;
|
|
9962
9973
|
} | undefined;
|
|
@@ -10073,7 +10084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10073
10084
|
addons?: {
|
|
10074
10085
|
[x: string]: any;
|
|
10075
10086
|
} | undefined;
|
|
10076
|
-
token_endpoint_auth_method?: "
|
|
10087
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10077
10088
|
client_metadata?: {
|
|
10078
10089
|
[x: string]: string;
|
|
10079
10090
|
} | undefined;
|
|
@@ -10191,7 +10202,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10191
10202
|
custom_login_page_preview?: string | undefined;
|
|
10192
10203
|
form_template?: string | undefined;
|
|
10193
10204
|
addons?: Record<string, any> | undefined;
|
|
10194
|
-
token_endpoint_auth_method?: "
|
|
10205
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10195
10206
|
client_metadata?: Record<string, string> | undefined;
|
|
10196
10207
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10197
10208
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10277,7 +10288,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10277
10288
|
addons?: {
|
|
10278
10289
|
[x: string]: any;
|
|
10279
10290
|
} | undefined;
|
|
10280
|
-
token_endpoint_auth_method?: "
|
|
10291
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10281
10292
|
client_metadata?: {
|
|
10282
10293
|
[x: string]: string;
|
|
10283
10294
|
} | undefined;
|
|
@@ -10374,7 +10385,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10374
10385
|
custom_login_page_preview?: string | undefined;
|
|
10375
10386
|
form_template?: string | undefined;
|
|
10376
10387
|
addons?: Record<string, any> | undefined;
|
|
10377
|
-
token_endpoint_auth_method?: "
|
|
10388
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10378
10389
|
client_metadata?: Record<string, string> | undefined;
|
|
10379
10390
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10380
10391
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10460,7 +10471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10460
10471
|
addons?: {
|
|
10461
10472
|
[x: string]: any;
|
|
10462
10473
|
} | undefined;
|
|
10463
|
-
token_endpoint_auth_method?: "
|
|
10474
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10464
10475
|
client_metadata?: {
|
|
10465
10476
|
[x: string]: string;
|
|
10466
10477
|
} | undefined;
|
|
@@ -10582,7 +10593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10582
10593
|
active?: boolean | undefined;
|
|
10583
10594
|
} | undefined;
|
|
10584
10595
|
signup?: {
|
|
10585
|
-
status?: "
|
|
10596
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10586
10597
|
verification?: {
|
|
10587
10598
|
active?: boolean | undefined;
|
|
10588
10599
|
} | undefined;
|
|
@@ -10599,7 +10610,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10599
10610
|
active?: boolean | undefined;
|
|
10600
10611
|
} | undefined;
|
|
10601
10612
|
signup?: {
|
|
10602
|
-
status?: "
|
|
10613
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10603
10614
|
} | undefined;
|
|
10604
10615
|
validation?: {
|
|
10605
10616
|
max_length?: number | undefined;
|
|
@@ -10616,7 +10627,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10616
10627
|
active?: boolean | undefined;
|
|
10617
10628
|
} | undefined;
|
|
10618
10629
|
signup?: {
|
|
10619
|
-
status?: "
|
|
10630
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10620
10631
|
} | undefined;
|
|
10621
10632
|
} | undefined;
|
|
10622
10633
|
} | undefined;
|
|
@@ -10736,7 +10747,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10736
10747
|
active?: boolean | undefined;
|
|
10737
10748
|
} | undefined;
|
|
10738
10749
|
signup?: {
|
|
10739
|
-
status?: "
|
|
10750
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10740
10751
|
verification?: {
|
|
10741
10752
|
active?: boolean | undefined;
|
|
10742
10753
|
} | undefined;
|
|
@@ -10753,7 +10764,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10753
10764
|
active?: boolean | undefined;
|
|
10754
10765
|
} | undefined;
|
|
10755
10766
|
signup?: {
|
|
10756
|
-
status?: "
|
|
10767
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10757
10768
|
} | undefined;
|
|
10758
10769
|
validation?: {
|
|
10759
10770
|
max_length?: number | undefined;
|
|
@@ -10770,7 +10781,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10770
10781
|
active?: boolean | undefined;
|
|
10771
10782
|
} | undefined;
|
|
10772
10783
|
signup?: {
|
|
10773
|
-
status?: "
|
|
10784
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10774
10785
|
} | undefined;
|
|
10775
10786
|
} | undefined;
|
|
10776
10787
|
} | undefined;
|
|
@@ -11149,6 +11160,75 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11149
11160
|
}[];
|
|
11150
11161
|
total?: number | undefined;
|
|
11151
11162
|
next?: string | undefined;
|
|
11163
|
+
} | {
|
|
11164
|
+
users: {
|
|
11165
|
+
created_at: string;
|
|
11166
|
+
updated_at: string;
|
|
11167
|
+
connection: string;
|
|
11168
|
+
user_id: string;
|
|
11169
|
+
email_verified: boolean;
|
|
11170
|
+
provider: string;
|
|
11171
|
+
is_social: boolean;
|
|
11172
|
+
login_count: number;
|
|
11173
|
+
name?: string | undefined;
|
|
11174
|
+
email?: string | undefined;
|
|
11175
|
+
username?: string | undefined;
|
|
11176
|
+
given_name?: string | undefined;
|
|
11177
|
+
phone_number?: string | undefined;
|
|
11178
|
+
phone_verified?: boolean | undefined;
|
|
11179
|
+
family_name?: string | undefined;
|
|
11180
|
+
profileData?: string | undefined;
|
|
11181
|
+
address?: {
|
|
11182
|
+
formatted?: string | undefined;
|
|
11183
|
+
street_address?: string | undefined;
|
|
11184
|
+
locality?: string | undefined;
|
|
11185
|
+
region?: string | undefined;
|
|
11186
|
+
postal_code?: string | undefined;
|
|
11187
|
+
country?: string | undefined;
|
|
11188
|
+
} | undefined;
|
|
11189
|
+
nickname?: string | undefined;
|
|
11190
|
+
picture?: string | undefined;
|
|
11191
|
+
locale?: string | undefined;
|
|
11192
|
+
linked_to?: string | undefined;
|
|
11193
|
+
app_metadata?: any;
|
|
11194
|
+
user_metadata?: any;
|
|
11195
|
+
middle_name?: string | undefined;
|
|
11196
|
+
preferred_username?: string | undefined;
|
|
11197
|
+
profile?: string | undefined;
|
|
11198
|
+
website?: string | undefined;
|
|
11199
|
+
gender?: string | undefined;
|
|
11200
|
+
birthdate?: string | undefined;
|
|
11201
|
+
zoneinfo?: string | undefined;
|
|
11202
|
+
verify_email?: boolean | undefined;
|
|
11203
|
+
last_ip?: string | undefined;
|
|
11204
|
+
last_login?: string | undefined;
|
|
11205
|
+
identities?: {
|
|
11206
|
+
connection: string;
|
|
11207
|
+
user_id: string;
|
|
11208
|
+
provider: string;
|
|
11209
|
+
isSocial: boolean;
|
|
11210
|
+
email?: string | undefined;
|
|
11211
|
+
email_verified?: boolean | undefined;
|
|
11212
|
+
phone_number?: string | undefined;
|
|
11213
|
+
phone_verified?: boolean | undefined;
|
|
11214
|
+
username?: string | undefined;
|
|
11215
|
+
access_token?: string | undefined;
|
|
11216
|
+
access_token_secret?: string | undefined;
|
|
11217
|
+
refresh_token?: string | undefined;
|
|
11218
|
+
profileData?: {
|
|
11219
|
+
[x: string]: any;
|
|
11220
|
+
email?: string | undefined;
|
|
11221
|
+
email_verified?: boolean | undefined;
|
|
11222
|
+
name?: string | undefined;
|
|
11223
|
+
username?: string | undefined;
|
|
11224
|
+
given_name?: string | undefined;
|
|
11225
|
+
phone_number?: string | undefined;
|
|
11226
|
+
phone_verified?: boolean | undefined;
|
|
11227
|
+
family_name?: string | undefined;
|
|
11228
|
+
} | undefined;
|
|
11229
|
+
}[] | undefined;
|
|
11230
|
+
}[];
|
|
11231
|
+
next?: string | undefined;
|
|
11152
11232
|
};
|
|
11153
11233
|
outputFormat: "json";
|
|
11154
11234
|
status: 200;
|
|
@@ -11727,7 +11807,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11727
11807
|
};
|
|
11728
11808
|
};
|
|
11729
11809
|
output: {
|
|
11730
|
-
type: "fn" | "i" | "
|
|
11810
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11731
11811
|
date: string;
|
|
11732
11812
|
isMobile: boolean;
|
|
11733
11813
|
log_id: string;
|
|
@@ -11766,7 +11846,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11766
11846
|
limit: number;
|
|
11767
11847
|
length: number;
|
|
11768
11848
|
logs: {
|
|
11769
|
-
type: "fn" | "i" | "
|
|
11849
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11770
11850
|
date: string;
|
|
11771
11851
|
isMobile: boolean;
|
|
11772
11852
|
log_id: string;
|
|
@@ -12085,7 +12165,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12085
12165
|
};
|
|
12086
12166
|
} & {
|
|
12087
12167
|
json: {
|
|
12088
|
-
template: "
|
|
12168
|
+
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";
|
|
12089
12169
|
body: string;
|
|
12090
12170
|
from: string;
|
|
12091
12171
|
subject: string;
|
|
@@ -12106,7 +12186,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12106
12186
|
};
|
|
12107
12187
|
} & {
|
|
12108
12188
|
json: {
|
|
12109
|
-
template: "
|
|
12189
|
+
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";
|
|
12110
12190
|
body: string;
|
|
12111
12191
|
from: string;
|
|
12112
12192
|
subject: string;
|
|
@@ -12118,7 +12198,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12118
12198
|
};
|
|
12119
12199
|
};
|
|
12120
12200
|
output: {
|
|
12121
|
-
template: "
|
|
12201
|
+
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";
|
|
12122
12202
|
body: string;
|
|
12123
12203
|
from: string;
|
|
12124
12204
|
subject: string;
|
|
@@ -12141,7 +12221,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12141
12221
|
};
|
|
12142
12222
|
};
|
|
12143
12223
|
output: {
|
|
12144
|
-
name: "
|
|
12224
|
+
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";
|
|
12145
12225
|
body: string;
|
|
12146
12226
|
subject: string;
|
|
12147
12227
|
}[];
|
|
@@ -12154,7 +12234,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12154
12234
|
$get: {
|
|
12155
12235
|
input: {
|
|
12156
12236
|
param: {
|
|
12157
|
-
templateName: "
|
|
12237
|
+
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";
|
|
12158
12238
|
};
|
|
12159
12239
|
} & {
|
|
12160
12240
|
header: {
|
|
@@ -12167,7 +12247,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12167
12247
|
} | {
|
|
12168
12248
|
input: {
|
|
12169
12249
|
param: {
|
|
12170
|
-
templateName: "
|
|
12250
|
+
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";
|
|
12171
12251
|
};
|
|
12172
12252
|
} & {
|
|
12173
12253
|
header: {
|
|
@@ -12175,7 +12255,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12175
12255
|
};
|
|
12176
12256
|
};
|
|
12177
12257
|
output: {
|
|
12178
|
-
template: "
|
|
12258
|
+
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";
|
|
12179
12259
|
body: string;
|
|
12180
12260
|
from: string;
|
|
12181
12261
|
subject: string;
|
|
@@ -12194,7 +12274,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12194
12274
|
$put: {
|
|
12195
12275
|
input: {
|
|
12196
12276
|
param: {
|
|
12197
|
-
templateName: "
|
|
12277
|
+
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";
|
|
12198
12278
|
};
|
|
12199
12279
|
} & {
|
|
12200
12280
|
header: {
|
|
@@ -12202,7 +12282,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12202
12282
|
};
|
|
12203
12283
|
} & {
|
|
12204
12284
|
json: {
|
|
12205
|
-
template: "
|
|
12285
|
+
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";
|
|
12206
12286
|
body: string;
|
|
12207
12287
|
subject: string;
|
|
12208
12288
|
syntax?: "liquid" | undefined;
|
|
@@ -12214,7 +12294,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12214
12294
|
};
|
|
12215
12295
|
};
|
|
12216
12296
|
output: {
|
|
12217
|
-
template: "
|
|
12297
|
+
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";
|
|
12218
12298
|
body: string;
|
|
12219
12299
|
from: string;
|
|
12220
12300
|
subject: string;
|
|
@@ -12233,7 +12313,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12233
12313
|
$patch: {
|
|
12234
12314
|
input: {
|
|
12235
12315
|
param: {
|
|
12236
|
-
templateName: "
|
|
12316
|
+
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";
|
|
12237
12317
|
};
|
|
12238
12318
|
} & {
|
|
12239
12319
|
header: {
|
|
@@ -12241,7 +12321,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12241
12321
|
};
|
|
12242
12322
|
} & {
|
|
12243
12323
|
json: {
|
|
12244
|
-
template?: "
|
|
12324
|
+
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;
|
|
12245
12325
|
body?: string | undefined;
|
|
12246
12326
|
from?: string | undefined;
|
|
12247
12327
|
subject?: string | undefined;
|
|
@@ -12258,7 +12338,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12258
12338
|
} | {
|
|
12259
12339
|
input: {
|
|
12260
12340
|
param: {
|
|
12261
|
-
templateName: "
|
|
12341
|
+
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";
|
|
12262
12342
|
};
|
|
12263
12343
|
} & {
|
|
12264
12344
|
header: {
|
|
@@ -12266,7 +12346,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12266
12346
|
};
|
|
12267
12347
|
} & {
|
|
12268
12348
|
json: {
|
|
12269
|
-
template?: "
|
|
12349
|
+
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;
|
|
12270
12350
|
body?: string | undefined;
|
|
12271
12351
|
from?: string | undefined;
|
|
12272
12352
|
subject?: string | undefined;
|
|
@@ -12278,7 +12358,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12278
12358
|
};
|
|
12279
12359
|
};
|
|
12280
12360
|
output: {
|
|
12281
|
-
template: "
|
|
12361
|
+
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";
|
|
12282
12362
|
body: string;
|
|
12283
12363
|
from: string;
|
|
12284
12364
|
subject: string;
|
|
@@ -12297,7 +12377,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12297
12377
|
$delete: {
|
|
12298
12378
|
input: {
|
|
12299
12379
|
param: {
|
|
12300
|
-
templateName: "
|
|
12380
|
+
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";
|
|
12301
12381
|
};
|
|
12302
12382
|
} & {
|
|
12303
12383
|
header: {
|
|
@@ -12310,7 +12390,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12310
12390
|
} | {
|
|
12311
12391
|
input: {
|
|
12312
12392
|
param: {
|
|
12313
|
-
templateName: "
|
|
12393
|
+
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";
|
|
12314
12394
|
};
|
|
12315
12395
|
} & {
|
|
12316
12396
|
header: {
|
|
@@ -12327,7 +12407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12327
12407
|
$post: {
|
|
12328
12408
|
input: {
|
|
12329
12409
|
param: {
|
|
12330
|
-
templateName: "
|
|
12410
|
+
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";
|
|
12331
12411
|
};
|
|
12332
12412
|
} & {
|
|
12333
12413
|
header: {
|
|
@@ -12610,7 +12690,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12610
12690
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12611
12691
|
custom_domain_id: string;
|
|
12612
12692
|
primary: boolean;
|
|
12613
|
-
status: "
|
|
12693
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12614
12694
|
verification_method?: "txt" | undefined;
|
|
12615
12695
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12616
12696
|
domain_metadata?: {
|
|
@@ -12651,7 +12731,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12651
12731
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12652
12732
|
custom_domain_id: string;
|
|
12653
12733
|
primary: boolean;
|
|
12654
|
-
status: "
|
|
12734
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12655
12735
|
verification_method?: "txt" | undefined;
|
|
12656
12736
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12657
12737
|
domain_metadata?: {
|
|
@@ -12715,7 +12795,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12715
12795
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12716
12796
|
custom_domain_id: string;
|
|
12717
12797
|
primary: boolean;
|
|
12718
|
-
status: "
|
|
12798
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12719
12799
|
verification_method?: "txt" | undefined;
|
|
12720
12800
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12721
12801
|
domain_metadata?: {
|
|
@@ -12762,7 +12842,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12762
12842
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12763
12843
|
custom_domain_id: string;
|
|
12764
12844
|
primary: boolean;
|
|
12765
|
-
status: "
|
|
12845
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12766
12846
|
verification_method?: "txt" | undefined;
|
|
12767
12847
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12768
12848
|
domain_metadata?: {
|
|
@@ -12808,7 +12888,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12808
12888
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12809
12889
|
custom_domain_id: string;
|
|
12810
12890
|
primary: boolean;
|
|
12811
|
-
status: "
|
|
12891
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12812
12892
|
verification_method?: "txt" | undefined;
|
|
12813
12893
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12814
12894
|
domain_metadata?: {
|
|
@@ -12849,7 +12929,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12849
12929
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12850
12930
|
custom_domain_id: string;
|
|
12851
12931
|
primary: boolean;
|
|
12852
|
-
status: "
|
|
12932
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12853
12933
|
verification_method?: "txt" | undefined;
|
|
12854
12934
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12855
12935
|
domain_metadata?: {
|
|
@@ -14550,7 +14630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14550
14630
|
scope?: string | undefined;
|
|
14551
14631
|
grant_types?: string[] | undefined;
|
|
14552
14632
|
response_types?: string[] | undefined;
|
|
14553
|
-
token_endpoint_auth_method?: "
|
|
14633
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14554
14634
|
jwks_uri?: string | undefined;
|
|
14555
14635
|
jwks?: Record<string, unknown> | undefined;
|
|
14556
14636
|
software_id?: string | undefined;
|
|
@@ -14639,7 +14719,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14639
14719
|
scope?: string | undefined;
|
|
14640
14720
|
grant_types?: string[] | undefined;
|
|
14641
14721
|
response_types?: string[] | undefined;
|
|
14642
|
-
token_endpoint_auth_method?: "
|
|
14722
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14643
14723
|
jwks_uri?: string | undefined;
|
|
14644
14724
|
jwks?: Record<string, unknown> | undefined;
|
|
14645
14725
|
software_id?: string | undefined;
|
|
@@ -14986,19 +15066,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14986
15066
|
send: "code" | "link";
|
|
14987
15067
|
authParams: {
|
|
14988
15068
|
username?: string | undefined;
|
|
14989
|
-
state?: string | undefined;
|
|
14990
|
-
audience?: string | undefined;
|
|
14991
15069
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14992
15070
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14993
15071
|
scope?: string | undefined;
|
|
15072
|
+
audience?: string | undefined;
|
|
15073
|
+
state?: string | undefined;
|
|
15074
|
+
prompt?: string | undefined;
|
|
14994
15075
|
organization?: string | undefined;
|
|
14995
|
-
|
|
14996
|
-
act_as?: string | undefined;
|
|
15076
|
+
ui_locales?: string | undefined;
|
|
14997
15077
|
redirect_uri?: string | undefined;
|
|
14998
|
-
|
|
15078
|
+
act_as?: string | undefined;
|
|
15079
|
+
nonce?: string | undefined;
|
|
14999
15080
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15000
15081
|
code_challenge?: string | undefined;
|
|
15001
|
-
ui_locales?: string | undefined;
|
|
15002
15082
|
max_age?: number | undefined;
|
|
15003
15083
|
acr_values?: string | undefined;
|
|
15004
15084
|
claims?: {
|
|
@@ -15022,19 +15102,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15022
15102
|
send: "code" | "link";
|
|
15023
15103
|
authParams: {
|
|
15024
15104
|
username?: string | undefined;
|
|
15025
|
-
state?: string | undefined;
|
|
15026
|
-
audience?: string | undefined;
|
|
15027
15105
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15028
15106
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15029
15107
|
scope?: string | undefined;
|
|
15108
|
+
audience?: string | undefined;
|
|
15109
|
+
state?: string | undefined;
|
|
15110
|
+
prompt?: string | undefined;
|
|
15030
15111
|
organization?: string | undefined;
|
|
15031
|
-
|
|
15032
|
-
act_as?: string | undefined;
|
|
15112
|
+
ui_locales?: string | undefined;
|
|
15033
15113
|
redirect_uri?: string | undefined;
|
|
15034
|
-
|
|
15114
|
+
act_as?: string | undefined;
|
|
15115
|
+
nonce?: string | undefined;
|
|
15035
15116
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15036
15117
|
code_challenge?: string | undefined;
|
|
15037
|
-
ui_locales?: string | undefined;
|
|
15038
15118
|
max_age?: number | undefined;
|
|
15039
15119
|
acr_values?: string | undefined;
|
|
15040
15120
|
claims?: {
|
|
@@ -15201,7 +15281,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15201
15281
|
error_description?: string | undefined;
|
|
15202
15282
|
};
|
|
15203
15283
|
outputFormat: "json";
|
|
15204
|
-
status:
|
|
15284
|
+
status: 401;
|
|
15205
15285
|
} | {
|
|
15206
15286
|
input: {
|
|
15207
15287
|
form: {
|
|
@@ -15223,7 +15303,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15223
15303
|
error_description?: string | undefined;
|
|
15224
15304
|
};
|
|
15225
15305
|
outputFormat: "json";
|
|
15226
|
-
status:
|
|
15306
|
+
status: 400;
|
|
15227
15307
|
};
|
|
15228
15308
|
};
|
|
15229
15309
|
}, "/oauth/revoke"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -15424,16 +15504,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15424
15504
|
};
|
|
15425
15505
|
};
|
|
15426
15506
|
output: {
|
|
15427
|
-
|
|
15428
|
-
|
|
15429
|
-
expires_in: number;
|
|
15430
|
-
id_token?: string | undefined;
|
|
15431
|
-
scope?: string | undefined;
|
|
15432
|
-
state?: string | undefined;
|
|
15433
|
-
refresh_token?: string | undefined;
|
|
15507
|
+
error: string;
|
|
15508
|
+
error_description?: string | undefined;
|
|
15434
15509
|
};
|
|
15435
15510
|
outputFormat: "json";
|
|
15436
|
-
status:
|
|
15511
|
+
status: 401;
|
|
15437
15512
|
} | {
|
|
15438
15513
|
input: {
|
|
15439
15514
|
form: {
|
|
@@ -15531,11 +15606,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15531
15606
|
};
|
|
15532
15607
|
};
|
|
15533
15608
|
output: {
|
|
15534
|
-
|
|
15535
|
-
|
|
15609
|
+
access_token: string;
|
|
15610
|
+
token_type: string;
|
|
15611
|
+
expires_in: number;
|
|
15612
|
+
id_token?: string | undefined;
|
|
15613
|
+
scope?: string | undefined;
|
|
15614
|
+
state?: string | undefined;
|
|
15615
|
+
refresh_token?: string | undefined;
|
|
15536
15616
|
};
|
|
15537
15617
|
outputFormat: "json";
|
|
15538
|
-
status:
|
|
15618
|
+
status: 200;
|
|
15539
15619
|
} | {
|
|
15540
15620
|
input: {
|
|
15541
15621
|
form: {
|
|
@@ -15637,7 +15717,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15637
15717
|
error_description?: string | undefined;
|
|
15638
15718
|
};
|
|
15639
15719
|
outputFormat: "json";
|
|
15640
|
-
status:
|
|
15720
|
+
status: 400;
|
|
15641
15721
|
} | {
|
|
15642
15722
|
input: {
|
|
15643
15723
|
form: {
|
|
@@ -16565,7 +16645,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16565
16645
|
} & {
|
|
16566
16646
|
form: {
|
|
16567
16647
|
username: string;
|
|
16568
|
-
login_selection?: "
|
|
16648
|
+
login_selection?: "code" | "password" | undefined;
|
|
16569
16649
|
};
|
|
16570
16650
|
};
|
|
16571
16651
|
output: {};
|
|
@@ -16579,7 +16659,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16579
16659
|
} & {
|
|
16580
16660
|
form: {
|
|
16581
16661
|
username: string;
|
|
16582
|
-
login_selection?: "
|
|
16662
|
+
login_selection?: "code" | "password" | undefined;
|
|
16583
16663
|
};
|
|
16584
16664
|
};
|
|
16585
16665
|
output: {};
|
|
@@ -16944,7 +17024,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16944
17024
|
$get: {
|
|
16945
17025
|
input: {
|
|
16946
17026
|
param: {
|
|
16947
|
-
screen: "signup" | "
|
|
17027
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16948
17028
|
};
|
|
16949
17029
|
} & {
|
|
16950
17030
|
query: {
|
|
@@ -16960,7 +17040,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16960
17040
|
} | {
|
|
16961
17041
|
input: {
|
|
16962
17042
|
param: {
|
|
16963
|
-
screen: "signup" | "
|
|
17043
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16964
17044
|
};
|
|
16965
17045
|
} & {
|
|
16966
17046
|
query: {
|
|
@@ -16976,7 +17056,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16976
17056
|
} | {
|
|
16977
17057
|
input: {
|
|
16978
17058
|
param: {
|
|
16979
|
-
screen: "signup" | "
|
|
17059
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16980
17060
|
};
|
|
16981
17061
|
} & {
|
|
16982
17062
|
query: {
|
|
@@ -16996,7 +17076,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16996
17076
|
$post: {
|
|
16997
17077
|
input: {
|
|
16998
17078
|
param: {
|
|
16999
|
-
screen: "signup" | "
|
|
17079
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17000
17080
|
};
|
|
17001
17081
|
} & {
|
|
17002
17082
|
query: {
|
|
@@ -17014,7 +17094,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17014
17094
|
} | {
|
|
17015
17095
|
input: {
|
|
17016
17096
|
param: {
|
|
17017
|
-
screen: "signup" | "
|
|
17097
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17018
17098
|
};
|
|
17019
17099
|
} & {
|
|
17020
17100
|
query: {
|