authhero 0.62.0 → 0.63.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.
@@ -6989,7 +6989,37 @@ export declare function init(config: AuthHeroConfig): {
6989
6989
  Bindings: Bindings;
6990
6990
  Variables: Variables;
6991
6991
  }, import("hono/types").MergeSchemaPath<{
6992
- "/enter-email": {
6992
+ "/": {
6993
+ $get: {
6994
+ input: {
6995
+ query: {
6996
+ state: string;
6997
+ };
6998
+ };
6999
+ output: {};
7000
+ outputFormat: string;
7001
+ status: 200;
7002
+ };
7003
+ };
7004
+ } & {
7005
+ "/": {
7006
+ $post: {
7007
+ input: {
7008
+ query: {
7009
+ state: string;
7010
+ };
7011
+ } & {
7012
+ form: {
7013
+ code: string;
7014
+ };
7015
+ };
7016
+ output: {};
7017
+ outputFormat: string;
7018
+ status: 200;
7019
+ };
7020
+ };
7021
+ }, "/enter-code"> & import("hono/types").MergeSchemaPath<{
7022
+ "/": {
6993
7023
  $get: {
6994
7024
  input: {
6995
7025
  query: {
@@ -7003,7 +7033,7 @@ export declare function init(config: AuthHeroConfig): {
7003
7033
  };
7004
7034
  };
7005
7035
  } & {
7006
- "/enter-email": {
7036
+ "/": {
7007
7037
  $post: {
7008
7038
  input: {
7009
7039
  query: {