authhero 0.92.0 → 0.93.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 +35 -35
- package/dist/authhero.d.ts +55 -1
- package/dist/authhero.mjs +3419 -3178
- package/package.json +2 -2
package/dist/authhero.d.ts
CHANGED
|
@@ -7306,6 +7306,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7306
7306
|
};
|
|
7307
7307
|
};
|
|
7308
7308
|
}, "/signup"> & import("hono/types").MergeSchemaPath<{
|
|
7309
|
+
"/validate-email": {
|
|
7310
|
+
$get: {
|
|
7311
|
+
input: {
|
|
7312
|
+
query: {
|
|
7313
|
+
code: string;
|
|
7314
|
+
state: string;
|
|
7315
|
+
};
|
|
7316
|
+
};
|
|
7317
|
+
output: {};
|
|
7318
|
+
outputFormat: string;
|
|
7319
|
+
status: 200;
|
|
7320
|
+
};
|
|
7321
|
+
};
|
|
7322
|
+
}, "/validate-email"> & import("hono/types").MergeSchemaPath<{
|
|
7309
7323
|
"/": {
|
|
7310
7324
|
$get: {
|
|
7311
7325
|
input: {
|
|
@@ -7390,7 +7404,33 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7390
7404
|
status: 200;
|
|
7391
7405
|
};
|
|
7392
7406
|
};
|
|
7407
|
+
} & {
|
|
7408
|
+
"/pre-signup-sent": {
|
|
7409
|
+
$get: {
|
|
7410
|
+
input: {
|
|
7411
|
+
query: {
|
|
7412
|
+
state: string;
|
|
7413
|
+
};
|
|
7414
|
+
};
|
|
7415
|
+
output: {};
|
|
7416
|
+
outputFormat: string;
|
|
7417
|
+
status: 200;
|
|
7418
|
+
};
|
|
7419
|
+
};
|
|
7393
7420
|
}, "/pre-signup"> & import("hono/types").MergeSchemaPath<{
|
|
7421
|
+
"/invalid-session": {
|
|
7422
|
+
$get: {
|
|
7423
|
+
input: {
|
|
7424
|
+
query: {
|
|
7425
|
+
state: string;
|
|
7426
|
+
};
|
|
7427
|
+
};
|
|
7428
|
+
output: {};
|
|
7429
|
+
outputFormat: string;
|
|
7430
|
+
status: 200;
|
|
7431
|
+
};
|
|
7432
|
+
};
|
|
7433
|
+
}, "/invalid-session"> & import("hono/types").MergeSchemaPath<{
|
|
7394
7434
|
"/": {
|
|
7395
7435
|
$get: {
|
|
7396
7436
|
input: {
|
|
@@ -7509,7 +7549,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7509
7549
|
status: 302;
|
|
7510
7550
|
};
|
|
7511
7551
|
};
|
|
7512
|
-
}, "/check-account"
|
|
7552
|
+
}, "/check-account"> & import("hono/types").MergeSchemaPath<{
|
|
7553
|
+
"/info": {
|
|
7554
|
+
$get: {
|
|
7555
|
+
input: {
|
|
7556
|
+
query: {
|
|
7557
|
+
code: string;
|
|
7558
|
+
state: string;
|
|
7559
|
+
};
|
|
7560
|
+
};
|
|
7561
|
+
output: {};
|
|
7562
|
+
outputFormat: string;
|
|
7563
|
+
status: 200;
|
|
7564
|
+
};
|
|
7565
|
+
};
|
|
7566
|
+
}, "/info">, "/">;
|
|
7513
7567
|
createX509Certificate: typeof createX509Certificate;
|
|
7514
7568
|
};
|
|
7515
7569
|
|