@jfvilas/kwirth-common 0.3.53 → 0.3.55
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/AlarmConfig.d.ts +2 -2
- package/dist/AlarmMessage.d.ts +2 -2
- package/dist/IChannel.d.ts +13 -6
- package/dist/{ServiceConfig.d.ts → InstanceConfig.d.ts} +11 -11
- package/dist/InstanceConfig.js +57 -0
- package/dist/{ServiceMessage.d.ts → InstanceMessage.d.ts} +3 -3
- package/dist/InstanceMessage.js +8 -0
- package/dist/LogConfig.d.ts +2 -2
- package/dist/LogMessage.d.ts +2 -2
- package/dist/MetricsConfig.d.ts +2 -2
- package/dist/MetricsMessage.d.ts +2 -2
- package/dist/SignalMessage.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/ServiceConfig.js +0 -57
- package/dist/ServiceMessage.js +0 -8
package/dist/AlarmConfig.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export interface AlarmConfig extends
|
|
1
|
+
import { InstanceConfig } from './InstanceConfig';
|
|
2
|
+
export interface AlarmConfig extends InstanceConfig {
|
|
3
3
|
regexInfo: string[];
|
|
4
4
|
regexWarning: string[];
|
|
5
5
|
regexError: string[];
|
package/dist/AlarmMessage.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InstanceMessage } from './InstanceMessage';
|
|
2
2
|
export declare enum AlarmSeverityEnum {
|
|
3
3
|
INFO = "info",
|
|
4
4
|
WARNING = "warning",
|
|
5
5
|
ERROR = "error"
|
|
6
6
|
}
|
|
7
|
-
export interface AlarmMessage extends
|
|
7
|
+
export interface AlarmMessage extends InstanceMessage {
|
|
8
8
|
timestamp?: Date;
|
|
9
9
|
severity: AlarmSeverityEnum;
|
|
10
10
|
text: string;
|
package/dist/IChannel.d.ts
CHANGED
|
@@ -1,14 +1,21 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InstanceConfig, InstanceConfigActionEnum } from './InstanceConfig';
|
|
2
2
|
import WebSocket from 'ws';
|
|
3
|
+
type ChannelCapabilities = {
|
|
4
|
+
pauseable: boolean;
|
|
5
|
+
modifyable: boolean;
|
|
6
|
+
reconnectable: boolean;
|
|
7
|
+
};
|
|
3
8
|
interface IChannel {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
9
|
+
getCapabilities(): ChannelCapabilities;
|
|
10
|
+
getChannelScopeLevel(scope: string): number;
|
|
11
|
+
startInstance(webSocket: WebSocket, instanceConfig: InstanceConfig, podNamespace: string, podName: string, containerName: string): void;
|
|
12
|
+
pauseContinueInstance(webSocket: WebSocket, instanceConfig: InstanceConfig, action: InstanceConfigActionEnum): void;
|
|
13
|
+
modifyInstance(webSocket: WebSocket, instanceConfig: InstanceConfig): void;
|
|
8
14
|
containsInstance(instanceId: string): boolean;
|
|
9
|
-
stopInstance(webSocket: WebSocket,
|
|
15
|
+
stopInstance(webSocket: WebSocket, instanceConfig: InstanceConfig): void;
|
|
10
16
|
removeInstance(webSocket: WebSocket, instanceId: string): void;
|
|
11
17
|
removeConnection(webSocket: WebSocket): void;
|
|
12
18
|
updateConnection(webSocket: WebSocket, instanceId: string): boolean;
|
|
13
19
|
}
|
|
20
|
+
export type { ChannelCapabilities };
|
|
14
21
|
export { IChannel };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare enum
|
|
1
|
+
export declare enum InstanceConfigChannelEnum {
|
|
2
2
|
NONE = "none",
|
|
3
3
|
LOG = "log",
|
|
4
4
|
METRICS = "metrics",
|
|
@@ -6,7 +6,7 @@ export declare enum ServiceConfigChannelEnum {
|
|
|
6
6
|
ALARM = "alarm",
|
|
7
7
|
ALERT = "alert"
|
|
8
8
|
}
|
|
9
|
-
export declare enum
|
|
9
|
+
export declare enum InstanceConfigActionEnum {
|
|
10
10
|
START = "start",
|
|
11
11
|
STOP = "stop",
|
|
12
12
|
PAUSE = "pause",
|
|
@@ -15,15 +15,15 @@ export declare enum ServiceConfigActionEnum {
|
|
|
15
15
|
PING = "ping",
|
|
16
16
|
RECONNECT = "reconnect"
|
|
17
17
|
}
|
|
18
|
-
export declare enum
|
|
18
|
+
export declare enum InstanceConfigObjectEnum {
|
|
19
19
|
PODS = "pods",
|
|
20
20
|
EVENTS = "events"
|
|
21
21
|
}
|
|
22
|
-
export declare enum
|
|
22
|
+
export declare enum InstanceConfigFlowEnum {
|
|
23
23
|
REQUEST = "request",
|
|
24
24
|
RESPONSE = "response"
|
|
25
25
|
}
|
|
26
|
-
export declare enum
|
|
26
|
+
export declare enum InstanceConfigViewEnum {
|
|
27
27
|
NONE = "none",
|
|
28
28
|
CLUSTER = "cluster",
|
|
29
29
|
NAMESPACE = "namespace",
|
|
@@ -31,7 +31,7 @@ export declare enum ServiceConfigViewEnum {
|
|
|
31
31
|
POD = "pod",
|
|
32
32
|
CONTAINER = "container"
|
|
33
33
|
}
|
|
34
|
-
export declare enum
|
|
34
|
+
export declare enum InstanceConfigScopeEnum {
|
|
35
35
|
NONE = "none",
|
|
36
36
|
FILTER = "filter",
|
|
37
37
|
VIEW = "view",
|
|
@@ -43,15 +43,15 @@ export declare enum ServiceConfigScopeEnum {
|
|
|
43
43
|
CREATE = "create",
|
|
44
44
|
SUBSCRIBE = "subscribe"
|
|
45
45
|
}
|
|
46
|
-
export interface
|
|
46
|
+
export interface InstanceConfig {
|
|
47
47
|
channel: string;
|
|
48
|
-
objects:
|
|
49
|
-
action:
|
|
50
|
-
flow:
|
|
48
|
+
objects: InstanceConfigObjectEnum;
|
|
49
|
+
action: InstanceConfigActionEnum;
|
|
50
|
+
flow: InstanceConfigFlowEnum;
|
|
51
51
|
instance: string;
|
|
52
52
|
accessKey: string;
|
|
53
53
|
scope: string;
|
|
54
|
-
view:
|
|
54
|
+
view: InstanceConfigViewEnum;
|
|
55
55
|
namespace: string;
|
|
56
56
|
group: string;
|
|
57
57
|
pod: string;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InstanceConfigScopeEnum = exports.InstanceConfigViewEnum = exports.InstanceConfigFlowEnum = exports.InstanceConfigObjectEnum = exports.InstanceConfigActionEnum = exports.InstanceConfigChannelEnum = void 0;
|
|
4
|
+
var InstanceConfigChannelEnum;
|
|
5
|
+
(function (InstanceConfigChannelEnum) {
|
|
6
|
+
InstanceConfigChannelEnum["NONE"] = "none";
|
|
7
|
+
InstanceConfigChannelEnum["LOG"] = "log";
|
|
8
|
+
InstanceConfigChannelEnum["METRICS"] = "metrics";
|
|
9
|
+
InstanceConfigChannelEnum["AUDIT"] = "audit";
|
|
10
|
+
InstanceConfigChannelEnum["ALARM"] = "alarm";
|
|
11
|
+
InstanceConfigChannelEnum["ALERT"] = "alert";
|
|
12
|
+
})(InstanceConfigChannelEnum || (exports.InstanceConfigChannelEnum = InstanceConfigChannelEnum = {}));
|
|
13
|
+
var InstanceConfigActionEnum;
|
|
14
|
+
(function (InstanceConfigActionEnum) {
|
|
15
|
+
InstanceConfigActionEnum["START"] = "start";
|
|
16
|
+
InstanceConfigActionEnum["STOP"] = "stop";
|
|
17
|
+
InstanceConfigActionEnum["PAUSE"] = "pause";
|
|
18
|
+
InstanceConfigActionEnum["CONTINUE"] = "continue";
|
|
19
|
+
InstanceConfigActionEnum["MODIFY"] = "modify";
|
|
20
|
+
InstanceConfigActionEnum["PING"] = "ping";
|
|
21
|
+
InstanceConfigActionEnum["RECONNECT"] = "reconnect";
|
|
22
|
+
})(InstanceConfigActionEnum || (exports.InstanceConfigActionEnum = InstanceConfigActionEnum = {}));
|
|
23
|
+
var InstanceConfigObjectEnum;
|
|
24
|
+
(function (InstanceConfigObjectEnum) {
|
|
25
|
+
InstanceConfigObjectEnum["PODS"] = "pods";
|
|
26
|
+
InstanceConfigObjectEnum["EVENTS"] = "events";
|
|
27
|
+
})(InstanceConfigObjectEnum || (exports.InstanceConfigObjectEnum = InstanceConfigObjectEnum = {}));
|
|
28
|
+
var InstanceConfigFlowEnum;
|
|
29
|
+
(function (InstanceConfigFlowEnum) {
|
|
30
|
+
InstanceConfigFlowEnum["REQUEST"] = "request";
|
|
31
|
+
InstanceConfigFlowEnum["RESPONSE"] = "response";
|
|
32
|
+
})(InstanceConfigFlowEnum || (exports.InstanceConfigFlowEnum = InstanceConfigFlowEnum = {}));
|
|
33
|
+
var InstanceConfigViewEnum;
|
|
34
|
+
(function (InstanceConfigViewEnum) {
|
|
35
|
+
InstanceConfigViewEnum["NONE"] = "none";
|
|
36
|
+
InstanceConfigViewEnum["CLUSTER"] = "cluster";
|
|
37
|
+
InstanceConfigViewEnum["NAMESPACE"] = "namespace";
|
|
38
|
+
InstanceConfigViewEnum["GROUP"] = "group";
|
|
39
|
+
InstanceConfigViewEnum["POD"] = "pod";
|
|
40
|
+
InstanceConfigViewEnum["CONTAINER"] = "container";
|
|
41
|
+
})(InstanceConfigViewEnum || (exports.InstanceConfigViewEnum = InstanceConfigViewEnum = {}));
|
|
42
|
+
var InstanceConfigScopeEnum;
|
|
43
|
+
(function (InstanceConfigScopeEnum) {
|
|
44
|
+
InstanceConfigScopeEnum["NONE"] = "none";
|
|
45
|
+
// LOG
|
|
46
|
+
InstanceConfigScopeEnum["FILTER"] = "filter";
|
|
47
|
+
InstanceConfigScopeEnum["VIEW"] = "view";
|
|
48
|
+
InstanceConfigScopeEnum["RESTART"] = "restart";
|
|
49
|
+
InstanceConfigScopeEnum["API"] = "api";
|
|
50
|
+
InstanceConfigScopeEnum["CLUSTER"] = "cluster";
|
|
51
|
+
// METRICS
|
|
52
|
+
InstanceConfigScopeEnum["SNAPSHOT"] = "snapshot";
|
|
53
|
+
InstanceConfigScopeEnum["STREAM"] = "stream";
|
|
54
|
+
// ALARM
|
|
55
|
+
InstanceConfigScopeEnum["CREATE"] = "create";
|
|
56
|
+
InstanceConfigScopeEnum["SUBSCRIBE"] = "subscribe";
|
|
57
|
+
})(InstanceConfigScopeEnum || (exports.InstanceConfigScopeEnum = InstanceConfigScopeEnum = {}));
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export declare enum
|
|
1
|
+
export declare enum InstanceMessageTypeEnum {
|
|
2
2
|
DATA = "data",
|
|
3
3
|
SIGNAL = "signal"
|
|
4
4
|
}
|
|
5
|
-
export interface
|
|
5
|
+
export interface InstanceMessage {
|
|
6
6
|
channel: string;
|
|
7
7
|
instance: string;
|
|
8
8
|
reconnectKey?: string;
|
|
9
|
-
type:
|
|
9
|
+
type: InstanceMessageTypeEnum;
|
|
10
10
|
namespace?: string;
|
|
11
11
|
pod?: string;
|
|
12
12
|
container?: string;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InstanceMessageTypeEnum = void 0;
|
|
4
|
+
var InstanceMessageTypeEnum;
|
|
5
|
+
(function (InstanceMessageTypeEnum) {
|
|
6
|
+
InstanceMessageTypeEnum["DATA"] = "data";
|
|
7
|
+
InstanceMessageTypeEnum["SIGNAL"] = "signal";
|
|
8
|
+
})(InstanceMessageTypeEnum || (exports.InstanceMessageTypeEnum = InstanceMessageTypeEnum = {}));
|
package/dist/LogConfig.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export interface LogConfig extends
|
|
1
|
+
import { InstanceConfig } from './InstanceConfig';
|
|
2
|
+
export interface LogConfig extends InstanceConfig {
|
|
3
3
|
timestamp: boolean;
|
|
4
4
|
previous: boolean;
|
|
5
5
|
maxMessages: number;
|
package/dist/LogMessage.d.ts
CHANGED
package/dist/MetricsConfig.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InstanceConfig } from "./InstanceConfig";
|
|
2
2
|
export declare enum MetricsConfigModeEnum {
|
|
3
3
|
SNAPSHOT = "snapshot",
|
|
4
4
|
STREAM = "stream"
|
|
5
5
|
}
|
|
6
|
-
export interface MetricsConfig extends
|
|
6
|
+
export interface MetricsConfig extends InstanceConfig {
|
|
7
7
|
mode: MetricsConfigModeEnum;
|
|
8
8
|
metrics: string[];
|
|
9
9
|
interval?: number;
|
package/dist/MetricsMessage.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InstanceMessage } from "./InstanceMessage";
|
|
2
2
|
export interface AssetMetrics {
|
|
3
3
|
assetName: string;
|
|
4
4
|
values: {
|
|
@@ -6,7 +6,7 @@ export interface AssetMetrics {
|
|
|
6
6
|
metricValue: number;
|
|
7
7
|
}[];
|
|
8
8
|
}
|
|
9
|
-
export interface MetricsMessage extends
|
|
9
|
+
export interface MetricsMessage extends InstanceMessage {
|
|
10
10
|
assets: AssetMetrics[];
|
|
11
11
|
timestamp: number;
|
|
12
12
|
}
|
package/dist/SignalMessage.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InstanceMessage } from './InstanceMessage';
|
|
2
2
|
export declare enum SignalMessageLevelEnum {
|
|
3
3
|
INFO = "info",
|
|
4
4
|
WARNING = "warning",
|
|
5
5
|
ERROR = "error"
|
|
6
6
|
}
|
|
7
|
-
export interface SignalMessage extends
|
|
7
|
+
export interface SignalMessage extends InstanceMessage {
|
|
8
8
|
timestamp?: Date;
|
|
9
9
|
level: SignalMessageLevelEnum;
|
|
10
10
|
text: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './StreamMessage';
|
|
2
|
-
export * from './
|
|
2
|
+
export * from './InstanceMessage';
|
|
3
3
|
export * from './AlarmMessage';
|
|
4
4
|
export * from './LogMessage';
|
|
5
5
|
export * from './MetricsMessage';
|
|
@@ -9,7 +9,7 @@ export * from './AccessKey';
|
|
|
9
9
|
export * from './IChannel';
|
|
10
10
|
export * from './KwirthData';
|
|
11
11
|
export * from './AlarmConfig';
|
|
12
|
-
export * from './
|
|
12
|
+
export * from './InstanceConfig';
|
|
13
13
|
export * from './LogConfig';
|
|
14
14
|
export * from './MetricsConfig';
|
|
15
15
|
export * from './Version';
|
package/dist/index.js
CHANGED
|
@@ -30,7 +30,7 @@ See the License for the specific language governing permissions and
|
|
|
30
30
|
limitations under the License.
|
|
31
31
|
*/
|
|
32
32
|
__exportStar(require("./StreamMessage"), exports);
|
|
33
|
-
__exportStar(require("./
|
|
33
|
+
__exportStar(require("./InstanceMessage"), exports);
|
|
34
34
|
__exportStar(require("./AlarmMessage"), exports);
|
|
35
35
|
__exportStar(require("./LogMessage"), exports);
|
|
36
36
|
__exportStar(require("./MetricsMessage"), exports);
|
|
@@ -40,7 +40,7 @@ __exportStar(require("./AccessKey"), exports);
|
|
|
40
40
|
__exportStar(require("./IChannel"), exports);
|
|
41
41
|
__exportStar(require("./KwirthData"), exports);
|
|
42
42
|
__exportStar(require("./AlarmConfig"), exports);
|
|
43
|
-
__exportStar(require("./
|
|
43
|
+
__exportStar(require("./InstanceConfig"), exports);
|
|
44
44
|
__exportStar(require("./LogConfig"), exports);
|
|
45
45
|
__exportStar(require("./MetricsConfig"), exports);
|
|
46
46
|
__exportStar(require("./Version"), exports);
|
package/package.json
CHANGED
package/dist/ServiceConfig.js
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ServiceConfigScopeEnum = exports.ServiceConfigViewEnum = exports.ServiceConfigFlowEnum = exports.ServiceConfigObjectEnum = exports.ServiceConfigActionEnum = exports.ServiceConfigChannelEnum = void 0;
|
|
4
|
-
var ServiceConfigChannelEnum;
|
|
5
|
-
(function (ServiceConfigChannelEnum) {
|
|
6
|
-
ServiceConfigChannelEnum["NONE"] = "none";
|
|
7
|
-
ServiceConfigChannelEnum["LOG"] = "log";
|
|
8
|
-
ServiceConfigChannelEnum["METRICS"] = "metrics";
|
|
9
|
-
ServiceConfigChannelEnum["AUDIT"] = "audit";
|
|
10
|
-
ServiceConfigChannelEnum["ALARM"] = "alarm";
|
|
11
|
-
ServiceConfigChannelEnum["ALERT"] = "alert";
|
|
12
|
-
})(ServiceConfigChannelEnum || (exports.ServiceConfigChannelEnum = ServiceConfigChannelEnum = {}));
|
|
13
|
-
var ServiceConfigActionEnum;
|
|
14
|
-
(function (ServiceConfigActionEnum) {
|
|
15
|
-
ServiceConfigActionEnum["START"] = "start";
|
|
16
|
-
ServiceConfigActionEnum["STOP"] = "stop";
|
|
17
|
-
ServiceConfigActionEnum["PAUSE"] = "pause";
|
|
18
|
-
ServiceConfigActionEnum["CONTINUE"] = "continue";
|
|
19
|
-
ServiceConfigActionEnum["MODIFY"] = "modify";
|
|
20
|
-
ServiceConfigActionEnum["PING"] = "ping";
|
|
21
|
-
ServiceConfigActionEnum["RECONNECT"] = "reconnect";
|
|
22
|
-
})(ServiceConfigActionEnum || (exports.ServiceConfigActionEnum = ServiceConfigActionEnum = {}));
|
|
23
|
-
var ServiceConfigObjectEnum;
|
|
24
|
-
(function (ServiceConfigObjectEnum) {
|
|
25
|
-
ServiceConfigObjectEnum["PODS"] = "pods";
|
|
26
|
-
ServiceConfigObjectEnum["EVENTS"] = "events";
|
|
27
|
-
})(ServiceConfigObjectEnum || (exports.ServiceConfigObjectEnum = ServiceConfigObjectEnum = {}));
|
|
28
|
-
var ServiceConfigFlowEnum;
|
|
29
|
-
(function (ServiceConfigFlowEnum) {
|
|
30
|
-
ServiceConfigFlowEnum["REQUEST"] = "request";
|
|
31
|
-
ServiceConfigFlowEnum["RESPONSE"] = "response";
|
|
32
|
-
})(ServiceConfigFlowEnum || (exports.ServiceConfigFlowEnum = ServiceConfigFlowEnum = {}));
|
|
33
|
-
var ServiceConfigViewEnum;
|
|
34
|
-
(function (ServiceConfigViewEnum) {
|
|
35
|
-
ServiceConfigViewEnum["NONE"] = "none";
|
|
36
|
-
ServiceConfigViewEnum["CLUSTER"] = "cluster";
|
|
37
|
-
ServiceConfigViewEnum["NAMESPACE"] = "namespace";
|
|
38
|
-
ServiceConfigViewEnum["GROUP"] = "group";
|
|
39
|
-
ServiceConfigViewEnum["POD"] = "pod";
|
|
40
|
-
ServiceConfigViewEnum["CONTAINER"] = "container";
|
|
41
|
-
})(ServiceConfigViewEnum || (exports.ServiceConfigViewEnum = ServiceConfigViewEnum = {}));
|
|
42
|
-
var ServiceConfigScopeEnum;
|
|
43
|
-
(function (ServiceConfigScopeEnum) {
|
|
44
|
-
ServiceConfigScopeEnum["NONE"] = "none";
|
|
45
|
-
// LOG
|
|
46
|
-
ServiceConfigScopeEnum["FILTER"] = "filter";
|
|
47
|
-
ServiceConfigScopeEnum["VIEW"] = "view";
|
|
48
|
-
ServiceConfigScopeEnum["RESTART"] = "restart";
|
|
49
|
-
ServiceConfigScopeEnum["API"] = "api";
|
|
50
|
-
ServiceConfigScopeEnum["CLUSTER"] = "cluster";
|
|
51
|
-
// METRICS
|
|
52
|
-
ServiceConfigScopeEnum["SNAPSHOT"] = "snapshot";
|
|
53
|
-
ServiceConfigScopeEnum["STREAM"] = "stream";
|
|
54
|
-
// ALARM
|
|
55
|
-
ServiceConfigScopeEnum["CREATE"] = "create";
|
|
56
|
-
ServiceConfigScopeEnum["SUBSCRIBE"] = "subscribe";
|
|
57
|
-
})(ServiceConfigScopeEnum || (exports.ServiceConfigScopeEnum = ServiceConfigScopeEnum = {}));
|
package/dist/ServiceMessage.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ServiceMessageTypeEnum = void 0;
|
|
4
|
-
var ServiceMessageTypeEnum;
|
|
5
|
-
(function (ServiceMessageTypeEnum) {
|
|
6
|
-
ServiceMessageTypeEnum["DATA"] = "data";
|
|
7
|
-
ServiceMessageTypeEnum["SIGNAL"] = "signal";
|
|
8
|
-
})(ServiceMessageTypeEnum || (exports.ServiceMessageTypeEnum = ServiceMessageTypeEnum = {}));
|