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.
- package/dist/authhero.cjs +129 -129
- package/dist/authhero.d.ts +113 -113
- package/dist/authhero.mjs +9334 -9308
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +113 -113
- package/dist/types/routes/universal-login/index.d.ts +7 -7
- package/dist/types/routes/universal-login/validate-email.d.ts +5 -5
- package/package.json +1 -1
|
@@ -234,13 +234,13 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
234
234
|
$get: {
|
|
235
235
|
input: {
|
|
236
236
|
query: {
|
|
237
|
-
state
|
|
238
|
-
code
|
|
237
|
+
state?: string | undefined;
|
|
238
|
+
code?: string | undefined;
|
|
239
239
|
};
|
|
240
240
|
};
|
|
241
|
-
output:
|
|
242
|
-
outputFormat:
|
|
243
|
-
status:
|
|
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?: "
|
|
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?: "
|
|
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
|
|
12
|
-
code
|
|
11
|
+
state?: string | undefined;
|
|
12
|
+
code?: string | undefined;
|
|
13
13
|
};
|
|
14
14
|
};
|
|
15
|
-
output:
|
|
16
|
-
outputFormat:
|
|
17
|
-
status:
|
|
15
|
+
output: Response;
|
|
16
|
+
outputFormat: "json";
|
|
17
|
+
status: import("hono/utils/http-status").StatusCode;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
}, "/">;
|