@eleven-am/pondsocket 0.1.78 → 0.1.79
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/nest.js +1 -3
- package/package.json +1 -1
package/nest.js
CHANGED
|
@@ -506,12 +506,10 @@ function Endpoints(endpoints) {
|
|
|
506
506
|
const { set } = manageEndpoints(constructor.prototype);
|
|
507
507
|
set(endpoints);
|
|
508
508
|
// eslint-disable-next-line new-cap
|
|
509
|
-
const globalConstructor = (0, common_1.Global)()(constructor);
|
|
510
|
-
// eslint-disable-next-line new-cap
|
|
511
509
|
return (0, common_1.Module)({
|
|
512
510
|
providers: [...endpoints, ...channels],
|
|
513
511
|
exports: [...endpoints, ...channels],
|
|
514
|
-
})(
|
|
512
|
+
})(constructor);
|
|
515
513
|
};
|
|
516
514
|
}
|
|
517
515
|
exports.Endpoints = Endpoints;
|