authhero 0.61.0 → 0.62.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 +66 -36
- package/dist/authhero.d.ts +34 -1
- package/dist/authhero.mjs +8552 -7427
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -6988,7 +6988,40 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6988
6988
|
universalApp: OpenAPIHono<{
|
|
6989
6989
|
Bindings: Bindings;
|
|
6990
6990
|
Variables: Variables;
|
|
6991
|
-
},
|
|
6991
|
+
}, import("hono/types").MergeSchemaPath<{
|
|
6992
|
+
"/enter-email": {
|
|
6993
|
+
$get: {
|
|
6994
|
+
input: {
|
|
6995
|
+
query: {
|
|
6996
|
+
state: string;
|
|
6997
|
+
impersonation?: string | undefined;
|
|
6998
|
+
};
|
|
6999
|
+
};
|
|
7000
|
+
output: {};
|
|
7001
|
+
outputFormat: string;
|
|
7002
|
+
status: 200;
|
|
7003
|
+
};
|
|
7004
|
+
};
|
|
7005
|
+
} & {
|
|
7006
|
+
"/enter-email": {
|
|
7007
|
+
$post: {
|
|
7008
|
+
input: {
|
|
7009
|
+
query: {
|
|
7010
|
+
state: string;
|
|
7011
|
+
};
|
|
7012
|
+
} & {
|
|
7013
|
+
form: {
|
|
7014
|
+
username: string;
|
|
7015
|
+
act_as?: string | undefined;
|
|
7016
|
+
login_selection?: "code" | "password" | undefined;
|
|
7017
|
+
};
|
|
7018
|
+
};
|
|
7019
|
+
output: {};
|
|
7020
|
+
outputFormat: string;
|
|
7021
|
+
status: 200;
|
|
7022
|
+
};
|
|
7023
|
+
};
|
|
7024
|
+
}, "/enter-email">, "/">;
|
|
6992
7025
|
createX509Certificate: typeof createX509Certificate;
|
|
6993
7026
|
};
|
|
6994
7027
|
|