laravel-echo
Advanced tools
Comparing version 1.15.2 to 1.15.3
# Release Notes | ||
## [Unreleased](https://github.com/laravel/echo/compare/v1.15.1...master) | ||
## [Unreleased](https://github.com/laravel/echo/compare/v1.15.2...master) | ||
## [v1.15.2](https://github.com/laravel/echo/compare/v1.15.1...v1.15.2) - 2023-07-11 | ||
- Fix broken Typescript presence channel interface "whisper" method by [@DellanX](https://github.com/DellanX) in https://github.com/laravel/echo/pull/377 | ||
- Fix TS error in EventFormatter for projects using TS5 by [@SanderMuller](https://github.com/SanderMuller) in https://github.com/laravel/echo/pull/381 | ||
## [v1.15.1](https://github.com/laravel/echo/compare/v1.15.0...v1.15.1) - 2023-04-26 | ||
@@ -6,0 +11,0 @@ |
@@ -1677,2 +1677,4 @@ 'use strict'; | ||
exports.Channel = Channel; | ||
exports.Connector = Connector; | ||
exports.EventFormatter = EventFormatter; | ||
exports["default"] = Echo; |
import { Channel, PresenceChannel } from './channel'; | ||
import { Connector } from './connector'; | ||
/** | ||
@@ -87,2 +88,3 @@ * This class is the primary API for interacting with broadcasting. | ||
*/ | ||
export { Channel, PresenceChannel }; | ||
export { Connector, Channel, PresenceChannel }; | ||
export { EventFormatter } from './util'; |
@@ -1672,2 +1672,2 @@ function _typeof(obj) { | ||
export { Channel, Echo as default }; | ||
export { Channel, Connector, EventFormatter, Echo as default }; |
{ | ||
"name": "laravel-echo", | ||
"version": "1.15.2", | ||
"version": "1.15.3", | ||
"description": "Laravel Echo library for beautiful Pusher and Socket.IO integration", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
import { Channel, PresenceChannel } from './channel'; | ||
import { PusherConnector, SocketIoConnector, NullConnector } from './connector'; | ||
import { Connector, PusherConnector, SocketIoConnector, NullConnector } from './connector'; | ||
@@ -191,2 +191,4 @@ /** | ||
*/ | ||
export { Channel, PresenceChannel }; | ||
export { Connector, Channel, PresenceChannel }; | ||
export { EventFormatter } from './util'; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
208177
6214