authhero 9.6.4 → 9.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +144 -144
- package/dist/authhero.d.ts +286 -66
- package/dist/authhero.mjs +13592 -13476
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +17 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/helpers/revoke-user-refresh-tokens.d.ts +21 -0
- package/dist/types/index.d.ts +286 -66
- package/dist/types/routes/auth-api/index.d.ts +6 -6
- package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/index.d.ts +275 -55
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +5 -5
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/refresh_tokens.d.ts +7 -0
- package/dist/types/routes/management-api/users.d.ts +146 -0
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- 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/utils/user-id.d.ts +19 -1
- package/package.json +6 -6
|
@@ -737,15 +737,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
737
737
|
send: "code" | "link";
|
|
738
738
|
authParams: {
|
|
739
739
|
username?: string | undefined;
|
|
740
|
+
organization?: string | undefined;
|
|
740
741
|
audience?: string | undefined;
|
|
741
742
|
scope?: string | undefined;
|
|
742
743
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
743
744
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
744
745
|
state?: string | undefined;
|
|
745
|
-
organization?: string | undefined;
|
|
746
|
-
redirect_uri?: string | undefined;
|
|
747
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
748
746
|
code_challenge?: string | undefined;
|
|
747
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
748
|
+
redirect_uri?: string | undefined;
|
|
749
749
|
nonce?: string | undefined;
|
|
750
750
|
act_as?: string | undefined;
|
|
751
751
|
prompt?: string | undefined;
|
|
@@ -773,15 +773,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
773
773
|
send: "code" | "link";
|
|
774
774
|
authParams: {
|
|
775
775
|
username?: string | undefined;
|
|
776
|
+
organization?: string | undefined;
|
|
776
777
|
audience?: string | undefined;
|
|
777
778
|
scope?: string | undefined;
|
|
778
779
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
779
780
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
780
781
|
state?: string | undefined;
|
|
781
|
-
organization?: string | undefined;
|
|
782
|
-
redirect_uri?: string | undefined;
|
|
783
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
784
782
|
code_challenge?: string | undefined;
|
|
783
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
784
|
+
redirect_uri?: string | undefined;
|
|
785
785
|
nonce?: string | undefined;
|
|
786
786
|
act_as?: string | undefined;
|
|
787
787
|
prompt?: string | undefined;
|
|
@@ -15,15 +15,15 @@ export declare const passwordlessRoutes: OpenAPIHono<{
|
|
|
15
15
|
send: "code" | "link";
|
|
16
16
|
authParams: {
|
|
17
17
|
username?: string | undefined;
|
|
18
|
+
organization?: string | undefined;
|
|
18
19
|
audience?: string | undefined;
|
|
19
20
|
scope?: string | undefined;
|
|
20
21
|
response_type?: AuthorizationResponseType | undefined;
|
|
21
22
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
22
23
|
state?: string | undefined;
|
|
23
|
-
organization?: string | undefined;
|
|
24
|
-
redirect_uri?: string | undefined;
|
|
25
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
26
24
|
code_challenge?: string | undefined;
|
|
25
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
26
|
+
redirect_uri?: string | undefined;
|
|
27
27
|
nonce?: string | undefined;
|
|
28
28
|
act_as?: string | undefined;
|
|
29
29
|
prompt?: string | undefined;
|
|
@@ -51,15 +51,15 @@ export declare const passwordlessRoutes: OpenAPIHono<{
|
|
|
51
51
|
send: "code" | "link";
|
|
52
52
|
authParams: {
|
|
53
53
|
username?: string | undefined;
|
|
54
|
+
organization?: string | undefined;
|
|
54
55
|
audience?: string | undefined;
|
|
55
56
|
scope?: string | undefined;
|
|
56
57
|
response_type?: AuthorizationResponseType | undefined;
|
|
57
58
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
58
59
|
state?: string | undefined;
|
|
59
|
-
organization?: string | undefined;
|
|
60
|
-
redirect_uri?: string | undefined;
|
|
61
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
62
60
|
code_challenge?: string | undefined;
|
|
61
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
62
|
+
redirect_uri?: string | undefined;
|
|
63
63
|
nonce?: string | undefined;
|
|
64
64
|
act_as?: string | undefined;
|
|
65
65
|
prompt?: string | undefined;
|
|
@@ -37,7 +37,7 @@ export declare const authenticationMethodsRoutes: OpenAPIHono<{
|
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
json: {
|
|
40
|
-
type: "
|
|
40
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
41
41
|
phone_number?: string | undefined;
|
|
42
42
|
totp_secret?: string | undefined;
|
|
43
43
|
credential_id?: string | undefined;
|
|
@@ -912,7 +912,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
912
912
|
active?: boolean | undefined;
|
|
913
913
|
} | undefined;
|
|
914
914
|
signup?: {
|
|
915
|
-
status?: "
|
|
915
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
916
916
|
verification?: {
|
|
917
917
|
active?: boolean | undefined;
|
|
918
918
|
} | undefined;
|
|
@@ -929,7 +929,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
929
929
|
active?: boolean | undefined;
|
|
930
930
|
} | undefined;
|
|
931
931
|
signup?: {
|
|
932
|
-
status?: "
|
|
932
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
933
933
|
} | undefined;
|
|
934
934
|
validation?: {
|
|
935
935
|
max_length?: number | undefined;
|
|
@@ -946,7 +946,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
946
946
|
active?: boolean | undefined;
|
|
947
947
|
} | undefined;
|
|
948
948
|
signup?: {
|
|
949
|
-
status?: "
|
|
949
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
950
950
|
} | undefined;
|
|
951
951
|
} | undefined;
|
|
952
952
|
} | undefined;
|
|
@@ -1070,7 +1070,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1070
1070
|
active?: boolean | undefined;
|
|
1071
1071
|
} | undefined;
|
|
1072
1072
|
signup?: {
|
|
1073
|
-
status?: "
|
|
1073
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1074
1074
|
verification?: {
|
|
1075
1075
|
active?: boolean | undefined;
|
|
1076
1076
|
} | undefined;
|
|
@@ -1087,7 +1087,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1087
1087
|
active?: boolean | undefined;
|
|
1088
1088
|
} | undefined;
|
|
1089
1089
|
signup?: {
|
|
1090
|
-
status?: "
|
|
1090
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1091
1091
|
} | undefined;
|
|
1092
1092
|
validation?: {
|
|
1093
1093
|
max_length?: number | undefined;
|
|
@@ -1104,7 +1104,7 @@ export declare const clientRoutes: OpenAPIHono<{
|
|
|
1104
1104
|
active?: boolean | undefined;
|
|
1105
1105
|
} | undefined;
|
|
1106
1106
|
signup?: {
|
|
1107
|
-
status?: "
|
|
1107
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
1108
1108
|
} | undefined;
|
|
1109
1109
|
} | undefined;
|
|
1110
1110
|
} | undefined;
|
|
@@ -86,7 +86,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
86
86
|
active?: boolean | undefined;
|
|
87
87
|
} | undefined;
|
|
88
88
|
signup?: {
|
|
89
|
-
status?: "
|
|
89
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
90
90
|
verification?: {
|
|
91
91
|
active?: boolean | undefined;
|
|
92
92
|
} | undefined;
|
|
@@ -103,7 +103,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
103
103
|
active?: boolean | undefined;
|
|
104
104
|
} | undefined;
|
|
105
105
|
signup?: {
|
|
106
|
-
status?: "
|
|
106
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
107
107
|
} | undefined;
|
|
108
108
|
validation?: {
|
|
109
109
|
max_length?: number | undefined;
|
|
@@ -120,7 +120,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
120
120
|
active?: boolean | undefined;
|
|
121
121
|
} | undefined;
|
|
122
122
|
signup?: {
|
|
123
|
-
status?: "
|
|
123
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
124
124
|
} | undefined;
|
|
125
125
|
} | undefined;
|
|
126
126
|
} | undefined;
|
|
@@ -224,7 +224,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
224
224
|
active?: boolean | undefined;
|
|
225
225
|
} | undefined;
|
|
226
226
|
signup?: {
|
|
227
|
-
status?: "
|
|
227
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
228
228
|
verification?: {
|
|
229
229
|
active?: boolean | undefined;
|
|
230
230
|
} | undefined;
|
|
@@ -241,7 +241,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
241
241
|
active?: boolean | undefined;
|
|
242
242
|
} | undefined;
|
|
243
243
|
signup?: {
|
|
244
|
-
status?: "
|
|
244
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
245
245
|
} | undefined;
|
|
246
246
|
validation?: {
|
|
247
247
|
max_length?: number | undefined;
|
|
@@ -258,7 +258,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
258
258
|
active?: boolean | undefined;
|
|
259
259
|
} | undefined;
|
|
260
260
|
signup?: {
|
|
261
|
-
status?: "
|
|
261
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
262
262
|
} | undefined;
|
|
263
263
|
} | undefined;
|
|
264
264
|
} | undefined;
|
|
@@ -378,7 +378,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
378
378
|
active?: boolean | undefined;
|
|
379
379
|
} | undefined;
|
|
380
380
|
signup?: {
|
|
381
|
-
status?: "
|
|
381
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
382
382
|
verification?: {
|
|
383
383
|
active?: boolean | undefined;
|
|
384
384
|
} | undefined;
|
|
@@ -395,7 +395,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
395
395
|
active?: boolean | undefined;
|
|
396
396
|
} | undefined;
|
|
397
397
|
signup?: {
|
|
398
|
-
status?: "
|
|
398
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
399
399
|
} | undefined;
|
|
400
400
|
validation?: {
|
|
401
401
|
max_length?: number | undefined;
|
|
@@ -412,7 +412,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
412
412
|
active?: boolean | undefined;
|
|
413
413
|
} | undefined;
|
|
414
414
|
signup?: {
|
|
415
|
-
status?: "
|
|
415
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
416
416
|
} | undefined;
|
|
417
417
|
} | undefined;
|
|
418
418
|
} | undefined;
|
|
@@ -561,7 +561,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
561
561
|
active?: boolean | undefined;
|
|
562
562
|
} | undefined;
|
|
563
563
|
signup?: {
|
|
564
|
-
status?: "
|
|
564
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
565
565
|
verification?: {
|
|
566
566
|
active?: boolean | undefined;
|
|
567
567
|
} | undefined;
|
|
@@ -578,7 +578,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
578
578
|
active?: boolean | undefined;
|
|
579
579
|
} | undefined;
|
|
580
580
|
signup?: {
|
|
581
|
-
status?: "
|
|
581
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
582
582
|
} | undefined;
|
|
583
583
|
validation?: {
|
|
584
584
|
max_length?: number | undefined;
|
|
@@ -595,7 +595,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
595
595
|
active?: boolean | undefined;
|
|
596
596
|
} | undefined;
|
|
597
597
|
signup?: {
|
|
598
|
-
status?: "
|
|
598
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
599
599
|
} | undefined;
|
|
600
600
|
} | undefined;
|
|
601
601
|
} | undefined;
|
|
@@ -723,7 +723,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
723
723
|
active?: boolean | undefined;
|
|
724
724
|
} | undefined;
|
|
725
725
|
signup?: {
|
|
726
|
-
status?: "
|
|
726
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
727
727
|
verification?: {
|
|
728
728
|
active?: boolean | undefined;
|
|
729
729
|
} | undefined;
|
|
@@ -740,7 +740,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
740
740
|
active?: boolean | undefined;
|
|
741
741
|
} | undefined;
|
|
742
742
|
signup?: {
|
|
743
|
-
status?: "
|
|
743
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
744
744
|
} | undefined;
|
|
745
745
|
validation?: {
|
|
746
746
|
max_length?: number | undefined;
|
|
@@ -757,7 +757,7 @@ export declare const connectionRoutes: OpenAPIHono<{
|
|
|
757
757
|
active?: boolean | undefined;
|
|
758
758
|
} | undefined;
|
|
759
759
|
signup?: {
|
|
760
|
-
status?: "
|
|
760
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
761
761
|
} | undefined;
|
|
762
762
|
} | undefined;
|
|
763
763
|
} | undefined;
|
|
@@ -12,7 +12,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
12
12
|
};
|
|
13
13
|
} & {
|
|
14
14
|
json: {
|
|
15
|
-
template: "verify_email" | "
|
|
15
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16
16
|
body: string;
|
|
17
17
|
from: string;
|
|
18
18
|
subject: string;
|
|
@@ -33,7 +33,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
33
33
|
};
|
|
34
34
|
} & {
|
|
35
35
|
json: {
|
|
36
|
-
template: "verify_email" | "
|
|
36
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
37
37
|
body: string;
|
|
38
38
|
from: string;
|
|
39
39
|
subject: string;
|
|
@@ -45,7 +45,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
output: {
|
|
48
|
-
template: "verify_email" | "
|
|
48
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
49
49
|
body: string;
|
|
50
50
|
from: string;
|
|
51
51
|
subject: string;
|
|
@@ -68,7 +68,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
68
68
|
};
|
|
69
69
|
};
|
|
70
70
|
output: {
|
|
71
|
-
name: "verify_email" | "
|
|
71
|
+
name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
72
72
|
body: string;
|
|
73
73
|
subject: string;
|
|
74
74
|
}[];
|
|
@@ -81,7 +81,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
81
81
|
$get: {
|
|
82
82
|
input: {
|
|
83
83
|
param: {
|
|
84
|
-
templateName: "verify_email" | "
|
|
84
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
85
85
|
};
|
|
86
86
|
} & {
|
|
87
87
|
header: {
|
|
@@ -94,7 +94,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
94
94
|
} | {
|
|
95
95
|
input: {
|
|
96
96
|
param: {
|
|
97
|
-
templateName: "verify_email" | "
|
|
97
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
98
98
|
};
|
|
99
99
|
} & {
|
|
100
100
|
header: {
|
|
@@ -102,7 +102,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
102
102
|
};
|
|
103
103
|
};
|
|
104
104
|
output: {
|
|
105
|
-
template: "verify_email" | "
|
|
105
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
106
106
|
body: string;
|
|
107
107
|
from: string;
|
|
108
108
|
subject: string;
|
|
@@ -121,7 +121,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
121
121
|
$put: {
|
|
122
122
|
input: {
|
|
123
123
|
param: {
|
|
124
|
-
templateName: "verify_email" | "
|
|
124
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
125
125
|
};
|
|
126
126
|
} & {
|
|
127
127
|
header: {
|
|
@@ -129,7 +129,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
129
129
|
};
|
|
130
130
|
} & {
|
|
131
131
|
json: {
|
|
132
|
-
template: "verify_email" | "
|
|
132
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
133
133
|
body: string;
|
|
134
134
|
subject: string;
|
|
135
135
|
syntax?: "liquid" | undefined;
|
|
@@ -141,7 +141,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
141
141
|
};
|
|
142
142
|
};
|
|
143
143
|
output: {
|
|
144
|
-
template: "verify_email" | "
|
|
144
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
145
145
|
body: string;
|
|
146
146
|
from: string;
|
|
147
147
|
subject: string;
|
|
@@ -160,7 +160,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
160
160
|
$patch: {
|
|
161
161
|
input: {
|
|
162
162
|
param: {
|
|
163
|
-
templateName: "verify_email" | "
|
|
163
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
164
164
|
};
|
|
165
165
|
} & {
|
|
166
166
|
header: {
|
|
@@ -168,7 +168,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
168
168
|
};
|
|
169
169
|
} & {
|
|
170
170
|
json: {
|
|
171
|
-
template?: "verify_email" | "
|
|
171
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
172
172
|
body?: string | undefined;
|
|
173
173
|
from?: string | undefined;
|
|
174
174
|
subject?: string | undefined;
|
|
@@ -185,7 +185,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
185
185
|
} | {
|
|
186
186
|
input: {
|
|
187
187
|
param: {
|
|
188
|
-
templateName: "verify_email" | "
|
|
188
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
189
189
|
};
|
|
190
190
|
} & {
|
|
191
191
|
header: {
|
|
@@ -193,7 +193,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
193
193
|
};
|
|
194
194
|
} & {
|
|
195
195
|
json: {
|
|
196
|
-
template?: "verify_email" | "
|
|
196
|
+
template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
197
197
|
body?: string | undefined;
|
|
198
198
|
from?: string | undefined;
|
|
199
199
|
subject?: string | undefined;
|
|
@@ -205,7 +205,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
205
205
|
};
|
|
206
206
|
};
|
|
207
207
|
output: {
|
|
208
|
-
template: "verify_email" | "
|
|
208
|
+
template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
209
209
|
body: string;
|
|
210
210
|
from: string;
|
|
211
211
|
subject: string;
|
|
@@ -224,7 +224,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
224
224
|
$delete: {
|
|
225
225
|
input: {
|
|
226
226
|
param: {
|
|
227
|
-
templateName: "verify_email" | "
|
|
227
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
228
228
|
};
|
|
229
229
|
} & {
|
|
230
230
|
header: {
|
|
@@ -237,7 +237,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
237
237
|
} | {
|
|
238
238
|
input: {
|
|
239
239
|
param: {
|
|
240
|
-
templateName: "verify_email" | "
|
|
240
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
241
241
|
};
|
|
242
242
|
} & {
|
|
243
243
|
header: {
|
|
@@ -254,7 +254,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
254
254
|
$post: {
|
|
255
255
|
input: {
|
|
256
256
|
param: {
|
|
257
|
-
templateName: "verify_email" | "
|
|
257
|
+
templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
258
258
|
};
|
|
259
259
|
} & {
|
|
260
260
|
header: {
|