authhero 0.65.0 → 0.66.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.
- package/dist/authhero.cjs +34 -34
- package/dist/authhero.d.ts +33 -0
- package/dist/authhero.mjs +7370 -7090
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -6989,6 +6989,39 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
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
|
+
code?: string | undefined;
|
|
6998
|
+
};
|
|
6999
|
+
};
|
|
7000
|
+
output: {};
|
|
7001
|
+
outputFormat: string;
|
|
7002
|
+
status: 200;
|
|
7003
|
+
};
|
|
7004
|
+
};
|
|
7005
|
+
} & {
|
|
7006
|
+
"/": {
|
|
7007
|
+
$post: {
|
|
7008
|
+
input: {
|
|
7009
|
+
query: {
|
|
7010
|
+
state: string;
|
|
7011
|
+
};
|
|
7012
|
+
} & {
|
|
7013
|
+
form: {
|
|
7014
|
+
password: string;
|
|
7015
|
+
"re-enter-password": string;
|
|
7016
|
+
code?: string | undefined;
|
|
7017
|
+
};
|
|
7018
|
+
};
|
|
7019
|
+
output: {};
|
|
7020
|
+
outputFormat: string;
|
|
7021
|
+
status: 200;
|
|
7022
|
+
};
|
|
7023
|
+
};
|
|
7024
|
+
}, "/signup"> & import("hono/types").MergeSchemaPath<{
|
|
6992
7025
|
"/": {
|
|
6993
7026
|
$get: {
|
|
6994
7027
|
input: {
|