authhero 0.64.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 +65 -2
- package/dist/authhero.mjs +7340 -7060
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -6989,7 +6989,40 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6989
6989
|
Bindings: Bindings;
|
|
6990
6990
|
Variables: Variables;
|
|
6991
6991
|
}, import("hono/types").MergeSchemaPath<{
|
|
6992
|
-
"/
|
|
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<{
|
|
7025
|
+
"/": {
|
|
6993
7026
|
$get: {
|
|
6994
7027
|
input: {
|
|
6995
7028
|
query: {
|
|
@@ -7002,7 +7035,37 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7002
7035
|
};
|
|
7003
7036
|
};
|
|
7004
7037
|
} & {
|
|
7005
|
-
"/
|
|
7038
|
+
"/": {
|
|
7039
|
+
$post: {
|
|
7040
|
+
input: {
|
|
7041
|
+
query: {
|
|
7042
|
+
state: string;
|
|
7043
|
+
};
|
|
7044
|
+
} & {
|
|
7045
|
+
form: {
|
|
7046
|
+
password: string;
|
|
7047
|
+
};
|
|
7048
|
+
};
|
|
7049
|
+
output: {};
|
|
7050
|
+
outputFormat: string;
|
|
7051
|
+
status: 200;
|
|
7052
|
+
};
|
|
7053
|
+
};
|
|
7054
|
+
}, "/reset-password"> & import("hono/types").MergeSchemaPath<{
|
|
7055
|
+
"/": {
|
|
7056
|
+
$get: {
|
|
7057
|
+
input: {
|
|
7058
|
+
query: {
|
|
7059
|
+
state: string;
|
|
7060
|
+
};
|
|
7061
|
+
};
|
|
7062
|
+
output: {};
|
|
7063
|
+
outputFormat: string;
|
|
7064
|
+
status: 200;
|
|
7065
|
+
};
|
|
7066
|
+
};
|
|
7067
|
+
} & {
|
|
7068
|
+
"/": {
|
|
7006
7069
|
$post: {
|
|
7007
7070
|
input: {
|
|
7008
7071
|
query: {
|