authhero 0.61.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.
@@ -6988,7 +6988,70 @@ export declare function init(config: AuthHeroConfig): {
6988
6988
  universalApp: OpenAPIHono<{
6989
6989
  Bindings: Bindings;
6990
6990
  Variables: Variables;
6991
- }, {}, "/">;
6991
+ }, import("hono/types").MergeSchemaPath<{
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
+ "/": {
7023
+ $get: {
7024
+ input: {
7025
+ query: {
7026
+ state: string;
7027
+ impersonation?: string | undefined;
7028
+ };
7029
+ };
7030
+ output: {};
7031
+ outputFormat: string;
7032
+ status: 200;
7033
+ };
7034
+ };
7035
+ } & {
7036
+ "/": {
7037
+ $post: {
7038
+ input: {
7039
+ query: {
7040
+ state: string;
7041
+ };
7042
+ } & {
7043
+ form: {
7044
+ username: string;
7045
+ act_as?: string | undefined;
7046
+ login_selection?: "code" | "password" | undefined;
7047
+ };
7048
+ };
7049
+ output: {};
7050
+ outputFormat: string;
7051
+ status: 200;
7052
+ };
7053
+ };
7054
+ }, "/enter-email">, "/">;
6992
7055
  createX509Certificate: typeof createX509Certificate;
6993
7056
  };
6994
7057