typed-bridge 2.0.1 → 2.0.2
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/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import 'dotenv/config';
|
|
2
2
|
export { createBridge, createMiddleware, onShutdown } from './bridge';
|
|
3
3
|
export { config as tbConfig } from './config';
|
|
4
|
-
export {
|
|
4
|
+
export { default as $z } from 'zod';
|
|
5
5
|
export { Application, default as express, NextFunction, Request, Response, Router } from 'express';
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ Object.defineProperty(exports, "onShutdown", { enumerable: true, get: function (
|
|
|
12
12
|
var config_1 = require("./config");
|
|
13
13
|
Object.defineProperty(exports, "tbConfig", { enumerable: true, get: function () { return config_1.config; } });
|
|
14
14
|
var zod_1 = require("zod");
|
|
15
|
-
Object.defineProperty(exports, "$z", { enumerable: true, get: function () { return zod_1.
|
|
15
|
+
Object.defineProperty(exports, "$z", { enumerable: true, get: function () { return __importDefault(zod_1).default; } });
|
|
16
16
|
var express_1 = require("express");
|
|
17
17
|
Object.defineProperty(exports, "express", { enumerable: true, get: function () { return __importDefault(express_1).default; } });
|
|
18
18
|
Object.defineProperty(exports, "Router", { enumerable: true, get: function () { return express_1.Router; } });
|