@quotemedia.com/streamer 2.53.0 → 2.54.0

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.
@@ -1,7 +1,7 @@
1
1
  <html>
2
2
 
3
3
  <head>
4
- <script src="qmci-streamer-2.53.0.min.js"></script>
4
+ <script src="qmci-streamer-2.54.0.min.js"></script>
5
5
  </head>
6
6
 
7
7
  <body>
@@ -1,7 +1,7 @@
1
1
  <html>
2
2
 
3
3
  <head>
4
- <script src="qmci-streamer-2.53.0.min.js"></script>
4
+ <script src="qmci-streamer-2.54.0.min.js"></script>
5
5
  </head>
6
6
 
7
7
  <body>
@@ -1,7 +1,7 @@
1
1
  <html>
2
2
 
3
3
  <head>
4
- <script src="qmci-streamer-2.53.0.min.js"></script>
4
+ <script src="qmci-streamer-2.54.0.min.js"></script>
5
5
  </head>
6
6
 
7
7
  <body>
@@ -2,7 +2,7 @@
2
2
  <html lang="en">
3
3
 
4
4
  <head>
5
- <script src="qmci-streamer-2.53.0.min.js"></script>
5
+ <script src="qmci-streamer-2.54.0.min.js"></script>
6
6
  <script src="https://cdnjs.cloudflare.com/ajax/libs/stomp.js/2.3.3/stomp.min.js"></script>
7
7
  </head>
8
8
 
@@ -1,7 +1,7 @@
1
1
  <html>
2
2
 
3
3
  <head>
4
- <script src="qmci-streamer-2.53.0.min.js"></script>
4
+ <script src="qmci-streamer-2.54.0.min.js"></script>
5
5
  </head>
6
6
 
7
7
  <body>
@@ -1,7 +1,7 @@
1
1
  <html>
2
2
 
3
3
  <head>
4
- <script src="qmci-streamer-2.53.0.min.js"></script>
4
+ <script src="qmci-streamer-2.54.0.min.js"></script>
5
5
  </head>
6
6
 
7
7
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quotemedia.com/streamer",
3
- "version": "2.53.0",
3
+ "version": "2.54.0",
4
4
  "description": "A JavaScript client for QuoteMedia's streaming data service.",
5
5
  "main": "lib/index.js",
6
6
  "author": "QuoteMedia",
@@ -15397,6 +15397,10 @@ var StompStreamingService = function () {
15397
15397
  authMessage.rejectExcessiveConnection = this.config.rejectExcessiveConnection;
15398
15398
  }
15399
15399
 
15400
+ if (this.config.entMax != null && this.config.entMax !== "") {
15401
+ authMessage.entMax = this.config.entMax;
15402
+ }
15403
+
15400
15404
  stompClient.connect(headers, function (frame) {
15401
15405
  stompClient.subscribe('/user/queue/messages', function (responseMessage) {
15402
15406
  handlers(headers).onMessage(responseMessage);
@@ -15486,7 +15490,7 @@ exports.__esModule = true;
15486
15490
  */
15487
15491
 
15488
15492
  var LIBRARY_NAME = exports.LIBRARY_NAME = "JavaScript";
15489
- var VERSION = exports.VERSION = "2.53.0";
15493
+ var VERSION = exports.VERSION = "2.54.0";
15490
15494
 
15491
15495
  /**
15492
15496
  * Streamer message api namespace.
@@ -16213,6 +16217,12 @@ messages.control.AuthenticationMessage = function () {
16213
16217
  * @type {Boolean}
16214
16218
  */
16215
16219
  this.rejectExcessiveConnection = false;
16220
+
16221
+ /**
16222
+ * EntMax
16223
+ * @type {String}
16224
+ */
16225
+ this.entMax = null;
16216
16226
  };
16217
16227
  messages.control.AuthenticationMessage.prototype = new messages.control.CtrlMessage();
16218
16228