authhero 0.68.0 → 0.70.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.
@@ -7173,7 +7173,33 @@ export declare function init(config: AuthHeroConfig): {
7173
7173
  status: 200;
7174
7174
  };
7175
7175
  };
7176
- }, "/enter-email">, "/">;
7176
+ }, "/enter-email"> & import("hono/types").MergeSchemaPath<{
7177
+ "/": {
7178
+ $get: {
7179
+ input: {
7180
+ query: {
7181
+ state: string;
7182
+ };
7183
+ };
7184
+ output: {};
7185
+ outputFormat: string;
7186
+ status: 200;
7187
+ };
7188
+ };
7189
+ } & {
7190
+ "/check-account": {
7191
+ $post: {
7192
+ input: {
7193
+ query: {
7194
+ state: string;
7195
+ };
7196
+ };
7197
+ output: {};
7198
+ outputFormat: string;
7199
+ status: 302;
7200
+ };
7201
+ };
7202
+ }, "/check-account">, "/">;
7177
7203
  createX509Certificate: typeof createX509Certificate;
7178
7204
  };
7179
7205