@jfvilas/kwirth-common 0.4.21 → 0.4.23
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/dist/Global.d.ts +4 -1
- package/dist/InstanceConfig.d.ts +1 -5
- package/dist/RouteMessage.d.ts +2 -2
- package/package.json +1 -1
package/dist/Global.d.ts
CHANGED
package/dist/InstanceConfig.d.ts
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
import { AlertConfig } from "./AlertConfig";
|
|
2
1
|
import { InstanceMessage } from "./InstanceMessage";
|
|
3
|
-
import { LogConfig } from "./LogConfig";
|
|
4
|
-
import { MetricsConfig } from "./MetricsConfig";
|
|
5
|
-
import { OpsConfig } from "./OpsConfig";
|
|
6
2
|
export declare enum InstanceConfigObjectEnum {
|
|
7
3
|
PODS = "pods",
|
|
8
4
|
EVENTS = "events"
|
|
@@ -41,7 +37,7 @@ export interface InstanceConfig extends InstanceMessage {
|
|
|
41
37
|
group: string;
|
|
42
38
|
pod: string;
|
|
43
39
|
container: string;
|
|
44
|
-
data?:
|
|
40
|
+
data?: any;
|
|
45
41
|
}
|
|
46
42
|
export interface InstanceConfigResponse extends InstanceMessage {
|
|
47
43
|
text: string;
|
package/dist/RouteMessage.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { InstanceMessage } from "./InstanceMessage";
|
|
2
|
-
export interface
|
|
2
|
+
export interface IRouteMessage extends InstanceMessage {
|
|
3
3
|
msgtype: 'routemessage';
|
|
4
4
|
accessKey: string;
|
|
5
5
|
destChannel: string;
|
|
6
6
|
data: any;
|
|
7
7
|
}
|
|
8
|
-
export interface
|
|
8
|
+
export interface IRouteMessageResponse extends InstanceMessage {
|
|
9
9
|
msgtype: 'routemessageresponse';
|
|
10
10
|
data?: any;
|
|
11
11
|
}
|