@openfin/cloud-interop 0.41.67 → 0.41.69

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/out/index.js +0 -6
  2. package/package.json +2 -2
package/out/index.js CHANGED
@@ -3795,7 +3795,6 @@ class CloudInteropAPI {
3795
3795
  #sessionDetails;
3796
3796
  #mqttClient;
3797
3797
  #reconnectRetryLimit = 30;
3798
- #keepAliveIntervalSeconds = 30;
3799
3798
  #logger = (level, message) => {
3800
3799
  console[level](message);
3801
3800
  };
@@ -3825,7 +3824,6 @@ class CloudInteropAPI {
3825
3824
  this.#validateConnectParams(parameters);
3826
3825
  this.#connectionParams = parameters;
3827
3826
  this.#reconnectRetryLimit = parameters.reconnectRetryLimit || this.#reconnectRetryLimit;
3828
- this.#keepAliveIntervalSeconds = parameters.keepAliveIntervalSeconds || this.#keepAliveIntervalSeconds;
3829
3827
  this.#logger = parameters.logger || this.#logger;
3830
3828
  const { sourceId, platformId } = this.#connectionParams;
3831
3829
  try {
@@ -3841,7 +3839,6 @@ class CloudInteropAPI {
3841
3839
  this.#sessionDetails = createSessionResponse.data;
3842
3840
  const sessionRootTopic = this.#sessionDetails.sessionRootTopic;
3843
3841
  const clientOptions = {
3844
- keepalive: this.#keepAliveIntervalSeconds,
3845
3842
  clientId: this.#sessionDetails.sessionId,
3846
3843
  clean: true,
3847
3844
  protocolVersion: 5,
@@ -3852,9 +3849,6 @@ class CloudInteropAPI {
3852
3849
  payload: Buffer.from(JSON.stringify(this.#sessionDetails)),
3853
3850
  qos: 0,
3854
3851
  retain: false,
3855
- properties: {
3856
- willDelayInterval: 10,
3857
- },
3858
3852
  },
3859
3853
  username: this.#sessionDetails.token,
3860
3854
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/cloud-interop",
3
- "version": "0.41.67",
3
+ "version": "0.41.69",
4
4
  "description": "",
5
5
  "private": false,
6
6
  "files": [
@@ -19,7 +19,7 @@
19
19
  "author": "",
20
20
  "license": "SEE LICENSE IN LICENSE.md",
21
21
  "peerDependencies": {
22
- "@openfin/core": "41.100.63"
22
+ "@openfin/core": "41.100.65"
23
23
  },
24
24
  "dependencies": {
25
25
  "@openfin/cloud-interop-core-api": "^0.0.1-alpha.fba3468"