authhero 8.17.4 → 8.18.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.
@@ -301,7 +301,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
301
301
  scope?: string | undefined;
302
302
  grant_types?: string[] | undefined;
303
303
  response_types?: string[] | undefined;
304
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
304
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
305
305
  jwks_uri?: string | undefined;
306
306
  jwks?: Record<string, unknown> | undefined;
307
307
  software_id?: string | undefined;
@@ -390,7 +390,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
390
390
  scope?: string | undefined;
391
391
  grant_types?: string[] | undefined;
392
392
  response_types?: string[] | undefined;
393
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
393
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
394
394
  jwks_uri?: string | undefined;
395
395
  jwks?: Record<string, unknown> | undefined;
396
396
  software_id?: string | undefined;
@@ -736,16 +736,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
736
736
  email: string;
737
737
  send: "code" | "link";
738
738
  authParams: {
739
+ audience?: string | undefined;
740
+ scope?: string | undefined;
739
741
  username?: string | undefined;
740
742
  state?: string | undefined;
741
- audience?: string | undefined;
743
+ act_as?: string | undefined;
742
744
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
743
745
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
744
- scope?: string | undefined;
746
+ redirect_uri?: string | undefined;
745
747
  organization?: string | undefined;
746
748
  nonce?: string | undefined;
747
- redirect_uri?: string | undefined;
748
- act_as?: string | undefined;
749
749
  prompt?: string | undefined;
750
750
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
751
751
  code_challenge?: string | undefined;
@@ -772,16 +772,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
772
772
  phone_number: string;
773
773
  send: "code" | "link";
774
774
  authParams: {
775
+ audience?: string | undefined;
776
+ scope?: string | undefined;
775
777
  username?: string | undefined;
776
778
  state?: string | undefined;
777
- audience?: string | undefined;
779
+ act_as?: string | undefined;
778
780
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
779
781
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
780
- scope?: string | undefined;
782
+ redirect_uri?: string | undefined;
781
783
  organization?: string | undefined;
782
784
  nonce?: string | undefined;
783
- redirect_uri?: string | undefined;
784
- act_as?: string | undefined;
785
785
  prompt?: string | undefined;
786
786
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
787
787
  code_challenge?: string | undefined;