@jfvilas/kwirth-common 0.3.62 → 0.3.63
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/InstanceConfig.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare enum InstanceConfigChannelEnum {
|
|
|
7
7
|
ALERT = "alert"
|
|
8
8
|
}
|
|
9
9
|
export declare enum InstanceConfigActionEnum {
|
|
10
|
+
NONE = "none",
|
|
10
11
|
START = "start",
|
|
11
12
|
STOP = "stop",
|
|
12
13
|
PAUSE = "pause",
|
|
@@ -21,7 +22,8 @@ export declare enum InstanceConfigObjectEnum {
|
|
|
21
22
|
}
|
|
22
23
|
export declare enum InstanceConfigFlowEnum {
|
|
23
24
|
REQUEST = "request",
|
|
24
|
-
RESPONSE = "response"
|
|
25
|
+
RESPONSE = "response",
|
|
26
|
+
UNSOLICITED = "unsolicited"
|
|
25
27
|
}
|
|
26
28
|
export declare enum InstanceConfigViewEnum {
|
|
27
29
|
NONE = "none",
|
package/dist/InstanceConfig.js
CHANGED
|
@@ -12,6 +12,7 @@ var InstanceConfigChannelEnum;
|
|
|
12
12
|
})(InstanceConfigChannelEnum || (exports.InstanceConfigChannelEnum = InstanceConfigChannelEnum = {}));
|
|
13
13
|
var InstanceConfigActionEnum;
|
|
14
14
|
(function (InstanceConfigActionEnum) {
|
|
15
|
+
InstanceConfigActionEnum["NONE"] = "none";
|
|
15
16
|
InstanceConfigActionEnum["START"] = "start";
|
|
16
17
|
InstanceConfigActionEnum["STOP"] = "stop";
|
|
17
18
|
InstanceConfigActionEnum["PAUSE"] = "pause";
|
|
@@ -29,6 +30,7 @@ var InstanceConfigFlowEnum;
|
|
|
29
30
|
(function (InstanceConfigFlowEnum) {
|
|
30
31
|
InstanceConfigFlowEnum["REQUEST"] = "request";
|
|
31
32
|
InstanceConfigFlowEnum["RESPONSE"] = "response";
|
|
33
|
+
InstanceConfigFlowEnum["UNSOLICITED"] = "unsolicited";
|
|
32
34
|
})(InstanceConfigFlowEnum || (exports.InstanceConfigFlowEnum = InstanceConfigFlowEnum = {}));
|
|
33
35
|
var InstanceConfigViewEnum;
|
|
34
36
|
(function (InstanceConfigViewEnum) {
|