@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 +4 -0
- package/package.json +1 -1
- package/src/index.js +4 -0
- package/src/serviceDecorators.js +18 -0
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
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
|
+
});
|
package/src/serviceDecorators.js
CHANGED
|
@@ -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
|
+
});
|