typed-bridge 2.0.6 → 2.0.7
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 { Application, default as express, Express, NextFunction, Request, Response, Router } from 'express';
|
|
3
|
-
export {
|
|
3
|
+
export { z as $z } from 'zod';
|
|
4
4
|
export { createBridge, createMiddleware, onShutdown } from './bridge';
|
|
5
5
|
export { config as tbConfig } from './config';
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ var express_1 = require("express");
|
|
|
9
9
|
Object.defineProperty(exports, "express", { enumerable: true, get: function () { return __importDefault(express_1).default; } });
|
|
10
10
|
Object.defineProperty(exports, "Router", { enumerable: true, get: function () { return express_1.Router; } });
|
|
11
11
|
var zod_1 = require("zod");
|
|
12
|
-
Object.defineProperty(exports, "$z", { enumerable: true, get: function () { return
|
|
12
|
+
Object.defineProperty(exports, "$z", { enumerable: true, get: function () { return zod_1.z; } });
|
|
13
13
|
var bridge_1 = require("./bridge");
|
|
14
14
|
Object.defineProperty(exports, "createBridge", { enumerable: true, get: function () { return bridge_1.createBridge; } });
|
|
15
15
|
Object.defineProperty(exports, "createMiddleware", { enumerable: true, get: function () { return bridge_1.createMiddleware; } });
|