authhero 9.4.0 → 9.4.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.
@@ -234,13 +234,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
234
234
  $get: {
235
235
  input: {
236
236
  query: {
237
- state: string;
238
- code: string;
237
+ state?: string | undefined;
238
+ code?: string | undefined;
239
239
  };
240
240
  };
241
- output: {};
242
- outputFormat: string;
243
- status: 200;
241
+ output: Response;
242
+ outputFormat: "json";
243
+ status: import("hono/utils/http-status").StatusCode;
244
244
  };
245
245
  };
246
246
  }, "/validate-email"> & import("hono/types").MergeSchemaPath<{
@@ -515,7 +515,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
515
515
  } & {
516
516
  form: {
517
517
  username: string;
518
- login_selection?: "password" | "code" | undefined;
518
+ login_selection?: "code" | "password" | undefined;
519
519
  };
520
520
  };
521
521
  output: {};
@@ -529,7 +529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
529
529
  } & {
530
530
  form: {
531
531
  username: string;
532
- login_selection?: "password" | "code" | undefined;
532
+ login_selection?: "code" | "password" | undefined;
533
533
  };
534
534
  };
535
535
  output: {};
@@ -8,13 +8,13 @@ export declare const validateEmailRoutes: OpenAPIHono<{
8
8
  $get: {
9
9
  input: {
10
10
  query: {
11
- state: string;
12
- code: string;
11
+ state?: string | undefined;
12
+ code?: string | undefined;
13
13
  };
14
14
  };
15
- output: {};
16
- outputFormat: string;
17
- status: 200;
15
+ output: Response;
16
+ outputFormat: "json";
17
+ status: import("hono/utils/http-status").StatusCode;
18
18
  };
19
19
  };
20
20
  }, "/">;
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "https://github.com/markusahlstrand/authhero"
13
13
  },
14
- "version": "9.4.0",
14
+ "version": "9.4.1",
15
15
  "files": [
16
16
  "dist"
17
17
  ],