namirasoft-core 1.1.9 → 1.1.10

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/.gitlab-ci.yml CHANGED
@@ -1,8 +1,8 @@
1
1
  stages:
2
- - publish
2
+ - npm-publish
3
3
 
4
4
  publish:
5
- stage: publish
5
+ stage: npm-publish
6
6
  script:
7
7
  - rm -rf node_modules
8
8
  - rm -rf dist
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "namirasoft-core",
3
3
  "description": "Namira Software Corporation Core NPM Package",
4
- "version": "1.1.9",
4
+ "version": "1.1.10",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "scripts": {},
@@ -9,7 +9,7 @@
9
9
  "license": "MIT",
10
10
  "dependencies": {
11
11
  "@types/md5": "^2.3.5",
12
- "@types/node": "^20.9.4",
12
+ "@types/node": "^20.10.0",
13
13
  "axios": "^1.6.2",
14
14
  "md5": "^2.3.0",
15
15
  "moment": "^2.29.4",
@@ -9,7 +9,7 @@ export class ObjectService extends ConvertService
9
9
  super();
10
10
  this.object = object;
11
11
  }
12
- override getNullString(): string | null
12
+ override getNullString()
13
13
  {
14
14
  let ans: string | null = null;
15
15
  if (Array.isArray(this.object))