@workbench-stack/output-server
Advanced tools
Comparing version 0.0.24-35 to 0.0.24-36
@@ -97,3 +97,3 @@ module.exports = | ||
module.exports = {"name":"@workbench-stack/output-server","version":"0.0.24-35","description":"Sample core for higher packages to depend on","main":"lib/index.js","scripts":{"jest":"./node_modules/.bin/jest","test":"cross-env ENV_FILE=../../config/test/test.env jest","test:debug":"npm test -- --runInBand","test:watch":"npm test -- --watch","prepublish":"npm run build","watch":"npm run build:lib:watch","build":"npm run build:clean && npm run build:lib","build:clean":"rimraf lib","build:lib":"webpack","build:lib:watch":"npm run build:lib -- --watch"},"publishConfig":{"access":"public"},"jest":{"testEnvironment":"node","roots":["src"],"modulePaths":["node_modules"],"moduleFileExtensions":["ts","tsx","js","json"],"transform":{"\\.(ts|tsx)$":"<rootDir>/../../../node_modules/ts-jest/preprocessor.js"},"testRegex":"/__tests__/.*test*\\.(ts|tsx|js)$"},"author":"CDMBase LLC","license":"ISC","devDependencies":{"@container-stack/logger-server-module":"0.0.26-5","cross-env":"^5.1.3","jest":"^22.4.2","node-cmd":"^3.0.0","rimraf":"^2.6.1","vsts-task-lib":"^2.5.0","webpack":"^4.7.0"},"peerDependencies":{"graphql-tag":">=2.0.0"},"typings":"lib/index.d.ts","typescript":{"definition":"lib/index.d.ts"}}; | ||
module.exports = {"name":"@workbench-stack/output-server","version":"0.0.24-36","description":"Sample core for higher packages to depend on","main":"lib/index.js","scripts":{"jest":"./node_modules/.bin/jest","test":"cross-env ENV_FILE=../../config/test/test.env jest","test:debug":"npm test -- --runInBand","test:watch":"npm test -- --watch","prepublish":"npm run build","watch":"npm run build:lib:watch","build":"npm run build:clean && npm run build:lib","build:clean":"rimraf lib","build:lib":"webpack","build:lib:watch":"npm run build:lib -- --watch"},"publishConfig":{"access":"public"},"jest":{"testEnvironment":"node","roots":["src"],"modulePaths":["node_modules"],"moduleFileExtensions":["ts","tsx","js","json"],"transform":{"\\.(ts|tsx)$":"<rootDir>/../../../node_modules/ts-jest/preprocessor.js"},"testRegex":"/__tests__/.*test*\\.(ts|tsx|js)$"},"author":"CDMBase LLC","license":"ISC","devDependencies":{"@container-stack/logger-server-module":"0.0.26-5","cross-env":"^5.1.3","jest":"^22.4.2","node-cmd":"^3.0.0","rimraf":"^2.6.1","vsts-task-lib":"^2.5.0","webpack":"^4.7.0"},"peerDependencies":{"graphql-tag":">=2.0.0"},"typings":"lib/index.d.ts","typescript":{"definition":"lib/index.d.ts"}}; | ||
@@ -549,3 +549,3 @@ /***/ }), | ||
this.settings = settings; | ||
this.topic = `${constants_1.NATS_HEMERA_KUBE_OUTPUT}/${this.settings.subTopic}`; | ||
this.topic = `${constants_1.NATS_HEMERA_KUBE_OUTPUT}/${this.settings.apiSubTopic}`; | ||
} | ||
@@ -552,0 +552,0 @@ addNewType(podName, newItem) { |
@@ -1,5 +0,4 @@ | ||
export interface IOutputSettings { | ||
topic: string; | ||
subTopic: string; | ||
import { ICommonSettings } from '@common-stack/core'; | ||
export interface IOutputSettings extends ICommonSettings { | ||
podConfig: any; | ||
} |
{ | ||
"name": "@workbench-stack/output-server", | ||
"version": "0.0.24-35", | ||
"version": "0.0.24-36", | ||
"description": "Sample core for higher packages to depend on", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -1,5 +0,5 @@ | ||
export interface IOutputSettings { | ||
topic: string; | ||
subTopic: string; | ||
import { ICommonSettings } from '@common-stack/core'; | ||
export interface IOutputSettings extends ICommonSettings{ | ||
podConfig: any; | ||
} |
@@ -15,3 +15,3 @@ import { injectable, inject, named, tagged } from 'inversify'; | ||
) {} | ||
private topic = `${NATS_HEMERA_KUBE_OUTPUT}/${this.settings.subTopic}`; | ||
private topic = `${NATS_HEMERA_KUBE_OUTPUT}/${this.settings.apiSubTopic}`; | ||
@@ -18,0 +18,0 @@ public addNewType(podName: string, newItem: INewOutputPod): void { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
80582
1302