@jfvilas/kwirth-common 0.3.76 → 0.3.78

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.
@@ -1,5 +1,4 @@
1
- import { InstanceConfig } from './InstanceConfig';
2
- export interface AlertConfig extends InstanceConfig {
1
+ export interface AlertConfig {
3
2
  regexInfo: string[];
4
3
  regexWarning: string[];
5
4
  regexError: string[];
@@ -1,5 +1,4 @@
1
- import { InstanceConfig } from './InstanceConfig';
2
- export interface LogConfig extends InstanceConfig {
1
+ export interface LogConfig {
3
2
  timestamp: boolean;
4
3
  previous: boolean;
5
4
  maxMessages: number;
@@ -1,9 +1,8 @@
1
- import { InstanceConfig } from "./InstanceConfig";
2
1
  export declare enum MetricsConfigModeEnum {
3
2
  SNAPSHOT = "snapshot",
4
3
  STREAM = "stream"
5
4
  }
6
- export interface MetricsConfig extends InstanceConfig {
5
+ export interface MetricsConfig {
7
6
  mode: MetricsConfigModeEnum;
8
7
  aggregate: boolean;
9
8
  interval: number;
@@ -1,3 +1,2 @@
1
- import { InstanceConfig } from './InstanceConfig';
2
- export interface OpsConfig extends InstanceConfig {
1
+ export interface OpsConfig {
3
2
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jfvilas/kwirth-common",
3
- "version": "0.3.76",
3
+ "version": "0.3.78",
4
4
  "description": "Common interfaces for integrating applications with Kwirth",
5
5
  "scripts": {
6
6
  "build": "del .\\dist\\* /s /q && tsc"