@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.
Files changed (96) hide show
  1. package/README.md +8 -8
  2. package/bundles/stomp.umd.js +310 -65
  3. package/bundles/stomp.umd.js.map +1 -1
  4. package/bundles/stomp.umd.min.js +1 -1
  5. package/bundles/stomp.umd.min.js.map +1 -1
  6. package/esm5/byte.d.ts +3 -1
  7. package/esm5/byte.js +3 -1
  8. package/esm5/byte.js.map +1 -1
  9. package/esm5/client.d.ts +12 -9
  10. package/esm5/client.js +25 -7
  11. package/esm5/client.js.map +1 -1
  12. package/esm5/compatibility/compat-client.d.ts +5 -3
  13. package/esm5/compatibility/compat-client.js +11 -34
  14. package/esm5/compatibility/compat-client.js.map +1 -1
  15. package/esm5/compatibility/heartbeat-info.d.ts +12 -0
  16. package/esm5/compatibility/heartbeat-info.js +35 -0
  17. package/esm5/compatibility/heartbeat-info.js.map +1 -0
  18. package/esm5/compatibility/stomp.d.ts +25 -2
  19. package/esm5/compatibility/stomp.js +29 -5
  20. package/esm5/compatibility/stomp.js.map +1 -1
  21. package/esm5/frame.d.ts +10 -3
  22. package/esm5/frame.js +9 -5
  23. package/esm5/frame.js.map +1 -1
  24. package/esm5/index.js +5 -0
  25. package/esm5/index.js.map +1 -1
  26. package/esm5/message.d.ts +7 -5
  27. package/esm5/message.js +29 -0
  28. package/esm5/message.js.map +1 -1
  29. package/esm5/parser.d.ts +5 -3
  30. package/esm5/parser.js +6 -3
  31. package/esm5/parser.js.map +1 -1
  32. package/esm5/stomp-config.d.ts +6 -4
  33. package/esm5/stomp-config.js +13 -0
  34. package/esm5/stomp-config.js.map +1 -1
  35. package/esm5/stomp-handler.d.ts +9 -7
  36. package/esm5/stomp-handler.js +43 -36
  37. package/esm5/stomp-handler.js.map +1 -1
  38. package/esm5/stomp-headers.d.ts +3 -1
  39. package/esm5/stomp-headers.js +15 -0
  40. package/esm5/stomp-headers.js.map +1 -1
  41. package/esm5/stomp-subscription.d.ts +6 -4
  42. package/esm5/stomp-subscription.js +11 -0
  43. package/esm5/stomp-subscription.js.map +1 -1
  44. package/esm5/transaction.d.ts +3 -1
  45. package/esm5/transaction.js +13 -0
  46. package/esm5/transaction.js.map +1 -1
  47. package/esm5/types.d.ts +38 -14
  48. package/esm5/versions.d.ts +11 -3
  49. package/esm5/versions.js +11 -3
  50. package/esm5/versions.js.map +1 -1
  51. package/esm6/byte.d.ts +3 -1
  52. package/esm6/byte.js +3 -1
  53. package/esm6/byte.js.map +1 -1
  54. package/esm6/client.d.ts +12 -9
  55. package/esm6/client.js +27 -9
  56. package/esm6/client.js.map +1 -1
  57. package/esm6/compatibility/compat-client.d.ts +5 -3
  58. package/esm6/compatibility/compat-client.js +11 -34
  59. package/esm6/compatibility/compat-client.js.map +1 -1
  60. package/esm6/compatibility/heartbeat-info.d.ts +12 -0
  61. package/esm6/compatibility/heartbeat-info.js +33 -0
  62. package/esm6/compatibility/heartbeat-info.js.map +1 -0
  63. package/esm6/compatibility/stomp.d.ts +25 -2
  64. package/esm6/compatibility/stomp.js +31 -7
  65. package/esm6/compatibility/stomp.js.map +1 -1
  66. package/esm6/frame.d.ts +10 -3
  67. package/esm6/frame.js +10 -6
  68. package/esm6/frame.js.map +1 -1
  69. package/esm6/index.js +5 -0
  70. package/esm6/index.js.map +1 -1
  71. package/esm6/message.d.ts +7 -5
  72. package/esm6/message.js +29 -0
  73. package/esm6/message.js.map +1 -1
  74. package/esm6/parser.d.ts +5 -3
  75. package/esm6/parser.js +6 -3
  76. package/esm6/parser.js.map +1 -1
  77. package/esm6/stomp-config.d.ts +6 -4
  78. package/esm6/stomp-config.js +13 -0
  79. package/esm6/stomp-config.js.map +1 -1
  80. package/esm6/stomp-handler.d.ts +9 -7
  81. package/esm6/stomp-handler.js +46 -39
  82. package/esm6/stomp-handler.js.map +1 -1
  83. package/esm6/stomp-headers.d.ts +3 -1
  84. package/esm6/stomp-headers.js +15 -0
  85. package/esm6/stomp-headers.js.map +1 -1
  86. package/esm6/stomp-subscription.d.ts +6 -4
  87. package/esm6/stomp-subscription.js +11 -0
  88. package/esm6/stomp-subscription.js.map +1 -1
  89. package/esm6/transaction.d.ts +3 -1
  90. package/esm6/transaction.js +13 -0
  91. package/esm6/transaction.js.map +1 -1
  92. package/esm6/types.d.ts +38 -14
  93. package/esm6/versions.d.ts +11 -3
  94. package/esm6/versions.js +11 -3
  95. package/esm6/versions.js.map +1 -1
  96. 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/additional-documentation/upgrading.html)
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/stompjs/
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/additional-documentation/usage.html).
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/stompjs/classes/Client.html.
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](https://stomp-js.github.io/stompjs/additional-documentation/change-log.html).
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](https://stomp-js.github.io/stompjs/additional-documentation/how-to-contribute.html).
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](https://stomp-js.github.io/stompjs/license.html) - Apache v2 License
81
+ [License](LICENSE.md) - Apache v2 License