@cryptexlabs/codex-nodejs-common 0.8.8 → 0.8.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
@@ -57,7 +57,7 @@ workflow:
57
57
  - git remote set-url origin git@$CI_SERVER_HOST:$CI_PROJECT_PATH.git
58
58
 
59
59
  build:
60
- image: cryptexlabs/ts-node-ci:1.7.7
60
+ image: cryptexlabs/ts-node-ci:3.3.5
61
61
  stage: build
62
62
  allow_failure: false
63
63
  rules:
@@ -76,7 +76,7 @@ build:
76
76
  - gitlab-org-docker
77
77
 
78
78
  release:
79
- image: cryptexlabs/ts-node-ci:1.7.7
79
+ image: cryptexlabs/ts-node-ci:3.3.5
80
80
  stage: release
81
81
  rules:
82
82
  - if: $CI_PIPELINE_SOURCE == "schedule"
@@ -106,7 +106,7 @@ release:
106
106
  - gitlab-org-docker
107
107
 
108
108
  deploy:
109
- image: cryptexlabs/ts-node-ci:1.7.7
109
+ image: cryptexlabs/ts-node-ci:3.3.5
110
110
  stage: deploy
111
111
  allow_failure: false
112
112
  rules:
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptexlabs/codex-nodejs-common",
3
- "version": "0.8.8",
3
+ "version": "0.8.10",
4
4
  "description": "Common code for Assistant applications",
5
5
  "main": "lib/src/index.js",
6
6
  "repository": "git@gitlab.com:cryptexlabs/public/codex-nodejs-common.git",
@@ -13,16 +13,18 @@
13
13
  ],
14
14
  "peerDependencies": {
15
15
  "@cryptexlabs/codex-data-model": "0.1.7",
16
- "@nestjs/common": "8.0.6",
17
- "@nestjs/core": "8.0.6"
18
- },
19
- "dependencies": {
20
16
  "@elastic/elasticsearch": "8.2.1",
17
+ "@nestjs/common": "8.0.6",
18
+ "@nestjs/core": "8.0.6",
21
19
  "@nestjs/elasticsearch": "8.1.0",
20
+ "@nestjs/platform-express": "^8.0.6",
22
21
  "@nestjs/platform-socket.io": "8.0.6",
23
22
  "@nestjs/platform-ws": "8.0.6",
24
23
  "@nestjs/swagger": "5.0.9",
25
24
  "@nestjs/websockets": "8.0.6",
25
+ "rxjs": "^7.1.0"
26
+ },
27
+ "dependencies": {
26
28
  "@types/express": "4.17.8",
27
29
  "@types/express-serve-static-core": "4.17.24",
28
30
  "@types/i18n": "0.12.0",
@@ -43,7 +45,6 @@
43
45
  "kafkajs": "2.2.0",
44
46
  "randomstring": "1.2.1",
45
47
  "reflect-metadata": "0.1.13",
46
- "rxjs": "7.5.7",
47
48
  "uuid": "8.3.2"
48
49
  },
49
50
  "devDependencies": {
@@ -161,7 +161,7 @@ let DefaultConfig = class DefaultConfig {
161
161
  }
162
162
  get apiPrefixes() {
163
163
  return process.env.API_PREFIXES
164
- ? process.env.APP_PREFIXES.split(",")
164
+ ? process.env.API_PREFIXES.split(",")
165
165
  : [this.appPrefix];
166
166
  }
167
167
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptexlabs/codex-nodejs-common",
3
- "version": "0.8.8",
3
+ "version": "0.8.10",
4
4
  "description": "Common code for Assistant applications",
5
5
  "main": "lib/src/index.js",
6
6
  "repository": "git@gitlab.com:cryptexlabs/public/codex-nodejs-common.git",
@@ -13,16 +13,18 @@
13
13
  ],
14
14
  "peerDependencies": {
15
15
  "@cryptexlabs/codex-data-model": "0.1.7",
16
- "@nestjs/common": "8.0.6",
17
- "@nestjs/core": "8.0.6"
18
- },
19
- "dependencies": {
20
16
  "@elastic/elasticsearch": "8.2.1",
17
+ "@nestjs/common": "8.0.6",
18
+ "@nestjs/core": "8.0.6",
21
19
  "@nestjs/elasticsearch": "8.1.0",
20
+ "@nestjs/platform-express": "^8.0.6",
22
21
  "@nestjs/platform-socket.io": "8.0.6",
23
22
  "@nestjs/platform-ws": "8.0.6",
24
23
  "@nestjs/swagger": "5.0.9",
25
24
  "@nestjs/websockets": "8.0.6",
25
+ "rxjs": "^7.1.0"
26
+ },
27
+ "dependencies": {
26
28
  "@types/express": "4.17.8",
27
29
  "@types/express-serve-static-core": "4.17.24",
28
30
  "@types/i18n": "0.12.0",
@@ -43,7 +45,6 @@
43
45
  "kafkajs": "2.2.0",
44
46
  "randomstring": "1.2.1",
45
47
  "reflect-metadata": "0.1.13",
46
- "rxjs": "7.5.7",
47
48
  "uuid": "8.3.2"
48
49
  },
49
50
  "devDependencies": {
@@ -229,7 +229,7 @@ export class DefaultConfig implements JsonSerializableInterface<any> {
229
229
 
230
230
  public get apiPrefixes(): string[] {
231
231
  return process.env.API_PREFIXES
232
- ? process.env.APP_PREFIXES.split(",")
232
+ ? process.env.API_PREFIXES.split(",")
233
233
  : [this.appPrefix];
234
234
  }
235
235
  }