authhero 7.2.0 → 7.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +2 -2
- package/dist/authhero.d.ts +147 -147
- package/dist/authhero.mjs +5 -3
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +2 -2
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +147 -147
- package/dist/types/routes/auth-api/index.d.ts +8 -8
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/index.d.ts +133 -133
- 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/users.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/package.json +3 -3
|
@@ -723,16 +723,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
723
723
|
email: string;
|
|
724
724
|
send: "code" | "link";
|
|
725
725
|
authParams: {
|
|
726
|
-
organization?: string | undefined;
|
|
727
726
|
audience?: string | undefined;
|
|
727
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
728
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
728
729
|
scope?: string | undefined;
|
|
729
730
|
username?: string | undefined;
|
|
731
|
+
organization?: string | undefined;
|
|
730
732
|
state?: string | undefined;
|
|
733
|
+
nonce?: string | undefined;
|
|
731
734
|
act_as?: string | undefined;
|
|
732
|
-
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
733
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
734
735
|
redirect_uri?: string | undefined;
|
|
735
|
-
nonce?: string | undefined;
|
|
736
736
|
prompt?: string | undefined;
|
|
737
737
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
738
738
|
code_challenge?: string | undefined;
|
|
@@ -759,16 +759,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
759
759
|
phone_number: string;
|
|
760
760
|
send: "code" | "link";
|
|
761
761
|
authParams: {
|
|
762
|
-
organization?: string | undefined;
|
|
763
762
|
audience?: string | undefined;
|
|
763
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
764
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
764
765
|
scope?: string | undefined;
|
|
765
766
|
username?: string | undefined;
|
|
767
|
+
organization?: string | undefined;
|
|
766
768
|
state?: string | undefined;
|
|
769
|
+
nonce?: string | undefined;
|
|
767
770
|
act_as?: string | undefined;
|
|
768
|
-
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
769
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
770
771
|
redirect_uri?: string | undefined;
|
|
771
|
-
nonce?: string | undefined;
|
|
772
772
|
prompt?: string | undefined;
|
|
773
773
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
774
774
|
code_challenge?: string | undefined;
|
|
@@ -14,16 +14,16 @@ export declare const passwordlessRoutes: OpenAPIHono<{
|
|
|
14
14
|
email: string;
|
|
15
15
|
send: "code" | "link";
|
|
16
16
|
authParams: {
|
|
17
|
-
organization?: string | undefined;
|
|
18
17
|
audience?: string | undefined;
|
|
18
|
+
response_type?: AuthorizationResponseType | undefined;
|
|
19
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
19
20
|
scope?: string | undefined;
|
|
20
21
|
username?: string | undefined;
|
|
22
|
+
organization?: string | undefined;
|
|
21
23
|
state?: string | undefined;
|
|
24
|
+
nonce?: string | undefined;
|
|
22
25
|
act_as?: string | undefined;
|
|
23
|
-
response_type?: AuthorizationResponseType | undefined;
|
|
24
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
25
26
|
redirect_uri?: string | undefined;
|
|
26
|
-
nonce?: string | undefined;
|
|
27
27
|
prompt?: string | undefined;
|
|
28
28
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
29
29
|
code_challenge?: string | undefined;
|
|
@@ -50,16 +50,16 @@ export declare const passwordlessRoutes: OpenAPIHono<{
|
|
|
50
50
|
phone_number: string;
|
|
51
51
|
send: "code" | "link";
|
|
52
52
|
authParams: {
|
|
53
|
-
organization?: string | undefined;
|
|
54
53
|
audience?: string | undefined;
|
|
54
|
+
response_type?: AuthorizationResponseType | undefined;
|
|
55
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
55
56
|
scope?: string | undefined;
|
|
56
57
|
username?: string | undefined;
|
|
58
|
+
organization?: string | undefined;
|
|
57
59
|
state?: string | undefined;
|
|
60
|
+
nonce?: string | undefined;
|
|
58
61
|
act_as?: string | undefined;
|
|
59
|
-
response_type?: AuthorizationResponseType | undefined;
|
|
60
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
61
62
|
redirect_uri?: string | undefined;
|
|
62
|
-
nonce?: string | undefined;
|
|
63
63
|
prompt?: string | undefined;
|
|
64
64
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
65
65
|
code_challenge?: string | undefined;
|
|
@@ -661,7 +661,7 @@ export declare const actionsRoutes: OpenAPIHono<{
|
|
|
661
661
|
args: import("hono/utils/types").JSONValue[];
|
|
662
662
|
}[];
|
|
663
663
|
logs: {
|
|
664
|
-
level: "
|
|
664
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
665
665
|
message: string;
|
|
666
666
|
}[];
|
|
667
667
|
error?: string | undefined;
|
|
@@ -30,7 +30,7 @@ export declare const failedEventsRoutes: OpenAPIHono<{
|
|
|
30
30
|
log_type: string;
|
|
31
31
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
32
32
|
actor: {
|
|
33
|
-
type: "
|
|
33
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
34
34
|
id?: string | undefined;
|
|
35
35
|
email?: string | undefined;
|
|
36
36
|
org_id?: string | undefined;
|