@cryptexlabs/codex-nodejs-common 0.8.8 → 0.8.9

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/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.9",
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",
@@ -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.9",
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",
@@ -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
  }