authhero 8.9.2 → 8.10.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/authhero.cjs +109 -109
- package/dist/authhero.d.ts +358 -268
- package/dist/authhero.mjs +8283 -8163
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/index.d.ts +283 -266
- package/dist/types/routes/auth-api/index.d.ts +26 -26
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +17 -17
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- 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/failed-events.d.ts +1 -1
- 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/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +240 -224
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenant-export-import.d.ts +16 -0
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/themes.d.ts +9 -9
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/kv-publish.d.ts +75 -0
- package/dist/types/routes/proxy-control-plane/kv-publish.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +10 -10
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/IdToken.d.ts +2 -2
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/
|
|
|
26
26
|
export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
|
|
27
27
|
export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
|
|
28
28
|
export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
|
|
29
|
+
export { wrapProxyAdaptersWithKvPublish, backfillProxyHostsToKv, type KvPublishOptions, type WrappedProxyAdapters, type BackfillProxyHostsOptions, type BackfillResult, } from "./routes/proxy-control-plane/kv-publish";
|
|
29
30
|
export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, type VerifyControlPlaneTokenOptions, type VerifyControlPlaneTokenResult, } from "./routes/proxy-control-plane/verify";
|
|
30
31
|
export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
|
|
31
32
|
export { seed, MANAGEMENT_API_SCOPES } from "./seed";
|
|
@@ -58,8 +59,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
58
59
|
$get: {
|
|
59
60
|
input: {
|
|
60
61
|
query: {
|
|
61
|
-
include_password_hashes?: "
|
|
62
|
-
gzip?: "
|
|
62
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
63
|
+
gzip?: "true" | "false" | undefined;
|
|
63
64
|
};
|
|
64
65
|
} & {
|
|
65
66
|
header: {
|
|
@@ -69,6 +70,22 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
69
70
|
output: Response;
|
|
70
71
|
outputFormat: "json";
|
|
71
72
|
status: import("hono/utils/http-status").StatusCode;
|
|
73
|
+
} | {
|
|
74
|
+
input: {
|
|
75
|
+
query: {
|
|
76
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
77
|
+
gzip?: "true" | "false" | undefined;
|
|
78
|
+
};
|
|
79
|
+
} & {
|
|
80
|
+
header: {
|
|
81
|
+
"tenant-id"?: string | undefined;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
output: {
|
|
85
|
+
message: string;
|
|
86
|
+
};
|
|
87
|
+
outputFormat: "json";
|
|
88
|
+
status: 500;
|
|
72
89
|
};
|
|
73
90
|
};
|
|
74
91
|
} & {
|
|
@@ -76,7 +93,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
76
93
|
$post: {
|
|
77
94
|
input: {
|
|
78
95
|
query: {
|
|
79
|
-
include_password_hashes?: "
|
|
96
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
80
97
|
};
|
|
81
98
|
} & {
|
|
82
99
|
header: {
|
|
@@ -130,7 +147,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
130
147
|
};
|
|
131
148
|
} & {
|
|
132
149
|
json: {
|
|
133
|
-
type: "
|
|
150
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
134
151
|
phone_number?: string | undefined;
|
|
135
152
|
totp_secret?: string | undefined;
|
|
136
153
|
credential_id?: string | undefined;
|
|
@@ -270,7 +287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
270
287
|
};
|
|
271
288
|
};
|
|
272
289
|
output: {
|
|
273
|
-
name: "
|
|
290
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
274
291
|
enabled: boolean;
|
|
275
292
|
trial_expired?: boolean | undefined;
|
|
276
293
|
}[];
|
|
@@ -425,7 +442,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
425
442
|
$get: {
|
|
426
443
|
input: {
|
|
427
444
|
param: {
|
|
428
|
-
factor_name: "
|
|
445
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
429
446
|
};
|
|
430
447
|
} & {
|
|
431
448
|
header: {
|
|
@@ -433,7 +450,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
433
450
|
};
|
|
434
451
|
};
|
|
435
452
|
output: {
|
|
436
|
-
name: "
|
|
453
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
437
454
|
enabled: boolean;
|
|
438
455
|
trial_expired?: boolean | undefined;
|
|
439
456
|
};
|
|
@@ -446,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
446
463
|
$put: {
|
|
447
464
|
input: {
|
|
448
465
|
param: {
|
|
449
|
-
factor_name: "
|
|
466
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
450
467
|
};
|
|
451
468
|
} & {
|
|
452
469
|
header: {
|
|
@@ -458,7 +475,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
458
475
|
};
|
|
459
476
|
};
|
|
460
477
|
output: {
|
|
461
|
-
name: "
|
|
478
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
462
479
|
enabled: boolean;
|
|
463
480
|
trial_expired?: boolean | undefined;
|
|
464
481
|
};
|
|
@@ -1203,9 +1220,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1203
1220
|
invitee: {
|
|
1204
1221
|
email?: string | undefined;
|
|
1205
1222
|
};
|
|
1223
|
+
id?: string | undefined;
|
|
1206
1224
|
app_metadata?: Record<string, any> | undefined;
|
|
1207
1225
|
user_metadata?: Record<string, any> | undefined;
|
|
1208
|
-
id?: string | undefined;
|
|
1209
1226
|
connection_id?: string | undefined;
|
|
1210
1227
|
roles?: string[] | undefined;
|
|
1211
1228
|
ttl_sec?: number | undefined;
|
|
@@ -2058,7 +2075,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2058
2075
|
type: "REDIRECT";
|
|
2059
2076
|
action: "REDIRECT_USER";
|
|
2060
2077
|
params: {
|
|
2061
|
-
target: "custom" | "
|
|
2078
|
+
target: "custom" | "change-email" | "account";
|
|
2062
2079
|
custom_url?: string | undefined;
|
|
2063
2080
|
};
|
|
2064
2081
|
alias?: string | undefined;
|
|
@@ -2111,7 +2128,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2111
2128
|
type: "REDIRECT";
|
|
2112
2129
|
action: "REDIRECT_USER";
|
|
2113
2130
|
params: {
|
|
2114
|
-
target: "custom" | "
|
|
2131
|
+
target: "custom" | "change-email" | "account";
|
|
2115
2132
|
custom_url?: string | undefined;
|
|
2116
2133
|
};
|
|
2117
2134
|
alias?: string | undefined;
|
|
@@ -2179,7 +2196,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2179
2196
|
type: "REDIRECT";
|
|
2180
2197
|
action: "REDIRECT_USER";
|
|
2181
2198
|
params: {
|
|
2182
|
-
target: "custom" | "
|
|
2199
|
+
target: "custom" | "change-email" | "account";
|
|
2183
2200
|
custom_url?: string | undefined;
|
|
2184
2201
|
};
|
|
2185
2202
|
alias?: string | undefined;
|
|
@@ -2260,7 +2277,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2260
2277
|
type: "REDIRECT";
|
|
2261
2278
|
action: "REDIRECT_USER";
|
|
2262
2279
|
params: {
|
|
2263
|
-
target: "custom" | "
|
|
2280
|
+
target: "custom" | "change-email" | "account";
|
|
2264
2281
|
custom_url?: string | undefined;
|
|
2265
2282
|
};
|
|
2266
2283
|
alias?: string | undefined;
|
|
@@ -2308,7 +2325,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2308
2325
|
type: "REDIRECT";
|
|
2309
2326
|
action: "REDIRECT_USER";
|
|
2310
2327
|
params: {
|
|
2311
|
-
target: "custom" | "
|
|
2328
|
+
target: "custom" | "change-email" | "account";
|
|
2312
2329
|
custom_url?: string | undefined;
|
|
2313
2330
|
};
|
|
2314
2331
|
alias?: string | undefined;
|
|
@@ -2368,7 +2385,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2368
2385
|
type: "REDIRECT";
|
|
2369
2386
|
action: "REDIRECT_USER";
|
|
2370
2387
|
params: {
|
|
2371
|
-
target: "custom" | "
|
|
2388
|
+
target: "custom" | "change-email" | "account";
|
|
2372
2389
|
custom_url?: string | undefined;
|
|
2373
2390
|
};
|
|
2374
2391
|
alias?: string | undefined;
|
|
@@ -2416,7 +2433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2416
2433
|
type: "REDIRECT";
|
|
2417
2434
|
action: "REDIRECT_USER";
|
|
2418
2435
|
params: {
|
|
2419
|
-
target: "custom" | "
|
|
2436
|
+
target: "custom" | "change-email" | "account";
|
|
2420
2437
|
custom_url?: string | undefined;
|
|
2421
2438
|
};
|
|
2422
2439
|
alias?: string | undefined;
|
|
@@ -2634,7 +2651,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2634
2651
|
hint?: string | undefined;
|
|
2635
2652
|
messages?: {
|
|
2636
2653
|
text: string;
|
|
2637
|
-
type: "
|
|
2654
|
+
type: "success" | "error" | "info" | "warning";
|
|
2638
2655
|
id?: number | undefined;
|
|
2639
2656
|
}[] | undefined;
|
|
2640
2657
|
required?: boolean | undefined;
|
|
@@ -2652,7 +2669,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2652
2669
|
hint?: string | undefined;
|
|
2653
2670
|
messages?: {
|
|
2654
2671
|
text: string;
|
|
2655
|
-
type: "
|
|
2672
|
+
type: "success" | "error" | "info" | "warning";
|
|
2656
2673
|
id?: number | undefined;
|
|
2657
2674
|
}[] | undefined;
|
|
2658
2675
|
required?: boolean | undefined;
|
|
@@ -2676,7 +2693,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2676
2693
|
hint?: string | undefined;
|
|
2677
2694
|
messages?: {
|
|
2678
2695
|
text: string;
|
|
2679
|
-
type: "
|
|
2696
|
+
type: "success" | "error" | "info" | "warning";
|
|
2680
2697
|
id?: number | undefined;
|
|
2681
2698
|
}[] | undefined;
|
|
2682
2699
|
required?: boolean | undefined;
|
|
@@ -2700,7 +2717,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2700
2717
|
hint?: string | undefined;
|
|
2701
2718
|
messages?: {
|
|
2702
2719
|
text: string;
|
|
2703
|
-
type: "
|
|
2720
|
+
type: "success" | "error" | "info" | "warning";
|
|
2704
2721
|
id?: number | undefined;
|
|
2705
2722
|
}[] | undefined;
|
|
2706
2723
|
required?: boolean | undefined;
|
|
@@ -2724,7 +2741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2724
2741
|
hint?: string | undefined;
|
|
2725
2742
|
messages?: {
|
|
2726
2743
|
text: string;
|
|
2727
|
-
type: "
|
|
2744
|
+
type: "success" | "error" | "info" | "warning";
|
|
2728
2745
|
id?: number | undefined;
|
|
2729
2746
|
}[] | undefined;
|
|
2730
2747
|
required?: boolean | undefined;
|
|
@@ -2753,7 +2770,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2753
2770
|
hint?: string | undefined;
|
|
2754
2771
|
messages?: {
|
|
2755
2772
|
text: string;
|
|
2756
|
-
type: "
|
|
2773
|
+
type: "success" | "error" | "info" | "warning";
|
|
2757
2774
|
id?: number | undefined;
|
|
2758
2775
|
}[] | undefined;
|
|
2759
2776
|
required?: boolean | undefined;
|
|
@@ -2768,7 +2785,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2768
2785
|
hint?: string | undefined;
|
|
2769
2786
|
messages?: {
|
|
2770
2787
|
text: string;
|
|
2771
|
-
type: "
|
|
2788
|
+
type: "success" | "error" | "info" | "warning";
|
|
2772
2789
|
id?: number | undefined;
|
|
2773
2790
|
}[] | undefined;
|
|
2774
2791
|
required?: boolean | undefined;
|
|
@@ -2789,7 +2806,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2789
2806
|
hint?: string | undefined;
|
|
2790
2807
|
messages?: {
|
|
2791
2808
|
text: string;
|
|
2792
|
-
type: "
|
|
2809
|
+
type: "success" | "error" | "info" | "warning";
|
|
2793
2810
|
id?: number | undefined;
|
|
2794
2811
|
}[] | undefined;
|
|
2795
2812
|
required?: boolean | undefined;
|
|
@@ -2814,7 +2831,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2814
2831
|
hint?: string | undefined;
|
|
2815
2832
|
messages?: {
|
|
2816
2833
|
text: string;
|
|
2817
|
-
type: "
|
|
2834
|
+
type: "success" | "error" | "info" | "warning";
|
|
2818
2835
|
id?: number | undefined;
|
|
2819
2836
|
}[] | undefined;
|
|
2820
2837
|
required?: boolean | undefined;
|
|
@@ -2833,7 +2850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2833
2850
|
hint?: string | undefined;
|
|
2834
2851
|
messages?: {
|
|
2835
2852
|
text: string;
|
|
2836
|
-
type: "
|
|
2853
|
+
type: "success" | "error" | "info" | "warning";
|
|
2837
2854
|
id?: number | undefined;
|
|
2838
2855
|
}[] | undefined;
|
|
2839
2856
|
required?: boolean | undefined;
|
|
@@ -2853,7 +2870,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2853
2870
|
hint?: string | undefined;
|
|
2854
2871
|
messages?: {
|
|
2855
2872
|
text: string;
|
|
2856
|
-
type: "
|
|
2873
|
+
type: "success" | "error" | "info" | "warning";
|
|
2857
2874
|
id?: number | undefined;
|
|
2858
2875
|
}[] | undefined;
|
|
2859
2876
|
required?: boolean | undefined;
|
|
@@ -2872,7 +2889,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2872
2889
|
hint?: string | undefined;
|
|
2873
2890
|
messages?: {
|
|
2874
2891
|
text: string;
|
|
2875
|
-
type: "
|
|
2892
|
+
type: "success" | "error" | "info" | "warning";
|
|
2876
2893
|
id?: number | undefined;
|
|
2877
2894
|
}[] | undefined;
|
|
2878
2895
|
required?: boolean | undefined;
|
|
@@ -2894,7 +2911,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2894
2911
|
hint?: string | undefined;
|
|
2895
2912
|
messages?: {
|
|
2896
2913
|
text: string;
|
|
2897
|
-
type: "
|
|
2914
|
+
type: "success" | "error" | "info" | "warning";
|
|
2898
2915
|
id?: number | undefined;
|
|
2899
2916
|
}[] | undefined;
|
|
2900
2917
|
required?: boolean | undefined;
|
|
@@ -2916,7 +2933,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2916
2933
|
hint?: string | undefined;
|
|
2917
2934
|
messages?: {
|
|
2918
2935
|
text: string;
|
|
2919
|
-
type: "
|
|
2936
|
+
type: "success" | "error" | "info" | "warning";
|
|
2920
2937
|
id?: number | undefined;
|
|
2921
2938
|
}[] | undefined;
|
|
2922
2939
|
required?: boolean | undefined;
|
|
@@ -2935,7 +2952,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2935
2952
|
hint?: string | undefined;
|
|
2936
2953
|
messages?: {
|
|
2937
2954
|
text: string;
|
|
2938
|
-
type: "
|
|
2955
|
+
type: "success" | "error" | "info" | "warning";
|
|
2939
2956
|
id?: number | undefined;
|
|
2940
2957
|
}[] | undefined;
|
|
2941
2958
|
required?: boolean | undefined;
|
|
@@ -2960,7 +2977,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2960
2977
|
hint?: string | undefined;
|
|
2961
2978
|
messages?: {
|
|
2962
2979
|
text: string;
|
|
2963
|
-
type: "
|
|
2980
|
+
type: "success" | "error" | "info" | "warning";
|
|
2964
2981
|
id?: number | undefined;
|
|
2965
2982
|
}[] | undefined;
|
|
2966
2983
|
required?: boolean | undefined;
|
|
@@ -2981,7 +2998,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2981
2998
|
hint?: string | undefined;
|
|
2982
2999
|
messages?: {
|
|
2983
3000
|
text: string;
|
|
2984
|
-
type: "
|
|
3001
|
+
type: "success" | "error" | "info" | "warning";
|
|
2985
3002
|
id?: number | undefined;
|
|
2986
3003
|
}[] | undefined;
|
|
2987
3004
|
required?: boolean | undefined;
|
|
@@ -3002,7 +3019,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3002
3019
|
hint?: string | undefined;
|
|
3003
3020
|
messages?: {
|
|
3004
3021
|
text: string;
|
|
3005
|
-
type: "
|
|
3022
|
+
type: "success" | "error" | "info" | "warning";
|
|
3006
3023
|
id?: number | undefined;
|
|
3007
3024
|
}[] | undefined;
|
|
3008
3025
|
required?: boolean | undefined;
|
|
@@ -3235,7 +3252,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3235
3252
|
hint?: string | undefined;
|
|
3236
3253
|
messages?: {
|
|
3237
3254
|
text: string;
|
|
3238
|
-
type: "
|
|
3255
|
+
type: "success" | "error" | "info" | "warning";
|
|
3239
3256
|
id?: number | undefined;
|
|
3240
3257
|
}[] | undefined;
|
|
3241
3258
|
required?: boolean | undefined;
|
|
@@ -3253,7 +3270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3253
3270
|
hint?: string | undefined;
|
|
3254
3271
|
messages?: {
|
|
3255
3272
|
text: string;
|
|
3256
|
-
type: "
|
|
3273
|
+
type: "success" | "error" | "info" | "warning";
|
|
3257
3274
|
id?: number | undefined;
|
|
3258
3275
|
}[] | undefined;
|
|
3259
3276
|
required?: boolean | undefined;
|
|
@@ -3277,7 +3294,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3277
3294
|
hint?: string | undefined;
|
|
3278
3295
|
messages?: {
|
|
3279
3296
|
text: string;
|
|
3280
|
-
type: "
|
|
3297
|
+
type: "success" | "error" | "info" | "warning";
|
|
3281
3298
|
id?: number | undefined;
|
|
3282
3299
|
}[] | undefined;
|
|
3283
3300
|
required?: boolean | undefined;
|
|
@@ -3301,7 +3318,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3301
3318
|
hint?: string | undefined;
|
|
3302
3319
|
messages?: {
|
|
3303
3320
|
text: string;
|
|
3304
|
-
type: "
|
|
3321
|
+
type: "success" | "error" | "info" | "warning";
|
|
3305
3322
|
id?: number | undefined;
|
|
3306
3323
|
}[] | undefined;
|
|
3307
3324
|
required?: boolean | undefined;
|
|
@@ -3325,7 +3342,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3325
3342
|
hint?: string | undefined;
|
|
3326
3343
|
messages?: {
|
|
3327
3344
|
text: string;
|
|
3328
|
-
type: "
|
|
3345
|
+
type: "success" | "error" | "info" | "warning";
|
|
3329
3346
|
id?: number | undefined;
|
|
3330
3347
|
}[] | undefined;
|
|
3331
3348
|
required?: boolean | undefined;
|
|
@@ -3354,7 +3371,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3354
3371
|
hint?: string | undefined;
|
|
3355
3372
|
messages?: {
|
|
3356
3373
|
text: string;
|
|
3357
|
-
type: "
|
|
3374
|
+
type: "success" | "error" | "info" | "warning";
|
|
3358
3375
|
id?: number | undefined;
|
|
3359
3376
|
}[] | undefined;
|
|
3360
3377
|
required?: boolean | undefined;
|
|
@@ -3369,7 +3386,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3369
3386
|
hint?: string | undefined;
|
|
3370
3387
|
messages?: {
|
|
3371
3388
|
text: string;
|
|
3372
|
-
type: "
|
|
3389
|
+
type: "success" | "error" | "info" | "warning";
|
|
3373
3390
|
id?: number | undefined;
|
|
3374
3391
|
}[] | undefined;
|
|
3375
3392
|
required?: boolean | undefined;
|
|
@@ -3390,7 +3407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3390
3407
|
hint?: string | undefined;
|
|
3391
3408
|
messages?: {
|
|
3392
3409
|
text: string;
|
|
3393
|
-
type: "
|
|
3410
|
+
type: "success" | "error" | "info" | "warning";
|
|
3394
3411
|
id?: number | undefined;
|
|
3395
3412
|
}[] | undefined;
|
|
3396
3413
|
required?: boolean | undefined;
|
|
@@ -3415,7 +3432,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3415
3432
|
hint?: string | undefined;
|
|
3416
3433
|
messages?: {
|
|
3417
3434
|
text: string;
|
|
3418
|
-
type: "
|
|
3435
|
+
type: "success" | "error" | "info" | "warning";
|
|
3419
3436
|
id?: number | undefined;
|
|
3420
3437
|
}[] | undefined;
|
|
3421
3438
|
required?: boolean | undefined;
|
|
@@ -3434,7 +3451,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3434
3451
|
hint?: string | undefined;
|
|
3435
3452
|
messages?: {
|
|
3436
3453
|
text: string;
|
|
3437
|
-
type: "
|
|
3454
|
+
type: "success" | "error" | "info" | "warning";
|
|
3438
3455
|
id?: number | undefined;
|
|
3439
3456
|
}[] | undefined;
|
|
3440
3457
|
required?: boolean | undefined;
|
|
@@ -3454,7 +3471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3454
3471
|
hint?: string | undefined;
|
|
3455
3472
|
messages?: {
|
|
3456
3473
|
text: string;
|
|
3457
|
-
type: "
|
|
3474
|
+
type: "success" | "error" | "info" | "warning";
|
|
3458
3475
|
id?: number | undefined;
|
|
3459
3476
|
}[] | undefined;
|
|
3460
3477
|
required?: boolean | undefined;
|
|
@@ -3473,7 +3490,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3473
3490
|
hint?: string | undefined;
|
|
3474
3491
|
messages?: {
|
|
3475
3492
|
text: string;
|
|
3476
|
-
type: "
|
|
3493
|
+
type: "success" | "error" | "info" | "warning";
|
|
3477
3494
|
id?: number | undefined;
|
|
3478
3495
|
}[] | undefined;
|
|
3479
3496
|
required?: boolean | undefined;
|
|
@@ -3495,7 +3512,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3495
3512
|
hint?: string | undefined;
|
|
3496
3513
|
messages?: {
|
|
3497
3514
|
text: string;
|
|
3498
|
-
type: "
|
|
3515
|
+
type: "success" | "error" | "info" | "warning";
|
|
3499
3516
|
id?: number | undefined;
|
|
3500
3517
|
}[] | undefined;
|
|
3501
3518
|
required?: boolean | undefined;
|
|
@@ -3517,7 +3534,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3517
3534
|
hint?: string | undefined;
|
|
3518
3535
|
messages?: {
|
|
3519
3536
|
text: string;
|
|
3520
|
-
type: "
|
|
3537
|
+
type: "success" | "error" | "info" | "warning";
|
|
3521
3538
|
id?: number | undefined;
|
|
3522
3539
|
}[] | undefined;
|
|
3523
3540
|
required?: boolean | undefined;
|
|
@@ -3536,7 +3553,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3536
3553
|
hint?: string | undefined;
|
|
3537
3554
|
messages?: {
|
|
3538
3555
|
text: string;
|
|
3539
|
-
type: "
|
|
3556
|
+
type: "success" | "error" | "info" | "warning";
|
|
3540
3557
|
id?: number | undefined;
|
|
3541
3558
|
}[] | undefined;
|
|
3542
3559
|
required?: boolean | undefined;
|
|
@@ -3561,7 +3578,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3561
3578
|
hint?: string | undefined;
|
|
3562
3579
|
messages?: {
|
|
3563
3580
|
text: string;
|
|
3564
|
-
type: "
|
|
3581
|
+
type: "success" | "error" | "info" | "warning";
|
|
3565
3582
|
id?: number | undefined;
|
|
3566
3583
|
}[] | undefined;
|
|
3567
3584
|
required?: boolean | undefined;
|
|
@@ -3582,7 +3599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3582
3599
|
hint?: string | undefined;
|
|
3583
3600
|
messages?: {
|
|
3584
3601
|
text: string;
|
|
3585
|
-
type: "
|
|
3602
|
+
type: "success" | "error" | "info" | "warning";
|
|
3586
3603
|
id?: number | undefined;
|
|
3587
3604
|
}[] | undefined;
|
|
3588
3605
|
required?: boolean | undefined;
|
|
@@ -3603,7 +3620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3603
3620
|
hint?: string | undefined;
|
|
3604
3621
|
messages?: {
|
|
3605
3622
|
text: string;
|
|
3606
|
-
type: "
|
|
3623
|
+
type: "success" | "error" | "info" | "warning";
|
|
3607
3624
|
id?: number | undefined;
|
|
3608
3625
|
}[] | undefined;
|
|
3609
3626
|
required?: boolean | undefined;
|
|
@@ -3851,7 +3868,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3851
3868
|
hint?: string | undefined;
|
|
3852
3869
|
messages?: {
|
|
3853
3870
|
text: string;
|
|
3854
|
-
type: "
|
|
3871
|
+
type: "success" | "error" | "info" | "warning";
|
|
3855
3872
|
id?: number | undefined;
|
|
3856
3873
|
}[] | undefined;
|
|
3857
3874
|
required?: boolean | undefined;
|
|
@@ -3869,7 +3886,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3869
3886
|
hint?: string | undefined;
|
|
3870
3887
|
messages?: {
|
|
3871
3888
|
text: string;
|
|
3872
|
-
type: "
|
|
3889
|
+
type: "success" | "error" | "info" | "warning";
|
|
3873
3890
|
id?: number | undefined;
|
|
3874
3891
|
}[] | undefined;
|
|
3875
3892
|
required?: boolean | undefined;
|
|
@@ -3893,7 +3910,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3893
3910
|
hint?: string | undefined;
|
|
3894
3911
|
messages?: {
|
|
3895
3912
|
text: string;
|
|
3896
|
-
type: "
|
|
3913
|
+
type: "success" | "error" | "info" | "warning";
|
|
3897
3914
|
id?: number | undefined;
|
|
3898
3915
|
}[] | undefined;
|
|
3899
3916
|
required?: boolean | undefined;
|
|
@@ -3917,7 +3934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3917
3934
|
hint?: string | undefined;
|
|
3918
3935
|
messages?: {
|
|
3919
3936
|
text: string;
|
|
3920
|
-
type: "
|
|
3937
|
+
type: "success" | "error" | "info" | "warning";
|
|
3921
3938
|
id?: number | undefined;
|
|
3922
3939
|
}[] | undefined;
|
|
3923
3940
|
required?: boolean | undefined;
|
|
@@ -3941,7 +3958,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3941
3958
|
hint?: string | undefined;
|
|
3942
3959
|
messages?: {
|
|
3943
3960
|
text: string;
|
|
3944
|
-
type: "
|
|
3961
|
+
type: "success" | "error" | "info" | "warning";
|
|
3945
3962
|
id?: number | undefined;
|
|
3946
3963
|
}[] | undefined;
|
|
3947
3964
|
required?: boolean | undefined;
|
|
@@ -3970,7 +3987,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3970
3987
|
hint?: string | undefined;
|
|
3971
3988
|
messages?: {
|
|
3972
3989
|
text: string;
|
|
3973
|
-
type: "
|
|
3990
|
+
type: "success" | "error" | "info" | "warning";
|
|
3974
3991
|
id?: number | undefined;
|
|
3975
3992
|
}[] | undefined;
|
|
3976
3993
|
required?: boolean | undefined;
|
|
@@ -3985,7 +4002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3985
4002
|
hint?: string | undefined;
|
|
3986
4003
|
messages?: {
|
|
3987
4004
|
text: string;
|
|
3988
|
-
type: "
|
|
4005
|
+
type: "success" | "error" | "info" | "warning";
|
|
3989
4006
|
id?: number | undefined;
|
|
3990
4007
|
}[] | undefined;
|
|
3991
4008
|
required?: boolean | undefined;
|
|
@@ -4006,7 +4023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4006
4023
|
hint?: string | undefined;
|
|
4007
4024
|
messages?: {
|
|
4008
4025
|
text: string;
|
|
4009
|
-
type: "
|
|
4026
|
+
type: "success" | "error" | "info" | "warning";
|
|
4010
4027
|
id?: number | undefined;
|
|
4011
4028
|
}[] | undefined;
|
|
4012
4029
|
required?: boolean | undefined;
|
|
@@ -4031,7 +4048,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4031
4048
|
hint?: string | undefined;
|
|
4032
4049
|
messages?: {
|
|
4033
4050
|
text: string;
|
|
4034
|
-
type: "
|
|
4051
|
+
type: "success" | "error" | "info" | "warning";
|
|
4035
4052
|
id?: number | undefined;
|
|
4036
4053
|
}[] | undefined;
|
|
4037
4054
|
required?: boolean | undefined;
|
|
@@ -4050,7 +4067,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4050
4067
|
hint?: string | undefined;
|
|
4051
4068
|
messages?: {
|
|
4052
4069
|
text: string;
|
|
4053
|
-
type: "
|
|
4070
|
+
type: "success" | "error" | "info" | "warning";
|
|
4054
4071
|
id?: number | undefined;
|
|
4055
4072
|
}[] | undefined;
|
|
4056
4073
|
required?: boolean | undefined;
|
|
@@ -4070,7 +4087,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4070
4087
|
hint?: string | undefined;
|
|
4071
4088
|
messages?: {
|
|
4072
4089
|
text: string;
|
|
4073
|
-
type: "
|
|
4090
|
+
type: "success" | "error" | "info" | "warning";
|
|
4074
4091
|
id?: number | undefined;
|
|
4075
4092
|
}[] | undefined;
|
|
4076
4093
|
required?: boolean | undefined;
|
|
@@ -4089,7 +4106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4089
4106
|
hint?: string | undefined;
|
|
4090
4107
|
messages?: {
|
|
4091
4108
|
text: string;
|
|
4092
|
-
type: "
|
|
4109
|
+
type: "success" | "error" | "info" | "warning";
|
|
4093
4110
|
id?: number | undefined;
|
|
4094
4111
|
}[] | undefined;
|
|
4095
4112
|
required?: boolean | undefined;
|
|
@@ -4111,7 +4128,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4111
4128
|
hint?: string | undefined;
|
|
4112
4129
|
messages?: {
|
|
4113
4130
|
text: string;
|
|
4114
|
-
type: "
|
|
4131
|
+
type: "success" | "error" | "info" | "warning";
|
|
4115
4132
|
id?: number | undefined;
|
|
4116
4133
|
}[] | undefined;
|
|
4117
4134
|
required?: boolean | undefined;
|
|
@@ -4133,7 +4150,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4133
4150
|
hint?: string | undefined;
|
|
4134
4151
|
messages?: {
|
|
4135
4152
|
text: string;
|
|
4136
|
-
type: "
|
|
4153
|
+
type: "success" | "error" | "info" | "warning";
|
|
4137
4154
|
id?: number | undefined;
|
|
4138
4155
|
}[] | undefined;
|
|
4139
4156
|
required?: boolean | undefined;
|
|
@@ -4152,7 +4169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4152
4169
|
hint?: string | undefined;
|
|
4153
4170
|
messages?: {
|
|
4154
4171
|
text: string;
|
|
4155
|
-
type: "
|
|
4172
|
+
type: "success" | "error" | "info" | "warning";
|
|
4156
4173
|
id?: number | undefined;
|
|
4157
4174
|
}[] | undefined;
|
|
4158
4175
|
required?: boolean | undefined;
|
|
@@ -4177,7 +4194,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4177
4194
|
hint?: string | undefined;
|
|
4178
4195
|
messages?: {
|
|
4179
4196
|
text: string;
|
|
4180
|
-
type: "
|
|
4197
|
+
type: "success" | "error" | "info" | "warning";
|
|
4181
4198
|
id?: number | undefined;
|
|
4182
4199
|
}[] | undefined;
|
|
4183
4200
|
required?: boolean | undefined;
|
|
@@ -4198,7 +4215,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4198
4215
|
hint?: string | undefined;
|
|
4199
4216
|
messages?: {
|
|
4200
4217
|
text: string;
|
|
4201
|
-
type: "
|
|
4218
|
+
type: "success" | "error" | "info" | "warning";
|
|
4202
4219
|
id?: number | undefined;
|
|
4203
4220
|
}[] | undefined;
|
|
4204
4221
|
required?: boolean | undefined;
|
|
@@ -4219,7 +4236,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4219
4236
|
hint?: string | undefined;
|
|
4220
4237
|
messages?: {
|
|
4221
4238
|
text: string;
|
|
4222
|
-
type: "
|
|
4239
|
+
type: "success" | "error" | "info" | "warning";
|
|
4223
4240
|
id?: number | undefined;
|
|
4224
4241
|
}[] | undefined;
|
|
4225
4242
|
required?: boolean | undefined;
|
|
@@ -4473,7 +4490,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4473
4490
|
hint?: string | undefined;
|
|
4474
4491
|
messages?: {
|
|
4475
4492
|
text: string;
|
|
4476
|
-
type: "
|
|
4493
|
+
type: "success" | "error" | "info" | "warning";
|
|
4477
4494
|
id?: number | undefined;
|
|
4478
4495
|
}[] | undefined;
|
|
4479
4496
|
required?: boolean | undefined;
|
|
@@ -4491,7 +4508,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4491
4508
|
hint?: string | undefined;
|
|
4492
4509
|
messages?: {
|
|
4493
4510
|
text: string;
|
|
4494
|
-
type: "
|
|
4511
|
+
type: "success" | "error" | "info" | "warning";
|
|
4495
4512
|
id?: number | undefined;
|
|
4496
4513
|
}[] | undefined;
|
|
4497
4514
|
required?: boolean | undefined;
|
|
@@ -4515,7 +4532,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4515
4532
|
hint?: string | undefined;
|
|
4516
4533
|
messages?: {
|
|
4517
4534
|
text: string;
|
|
4518
|
-
type: "
|
|
4535
|
+
type: "success" | "error" | "info" | "warning";
|
|
4519
4536
|
id?: number | undefined;
|
|
4520
4537
|
}[] | undefined;
|
|
4521
4538
|
required?: boolean | undefined;
|
|
@@ -4539,7 +4556,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4539
4556
|
hint?: string | undefined;
|
|
4540
4557
|
messages?: {
|
|
4541
4558
|
text: string;
|
|
4542
|
-
type: "
|
|
4559
|
+
type: "success" | "error" | "info" | "warning";
|
|
4543
4560
|
id?: number | undefined;
|
|
4544
4561
|
}[] | undefined;
|
|
4545
4562
|
required?: boolean | undefined;
|
|
@@ -4563,7 +4580,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4563
4580
|
hint?: string | undefined;
|
|
4564
4581
|
messages?: {
|
|
4565
4582
|
text: string;
|
|
4566
|
-
type: "
|
|
4583
|
+
type: "success" | "error" | "info" | "warning";
|
|
4567
4584
|
id?: number | undefined;
|
|
4568
4585
|
}[] | undefined;
|
|
4569
4586
|
required?: boolean | undefined;
|
|
@@ -4588,7 +4605,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4588
4605
|
hint?: string | undefined;
|
|
4589
4606
|
messages?: {
|
|
4590
4607
|
text: string;
|
|
4591
|
-
type: "
|
|
4608
|
+
type: "success" | "error" | "info" | "warning";
|
|
4592
4609
|
id?: number | undefined;
|
|
4593
4610
|
}[] | undefined;
|
|
4594
4611
|
required?: boolean | undefined;
|
|
@@ -4603,7 +4620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4603
4620
|
hint?: string | undefined;
|
|
4604
4621
|
messages?: {
|
|
4605
4622
|
text: string;
|
|
4606
|
-
type: "
|
|
4623
|
+
type: "success" | "error" | "info" | "warning";
|
|
4607
4624
|
id?: number | undefined;
|
|
4608
4625
|
}[] | undefined;
|
|
4609
4626
|
required?: boolean | undefined;
|
|
@@ -4624,7 +4641,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4624
4641
|
hint?: string | undefined;
|
|
4625
4642
|
messages?: {
|
|
4626
4643
|
text: string;
|
|
4627
|
-
type: "
|
|
4644
|
+
type: "success" | "error" | "info" | "warning";
|
|
4628
4645
|
id?: number | undefined;
|
|
4629
4646
|
}[] | undefined;
|
|
4630
4647
|
required?: boolean | undefined;
|
|
@@ -4649,7 +4666,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4649
4666
|
hint?: string | undefined;
|
|
4650
4667
|
messages?: {
|
|
4651
4668
|
text: string;
|
|
4652
|
-
type: "
|
|
4669
|
+
type: "success" | "error" | "info" | "warning";
|
|
4653
4670
|
id?: number | undefined;
|
|
4654
4671
|
}[] | undefined;
|
|
4655
4672
|
required?: boolean | undefined;
|
|
@@ -4668,7 +4685,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4668
4685
|
hint?: string | undefined;
|
|
4669
4686
|
messages?: {
|
|
4670
4687
|
text: string;
|
|
4671
|
-
type: "
|
|
4688
|
+
type: "success" | "error" | "info" | "warning";
|
|
4672
4689
|
id?: number | undefined;
|
|
4673
4690
|
}[] | undefined;
|
|
4674
4691
|
required?: boolean | undefined;
|
|
@@ -4688,7 +4705,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4688
4705
|
hint?: string | undefined;
|
|
4689
4706
|
messages?: {
|
|
4690
4707
|
text: string;
|
|
4691
|
-
type: "
|
|
4708
|
+
type: "success" | "error" | "info" | "warning";
|
|
4692
4709
|
id?: number | undefined;
|
|
4693
4710
|
}[] | undefined;
|
|
4694
4711
|
required?: boolean | undefined;
|
|
@@ -4707,7 +4724,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4707
4724
|
hint?: string | undefined;
|
|
4708
4725
|
messages?: {
|
|
4709
4726
|
text: string;
|
|
4710
|
-
type: "
|
|
4727
|
+
type: "success" | "error" | "info" | "warning";
|
|
4711
4728
|
id?: number | undefined;
|
|
4712
4729
|
}[] | undefined;
|
|
4713
4730
|
required?: boolean | undefined;
|
|
@@ -4729,7 +4746,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4729
4746
|
hint?: string | undefined;
|
|
4730
4747
|
messages?: {
|
|
4731
4748
|
text: string;
|
|
4732
|
-
type: "
|
|
4749
|
+
type: "success" | "error" | "info" | "warning";
|
|
4733
4750
|
id?: number | undefined;
|
|
4734
4751
|
}[] | undefined;
|
|
4735
4752
|
required?: boolean | undefined;
|
|
@@ -4751,7 +4768,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4751
4768
|
hint?: string | undefined;
|
|
4752
4769
|
messages?: {
|
|
4753
4770
|
text: string;
|
|
4754
|
-
type: "
|
|
4771
|
+
type: "success" | "error" | "info" | "warning";
|
|
4755
4772
|
id?: number | undefined;
|
|
4756
4773
|
}[] | undefined;
|
|
4757
4774
|
required?: boolean | undefined;
|
|
@@ -4770,7 +4787,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4770
4787
|
hint?: string | undefined;
|
|
4771
4788
|
messages?: {
|
|
4772
4789
|
text: string;
|
|
4773
|
-
type: "
|
|
4790
|
+
type: "success" | "error" | "info" | "warning";
|
|
4774
4791
|
id?: number | undefined;
|
|
4775
4792
|
}[] | undefined;
|
|
4776
4793
|
required?: boolean | undefined;
|
|
@@ -4795,7 +4812,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4795
4812
|
hint?: string | undefined;
|
|
4796
4813
|
messages?: {
|
|
4797
4814
|
text: string;
|
|
4798
|
-
type: "
|
|
4815
|
+
type: "success" | "error" | "info" | "warning";
|
|
4799
4816
|
id?: number | undefined;
|
|
4800
4817
|
}[] | undefined;
|
|
4801
4818
|
required?: boolean | undefined;
|
|
@@ -4816,7 +4833,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4816
4833
|
hint?: string | undefined;
|
|
4817
4834
|
messages?: {
|
|
4818
4835
|
text: string;
|
|
4819
|
-
type: "
|
|
4836
|
+
type: "success" | "error" | "info" | "warning";
|
|
4820
4837
|
id?: number | undefined;
|
|
4821
4838
|
}[] | undefined;
|
|
4822
4839
|
required?: boolean | undefined;
|
|
@@ -4837,7 +4854,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4837
4854
|
hint?: string | undefined;
|
|
4838
4855
|
messages?: {
|
|
4839
4856
|
text: string;
|
|
4840
|
-
type: "
|
|
4857
|
+
type: "success" | "error" | "info" | "warning";
|
|
4841
4858
|
id?: number | undefined;
|
|
4842
4859
|
}[] | undefined;
|
|
4843
4860
|
required?: boolean | undefined;
|
|
@@ -5068,7 +5085,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5068
5085
|
hint?: string | undefined;
|
|
5069
5086
|
messages?: {
|
|
5070
5087
|
text: string;
|
|
5071
|
-
type: "
|
|
5088
|
+
type: "success" | "error" | "info" | "warning";
|
|
5072
5089
|
id?: number | undefined;
|
|
5073
5090
|
}[] | undefined;
|
|
5074
5091
|
required?: boolean | undefined;
|
|
@@ -5086,7 +5103,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5086
5103
|
hint?: string | undefined;
|
|
5087
5104
|
messages?: {
|
|
5088
5105
|
text: string;
|
|
5089
|
-
type: "
|
|
5106
|
+
type: "success" | "error" | "info" | "warning";
|
|
5090
5107
|
id?: number | undefined;
|
|
5091
5108
|
}[] | undefined;
|
|
5092
5109
|
required?: boolean | undefined;
|
|
@@ -5110,7 +5127,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5110
5127
|
hint?: string | undefined;
|
|
5111
5128
|
messages?: {
|
|
5112
5129
|
text: string;
|
|
5113
|
-
type: "
|
|
5130
|
+
type: "success" | "error" | "info" | "warning";
|
|
5114
5131
|
id?: number | undefined;
|
|
5115
5132
|
}[] | undefined;
|
|
5116
5133
|
required?: boolean | undefined;
|
|
@@ -5134,7 +5151,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5134
5151
|
hint?: string | undefined;
|
|
5135
5152
|
messages?: {
|
|
5136
5153
|
text: string;
|
|
5137
|
-
type: "
|
|
5154
|
+
type: "success" | "error" | "info" | "warning";
|
|
5138
5155
|
id?: number | undefined;
|
|
5139
5156
|
}[] | undefined;
|
|
5140
5157
|
required?: boolean | undefined;
|
|
@@ -5158,7 +5175,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5158
5175
|
hint?: string | undefined;
|
|
5159
5176
|
messages?: {
|
|
5160
5177
|
text: string;
|
|
5161
|
-
type: "
|
|
5178
|
+
type: "success" | "error" | "info" | "warning";
|
|
5162
5179
|
id?: number | undefined;
|
|
5163
5180
|
}[] | undefined;
|
|
5164
5181
|
required?: boolean | undefined;
|
|
@@ -5187,7 +5204,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5187
5204
|
hint?: string | undefined;
|
|
5188
5205
|
messages?: {
|
|
5189
5206
|
text: string;
|
|
5190
|
-
type: "
|
|
5207
|
+
type: "success" | "error" | "info" | "warning";
|
|
5191
5208
|
id?: number | undefined;
|
|
5192
5209
|
}[] | undefined;
|
|
5193
5210
|
required?: boolean | undefined;
|
|
@@ -5202,7 +5219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5202
5219
|
hint?: string | undefined;
|
|
5203
5220
|
messages?: {
|
|
5204
5221
|
text: string;
|
|
5205
|
-
type: "
|
|
5222
|
+
type: "success" | "error" | "info" | "warning";
|
|
5206
5223
|
id?: number | undefined;
|
|
5207
5224
|
}[] | undefined;
|
|
5208
5225
|
required?: boolean | undefined;
|
|
@@ -5223,7 +5240,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5223
5240
|
hint?: string | undefined;
|
|
5224
5241
|
messages?: {
|
|
5225
5242
|
text: string;
|
|
5226
|
-
type: "
|
|
5243
|
+
type: "success" | "error" | "info" | "warning";
|
|
5227
5244
|
id?: number | undefined;
|
|
5228
5245
|
}[] | undefined;
|
|
5229
5246
|
required?: boolean | undefined;
|
|
@@ -5248,7 +5265,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5248
5265
|
hint?: string | undefined;
|
|
5249
5266
|
messages?: {
|
|
5250
5267
|
text: string;
|
|
5251
|
-
type: "
|
|
5268
|
+
type: "success" | "error" | "info" | "warning";
|
|
5252
5269
|
id?: number | undefined;
|
|
5253
5270
|
}[] | undefined;
|
|
5254
5271
|
required?: boolean | undefined;
|
|
@@ -5267,7 +5284,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5267
5284
|
hint?: string | undefined;
|
|
5268
5285
|
messages?: {
|
|
5269
5286
|
text: string;
|
|
5270
|
-
type: "
|
|
5287
|
+
type: "success" | "error" | "info" | "warning";
|
|
5271
5288
|
id?: number | undefined;
|
|
5272
5289
|
}[] | undefined;
|
|
5273
5290
|
required?: boolean | undefined;
|
|
@@ -5287,7 +5304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5287
5304
|
hint?: string | undefined;
|
|
5288
5305
|
messages?: {
|
|
5289
5306
|
text: string;
|
|
5290
|
-
type: "
|
|
5307
|
+
type: "success" | "error" | "info" | "warning";
|
|
5291
5308
|
id?: number | undefined;
|
|
5292
5309
|
}[] | undefined;
|
|
5293
5310
|
required?: boolean | undefined;
|
|
@@ -5306,7 +5323,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5306
5323
|
hint?: string | undefined;
|
|
5307
5324
|
messages?: {
|
|
5308
5325
|
text: string;
|
|
5309
|
-
type: "
|
|
5326
|
+
type: "success" | "error" | "info" | "warning";
|
|
5310
5327
|
id?: number | undefined;
|
|
5311
5328
|
}[] | undefined;
|
|
5312
5329
|
required?: boolean | undefined;
|
|
@@ -5328,7 +5345,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5328
5345
|
hint?: string | undefined;
|
|
5329
5346
|
messages?: {
|
|
5330
5347
|
text: string;
|
|
5331
|
-
type: "
|
|
5348
|
+
type: "success" | "error" | "info" | "warning";
|
|
5332
5349
|
id?: number | undefined;
|
|
5333
5350
|
}[] | undefined;
|
|
5334
5351
|
required?: boolean | undefined;
|
|
@@ -5350,7 +5367,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5350
5367
|
hint?: string | undefined;
|
|
5351
5368
|
messages?: {
|
|
5352
5369
|
text: string;
|
|
5353
|
-
type: "
|
|
5370
|
+
type: "success" | "error" | "info" | "warning";
|
|
5354
5371
|
id?: number | undefined;
|
|
5355
5372
|
}[] | undefined;
|
|
5356
5373
|
required?: boolean | undefined;
|
|
@@ -5369,7 +5386,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5369
5386
|
hint?: string | undefined;
|
|
5370
5387
|
messages?: {
|
|
5371
5388
|
text: string;
|
|
5372
|
-
type: "
|
|
5389
|
+
type: "success" | "error" | "info" | "warning";
|
|
5373
5390
|
id?: number | undefined;
|
|
5374
5391
|
}[] | undefined;
|
|
5375
5392
|
required?: boolean | undefined;
|
|
@@ -5394,7 +5411,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5394
5411
|
hint?: string | undefined;
|
|
5395
5412
|
messages?: {
|
|
5396
5413
|
text: string;
|
|
5397
|
-
type: "
|
|
5414
|
+
type: "success" | "error" | "info" | "warning";
|
|
5398
5415
|
id?: number | undefined;
|
|
5399
5416
|
}[] | undefined;
|
|
5400
5417
|
required?: boolean | undefined;
|
|
@@ -5415,7 +5432,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5415
5432
|
hint?: string | undefined;
|
|
5416
5433
|
messages?: {
|
|
5417
5434
|
text: string;
|
|
5418
|
-
type: "
|
|
5435
|
+
type: "success" | "error" | "info" | "warning";
|
|
5419
5436
|
id?: number | undefined;
|
|
5420
5437
|
}[] | undefined;
|
|
5421
5438
|
required?: boolean | undefined;
|
|
@@ -5436,7 +5453,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5436
5453
|
hint?: string | undefined;
|
|
5437
5454
|
messages?: {
|
|
5438
5455
|
text: string;
|
|
5439
|
-
type: "
|
|
5456
|
+
type: "success" | "error" | "info" | "warning";
|
|
5440
5457
|
id?: number | undefined;
|
|
5441
5458
|
}[] | undefined;
|
|
5442
5459
|
required?: boolean | undefined;
|
|
@@ -5669,7 +5686,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5669
5686
|
hint?: string | undefined;
|
|
5670
5687
|
messages?: {
|
|
5671
5688
|
text: string;
|
|
5672
|
-
type: "
|
|
5689
|
+
type: "success" | "error" | "info" | "warning";
|
|
5673
5690
|
id?: number | undefined;
|
|
5674
5691
|
}[] | undefined;
|
|
5675
5692
|
required?: boolean | undefined;
|
|
@@ -5687,7 +5704,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5687
5704
|
hint?: string | undefined;
|
|
5688
5705
|
messages?: {
|
|
5689
5706
|
text: string;
|
|
5690
|
-
type: "
|
|
5707
|
+
type: "success" | "error" | "info" | "warning";
|
|
5691
5708
|
id?: number | undefined;
|
|
5692
5709
|
}[] | undefined;
|
|
5693
5710
|
required?: boolean | undefined;
|
|
@@ -5711,7 +5728,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5711
5728
|
hint?: string | undefined;
|
|
5712
5729
|
messages?: {
|
|
5713
5730
|
text: string;
|
|
5714
|
-
type: "
|
|
5731
|
+
type: "success" | "error" | "info" | "warning";
|
|
5715
5732
|
id?: number | undefined;
|
|
5716
5733
|
}[] | undefined;
|
|
5717
5734
|
required?: boolean | undefined;
|
|
@@ -5735,7 +5752,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5735
5752
|
hint?: string | undefined;
|
|
5736
5753
|
messages?: {
|
|
5737
5754
|
text: string;
|
|
5738
|
-
type: "
|
|
5755
|
+
type: "success" | "error" | "info" | "warning";
|
|
5739
5756
|
id?: number | undefined;
|
|
5740
5757
|
}[] | undefined;
|
|
5741
5758
|
required?: boolean | undefined;
|
|
@@ -5759,7 +5776,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5759
5776
|
hint?: string | undefined;
|
|
5760
5777
|
messages?: {
|
|
5761
5778
|
text: string;
|
|
5762
|
-
type: "
|
|
5779
|
+
type: "success" | "error" | "info" | "warning";
|
|
5763
5780
|
id?: number | undefined;
|
|
5764
5781
|
}[] | undefined;
|
|
5765
5782
|
required?: boolean | undefined;
|
|
@@ -5784,7 +5801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5784
5801
|
hint?: string | undefined;
|
|
5785
5802
|
messages?: {
|
|
5786
5803
|
text: string;
|
|
5787
|
-
type: "
|
|
5804
|
+
type: "success" | "error" | "info" | "warning";
|
|
5788
5805
|
id?: number | undefined;
|
|
5789
5806
|
}[] | undefined;
|
|
5790
5807
|
required?: boolean | undefined;
|
|
@@ -5799,7 +5816,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5799
5816
|
hint?: string | undefined;
|
|
5800
5817
|
messages?: {
|
|
5801
5818
|
text: string;
|
|
5802
|
-
type: "
|
|
5819
|
+
type: "success" | "error" | "info" | "warning";
|
|
5803
5820
|
id?: number | undefined;
|
|
5804
5821
|
}[] | undefined;
|
|
5805
5822
|
required?: boolean | undefined;
|
|
@@ -5820,7 +5837,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5820
5837
|
hint?: string | undefined;
|
|
5821
5838
|
messages?: {
|
|
5822
5839
|
text: string;
|
|
5823
|
-
type: "
|
|
5840
|
+
type: "success" | "error" | "info" | "warning";
|
|
5824
5841
|
id?: number | undefined;
|
|
5825
5842
|
}[] | undefined;
|
|
5826
5843
|
required?: boolean | undefined;
|
|
@@ -5845,7 +5862,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5845
5862
|
hint?: string | undefined;
|
|
5846
5863
|
messages?: {
|
|
5847
5864
|
text: string;
|
|
5848
|
-
type: "
|
|
5865
|
+
type: "success" | "error" | "info" | "warning";
|
|
5849
5866
|
id?: number | undefined;
|
|
5850
5867
|
}[] | undefined;
|
|
5851
5868
|
required?: boolean | undefined;
|
|
@@ -5864,7 +5881,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5864
5881
|
hint?: string | undefined;
|
|
5865
5882
|
messages?: {
|
|
5866
5883
|
text: string;
|
|
5867
|
-
type: "
|
|
5884
|
+
type: "success" | "error" | "info" | "warning";
|
|
5868
5885
|
id?: number | undefined;
|
|
5869
5886
|
}[] | undefined;
|
|
5870
5887
|
required?: boolean | undefined;
|
|
@@ -5884,7 +5901,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5884
5901
|
hint?: string | undefined;
|
|
5885
5902
|
messages?: {
|
|
5886
5903
|
text: string;
|
|
5887
|
-
type: "
|
|
5904
|
+
type: "success" | "error" | "info" | "warning";
|
|
5888
5905
|
id?: number | undefined;
|
|
5889
5906
|
}[] | undefined;
|
|
5890
5907
|
required?: boolean | undefined;
|
|
@@ -5903,7 +5920,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5903
5920
|
hint?: string | undefined;
|
|
5904
5921
|
messages?: {
|
|
5905
5922
|
text: string;
|
|
5906
|
-
type: "
|
|
5923
|
+
type: "success" | "error" | "info" | "warning";
|
|
5907
5924
|
id?: number | undefined;
|
|
5908
5925
|
}[] | undefined;
|
|
5909
5926
|
required?: boolean | undefined;
|
|
@@ -5925,7 +5942,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5925
5942
|
hint?: string | undefined;
|
|
5926
5943
|
messages?: {
|
|
5927
5944
|
text: string;
|
|
5928
|
-
type: "
|
|
5945
|
+
type: "success" | "error" | "info" | "warning";
|
|
5929
5946
|
id?: number | undefined;
|
|
5930
5947
|
}[] | undefined;
|
|
5931
5948
|
required?: boolean | undefined;
|
|
@@ -5947,7 +5964,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5947
5964
|
hint?: string | undefined;
|
|
5948
5965
|
messages?: {
|
|
5949
5966
|
text: string;
|
|
5950
|
-
type: "
|
|
5967
|
+
type: "success" | "error" | "info" | "warning";
|
|
5951
5968
|
id?: number | undefined;
|
|
5952
5969
|
}[] | undefined;
|
|
5953
5970
|
required?: boolean | undefined;
|
|
@@ -5966,7 +5983,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5966
5983
|
hint?: string | undefined;
|
|
5967
5984
|
messages?: {
|
|
5968
5985
|
text: string;
|
|
5969
|
-
type: "
|
|
5986
|
+
type: "success" | "error" | "info" | "warning";
|
|
5970
5987
|
id?: number | undefined;
|
|
5971
5988
|
}[] | undefined;
|
|
5972
5989
|
required?: boolean | undefined;
|
|
@@ -5991,7 +6008,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5991
6008
|
hint?: string | undefined;
|
|
5992
6009
|
messages?: {
|
|
5993
6010
|
text: string;
|
|
5994
|
-
type: "
|
|
6011
|
+
type: "success" | "error" | "info" | "warning";
|
|
5995
6012
|
id?: number | undefined;
|
|
5996
6013
|
}[] | undefined;
|
|
5997
6014
|
required?: boolean | undefined;
|
|
@@ -6012,7 +6029,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6012
6029
|
hint?: string | undefined;
|
|
6013
6030
|
messages?: {
|
|
6014
6031
|
text: string;
|
|
6015
|
-
type: "
|
|
6032
|
+
type: "success" | "error" | "info" | "warning";
|
|
6016
6033
|
id?: number | undefined;
|
|
6017
6034
|
}[] | undefined;
|
|
6018
6035
|
required?: boolean | undefined;
|
|
@@ -6033,7 +6050,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6033
6050
|
hint?: string | undefined;
|
|
6034
6051
|
messages?: {
|
|
6035
6052
|
text: string;
|
|
6036
|
-
type: "
|
|
6053
|
+
type: "success" | "error" | "info" | "warning";
|
|
6037
6054
|
id?: number | undefined;
|
|
6038
6055
|
}[] | undefined;
|
|
6039
6056
|
required?: boolean | undefined;
|
|
@@ -6264,7 +6281,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6264
6281
|
hint?: string | undefined;
|
|
6265
6282
|
messages?: {
|
|
6266
6283
|
text: string;
|
|
6267
|
-
type: "
|
|
6284
|
+
type: "success" | "error" | "info" | "warning";
|
|
6268
6285
|
id?: number | undefined;
|
|
6269
6286
|
}[] | undefined;
|
|
6270
6287
|
required?: boolean | undefined;
|
|
@@ -6282,7 +6299,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6282
6299
|
hint?: string | undefined;
|
|
6283
6300
|
messages?: {
|
|
6284
6301
|
text: string;
|
|
6285
|
-
type: "
|
|
6302
|
+
type: "success" | "error" | "info" | "warning";
|
|
6286
6303
|
id?: number | undefined;
|
|
6287
6304
|
}[] | undefined;
|
|
6288
6305
|
required?: boolean | undefined;
|
|
@@ -6306,7 +6323,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6306
6323
|
hint?: string | undefined;
|
|
6307
6324
|
messages?: {
|
|
6308
6325
|
text: string;
|
|
6309
|
-
type: "
|
|
6326
|
+
type: "success" | "error" | "info" | "warning";
|
|
6310
6327
|
id?: number | undefined;
|
|
6311
6328
|
}[] | undefined;
|
|
6312
6329
|
required?: boolean | undefined;
|
|
@@ -6330,7 +6347,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6330
6347
|
hint?: string | undefined;
|
|
6331
6348
|
messages?: {
|
|
6332
6349
|
text: string;
|
|
6333
|
-
type: "
|
|
6350
|
+
type: "success" | "error" | "info" | "warning";
|
|
6334
6351
|
id?: number | undefined;
|
|
6335
6352
|
}[] | undefined;
|
|
6336
6353
|
required?: boolean | undefined;
|
|
@@ -6354,7 +6371,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6354
6371
|
hint?: string | undefined;
|
|
6355
6372
|
messages?: {
|
|
6356
6373
|
text: string;
|
|
6357
|
-
type: "
|
|
6374
|
+
type: "success" | "error" | "info" | "warning";
|
|
6358
6375
|
id?: number | undefined;
|
|
6359
6376
|
}[] | undefined;
|
|
6360
6377
|
required?: boolean | undefined;
|
|
@@ -6383,7 +6400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6383
6400
|
hint?: string | undefined;
|
|
6384
6401
|
messages?: {
|
|
6385
6402
|
text: string;
|
|
6386
|
-
type: "
|
|
6403
|
+
type: "success" | "error" | "info" | "warning";
|
|
6387
6404
|
id?: number | undefined;
|
|
6388
6405
|
}[] | undefined;
|
|
6389
6406
|
required?: boolean | undefined;
|
|
@@ -6398,7 +6415,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6398
6415
|
hint?: string | undefined;
|
|
6399
6416
|
messages?: {
|
|
6400
6417
|
text: string;
|
|
6401
|
-
type: "
|
|
6418
|
+
type: "success" | "error" | "info" | "warning";
|
|
6402
6419
|
id?: number | undefined;
|
|
6403
6420
|
}[] | undefined;
|
|
6404
6421
|
required?: boolean | undefined;
|
|
@@ -6419,7 +6436,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6419
6436
|
hint?: string | undefined;
|
|
6420
6437
|
messages?: {
|
|
6421
6438
|
text: string;
|
|
6422
|
-
type: "
|
|
6439
|
+
type: "success" | "error" | "info" | "warning";
|
|
6423
6440
|
id?: number | undefined;
|
|
6424
6441
|
}[] | undefined;
|
|
6425
6442
|
required?: boolean | undefined;
|
|
@@ -6444,7 +6461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6444
6461
|
hint?: string | undefined;
|
|
6445
6462
|
messages?: {
|
|
6446
6463
|
text: string;
|
|
6447
|
-
type: "
|
|
6464
|
+
type: "success" | "error" | "info" | "warning";
|
|
6448
6465
|
id?: number | undefined;
|
|
6449
6466
|
}[] | undefined;
|
|
6450
6467
|
required?: boolean | undefined;
|
|
@@ -6463,7 +6480,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6463
6480
|
hint?: string | undefined;
|
|
6464
6481
|
messages?: {
|
|
6465
6482
|
text: string;
|
|
6466
|
-
type: "
|
|
6483
|
+
type: "success" | "error" | "info" | "warning";
|
|
6467
6484
|
id?: number | undefined;
|
|
6468
6485
|
}[] | undefined;
|
|
6469
6486
|
required?: boolean | undefined;
|
|
@@ -6483,7 +6500,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6483
6500
|
hint?: string | undefined;
|
|
6484
6501
|
messages?: {
|
|
6485
6502
|
text: string;
|
|
6486
|
-
type: "
|
|
6503
|
+
type: "success" | "error" | "info" | "warning";
|
|
6487
6504
|
id?: number | undefined;
|
|
6488
6505
|
}[] | undefined;
|
|
6489
6506
|
required?: boolean | undefined;
|
|
@@ -6502,7 +6519,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6502
6519
|
hint?: string | undefined;
|
|
6503
6520
|
messages?: {
|
|
6504
6521
|
text: string;
|
|
6505
|
-
type: "
|
|
6522
|
+
type: "success" | "error" | "info" | "warning";
|
|
6506
6523
|
id?: number | undefined;
|
|
6507
6524
|
}[] | undefined;
|
|
6508
6525
|
required?: boolean | undefined;
|
|
@@ -6524,7 +6541,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6524
6541
|
hint?: string | undefined;
|
|
6525
6542
|
messages?: {
|
|
6526
6543
|
text: string;
|
|
6527
|
-
type: "
|
|
6544
|
+
type: "success" | "error" | "info" | "warning";
|
|
6528
6545
|
id?: number | undefined;
|
|
6529
6546
|
}[] | undefined;
|
|
6530
6547
|
required?: boolean | undefined;
|
|
@@ -6546,7 +6563,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6546
6563
|
hint?: string | undefined;
|
|
6547
6564
|
messages?: {
|
|
6548
6565
|
text: string;
|
|
6549
|
-
type: "
|
|
6566
|
+
type: "success" | "error" | "info" | "warning";
|
|
6550
6567
|
id?: number | undefined;
|
|
6551
6568
|
}[] | undefined;
|
|
6552
6569
|
required?: boolean | undefined;
|
|
@@ -6565,7 +6582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6565
6582
|
hint?: string | undefined;
|
|
6566
6583
|
messages?: {
|
|
6567
6584
|
text: string;
|
|
6568
|
-
type: "
|
|
6585
|
+
type: "success" | "error" | "info" | "warning";
|
|
6569
6586
|
id?: number | undefined;
|
|
6570
6587
|
}[] | undefined;
|
|
6571
6588
|
required?: boolean | undefined;
|
|
@@ -6590,7 +6607,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6590
6607
|
hint?: string | undefined;
|
|
6591
6608
|
messages?: {
|
|
6592
6609
|
text: string;
|
|
6593
|
-
type: "
|
|
6610
|
+
type: "success" | "error" | "info" | "warning";
|
|
6594
6611
|
id?: number | undefined;
|
|
6595
6612
|
}[] | undefined;
|
|
6596
6613
|
required?: boolean | undefined;
|
|
@@ -6611,7 +6628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6611
6628
|
hint?: string | undefined;
|
|
6612
6629
|
messages?: {
|
|
6613
6630
|
text: string;
|
|
6614
|
-
type: "
|
|
6631
|
+
type: "success" | "error" | "info" | "warning";
|
|
6615
6632
|
id?: number | undefined;
|
|
6616
6633
|
}[] | undefined;
|
|
6617
6634
|
required?: boolean | undefined;
|
|
@@ -6632,7 +6649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6632
6649
|
hint?: string | undefined;
|
|
6633
6650
|
messages?: {
|
|
6634
6651
|
text: string;
|
|
6635
|
-
type: "
|
|
6652
|
+
type: "success" | "error" | "info" | "warning";
|
|
6636
6653
|
id?: number | undefined;
|
|
6637
6654
|
}[] | undefined;
|
|
6638
6655
|
required?: boolean | undefined;
|
|
@@ -6862,7 +6879,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6862
6879
|
};
|
|
6863
6880
|
};
|
|
6864
6881
|
output: {
|
|
6865
|
-
prompt: "status" | "
|
|
6882
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
6866
6883
|
language: string;
|
|
6867
6884
|
}[];
|
|
6868
6885
|
outputFormat: "json";
|
|
@@ -6900,7 +6917,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6900
6917
|
$get: {
|
|
6901
6918
|
input: {
|
|
6902
6919
|
param: {
|
|
6903
|
-
prompt: "status" | "
|
|
6920
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
6904
6921
|
language: string;
|
|
6905
6922
|
};
|
|
6906
6923
|
} & {
|
|
@@ -6922,7 +6939,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6922
6939
|
$put: {
|
|
6923
6940
|
input: {
|
|
6924
6941
|
param: {
|
|
6925
|
-
prompt: "status" | "
|
|
6942
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
6926
6943
|
language: string;
|
|
6927
6944
|
};
|
|
6928
6945
|
} & {
|
|
@@ -6946,7 +6963,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6946
6963
|
$delete: {
|
|
6947
6964
|
input: {
|
|
6948
6965
|
param: {
|
|
6949
|
-
prompt: "status" | "
|
|
6966
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
6950
6967
|
language: string;
|
|
6951
6968
|
};
|
|
6952
6969
|
} & {
|
|
@@ -7038,7 +7055,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7038
7055
|
active?: boolean | undefined;
|
|
7039
7056
|
} | undefined;
|
|
7040
7057
|
signup?: {
|
|
7041
|
-
status?: "
|
|
7058
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7042
7059
|
verification?: {
|
|
7043
7060
|
active?: boolean | undefined;
|
|
7044
7061
|
} | undefined;
|
|
@@ -7055,7 +7072,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7055
7072
|
active?: boolean | undefined;
|
|
7056
7073
|
} | undefined;
|
|
7057
7074
|
signup?: {
|
|
7058
|
-
status?: "
|
|
7075
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7059
7076
|
} | undefined;
|
|
7060
7077
|
validation?: {
|
|
7061
7078
|
max_length?: number | undefined;
|
|
@@ -7072,7 +7089,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7072
7089
|
active?: boolean | undefined;
|
|
7073
7090
|
} | undefined;
|
|
7074
7091
|
signup?: {
|
|
7075
|
-
status?: "
|
|
7092
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7076
7093
|
} | undefined;
|
|
7077
7094
|
} | undefined;
|
|
7078
7095
|
} | undefined;
|
|
@@ -7172,7 +7189,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7172
7189
|
active?: boolean | undefined;
|
|
7173
7190
|
} | undefined;
|
|
7174
7191
|
signup?: {
|
|
7175
|
-
status?: "
|
|
7192
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7176
7193
|
verification?: {
|
|
7177
7194
|
active?: boolean | undefined;
|
|
7178
7195
|
} | undefined;
|
|
@@ -7189,7 +7206,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7189
7206
|
active?: boolean | undefined;
|
|
7190
7207
|
} | undefined;
|
|
7191
7208
|
signup?: {
|
|
7192
|
-
status?: "
|
|
7209
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7193
7210
|
} | undefined;
|
|
7194
7211
|
validation?: {
|
|
7195
7212
|
max_length?: number | undefined;
|
|
@@ -7206,7 +7223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7206
7223
|
active?: boolean | undefined;
|
|
7207
7224
|
} | undefined;
|
|
7208
7225
|
signup?: {
|
|
7209
|
-
status?: "
|
|
7226
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7210
7227
|
} | undefined;
|
|
7211
7228
|
} | undefined;
|
|
7212
7229
|
} | undefined;
|
|
@@ -7321,7 +7338,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7321
7338
|
active?: boolean | undefined;
|
|
7322
7339
|
} | undefined;
|
|
7323
7340
|
signup?: {
|
|
7324
|
-
status?: "
|
|
7341
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7325
7342
|
verification?: {
|
|
7326
7343
|
active?: boolean | undefined;
|
|
7327
7344
|
} | undefined;
|
|
@@ -7338,7 +7355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7338
7355
|
active?: boolean | undefined;
|
|
7339
7356
|
} | undefined;
|
|
7340
7357
|
signup?: {
|
|
7341
|
-
status?: "
|
|
7358
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7342
7359
|
} | undefined;
|
|
7343
7360
|
validation?: {
|
|
7344
7361
|
max_length?: number | undefined;
|
|
@@ -7355,7 +7372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7355
7372
|
active?: boolean | undefined;
|
|
7356
7373
|
} | undefined;
|
|
7357
7374
|
signup?: {
|
|
7358
|
-
status?: "
|
|
7375
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7359
7376
|
} | undefined;
|
|
7360
7377
|
} | undefined;
|
|
7361
7378
|
} | undefined;
|
|
@@ -7500,7 +7517,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7500
7517
|
active?: boolean | undefined;
|
|
7501
7518
|
} | undefined;
|
|
7502
7519
|
signup?: {
|
|
7503
|
-
status?: "
|
|
7520
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7504
7521
|
verification?: {
|
|
7505
7522
|
active?: boolean | undefined;
|
|
7506
7523
|
} | undefined;
|
|
@@ -7517,7 +7534,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7517
7534
|
active?: boolean | undefined;
|
|
7518
7535
|
} | undefined;
|
|
7519
7536
|
signup?: {
|
|
7520
|
-
status?: "
|
|
7537
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7521
7538
|
} | undefined;
|
|
7522
7539
|
validation?: {
|
|
7523
7540
|
max_length?: number | undefined;
|
|
@@ -7534,7 +7551,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7534
7551
|
active?: boolean | undefined;
|
|
7535
7552
|
} | undefined;
|
|
7536
7553
|
signup?: {
|
|
7537
|
-
status?: "
|
|
7554
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7538
7555
|
} | undefined;
|
|
7539
7556
|
} | undefined;
|
|
7540
7557
|
} | undefined;
|
|
@@ -7658,7 +7675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7658
7675
|
active?: boolean | undefined;
|
|
7659
7676
|
} | undefined;
|
|
7660
7677
|
signup?: {
|
|
7661
|
-
status?: "
|
|
7678
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7662
7679
|
verification?: {
|
|
7663
7680
|
active?: boolean | undefined;
|
|
7664
7681
|
} | undefined;
|
|
@@ -7675,7 +7692,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7675
7692
|
active?: boolean | undefined;
|
|
7676
7693
|
} | undefined;
|
|
7677
7694
|
signup?: {
|
|
7678
|
-
status?: "
|
|
7695
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7679
7696
|
} | undefined;
|
|
7680
7697
|
validation?: {
|
|
7681
7698
|
max_length?: number | undefined;
|
|
@@ -7692,7 +7709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7692
7709
|
active?: boolean | undefined;
|
|
7693
7710
|
} | undefined;
|
|
7694
7711
|
signup?: {
|
|
7695
|
-
status?: "
|
|
7712
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7696
7713
|
} | undefined;
|
|
7697
7714
|
} | undefined;
|
|
7698
7715
|
} | undefined;
|
|
@@ -7808,7 +7825,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7808
7825
|
};
|
|
7809
7826
|
} | {
|
|
7810
7827
|
mode: "inline";
|
|
7811
|
-
status: "
|
|
7828
|
+
status: "success" | "error";
|
|
7812
7829
|
connection_id: string;
|
|
7813
7830
|
connection_name: string;
|
|
7814
7831
|
strategy: string;
|
|
@@ -7844,7 +7861,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7844
7861
|
tenant_id: string;
|
|
7845
7862
|
created_at: string;
|
|
7846
7863
|
updated_at: string;
|
|
7847
|
-
deploymentStatus: "
|
|
7864
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7848
7865
|
secrets?: {
|
|
7849
7866
|
[x: string]: string;
|
|
7850
7867
|
} | undefined;
|
|
@@ -7934,7 +7951,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7934
7951
|
tenant_id: string;
|
|
7935
7952
|
created_at: string;
|
|
7936
7953
|
updated_at: string;
|
|
7937
|
-
deploymentStatus: "
|
|
7954
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7938
7955
|
secrets?: {
|
|
7939
7956
|
[x: string]: string;
|
|
7940
7957
|
} | undefined;
|
|
@@ -8447,7 +8464,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8447
8464
|
log_type: string;
|
|
8448
8465
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8449
8466
|
actor: {
|
|
8450
|
-
type: "user" | "
|
|
8467
|
+
type: "user" | "system" | "client_credentials" | "admin" | "api_key";
|
|
8451
8468
|
id?: string | undefined;
|
|
8452
8469
|
email?: string | undefined;
|
|
8453
8470
|
org_id?: string | undefined;
|
|
@@ -8755,7 +8772,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8755
8772
|
created_at: string;
|
|
8756
8773
|
updated_at: string;
|
|
8757
8774
|
name: string;
|
|
8758
|
-
provider: "auth0" | "
|
|
8775
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8759
8776
|
connection: string;
|
|
8760
8777
|
enabled: boolean;
|
|
8761
8778
|
credentials: {
|
|
@@ -8787,7 +8804,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8787
8804
|
created_at: string;
|
|
8788
8805
|
updated_at: string;
|
|
8789
8806
|
name: string;
|
|
8790
|
-
provider: "auth0" | "
|
|
8807
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8791
8808
|
connection: string;
|
|
8792
8809
|
enabled: boolean;
|
|
8793
8810
|
credentials: {
|
|
@@ -8813,7 +8830,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8813
8830
|
} & {
|
|
8814
8831
|
json: {
|
|
8815
8832
|
name: string;
|
|
8816
|
-
provider: "auth0" | "
|
|
8833
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8817
8834
|
connection: string;
|
|
8818
8835
|
credentials: {
|
|
8819
8836
|
domain: string;
|
|
@@ -8830,7 +8847,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8830
8847
|
created_at: string;
|
|
8831
8848
|
updated_at: string;
|
|
8832
8849
|
name: string;
|
|
8833
|
-
provider: "auth0" | "
|
|
8850
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8834
8851
|
connection: string;
|
|
8835
8852
|
enabled: boolean;
|
|
8836
8853
|
credentials: {
|
|
@@ -8861,7 +8878,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8861
8878
|
json: {
|
|
8862
8879
|
id?: string | undefined;
|
|
8863
8880
|
name?: string | undefined;
|
|
8864
|
-
provider?: "auth0" | "
|
|
8881
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8865
8882
|
connection?: string | undefined;
|
|
8866
8883
|
enabled?: boolean | undefined;
|
|
8867
8884
|
credentials?: {
|
|
@@ -8877,7 +8894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8877
8894
|
created_at: string;
|
|
8878
8895
|
updated_at: string;
|
|
8879
8896
|
name: string;
|
|
8880
|
-
provider: "auth0" | "
|
|
8897
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8881
8898
|
connection: string;
|
|
8882
8899
|
enabled: boolean;
|
|
8883
8900
|
credentials: {
|
|
@@ -8925,7 +8942,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8925
8942
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8926
8943
|
};
|
|
8927
8944
|
id: string;
|
|
8928
|
-
status: "
|
|
8945
|
+
status: "suspended" | "active" | "paused";
|
|
8929
8946
|
filters?: {
|
|
8930
8947
|
type: string;
|
|
8931
8948
|
name: string;
|
|
@@ -8957,7 +8974,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8957
8974
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8958
8975
|
};
|
|
8959
8976
|
id: string;
|
|
8960
|
-
status: "
|
|
8977
|
+
status: "suspended" | "active" | "paused";
|
|
8961
8978
|
filters?: {
|
|
8962
8979
|
type: string;
|
|
8963
8980
|
name: string;
|
|
@@ -8982,7 +8999,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8982
8999
|
name: string;
|
|
8983
9000
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8984
9001
|
sink: Record<string, unknown>;
|
|
8985
|
-
status?: "
|
|
9002
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8986
9003
|
filters?: {
|
|
8987
9004
|
type: string;
|
|
8988
9005
|
name: string;
|
|
@@ -8997,7 +9014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8997
9014
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8998
9015
|
};
|
|
8999
9016
|
id: string;
|
|
9000
|
-
status: "
|
|
9017
|
+
status: "suspended" | "active" | "paused";
|
|
9001
9018
|
filters?: {
|
|
9002
9019
|
type: string;
|
|
9003
9020
|
name: string;
|
|
@@ -9032,7 +9049,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9032
9049
|
}[] | undefined;
|
|
9033
9050
|
isPriority?: boolean | undefined;
|
|
9034
9051
|
id?: string | undefined;
|
|
9035
|
-
status?: "
|
|
9052
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9036
9053
|
created_at?: string | undefined;
|
|
9037
9054
|
updated_at?: string | undefined;
|
|
9038
9055
|
};
|
|
@@ -9044,7 +9061,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9044
9061
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9045
9062
|
};
|
|
9046
9063
|
id: string;
|
|
9047
|
-
status: "
|
|
9064
|
+
status: "suspended" | "active" | "paused";
|
|
9048
9065
|
filters?: {
|
|
9049
9066
|
type: string;
|
|
9050
9067
|
name: string;
|
|
@@ -9095,7 +9112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9095
9112
|
};
|
|
9096
9113
|
};
|
|
9097
9114
|
output: {
|
|
9098
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
9115
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9099
9116
|
date: string;
|
|
9100
9117
|
isMobile: boolean;
|
|
9101
9118
|
log_id: string;
|
|
@@ -9134,7 +9151,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9134
9151
|
limit: number;
|
|
9135
9152
|
length: number;
|
|
9136
9153
|
logs: {
|
|
9137
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
9154
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9138
9155
|
date: string;
|
|
9139
9156
|
isMobile: boolean;
|
|
9140
9157
|
log_id: string;
|
|
@@ -9188,7 +9205,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9188
9205
|
};
|
|
9189
9206
|
};
|
|
9190
9207
|
output: {
|
|
9191
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
9208
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9192
9209
|
date: string;
|
|
9193
9210
|
isMobile: boolean;
|
|
9194
9211
|
log_id: string;
|
|
@@ -10264,7 +10281,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10264
10281
|
active?: boolean | undefined;
|
|
10265
10282
|
} | undefined;
|
|
10266
10283
|
signup?: {
|
|
10267
|
-
status?: "
|
|
10284
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10268
10285
|
verification?: {
|
|
10269
10286
|
active?: boolean | undefined;
|
|
10270
10287
|
} | undefined;
|
|
@@ -10281,7 +10298,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10281
10298
|
active?: boolean | undefined;
|
|
10282
10299
|
} | undefined;
|
|
10283
10300
|
signup?: {
|
|
10284
|
-
status?: "
|
|
10301
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10285
10302
|
} | undefined;
|
|
10286
10303
|
validation?: {
|
|
10287
10304
|
max_length?: number | undefined;
|
|
@@ -10298,7 +10315,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10298
10315
|
active?: boolean | undefined;
|
|
10299
10316
|
} | undefined;
|
|
10300
10317
|
signup?: {
|
|
10301
|
-
status?: "
|
|
10318
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10302
10319
|
} | undefined;
|
|
10303
10320
|
} | undefined;
|
|
10304
10321
|
} | undefined;
|
|
@@ -10418,7 +10435,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10418
10435
|
active?: boolean | undefined;
|
|
10419
10436
|
} | undefined;
|
|
10420
10437
|
signup?: {
|
|
10421
|
-
status?: "
|
|
10438
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10422
10439
|
verification?: {
|
|
10423
10440
|
active?: boolean | undefined;
|
|
10424
10441
|
} | undefined;
|
|
@@ -10435,7 +10452,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10435
10452
|
active?: boolean | undefined;
|
|
10436
10453
|
} | undefined;
|
|
10437
10454
|
signup?: {
|
|
10438
|
-
status?: "
|
|
10455
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10439
10456
|
} | undefined;
|
|
10440
10457
|
validation?: {
|
|
10441
10458
|
max_length?: number | undefined;
|
|
@@ -10452,7 +10469,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10452
10469
|
active?: boolean | undefined;
|
|
10453
10470
|
} | undefined;
|
|
10454
10471
|
signup?: {
|
|
10455
|
-
status?: "
|
|
10472
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10456
10473
|
} | undefined;
|
|
10457
10474
|
} | undefined;
|
|
10458
10475
|
} | undefined;
|
|
@@ -11406,7 +11423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11406
11423
|
};
|
|
11407
11424
|
};
|
|
11408
11425
|
output: {
|
|
11409
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
11426
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11410
11427
|
date: string;
|
|
11411
11428
|
isMobile: boolean;
|
|
11412
11429
|
log_id: string;
|
|
@@ -11445,7 +11462,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11445
11462
|
limit: number;
|
|
11446
11463
|
length: number;
|
|
11447
11464
|
logs: {
|
|
11448
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
11465
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11449
11466
|
date: string;
|
|
11450
11467
|
isMobile: boolean;
|
|
11451
11468
|
log_id: string;
|
|
@@ -11760,7 +11777,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11760
11777
|
};
|
|
11761
11778
|
} & {
|
|
11762
11779
|
json: {
|
|
11763
|
-
template: "
|
|
11780
|
+
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";
|
|
11764
11781
|
body: string;
|
|
11765
11782
|
from: string;
|
|
11766
11783
|
subject: string;
|
|
@@ -11781,7 +11798,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11781
11798
|
};
|
|
11782
11799
|
} & {
|
|
11783
11800
|
json: {
|
|
11784
|
-
template: "
|
|
11801
|
+
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";
|
|
11785
11802
|
body: string;
|
|
11786
11803
|
from: string;
|
|
11787
11804
|
subject: string;
|
|
@@ -11793,7 +11810,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11793
11810
|
};
|
|
11794
11811
|
};
|
|
11795
11812
|
output: {
|
|
11796
|
-
template: "
|
|
11813
|
+
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";
|
|
11797
11814
|
body: string;
|
|
11798
11815
|
from: string;
|
|
11799
11816
|
subject: string;
|
|
@@ -11816,7 +11833,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11816
11833
|
};
|
|
11817
11834
|
};
|
|
11818
11835
|
output: {
|
|
11819
|
-
name: "
|
|
11836
|
+
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";
|
|
11820
11837
|
body: string;
|
|
11821
11838
|
subject: string;
|
|
11822
11839
|
}[];
|
|
@@ -11829,7 +11846,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11829
11846
|
$get: {
|
|
11830
11847
|
input: {
|
|
11831
11848
|
param: {
|
|
11832
|
-
templateName: "
|
|
11849
|
+
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";
|
|
11833
11850
|
};
|
|
11834
11851
|
} & {
|
|
11835
11852
|
header: {
|
|
@@ -11842,7 +11859,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11842
11859
|
} | {
|
|
11843
11860
|
input: {
|
|
11844
11861
|
param: {
|
|
11845
|
-
templateName: "
|
|
11862
|
+
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";
|
|
11846
11863
|
};
|
|
11847
11864
|
} & {
|
|
11848
11865
|
header: {
|
|
@@ -11850,7 +11867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11850
11867
|
};
|
|
11851
11868
|
};
|
|
11852
11869
|
output: {
|
|
11853
|
-
template: "
|
|
11870
|
+
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";
|
|
11854
11871
|
body: string;
|
|
11855
11872
|
from: string;
|
|
11856
11873
|
subject: string;
|
|
@@ -11869,7 +11886,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11869
11886
|
$put: {
|
|
11870
11887
|
input: {
|
|
11871
11888
|
param: {
|
|
11872
|
-
templateName: "
|
|
11889
|
+
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";
|
|
11873
11890
|
};
|
|
11874
11891
|
} & {
|
|
11875
11892
|
header: {
|
|
@@ -11877,7 +11894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11877
11894
|
};
|
|
11878
11895
|
} & {
|
|
11879
11896
|
json: {
|
|
11880
|
-
template: "
|
|
11897
|
+
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";
|
|
11881
11898
|
body: string;
|
|
11882
11899
|
subject: string;
|
|
11883
11900
|
syntax?: "liquid" | undefined;
|
|
@@ -11889,7 +11906,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11889
11906
|
};
|
|
11890
11907
|
};
|
|
11891
11908
|
output: {
|
|
11892
|
-
template: "
|
|
11909
|
+
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";
|
|
11893
11910
|
body: string;
|
|
11894
11911
|
from: string;
|
|
11895
11912
|
subject: string;
|
|
@@ -11908,7 +11925,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11908
11925
|
$patch: {
|
|
11909
11926
|
input: {
|
|
11910
11927
|
param: {
|
|
11911
|
-
templateName: "
|
|
11928
|
+
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";
|
|
11912
11929
|
};
|
|
11913
11930
|
} & {
|
|
11914
11931
|
header: {
|
|
@@ -11916,7 +11933,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11916
11933
|
};
|
|
11917
11934
|
} & {
|
|
11918
11935
|
json: {
|
|
11919
|
-
template?: "
|
|
11936
|
+
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;
|
|
11920
11937
|
body?: string | undefined;
|
|
11921
11938
|
from?: string | undefined;
|
|
11922
11939
|
subject?: string | undefined;
|
|
@@ -11933,7 +11950,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11933
11950
|
} | {
|
|
11934
11951
|
input: {
|
|
11935
11952
|
param: {
|
|
11936
|
-
templateName: "
|
|
11953
|
+
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";
|
|
11937
11954
|
};
|
|
11938
11955
|
} & {
|
|
11939
11956
|
header: {
|
|
@@ -11941,7 +11958,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11941
11958
|
};
|
|
11942
11959
|
} & {
|
|
11943
11960
|
json: {
|
|
11944
|
-
template?: "
|
|
11961
|
+
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;
|
|
11945
11962
|
body?: string | undefined;
|
|
11946
11963
|
from?: string | undefined;
|
|
11947
11964
|
subject?: string | undefined;
|
|
@@ -11953,7 +11970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11953
11970
|
};
|
|
11954
11971
|
};
|
|
11955
11972
|
output: {
|
|
11956
|
-
template: "
|
|
11973
|
+
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";
|
|
11957
11974
|
body: string;
|
|
11958
11975
|
from: string;
|
|
11959
11976
|
subject: string;
|
|
@@ -11972,7 +11989,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11972
11989
|
$delete: {
|
|
11973
11990
|
input: {
|
|
11974
11991
|
param: {
|
|
11975
|
-
templateName: "
|
|
11992
|
+
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";
|
|
11976
11993
|
};
|
|
11977
11994
|
} & {
|
|
11978
11995
|
header: {
|
|
@@ -11985,7 +12002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11985
12002
|
} | {
|
|
11986
12003
|
input: {
|
|
11987
12004
|
param: {
|
|
11988
|
-
templateName: "
|
|
12005
|
+
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";
|
|
11989
12006
|
};
|
|
11990
12007
|
} & {
|
|
11991
12008
|
header: {
|
|
@@ -12002,7 +12019,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12002
12019
|
$post: {
|
|
12003
12020
|
input: {
|
|
12004
12021
|
param: {
|
|
12005
|
-
templateName: "
|
|
12022
|
+
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";
|
|
12006
12023
|
};
|
|
12007
12024
|
} & {
|
|
12008
12025
|
header: {
|
|
@@ -12285,7 +12302,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12285
12302
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12286
12303
|
custom_domain_id: string;
|
|
12287
12304
|
primary: boolean;
|
|
12288
|
-
status: "
|
|
12305
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12289
12306
|
verification_method?: "txt" | undefined;
|
|
12290
12307
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12291
12308
|
domain_metadata?: {
|
|
@@ -12326,7 +12343,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12326
12343
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12327
12344
|
custom_domain_id: string;
|
|
12328
12345
|
primary: boolean;
|
|
12329
|
-
status: "
|
|
12346
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12330
12347
|
verification_method?: "txt" | undefined;
|
|
12331
12348
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12332
12349
|
domain_metadata?: {
|
|
@@ -12390,7 +12407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12390
12407
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12391
12408
|
custom_domain_id: string;
|
|
12392
12409
|
primary: boolean;
|
|
12393
|
-
status: "
|
|
12410
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12394
12411
|
verification_method?: "txt" | undefined;
|
|
12395
12412
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12396
12413
|
domain_metadata?: {
|
|
@@ -12437,7 +12454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12437
12454
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12438
12455
|
custom_domain_id: string;
|
|
12439
12456
|
primary: boolean;
|
|
12440
|
-
status: "
|
|
12457
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12441
12458
|
verification_method?: "txt" | undefined;
|
|
12442
12459
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12443
12460
|
domain_metadata?: {
|
|
@@ -12483,7 +12500,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12483
12500
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12484
12501
|
custom_domain_id: string;
|
|
12485
12502
|
primary: boolean;
|
|
12486
|
-
status: "
|
|
12503
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12487
12504
|
verification_method?: "txt" | undefined;
|
|
12488
12505
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12489
12506
|
domain_metadata?: {
|
|
@@ -12524,7 +12541,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12524
12541
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12525
12542
|
custom_domain_id: string;
|
|
12526
12543
|
primary: boolean;
|
|
12527
|
-
status: "
|
|
12544
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12528
12545
|
verification_method?: "txt" | undefined;
|
|
12529
12546
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12530
12547
|
domain_metadata?: {
|
|
@@ -12623,12 +12640,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12623
12640
|
background_color: string;
|
|
12624
12641
|
background_image_url: string;
|
|
12625
12642
|
page_layout: "center" | "left" | "right";
|
|
12626
|
-
logo_placement?: "
|
|
12643
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12627
12644
|
};
|
|
12628
12645
|
widget: {
|
|
12629
12646
|
header_text_alignment: "center" | "left" | "right";
|
|
12630
12647
|
logo_height: number;
|
|
12631
|
-
logo_position: "
|
|
12648
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12632
12649
|
logo_url: string;
|
|
12633
12650
|
social_buttons_layout: "bottom" | "top";
|
|
12634
12651
|
};
|
|
@@ -12713,12 +12730,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12713
12730
|
background_color: string;
|
|
12714
12731
|
background_image_url: string;
|
|
12715
12732
|
page_layout: "center" | "left" | "right";
|
|
12716
|
-
logo_placement?: "
|
|
12733
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12717
12734
|
};
|
|
12718
12735
|
widget: {
|
|
12719
12736
|
header_text_alignment: "center" | "left" | "right";
|
|
12720
12737
|
logo_height: number;
|
|
12721
|
-
logo_position: "
|
|
12738
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12722
12739
|
logo_url: string;
|
|
12723
12740
|
social_buttons_layout: "bottom" | "top";
|
|
12724
12741
|
};
|
|
@@ -12792,12 +12809,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12792
12809
|
background_color: string;
|
|
12793
12810
|
background_image_url: string;
|
|
12794
12811
|
page_layout: "center" | "left" | "right";
|
|
12795
|
-
logo_placement?: "
|
|
12812
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12796
12813
|
};
|
|
12797
12814
|
widget: {
|
|
12798
12815
|
header_text_alignment: "center" | "left" | "right";
|
|
12799
12816
|
logo_height: number;
|
|
12800
|
-
logo_position: "
|
|
12817
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12801
12818
|
logo_url: string;
|
|
12802
12819
|
social_buttons_layout: "bottom" | "top";
|
|
12803
12820
|
};
|
|
@@ -12954,7 +12971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12954
12971
|
} & {
|
|
12955
12972
|
json: {
|
|
12956
12973
|
body?: string | undefined;
|
|
12957
|
-
screen?: "password" | "
|
|
12974
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
12958
12975
|
branding?: {
|
|
12959
12976
|
colors?: {
|
|
12960
12977
|
primary: string;
|
|
@@ -13040,12 +13057,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13040
13057
|
background_color: string;
|
|
13041
13058
|
background_image_url: string;
|
|
13042
13059
|
page_layout: "center" | "left" | "right";
|
|
13043
|
-
logo_placement?: "
|
|
13060
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13044
13061
|
} | undefined;
|
|
13045
13062
|
widget?: {
|
|
13046
13063
|
header_text_alignment: "center" | "left" | "right";
|
|
13047
13064
|
logo_height: number;
|
|
13048
|
-
logo_position: "
|
|
13065
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13049
13066
|
logo_url: string;
|
|
13050
13067
|
social_buttons_layout: "bottom" | "top";
|
|
13051
13068
|
} | undefined;
|
|
@@ -13123,7 +13140,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13123
13140
|
json: {
|
|
13124
13141
|
bindings: {
|
|
13125
13142
|
ref: {
|
|
13126
|
-
type?: "
|
|
13143
|
+
type?: "action_id" | "action_name" | undefined;
|
|
13127
13144
|
value?: string | undefined;
|
|
13128
13145
|
id?: string | undefined;
|
|
13129
13146
|
name?: string | undefined;
|
|
@@ -13198,7 +13215,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13198
13215
|
output: {
|
|
13199
13216
|
id: string;
|
|
13200
13217
|
trigger_id: string;
|
|
13201
|
-
status: "
|
|
13218
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
13202
13219
|
results: {
|
|
13203
13220
|
action_name: string;
|
|
13204
13221
|
error: {
|
|
@@ -13973,7 +13990,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13973
13990
|
message: string;
|
|
13974
13991
|
};
|
|
13975
13992
|
outputFormat: "json";
|
|
13976
|
-
status:
|
|
13993
|
+
status: 500;
|
|
13977
13994
|
} | {
|
|
13978
13995
|
input: {
|
|
13979
13996
|
query: {
|
|
@@ -13991,7 +14008,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13991
14008
|
message: string;
|
|
13992
14009
|
};
|
|
13993
14010
|
outputFormat: "json";
|
|
13994
|
-
status:
|
|
14011
|
+
status: 400;
|
|
13995
14012
|
};
|
|
13996
14013
|
};
|
|
13997
14014
|
} & {
|
|
@@ -14029,7 +14046,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14029
14046
|
message: string;
|
|
14030
14047
|
};
|
|
14031
14048
|
outputFormat: "json";
|
|
14032
|
-
status:
|
|
14049
|
+
status: 500;
|
|
14033
14050
|
} | {
|
|
14034
14051
|
input: {
|
|
14035
14052
|
form: {
|
|
@@ -14047,7 +14064,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14047
14064
|
message: string;
|
|
14048
14065
|
};
|
|
14049
14066
|
outputFormat: "json";
|
|
14050
|
-
status:
|
|
14067
|
+
status: 400;
|
|
14051
14068
|
};
|
|
14052
14069
|
};
|
|
14053
14070
|
}, "/login/callback"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -14085,7 +14102,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14085
14102
|
message: string;
|
|
14086
14103
|
};
|
|
14087
14104
|
outputFormat: "json";
|
|
14088
|
-
status:
|
|
14105
|
+
status: 500;
|
|
14089
14106
|
} | {
|
|
14090
14107
|
input: {
|
|
14091
14108
|
query: {
|
|
@@ -14103,7 +14120,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14103
14120
|
message: string;
|
|
14104
14121
|
};
|
|
14105
14122
|
outputFormat: "json";
|
|
14106
|
-
status:
|
|
14123
|
+
status: 400;
|
|
14107
14124
|
};
|
|
14108
14125
|
};
|
|
14109
14126
|
} & {
|
|
@@ -14141,7 +14158,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14141
14158
|
message: string;
|
|
14142
14159
|
};
|
|
14143
14160
|
outputFormat: "json";
|
|
14144
|
-
status:
|
|
14161
|
+
status: 500;
|
|
14145
14162
|
} | {
|
|
14146
14163
|
input: {
|
|
14147
14164
|
form: {
|
|
@@ -14159,7 +14176,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14159
14176
|
message: string;
|
|
14160
14177
|
};
|
|
14161
14178
|
outputFormat: "json";
|
|
14162
|
-
status:
|
|
14179
|
+
status: 400;
|
|
14163
14180
|
};
|
|
14164
14181
|
};
|
|
14165
14182
|
}, "/callback"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -14369,7 +14386,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14369
14386
|
client_id: string;
|
|
14370
14387
|
redirect_url?: string | undefined;
|
|
14371
14388
|
login_hint?: string | undefined;
|
|
14372
|
-
screen_hint?: "
|
|
14389
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14373
14390
|
};
|
|
14374
14391
|
};
|
|
14375
14392
|
output: {};
|
|
@@ -14381,7 +14398,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14381
14398
|
client_id: string;
|
|
14382
14399
|
redirect_url?: string | undefined;
|
|
14383
14400
|
login_hint?: string | undefined;
|
|
14384
|
-
screen_hint?: "
|
|
14401
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
14385
14402
|
};
|
|
14386
14403
|
};
|
|
14387
14404
|
output: {
|
|
@@ -14659,18 +14676,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14659
14676
|
send: "code" | "link";
|
|
14660
14677
|
authParams: {
|
|
14661
14678
|
username?: string | undefined;
|
|
14662
|
-
audience?: string | undefined;
|
|
14663
14679
|
scope?: string | undefined;
|
|
14664
14680
|
state?: string | undefined;
|
|
14681
|
+
audience?: string | undefined;
|
|
14665
14682
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14666
14683
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14667
|
-
|
|
14668
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14669
|
-
redirect_uri?: string | undefined;
|
|
14670
|
-
nonce?: string | undefined;
|
|
14684
|
+
prompt?: string | undefined;
|
|
14671
14685
|
act_as?: string | undefined;
|
|
14686
|
+
redirect_uri?: string | undefined;
|
|
14672
14687
|
organization?: string | undefined;
|
|
14673
|
-
|
|
14688
|
+
nonce?: string | undefined;
|
|
14689
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14690
|
+
code_challenge?: string | undefined;
|
|
14674
14691
|
ui_locales?: string | undefined;
|
|
14675
14692
|
max_age?: number | undefined;
|
|
14676
14693
|
acr_values?: string | undefined;
|
|
@@ -14695,18 +14712,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14695
14712
|
send: "code" | "link";
|
|
14696
14713
|
authParams: {
|
|
14697
14714
|
username?: string | undefined;
|
|
14698
|
-
audience?: string | undefined;
|
|
14699
14715
|
scope?: string | undefined;
|
|
14700
14716
|
state?: string | undefined;
|
|
14717
|
+
audience?: string | undefined;
|
|
14701
14718
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14702
14719
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14703
|
-
|
|
14704
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14705
|
-
redirect_uri?: string | undefined;
|
|
14706
|
-
nonce?: string | undefined;
|
|
14720
|
+
prompt?: string | undefined;
|
|
14707
14721
|
act_as?: string | undefined;
|
|
14722
|
+
redirect_uri?: string | undefined;
|
|
14708
14723
|
organization?: string | undefined;
|
|
14709
|
-
|
|
14724
|
+
nonce?: string | undefined;
|
|
14725
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14726
|
+
code_challenge?: string | undefined;
|
|
14710
14727
|
ui_locales?: string | undefined;
|
|
14711
14728
|
max_age?: number | undefined;
|
|
14712
14729
|
acr_values?: string | undefined;
|
|
@@ -14771,7 +14788,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14771
14788
|
error_description?: string | undefined;
|
|
14772
14789
|
};
|
|
14773
14790
|
outputFormat: "json";
|
|
14774
|
-
status:
|
|
14791
|
+
status: 500;
|
|
14775
14792
|
} | {
|
|
14776
14793
|
input: {
|
|
14777
14794
|
query: {
|
|
@@ -14792,7 +14809,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14792
14809
|
error_description?: string | undefined;
|
|
14793
14810
|
};
|
|
14794
14811
|
outputFormat: "json";
|
|
14795
|
-
status:
|
|
14812
|
+
status: 400;
|
|
14796
14813
|
};
|
|
14797
14814
|
};
|
|
14798
14815
|
}, "/passwordless"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -14936,7 +14953,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14936
14953
|
client_id: string;
|
|
14937
14954
|
username: string;
|
|
14938
14955
|
otp: string;
|
|
14939
|
-
realm: "
|
|
14956
|
+
realm: "sms" | "email";
|
|
14940
14957
|
} | {
|
|
14941
14958
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14942
14959
|
subject_token: string;
|
|
@@ -14983,7 +15000,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14983
15000
|
client_id: string;
|
|
14984
15001
|
username: string;
|
|
14985
15002
|
otp: string;
|
|
14986
|
-
realm: "
|
|
15003
|
+
realm: "sms" | "email";
|
|
14987
15004
|
} | {
|
|
14988
15005
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14989
15006
|
subject_token: string;
|
|
@@ -15035,7 +15052,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15035
15052
|
client_id: string;
|
|
15036
15053
|
username: string;
|
|
15037
15054
|
otp: string;
|
|
15038
|
-
realm: "
|
|
15055
|
+
realm: "sms" | "email";
|
|
15039
15056
|
} | {
|
|
15040
15057
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15041
15058
|
subject_token: string;
|
|
@@ -15082,7 +15099,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15082
15099
|
client_id: string;
|
|
15083
15100
|
username: string;
|
|
15084
15101
|
otp: string;
|
|
15085
|
-
realm: "
|
|
15102
|
+
realm: "sms" | "email";
|
|
15086
15103
|
} | {
|
|
15087
15104
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15088
15105
|
subject_token: string;
|
|
@@ -15142,7 +15159,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15142
15159
|
client_id: string;
|
|
15143
15160
|
username: string;
|
|
15144
15161
|
otp: string;
|
|
15145
|
-
realm: "
|
|
15162
|
+
realm: "sms" | "email";
|
|
15146
15163
|
} | {
|
|
15147
15164
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15148
15165
|
subject_token: string;
|
|
@@ -15189,7 +15206,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15189
15206
|
client_id: string;
|
|
15190
15207
|
username: string;
|
|
15191
15208
|
otp: string;
|
|
15192
|
-
realm: "
|
|
15209
|
+
realm: "sms" | "email";
|
|
15193
15210
|
} | {
|
|
15194
15211
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15195
15212
|
subject_token: string;
|
|
@@ -15244,7 +15261,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15244
15261
|
client_id: string;
|
|
15245
15262
|
username: string;
|
|
15246
15263
|
otp: string;
|
|
15247
|
-
realm: "
|
|
15264
|
+
realm: "sms" | "email";
|
|
15248
15265
|
} | {
|
|
15249
15266
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15250
15267
|
subject_token: string;
|
|
@@ -15291,7 +15308,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15291
15308
|
client_id: string;
|
|
15292
15309
|
username: string;
|
|
15293
15310
|
otp: string;
|
|
15294
|
-
realm: "
|
|
15311
|
+
realm: "sms" | "email";
|
|
15295
15312
|
} | {
|
|
15296
15313
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15297
15314
|
subject_token: string;
|
|
@@ -15346,7 +15363,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15346
15363
|
client_id: string;
|
|
15347
15364
|
username: string;
|
|
15348
15365
|
otp: string;
|
|
15349
|
-
realm: "
|
|
15366
|
+
realm: "sms" | "email";
|
|
15350
15367
|
} | {
|
|
15351
15368
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15352
15369
|
subject_token: string;
|
|
@@ -15393,7 +15410,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15393
15410
|
client_id: string;
|
|
15394
15411
|
username: string;
|
|
15395
15412
|
otp: string;
|
|
15396
|
-
realm: "
|
|
15413
|
+
realm: "sms" | "email";
|
|
15397
15414
|
} | {
|
|
15398
15415
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15399
15416
|
subject_token: string;
|
|
@@ -15746,7 +15763,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15746
15763
|
};
|
|
15747
15764
|
output: {};
|
|
15748
15765
|
outputFormat: string;
|
|
15749
|
-
status:
|
|
15766
|
+
status: 500;
|
|
15750
15767
|
} | {
|
|
15751
15768
|
input: {
|
|
15752
15769
|
query: {
|
|
@@ -15755,7 +15772,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15755
15772
|
};
|
|
15756
15773
|
output: {};
|
|
15757
15774
|
outputFormat: string;
|
|
15758
|
-
status:
|
|
15775
|
+
status: 302;
|
|
15759
15776
|
} | {
|
|
15760
15777
|
input: {
|
|
15761
15778
|
query: {
|
|
@@ -15764,7 +15781,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15764
15781
|
};
|
|
15765
15782
|
output: {};
|
|
15766
15783
|
outputFormat: string;
|
|
15767
|
-
status:
|
|
15784
|
+
status: 400;
|
|
15768
15785
|
};
|
|
15769
15786
|
};
|
|
15770
15787
|
}, "/continue"> & import("hono/types").MergeSchemaPath<{
|
|
@@ -16613,7 +16630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16613
16630
|
$get: {
|
|
16614
16631
|
input: {
|
|
16615
16632
|
param: {
|
|
16616
|
-
screen: "
|
|
16633
|
+
screen: "login" | "signup" | "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";
|
|
16617
16634
|
};
|
|
16618
16635
|
} & {
|
|
16619
16636
|
query: {
|
|
@@ -16629,7 +16646,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16629
16646
|
} | {
|
|
16630
16647
|
input: {
|
|
16631
16648
|
param: {
|
|
16632
|
-
screen: "
|
|
16649
|
+
screen: "login" | "signup" | "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";
|
|
16633
16650
|
};
|
|
16634
16651
|
} & {
|
|
16635
16652
|
query: {
|
|
@@ -16645,7 +16662,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16645
16662
|
} | {
|
|
16646
16663
|
input: {
|
|
16647
16664
|
param: {
|
|
16648
|
-
screen: "
|
|
16665
|
+
screen: "login" | "signup" | "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";
|
|
16649
16666
|
};
|
|
16650
16667
|
} & {
|
|
16651
16668
|
query: {
|
|
@@ -16665,7 +16682,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16665
16682
|
$post: {
|
|
16666
16683
|
input: {
|
|
16667
16684
|
param: {
|
|
16668
|
-
screen: "
|
|
16685
|
+
screen: "login" | "signup" | "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";
|
|
16669
16686
|
};
|
|
16670
16687
|
} & {
|
|
16671
16688
|
query: {
|
|
@@ -16683,7 +16700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16683
16700
|
} | {
|
|
16684
16701
|
input: {
|
|
16685
16702
|
param: {
|
|
16686
|
-
screen: "
|
|
16703
|
+
screen: "login" | "signup" | "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";
|
|
16687
16704
|
};
|
|
16688
16705
|
} & {
|
|
16689
16706
|
query: {
|