@nsshunt/stsobservability 0.0.8 → 0.0.9
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.
|
@@ -5621,6 +5621,21 @@ function v4(options, buf, offset) {
|
|
|
5621
5621
|
}
|
|
5622
5622
|
return unsafeStringify(rnds);
|
|
5623
5623
|
}
|
|
5624
|
+
var messageStatus = /* @__PURE__ */ ((messageStatus2) => {
|
|
5625
|
+
messageStatus2["INPROGRESS"] = "INPROGRESS";
|
|
5626
|
+
messageStatus2["SUCCESS"] = "SUCCESS";
|
|
5627
|
+
messageStatus2["FAIL"] = "FAIL";
|
|
5628
|
+
messageStatus2["INRETRY"] = "INRETRY";
|
|
5629
|
+
messageStatus2["KILLED"] = "KILLED";
|
|
5630
|
+
return messageStatus2;
|
|
5631
|
+
})(messageStatus || {});
|
|
5632
|
+
var messageStatusResponse = /* @__PURE__ */ ((messageStatusResponse2) => {
|
|
5633
|
+
messageStatusResponse2["SUBSCRIPTION_SUCCESSFULLY_ADDED"] = "SUBSCRIPTION_SUCCESSFULLY_ADDED";
|
|
5634
|
+
messageStatusResponse2["SUBSCRIPTION_SUCCESSFULLY_REMOVED"] = "SUBSCRIPTION_SUCCESSFULLY_REMOVED";
|
|
5635
|
+
messageStatusResponse2["SUBSCRIPTION_TIMEOUT_RENEWED"] = "SUBSCRIPTION_TIMEOUT_RENEWED";
|
|
5636
|
+
messageStatusResponse2["NO_MATCHED_SUBSCRIPTION"] = "NO_MATCHED_SUBSCRIPTION";
|
|
5637
|
+
return messageStatusResponse2;
|
|
5638
|
+
})(messageStatusResponse || {});
|
|
5624
5639
|
class SocketIoMessageSender {
|
|
5625
5640
|
constructor(options) {
|
|
5626
5641
|
__privateAdd(this, _LogDebugMessage2);
|
|
@@ -7000,12 +7015,15 @@ export {
|
|
|
7000
7015
|
STSInstrumentControllerPlugin,
|
|
7001
7016
|
STSInstrumentControllerPluginKey,
|
|
7002
7017
|
SocketIoClientHelper,
|
|
7018
|
+
SocketIoMessageSender,
|
|
7003
7019
|
StopInstruments,
|
|
7004
7020
|
SubscriptionTopic,
|
|
7005
7021
|
TransportType,
|
|
7006
7022
|
ePublishState,
|
|
7007
7023
|
globalServiceDefinitions,
|
|
7008
7024
|
influxDBDataType,
|
|
7025
|
+
messageStatus,
|
|
7026
|
+
messageStatusResponse,
|
|
7009
7027
|
useSTSInstrumentControllerPlugin
|
|
7010
7028
|
};
|
|
7011
7029
|
//# sourceMappingURL=stsobservability.mjs.map
|