namirasoft-node 1.3.3 → 1.3.5

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/package.json CHANGED
@@ -8,12 +8,14 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.3.3",
11
+ "version": "1.3.5",
12
12
  "main": "./dist/index.js",
13
13
  "types": "./dist/index.d.ts",
14
14
  "author": "Amir Abolhasani",
15
15
  "license": "MIT",
16
- "scripts": {},
16
+ "scripts": {
17
+ "build": ""
18
+ },
17
19
  "dependencies": {
18
20
  "@supercharge/request-ip": "^1.2.0",
19
21
  "@types/cors": "^2.8.17",
@@ -25,11 +27,11 @@
25
27
  "@types/swagger-jsdoc": "^6.0.4",
26
28
  "@types/swagger-ui-express": "^4.1.6",
27
29
  "cors": "^2.8.5",
28
- "express": "^4.19.1",
30
+ "express": "^4.19.2",
29
31
  "joi": "^17.12.2",
30
- "namirasoft-core": "^1.3.11",
32
+ "namirasoft-core": "^1.3.12",
31
33
  "namirasoft-log": "^1.3.2",
32
- "namirasoft-schema": "^1.3.0",
34
+ "namirasoft-schema": "^1.3.2",
33
35
  "nodemailer": "^6.9.13",
34
36
  "nodemailer-smtp-transport": "^2.7.4",
35
37
  "request-ip": "^3.3.0",
package/src/EnvService.ts CHANGED
@@ -8,7 +8,7 @@ export class EnvService extends ConvertService
8
8
  super(mandatory);
9
9
  this.name = name;
10
10
  }
11
- override getNullString(): string | null
11
+ override getNullString()
12
12
  {
13
13
  let ans = process.env[this.name];
14
14
  if (ans)
package/tsconfig.json CHANGED
@@ -26,7 +26,7 @@
26
26
  "forceConsistentCasingInFileNames": true,
27
27
  "noFallthroughCasesInSwitch": true,
28
28
  "isolatedModules": false,
29
- "removeComments": true,
29
+ "removeComments": true
30
30
  },
31
31
  "include": [
32
32
  "src",