authhero 0.64.0 → 0.65.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 +27 -27
- package/dist/authhero.d.ts +32 -2
- package/dist/authhero.mjs +1111 -1111
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -6989,7 +6989,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6989
6989
|
Bindings: Bindings;
|
|
6990
6990
|
Variables: Variables;
|
|
6991
6991
|
}, import("hono/types").MergeSchemaPath<{
|
|
6992
|
-
"/
|
|
6992
|
+
"/": {
|
|
6993
6993
|
$get: {
|
|
6994
6994
|
input: {
|
|
6995
6995
|
query: {
|
|
@@ -7002,7 +7002,37 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7002
7002
|
};
|
|
7003
7003
|
};
|
|
7004
7004
|
} & {
|
|
7005
|
-
"/
|
|
7005
|
+
"/": {
|
|
7006
|
+
$post: {
|
|
7007
|
+
input: {
|
|
7008
|
+
query: {
|
|
7009
|
+
state: string;
|
|
7010
|
+
};
|
|
7011
|
+
} & {
|
|
7012
|
+
form: {
|
|
7013
|
+
password: string;
|
|
7014
|
+
};
|
|
7015
|
+
};
|
|
7016
|
+
output: {};
|
|
7017
|
+
outputFormat: string;
|
|
7018
|
+
status: 200;
|
|
7019
|
+
};
|
|
7020
|
+
};
|
|
7021
|
+
}, "/reset-password"> & import("hono/types").MergeSchemaPath<{
|
|
7022
|
+
"/": {
|
|
7023
|
+
$get: {
|
|
7024
|
+
input: {
|
|
7025
|
+
query: {
|
|
7026
|
+
state: string;
|
|
7027
|
+
};
|
|
7028
|
+
};
|
|
7029
|
+
output: {};
|
|
7030
|
+
outputFormat: string;
|
|
7031
|
+
status: 200;
|
|
7032
|
+
};
|
|
7033
|
+
};
|
|
7034
|
+
} & {
|
|
7035
|
+
"/": {
|
|
7006
7036
|
$post: {
|
|
7007
7037
|
input: {
|
|
7008
7038
|
query: {
|