@quotemedia.com/streamer 2.31.0 → 2.33.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.
- package/README.md +2 -2
- package/examples/enduser-example.html +1 -1
- package/examples/enterprise-token-example.html +1 -1
- package/examples/reconnect-example.html +1 -1
- package/examples/subscription-example.html +1 -1
- package/examples/wmid-example.html +1 -1
- package/package.json +1 -1
- package/{qmci-streamer-2.31.0.js → qmci-streamer-2.33.0.js} +329 -38
- package/qmci-streamer-2.33.0.min.js +115 -0
- package/qmci-streamer-2.31.0.min.js +0 -115
package/README.md
CHANGED
|
@@ -9,10 +9,10 @@ Javascript library responsible to connect to the Quotemedia Streaming Service.
|
|
|
9
9
|
````
|
|
10
10
|
|
|
11
11
|
### Usage
|
|
12
|
-
Include the javascript file (qmci-streamer-2.
|
|
12
|
+
Include the javascript file (qmci-streamer-2.33.0.min.js) in your html page.
|
|
13
13
|
|
|
14
14
|
````
|
|
15
|
-
<script src="qmci-streamer-2.
|
|
15
|
+
<script src="qmci-streamer-2.33.0.min.js"></script>
|
|
16
16
|
````
|
|
17
17
|
|
|
18
18
|
After this, you should be able to use the Streamer object. It will allow you to authenticate, subscribe and unsubscribe
|