authhero 0.65.0 → 0.67.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 +62 -0
- package/dist/authhero.mjs +8507 -7868
- 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: {
|
|
@@ -7008,9 +7041,38 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7008
7041
|
query: {
|
|
7009
7042
|
state: string;
|
|
7010
7043
|
};
|
|
7044
|
+
};
|
|
7045
|
+
output: {};
|
|
7046
|
+
outputFormat: string;
|
|
7047
|
+
status: 200;
|
|
7048
|
+
};
|
|
7049
|
+
};
|
|
7050
|
+
}, "/forgot-password"> & import("hono/types").MergeSchemaPath<{
|
|
7051
|
+
"/": {
|
|
7052
|
+
$get: {
|
|
7053
|
+
input: {
|
|
7054
|
+
query: {
|
|
7055
|
+
code: string;
|
|
7056
|
+
state: string;
|
|
7057
|
+
};
|
|
7058
|
+
};
|
|
7059
|
+
output: {};
|
|
7060
|
+
outputFormat: string;
|
|
7061
|
+
status: 200;
|
|
7062
|
+
};
|
|
7063
|
+
};
|
|
7064
|
+
} & {
|
|
7065
|
+
"/": {
|
|
7066
|
+
$post: {
|
|
7067
|
+
input: {
|
|
7068
|
+
query: {
|
|
7069
|
+
code: string;
|
|
7070
|
+
state: string;
|
|
7071
|
+
};
|
|
7011
7072
|
} & {
|
|
7012
7073
|
form: {
|
|
7013
7074
|
password: string;
|
|
7075
|
+
"re-enter-password": string;
|
|
7014
7076
|
};
|
|
7015
7077
|
};
|
|
7016
7078
|
output: {};
|