@akanjs/service 0.0.57 → 0.0.59

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/index.js CHANGED
@@ -15,3 +15,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
15
15
  var service_exports = {};
16
16
  module.exports = __toCommonJS(service_exports);
17
17
  __reExport(service_exports, require("./src"), module.exports);
18
+ // Annotate the CommonJS export names for ESM import in node:
19
+ 0 && (module.exports = {
20
+ ...require("./src")
21
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/service",
3
- "version": "0.0.57",
3
+ "version": "0.0.59",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"
package/src/index.js CHANGED
@@ -15,3 +15,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
15
15
  var src_exports = {};
16
16
  module.exports = __toCommonJS(src_exports);
17
17
  __reExport(src_exports, require("./serviceDecorators"), module.exports);
18
+ // Annotate the CommonJS export names for ESM import in node:
19
+ 0 && (module.exports = {
20
+ ...require("./serviceDecorators")
21
+ });
@@ -341,3 +341,21 @@ const ExtendedSummaryService = (database, srvRef, sigRef) => {
341
341
  const ExtendedSettingService = (database, srvRef, sigRef) => {
342
342
  return srvRef;
343
343
  };
344
+ // Annotate the CommonJS export names for ESM import in node:
345
+ 0 && (module.exports = {
346
+ Db,
347
+ DbService,
348
+ ExtendedSettingService,
349
+ ExtendedSummaryService,
350
+ ExtendedUserService,
351
+ LogService,
352
+ MixSrvs,
353
+ Queue,
354
+ Service,
355
+ ServiceStorage,
356
+ Srv,
357
+ Use,
358
+ Websocket,
359
+ isServiceEnabled,
360
+ serviceOf
361
+ });