@jfvilas/kwirth-common 0.4.14 → 0.4.16

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.
@@ -0,0 +1,15 @@
1
+ declare enum SourceEnum {
2
+ DOCKER = "docker",
3
+ KUBERNETES = "kubernetes"
4
+ }
5
+ type ChannelData = {
6
+ id: string;
7
+ routable: boolean;
8
+ pauseable: boolean;
9
+ modifyable: boolean;
10
+ reconnectable: boolean;
11
+ sources: SourceEnum[];
12
+ metrics: boolean;
13
+ };
14
+ export type { ChannelData };
15
+ export { SourceEnum };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SourceEnum = void 0;
4
+ var SourceEnum;
5
+ (function (SourceEnum) {
6
+ SourceEnum["DOCKER"] = "docker";
7
+ SourceEnum["KUBERNETES"] = "kubernetes";
8
+ })(SourceEnum || (exports.SourceEnum = SourceEnum = {}));
@@ -3,4 +3,5 @@ export interface LogConfig {
3
3
  previous: boolean;
4
4
  maxMessages: number;
5
5
  fromStart: boolean;
6
+ startTime: number;
6
7
  }
@@ -22,5 +22,6 @@ export interface TrivyMessageResponse extends InstanceMessage {
22
22
  group: string;
23
23
  pod: string;
24
24
  container: string;
25
+ msgsubtype?: string;
25
26
  data?: any;
26
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jfvilas/kwirth-common",
3
- "version": "0.4.14",
3
+ "version": "0.4.16",
4
4
  "description": "Common interfaces for integrating applications with Kwirth",
5
5
  "scripts": {
6
6
  "build": "del .\\dist\\* /s /q && tsc"