authhero 0.63.0 → 0.64.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.
@@ -6704,13 +6704,13 @@ export declare function init(config: AuthHeroConfig): {
6704
6704
  audience?: string | undefined;
6705
6705
  scope?: string | undefined;
6706
6706
  auth0Client?: string | undefined;
6707
+ login_ticket?: string | undefined;
6707
6708
  code_challenge_method?: CodeChallengeMethod | undefined;
6708
6709
  vendor_id?: string | undefined;
6709
6710
  prompt?: string | undefined;
6710
6711
  code_challenge?: string | undefined;
6711
6712
  ui_locales?: string | undefined;
6712
6713
  realm?: string | undefined;
6713
- login_ticket?: string | undefined;
6714
6714
  login_hint?: string | undefined;
6715
6715
  max_age?: string | undefined;
6716
6716
  };
@@ -6731,13 +6731,13 @@ export declare function init(config: AuthHeroConfig): {
6731
6731
  audience?: string | undefined;
6732
6732
  scope?: string | undefined;
6733
6733
  auth0Client?: string | undefined;
6734
+ login_ticket?: string | undefined;
6734
6735
  code_challenge_method?: CodeChallengeMethod | undefined;
6735
6736
  vendor_id?: string | undefined;
6736
6737
  prompt?: string | undefined;
6737
6738
  code_challenge?: string | undefined;
6738
6739
  ui_locales?: string | undefined;
6739
6740
  realm?: string | undefined;
6740
- login_ticket?: string | undefined;
6741
6741
  login_hint?: string | undefined;
6742
6742
  max_age?: string | undefined;
6743
6743
  };
@@ -6989,6 +6989,36 @@ export declare function init(config: AuthHeroConfig): {
6989
6989
  Bindings: Bindings;
6990
6990
  Variables: Variables;
6991
6991
  }, import("hono/types").MergeSchemaPath<{
6992
+ "/enter-password": {
6993
+ $get: {
6994
+ input: {
6995
+ query: {
6996
+ state: string;
6997
+ };
6998
+ };
6999
+ output: {};
7000
+ outputFormat: string;
7001
+ status: 200;
7002
+ };
7003
+ };
7004
+ } & {
7005
+ "/enter-password": {
7006
+ $post: {
7007
+ input: {
7008
+ query: {
7009
+ state: string;
7010
+ };
7011
+ } & {
7012
+ form: {
7013
+ password: string;
7014
+ };
7015
+ };
7016
+ output: {};
7017
+ outputFormat: string;
7018
+ status: 200;
7019
+ };
7020
+ };
7021
+ }, "/enter-password"> & import("hono/types").MergeSchemaPath<{
6992
7022
  "/": {
6993
7023
  $get: {
6994
7024
  input: {