@stomp/stompjs 5.0.0-beta.4 → 5.0.2
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 +8 -8
- package/bundles/stomp.umd.js +310 -65
- package/bundles/stomp.umd.js.map +1 -1
- package/bundles/stomp.umd.min.js +1 -1
- package/bundles/stomp.umd.min.js.map +1 -1
- package/esm5/byte.d.ts +3 -1
- package/esm5/byte.js +3 -1
- package/esm5/byte.js.map +1 -1
- package/esm5/client.d.ts +12 -9
- package/esm5/client.js +25 -7
- package/esm5/client.js.map +1 -1
- package/esm5/compatibility/compat-client.d.ts +5 -3
- package/esm5/compatibility/compat-client.js +11 -34
- package/esm5/compatibility/compat-client.js.map +1 -1
- package/esm5/compatibility/heartbeat-info.d.ts +12 -0
- package/esm5/compatibility/heartbeat-info.js +35 -0
- package/esm5/compatibility/heartbeat-info.js.map +1 -0
- package/esm5/compatibility/stomp.d.ts +25 -2
- package/esm5/compatibility/stomp.js +29 -5
- package/esm5/compatibility/stomp.js.map +1 -1
- package/esm5/frame.d.ts +10 -3
- package/esm5/frame.js +9 -5
- package/esm5/frame.js.map +1 -1
- package/esm5/index.js +5 -0
- package/esm5/index.js.map +1 -1
- package/esm5/message.d.ts +7 -5
- package/esm5/message.js +29 -0
- package/esm5/message.js.map +1 -1
- package/esm5/parser.d.ts +5 -3
- package/esm5/parser.js +6 -3
- package/esm5/parser.js.map +1 -1
- package/esm5/stomp-config.d.ts +6 -4
- package/esm5/stomp-config.js +13 -0
- package/esm5/stomp-config.js.map +1 -1
- package/esm5/stomp-handler.d.ts +9 -7
- package/esm5/stomp-handler.js +43 -36
- package/esm5/stomp-handler.js.map +1 -1
- package/esm5/stomp-headers.d.ts +3 -1
- package/esm5/stomp-headers.js +15 -0
- package/esm5/stomp-headers.js.map +1 -1
- package/esm5/stomp-subscription.d.ts +6 -4
- package/esm5/stomp-subscription.js +11 -0
- package/esm5/stomp-subscription.js.map +1 -1
- package/esm5/transaction.d.ts +3 -1
- package/esm5/transaction.js +13 -0
- package/esm5/transaction.js.map +1 -1
- package/esm5/types.d.ts +38 -14
- package/esm5/versions.d.ts +11 -3
- package/esm5/versions.js +11 -3
- package/esm5/versions.js.map +1 -1
- package/esm6/byte.d.ts +3 -1
- package/esm6/byte.js +3 -1
- package/esm6/byte.js.map +1 -1
- package/esm6/client.d.ts +12 -9
- package/esm6/client.js +27 -9
- package/esm6/client.js.map +1 -1
- package/esm6/compatibility/compat-client.d.ts +5 -3
- package/esm6/compatibility/compat-client.js +11 -34
- package/esm6/compatibility/compat-client.js.map +1 -1
- package/esm6/compatibility/heartbeat-info.d.ts +12 -0
- package/esm6/compatibility/heartbeat-info.js +33 -0
- package/esm6/compatibility/heartbeat-info.js.map +1 -0
- package/esm6/compatibility/stomp.d.ts +25 -2
- package/esm6/compatibility/stomp.js +31 -7
- package/esm6/compatibility/stomp.js.map +1 -1
- package/esm6/frame.d.ts +10 -3
- package/esm6/frame.js +10 -6
- package/esm6/frame.js.map +1 -1
- package/esm6/index.js +5 -0
- package/esm6/index.js.map +1 -1
- package/esm6/message.d.ts +7 -5
- package/esm6/message.js +29 -0
- package/esm6/message.js.map +1 -1
- package/esm6/parser.d.ts +5 -3
- package/esm6/parser.js +6 -3
- package/esm6/parser.js.map +1 -1
- package/esm6/stomp-config.d.ts +6 -4
- package/esm6/stomp-config.js +13 -0
- package/esm6/stomp-config.js.map +1 -1
- package/esm6/stomp-handler.d.ts +9 -7
- package/esm6/stomp-handler.js +46 -39
- package/esm6/stomp-handler.js.map +1 -1
- package/esm6/stomp-headers.d.ts +3 -1
- package/esm6/stomp-headers.js +15 -0
- package/esm6/stomp-headers.js.map +1 -1
- package/esm6/stomp-subscription.d.ts +6 -4
- package/esm6/stomp-subscription.js +11 -0
- package/esm6/stomp-subscription.js.map +1 -1
- package/esm6/transaction.d.ts +3 -1
- package/esm6/transaction.js +13 -0
- package/esm6/transaction.js.map +1 -1
- package/esm6/types.d.ts +38 -14
- package/esm6/versions.d.ts +11 -3
- package/esm6/versions.js +11 -3
- package/esm6/versions.js.map +1 -1
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -33,18 +33,18 @@ is actively maintained. You are welcome to file issues and submit pull requests.
|
|
|
33
33
|
|
|
34
34
|
if you were using an older version of this library, you would need to make changes
|
|
35
35
|
to your code. Head to
|
|
36
|
-
[Upgrading](https://stomp-js.github.io/stompjs/
|
|
36
|
+
[Upgrading](https://stomp-js.github.io/guide/stompjs/2018/09/08/upgrading-stompjs.html)
|
|
37
37
|
|
|
38
38
|
## Getting started
|
|
39
39
|
|
|
40
|
-
The documentation is hosted as GitHub pages.
|
|
41
|
-
You may head straight to the https://stomp-js.github.io/
|
|
40
|
+
The API documentation is hosted as GitHub pages for entire StompJS family of libraries.
|
|
41
|
+
You may head straight to the https://stomp-js.github.io/api-docs/latest/
|
|
42
42
|
|
|
43
43
|
This library comes with detailed usage instructions. Please find it at
|
|
44
|
-
[Usage instructions](https://stomp-js.github.io/stompjs/
|
|
44
|
+
[Usage instructions](https://stomp-js.github.io/guide/stompjs/2018/06/28/using-stompjs-v5.html).
|
|
45
45
|
|
|
46
46
|
There are quite detailed API documentation,
|
|
47
|
-
you should start at https://stomp-js.github.io/
|
|
47
|
+
you should start at https://stomp-js.github.io/api-docs/latest/classes/Client.html.
|
|
48
48
|
|
|
49
49
|
## Usage with Angular2/4/5
|
|
50
50
|
|
|
@@ -58,12 +58,12 @@ The npm package includes TypeScript definitions, so there is no need no install
|
|
|
58
58
|
|
|
59
59
|
## Change log
|
|
60
60
|
|
|
61
|
-
Please visit [Change Log](
|
|
61
|
+
Please visit [Change Log](Change-log.md).
|
|
62
62
|
|
|
63
63
|
## Contributing
|
|
64
64
|
|
|
65
65
|
If you want to understand the code, develop, or contribute. Please visit
|
|
66
|
-
[How to contribute](
|
|
66
|
+
[How to contribute](Contribute.md).
|
|
67
67
|
|
|
68
68
|
## Authors
|
|
69
69
|
|
|
@@ -78,4 +78,4 @@ If you want to understand the code, develop, or contribute. Please visit
|
|
|
78
78
|
|
|
79
79
|
## License
|
|
80
80
|
|
|
81
|
-
[License](
|
|
81
|
+
[License](LICENSE.md) - Apache v2 License
|