@sylphx/lens-pusher 1.1.0 → 1.1.1

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/dist/index.d.ts CHANGED
@@ -119,4 +119,4 @@ declare function createPusherSubscription(pusher: PusherClientLike, channel: str
119
119
  * ```
120
120
  */
121
121
  declare function createPusherBroadcaster(pusher: PusherServerLike, channelPrefix?: string): (channel: string, data: unknown) => Promise<void>;
122
- export { createPusherSubscription, createPusherBroadcaster, PusherTransportOptions, PusherServerLike, PusherClientLike as PusherLike, PusherClientLike };
122
+ export { createPusherSubscription, createPusherBroadcaster, PusherTransportOptions, PusherServerLike, PusherClientLike };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphx/lens-pusher",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Pusher Channels integration for Lens real-time subscriptions",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -147,6 +147,3 @@ export function createPusherBroadcaster(
147
147
  await pusher.trigger(pusherChannel, "update", data);
148
148
  };
149
149
  }
150
-
151
- // Legacy export for backwards compatibility
152
- export type { PusherClientLike as PusherLike };