@rapidrest/core 1.0.2 → 1.1.0

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.
Files changed (64) hide show
  1. package/dist/lib/MessagingUtils.js +28 -13
  2. package/dist/lib/MessagingUtils.js.map +1 -1
  3. package/dist/types/MessagingUtils.d.ts +8 -0
  4. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Config.md +1 -1
  5. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Destroy.md +1 -1
  6. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Init.md +1 -1
  7. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Inject.md +1 -1
  8. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Logger.md +1 -1
  9. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Nullable.md +1 -1
  10. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/functions/Validator.md +1 -1
  11. package/docs/reference/@rapidrest/namespaces/ObjectDecorators/type-aliases/ValidatorFunction.md +1 -1
  12. package/docs/reference/classes/AlertUtils.md +6 -6
  13. package/docs/reference/classes/ApiError.md +5 -5
  14. package/docs/reference/classes/ClassLoader.md +11 -11
  15. package/docs/reference/classes/Event.md +8 -8
  16. package/docs/reference/classes/EventUtils.md +4 -4
  17. package/docs/reference/classes/FileUtils.md +5 -5
  18. package/docs/reference/classes/JWTUtils.md +3 -3
  19. package/docs/reference/classes/MessagingUtils.md +29 -7
  20. package/docs/reference/classes/OASUtils.md +8 -8
  21. package/docs/reference/classes/ObjectFactory.md +14 -14
  22. package/docs/reference/classes/ObjectUtils.md +2 -2
  23. package/docs/reference/classes/StringUtils.md +6 -6
  24. package/docs/reference/classes/ThreadPool.md +11 -11
  25. package/docs/reference/classes/ThreadWorker.md +6 -6
  26. package/docs/reference/classes/UserUtils.md +8 -8
  27. package/docs/reference/classes/ValidationUtils.md +14 -14
  28. package/docs/reference/enumerations/AlertPriority.md +6 -6
  29. package/docs/reference/enumerations/JWTUtilsCompressionMethods.md +2 -2
  30. package/docs/reference/enumerations/WorkerMessageType.md +5 -5
  31. package/docs/reference/functions/sleep.md +1 -1
  32. package/docs/reference/interfaces/Alert.md +10 -10
  33. package/docs/reference/interfaces/AlertAttachment.md +5 -5
  34. package/docs/reference/interfaces/AlertClose.md +3 -3
  35. package/docs/reference/interfaces/AlertUtilsAttachmentOptions.md +4 -4
  36. package/docs/reference/interfaces/AlertUtilsOptions.md +4 -4
  37. package/docs/reference/interfaces/InstanceOptions.md +4 -4
  38. package/docs/reference/interfaces/JWTPayload.md +5 -5
  39. package/docs/reference/interfaces/JWTUser.md +5 -5
  40. package/docs/reference/interfaces/JWTUtilsConfig.md +4 -4
  41. package/docs/reference/interfaces/JWTUtilsPayloadKeyOptions.md +5 -5
  42. package/docs/reference/interfaces/JWTUtilsPayloadOptions.md +3 -3
  43. package/docs/reference/interfaces/JWTUtilsPayloadPasswordOptions.md +6 -6
  44. package/docs/reference/interfaces/NewEvent.md +2 -2
  45. package/docs/reference/interfaces/OriginSettings.md +3 -3
  46. package/docs/reference/interfaces/SlackConfig.md +4 -4
  47. package/docs/reference/interfaces/SmtpAuth.md +3 -3
  48. package/docs/reference/interfaces/SmtpConfig.md +5 -5
  49. package/docs/reference/interfaces/Template.md +34 -10
  50. package/docs/reference/interfaces/TemplateMapBase.md +1 -1
  51. package/docs/reference/interfaces/TwilioConfig.md +4 -4
  52. package/docs/reference/interfaces/WorkerMessage.md +3 -3
  53. package/docs/reference/interfaces/WorkerOptions.md +6 -6
  54. package/docs/reference/type-aliases/BooleanFunc.md +1 -1
  55. package/docs/reference/type-aliases/TemplateMap.md +1 -1
  56. package/docs/reference/type-aliases/WorkerCallback.md +1 -1
  57. package/docs/reference/variables/Logger.md +1 -1
  58. package/package.json +96 -96
  59. package/dist/lib/threads/ThreadLogger.js +0 -42
  60. package/dist/lib/threads/ThreadLogger.js.map +0 -1
  61. package/dist/lib/threads/ThreadWorkerEntry.js +0 -76
  62. package/dist/lib/threads/ThreadWorkerEntry.js.map +0 -1
  63. package/dist/types/threads/ThreadLogger.d.ts +0 -1
  64. package/dist/types/threads/ThreadWorkerEntry.d.ts +0 -1
package/package.json CHANGED
@@ -1,96 +1,96 @@
1
- {
2
- "name": "@rapidrest/core",
3
- "version": "1.0.2",
4
- "description": "A collection of common utilities and core functionality for rapidly building RESTful applications.",
5
- "repository": "https://github.com/rapidrest/core.git",
6
- "author": "RapidREST <rapidrests@gmail.com>",
7
- "license": "MIT",
8
- "contributors": [
9
- "Jean-Philippe Steinmetz",
10
- "Arthur Thompson",
11
- "Thomas Buscaglia"
12
- ],
13
- "scripts": {
14
- "build": "rimraf dist && tsc",
15
- "deploy-docs": "ts-node tools/gh-pages-publish",
16
- "docs": "typedoc --plugin typedoc-plugin-markdown --out docs/reference src",
17
- "lint": "eslint ./src ./test",
18
- "local-audit": "yarn install && yarn npm audit -A -R \"$@\"",
19
- "checkup": "yarn dlx @yarnpkg/doctor \"$@\"",
20
- "dependency-check": "yarn dlx depcheck \"$@\"",
21
- "report-coverage": "cat ./coverage/lcov.info | coveralls",
22
- "test": "node --loader ts-node/esm ./node_modules/vitest/vitest.mjs run",
23
- "test:prod": "npm run lint && node --loader ts-node/esm ./node_modules/vitest/vitest.mjs run",
24
- "postversion": "git push && git push --tags"
25
- },
26
- "dependencies": {
27
- "form-data": "^4.0.5",
28
- "handlebars": "^4.7.8",
29
- "js-yaml": "^4.1.1",
30
- "jsonwebtoken": "^9.0.3",
31
- "jszip": "^3.10.1",
32
- "mkdirp": "^3.0.1",
33
- "readline": "^1.3.0",
34
- "triple-beam": "^1.4.1",
35
- "uuid": "^13.0.0",
36
- "validator": "^13.15.26"
37
- },
38
- "peerDependencies": {
39
- "axios": "1.x",
40
- "reflect-metadata": "0.2.x",
41
- "winston": "3.x",
42
- "winston-transport": "4.x"
43
- },
44
- "devDependencies": {
45
- "@slack/bolt": "^4.6.0",
46
- "@slack/web-api": "^7.13.0",
47
- "@types/eslint": "^9.6.1",
48
- "@types/express": "^5.0.6",
49
- "@types/js-yaml": "^4.0.9",
50
- "@types/jsonwebtoken": "^9.0.10",
51
- "@types/node": "^25.2.0",
52
- "@types/nodemailer": "^7.0.9",
53
- "@types/triple-beam": "^1.3.5",
54
- "@types/validator": "^13.15.10",
55
- "@typescript-eslint/eslint-plugin": "^8.54.0",
56
- "@typescript-eslint/parser": "^8.54.0",
57
- "axios": "^1.13.4",
58
- "coveralls": "^3.1.1",
59
- "eslint": "^9.39.2",
60
- "eslint-config-prettier": "^10.1.8",
61
- "eslint-plugin-import": "^2.32.0",
62
- "eslint-plugin-jsdoc": "^62.5.0",
63
- "mkdirp": "^3.0.1",
64
- "nconf": "^0.13.0",
65
- "nock": "^14.0.10",
66
- "nodemailer": "^7.0.13",
67
- "prettier": "^3.8.1",
68
- "reflect-metadata": "^0.2.2",
69
- "rimraf": "^6.1.2",
70
- "ts-node": "^10.9.2",
71
- "twilio": "^5.12.0",
72
- "typedoc": "^0.28.16",
73
- "typedoc-plugin-markdown": "^4.9.0",
74
- "typescript": "^5.9.3",
75
- "vitest": "^4.0.18",
76
- "winston": "^3.19.0",
77
- "winston-transport": "^4.9.0"
78
- },
79
- "resolutions": {
80
- "cross-spawn": "^7.0.5"
81
- },
82
- "packageManager": "yarn@4.5.0",
83
- "engines": {
84
- "node": ">=20.0.0"
85
- },
86
- "publishConfig": {
87
- "registry": "https://registry.npmjs.org/"
88
- },
89
- "main": "dist/lib/index.js",
90
- "type": "module",
91
- "typings": "dist/types/index.d.ts",
92
- "files": [
93
- "dist",
94
- "docs"
95
- ]
96
- }
1
+ {
2
+ "name": "@rapidrest/core",
3
+ "version": "1.1.0",
4
+ "description": "A collection of common utilities and core functionality for rapidly building RESTful applications.",
5
+ "repository": "https://github.com/rapidrest/core.git",
6
+ "author": "RapidREST <rapidrests@gmail.com>",
7
+ "license": "MIT",
8
+ "contributors": [
9
+ "Jean-Philippe Steinmetz",
10
+ "Arthur Thompson",
11
+ "Thomas Buscaglia"
12
+ ],
13
+ "scripts": {
14
+ "build": "rimraf dist && tsc",
15
+ "deploy-docs": "ts-node tools/gh-pages-publish",
16
+ "docs": "typedoc --plugin typedoc-plugin-markdown --out docs/reference src",
17
+ "lint": "eslint ./src ./test",
18
+ "local-audit": "yarn install && yarn npm audit -A -R \"$@\"",
19
+ "checkup": "yarn dlx @yarnpkg/doctor \"$@\"",
20
+ "dependency-check": "yarn dlx depcheck \"$@\"",
21
+ "report-coverage": "cat ./coverage/lcov.info | coveralls",
22
+ "test": "node --loader ts-node/esm ./node_modules/vitest/vitest.mjs run",
23
+ "test:prod": "npm run lint && node --loader ts-node/esm ./node_modules/vitest/vitest.mjs run",
24
+ "postversion": "git push && git push --tags"
25
+ },
26
+ "dependencies": {
27
+ "form-data": "^4.0.5",
28
+ "handlebars": "^4.7.8",
29
+ "js-yaml": "^4.1.1",
30
+ "jsonwebtoken": "^9.0.3",
31
+ "jszip": "^3.10.1",
32
+ "mkdirp": "^3.0.1",
33
+ "readline": "^1.3.0",
34
+ "triple-beam": "^1.4.1",
35
+ "uuid": "^13.0.0",
36
+ "validator": "^13.15.26"
37
+ },
38
+ "peerDependencies": {
39
+ "axios": "1.x",
40
+ "reflect-metadata": "0.2.x",
41
+ "winston": "3.x",
42
+ "winston-transport": "4.x"
43
+ },
44
+ "devDependencies": {
45
+ "@slack/bolt": "^4.6.0",
46
+ "@slack/web-api": "^7.13.0",
47
+ "@types/eslint": "^9.6.1",
48
+ "@types/express": "^5.0.6",
49
+ "@types/js-yaml": "^4.0.9",
50
+ "@types/jsonwebtoken": "^9.0.10",
51
+ "@types/node": "^25.2.0",
52
+ "@types/nodemailer": "^7.0.9",
53
+ "@types/triple-beam": "^1.3.5",
54
+ "@types/validator": "^13.15.10",
55
+ "@typescript-eslint/eslint-plugin": "^8.54.0",
56
+ "@typescript-eslint/parser": "^8.54.0",
57
+ "axios": "^1.13.4",
58
+ "coveralls": "^3.1.1",
59
+ "eslint": "^9.39.2",
60
+ "eslint-config-prettier": "^10.1.8",
61
+ "eslint-plugin-import": "^2.32.0",
62
+ "eslint-plugin-jsdoc": "^62.5.0",
63
+ "mkdirp": "^3.0.1",
64
+ "nconf": "^0.13.0",
65
+ "nock": "^14.0.10",
66
+ "nodemailer": "^7.0.13",
67
+ "prettier": "^3.8.1",
68
+ "reflect-metadata": "^0.2.2",
69
+ "rimraf": "^6.1.2",
70
+ "ts-node": "^10.9.2",
71
+ "twilio": "^5.12.0",
72
+ "typedoc": "^0.28.16",
73
+ "typedoc-plugin-markdown": "^4.9.0",
74
+ "typescript": "^5.9.3",
75
+ "vitest": "^4.0.18",
76
+ "winston": "^3.19.0",
77
+ "winston-transport": "^4.9.0"
78
+ },
79
+ "resolutions": {
80
+ "cross-spawn": "^7.0.5"
81
+ },
82
+ "packageManager": "yarn@4.5.0",
83
+ "engines": {
84
+ "node": ">=20.0.0"
85
+ },
86
+ "publishConfig": {
87
+ "registry": "https://registry.npmjs.org/"
88
+ },
89
+ "main": "dist/lib/index.js",
90
+ "type": "module",
91
+ "typings": "dist/types/index.d.ts",
92
+ "files": [
93
+ "dist",
94
+ "docs"
95
+ ]
96
+ }
@@ -1,42 +0,0 @@
1
- ///////////////////////////////////////////////////////////////////////////////
2
- // Copyright (C) 2020-2026 Jean-Philippe Steinmetz
3
- ///////////////////////////////////////////////////////////////////////////////
4
- import { parentPort, threadId } from "worker_threads";
5
- /**
6
- * Provides a Winston transport for forwarding logs from this thread to the parent's logger instance.
7
- *
8
- * Constructor requires two properties to be set in the `opts` argument:
9
- * - `parentPort`
10
- * - `threadId`
11
- */
12
- class ThreadLogger {
13
- log(data) {
14
- if (typeof data !== "object") {
15
- data = {
16
- level: "info",
17
- message: data,
18
- };
19
- }
20
- // Prefix the thread ID to the message
21
- data.message = `[Thread-${threadId}]: ${data.message}`;
22
- // Forward the log to the parent thread
23
- parentPort?.postMessage({
24
- type: "_WorkerLog",
25
- data,
26
- });
27
- }
28
- debug(message) {
29
- this.log({ level: "debug", message });
30
- }
31
- error(message) {
32
- this.log({ level: "error", message });
33
- }
34
- info(message) {
35
- this.log({ level: "info", message });
36
- }
37
- warn(message) {
38
- this.log({ level: "warn", message });
39
- }
40
- }
41
- module.exports = ThreadLogger;
42
- //# sourceMappingURL=ThreadLogger.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ThreadLogger.js","sourceRoot":"","sources":["../../../src/threads/ThreadLogger.js"],"names":[],"mappings":"AAAA,+EAA+E;AAC/E,kDAAkD;AAClD,+EAA+E;AAC/E,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAEtD;;;;;;GAMG;AACH,MAAM,YAAY;IACd,GAAG,CAAC,IAAI;QACJ,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE,CAAC;YAC3B,IAAI,GAAG;gBACH,KAAK,EAAE,MAAM;gBACb,OAAO,EAAE,IAAI;aAChB,CAAC;QACN,CAAC;QAED,sCAAsC;QACtC,IAAI,CAAC,OAAO,GAAG,WAAW,QAAQ,MAAM,IAAI,CAAC,OAAO,EAAE,CAAC;QAEvD,uCAAuC;QACvC,UAAU,EAAE,WAAW,CAAC;YACpB,IAAI,EAAE,YAAY;YAClB,IAAI;SACP,CAAC,CAAC;IACP,CAAC;IAED,KAAK,CAAC,OAAO;QACT,IAAI,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,CAAC,CAAC;IAC1C,CAAC;IAED,KAAK,CAAC,OAAO;QACT,IAAI,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,CAAC,CAAC;IAC1C,CAAC;IAED,IAAI,CAAC,OAAO;QACR,IAAI,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,CAAC;IACzC,CAAC;IAED,IAAI,CAAC,OAAO;QACR,IAAI,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,CAAC;IACzC,CAAC;CACJ;AAED,MAAM,CAAC,OAAO,GAAG,YAAY,CAAC"}
@@ -1,76 +0,0 @@
1
- ///////////////////////////////////////////////////////////////////////////////
2
- // Copyright (C) 2020-2026 Jean-Philippe Steinmetz
3
- ///////////////////////////////////////////////////////////////////////////////
4
- import { parentPort, workerData } from "worker_threads";
5
- import Logger from "./ThreadLogger";
6
- const logger = new Logger();
7
- logger.debug(`Starting ThreadWorkerEntry...`);
8
- logger.debug(`WorkerData: ${JSON.stringify(workerData)}`);
9
- // Register for parent messages
10
- if (workerData) {
11
- let worker = null;
12
- try {
13
- // Load the TypeScript environment if enabled
14
- if (workerData.allowTs) {
15
- require("ts-node").register();
16
- }
17
- // Import the worker class and initialize
18
- logger.debug(`Loading worker: ${workerData.worker}`);
19
- const mod = require(workerData.worker);
20
- if (typeof mod.default !== "function") {
21
- throw new Error(`No default export found for worker: ${workerPath}`);
22
- }
23
- logger.debug(`Initializing worker...`);
24
- const clazz = mod.default;
25
- const args = workerData.args || [];
26
- worker = new clazz(logger, ...args);
27
- void worker.start();
28
- parentPort.on("message", async (msg) => {
29
- try {
30
- switch (msg.type) {
31
- case "_StartWorker":
32
- await worker?.start();
33
- break;
34
- case "_StopWorker":
35
- logger.debug(`Stopping worker...`);
36
- await worker?.stop();
37
- process.exit(0);
38
- break;
39
- default:
40
- await worker?.onMessage(msg);
41
- break;
42
- }
43
- }
44
- catch (error) {
45
- parentPort?.postMessage({
46
- type: "_WorkerError",
47
- data: error,
48
- });
49
- }
50
- });
51
- parentPort.on("close", async () => {
52
- logger.debug(`Stopping worker...`);
53
- await worker?.stop();
54
- process.exit(0);
55
- });
56
- // Notify the coordinator that we're ready
57
- parentPort?.postMessage({ type: "_WorkerOnline" });
58
- logger.debug(`Worker is online!`);
59
- }
60
- catch (error) {
61
- parentPort?.postMessage({
62
- type: "_WorkerError",
63
- data: error,
64
- });
65
- logger.error(`An error occurred initializing worker.`);
66
- logger.error(error);
67
- }
68
- }
69
- else {
70
- logger.error(`WorkerData is missing.`);
71
- parentPort?.postMessage({
72
- type: "_WorkerError",
73
- data: new Error("WorkerData is missing."),
74
- });
75
- }
76
- //# sourceMappingURL=ThreadWorkerEntry.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ThreadWorkerEntry.js","sourceRoot":"","sources":["../../../src/threads/ThreadWorkerEntry.js"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};