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.
@@ -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;
@@ -78,7 +78,7 @@ export declare const actionExecutionsRoutes: OpenAPIHono<{
78
78
  logs: {
79
79
  action_name: string;
80
80
  lines: {
81
- level: "error" | "log" | "info" | "warn" | "debug";
81
+ level: "log" | "error" | "info" | "warn" | "debug";
82
82
  message: string;
83
83
  }[];
84
84
  }[];
@@ -661,7 +661,7 @@ export declare const actionsRoutes: OpenAPIHono<{
661
661
  args: import("hono/utils/types").JSONValue[];
662
662
  }[];
663
663
  logs: {
664
- level: "error" | "log" | "info" | "warn" | "debug";
664
+ level: "log" | "error" | "info" | "warn" | "debug";
665
665
  message: string;
666
666
  }[];
667
667
  error?: string | undefined;
@@ -852,7 +852,7 @@ export declare const connectionRoutes: OpenAPIHono<{
852
852
  };
853
853
  } | {
854
854
  mode: "inline";
855
- status: "error" | "success";
855
+ status: "success" | "error";
856
856
  connection_id: string;
857
857
  connection_name: string;
858
858
  strategy: string;
@@ -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: "user" | "client_credentials" | "system" | "admin" | "api_key";
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;