@djangocfg/centrifugo 2.1.41 → 2.1.42

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 (2) hide show
  1. package/package.json +5 -5
  2. package/src/index.ts +2 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djangocfg/centrifugo",
3
- "version": "2.1.41",
3
+ "version": "2.1.42",
4
4
  "description": "Production-ready Centrifugo WebSocket client for React with real-time subscriptions, RPC patterns, and connection state management",
5
5
  "keywords": [
6
6
  "centrifugo",
@@ -51,9 +51,9 @@
51
51
  "centrifuge": "^5.2.2"
52
52
  },
53
53
  "peerDependencies": {
54
- "@djangocfg/api": "^2.1.41",
55
- "@djangocfg/ui-nextjs": "^2.1.41",
56
- "@djangocfg/layouts": "^2.1.41",
54
+ "@djangocfg/api": "^2.1.42",
55
+ "@djangocfg/ui-nextjs": "^2.1.42",
56
+ "@djangocfg/layouts": "^2.1.42",
57
57
  "consola": "^3.4.2",
58
58
  "lucide-react": "^0.545.0",
59
59
  "moment": "^2.30.1",
@@ -61,7 +61,7 @@
61
61
  "react-dom": "^19.1.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@djangocfg/typescript-config": "^2.1.41",
64
+ "@djangocfg/typescript-config": "^2.1.42",
65
65
  "@types/react": "^19.1.0",
66
66
  "@types/react-dom": "^19.1.0",
67
67
  "moment": "^2.30.1",
package/src/index.ts CHANGED
@@ -41,11 +41,10 @@
41
41
  */
42
42
 
43
43
  // ─────────────────────────────────────────────────────────────────────────
44
- // Re-export Centrifuge for advanced usage
44
+ // Re-export everything from centrifuge for advanced usage
45
45
  // ─────────────────────────────────────────────────────────────────────────
46
46
 
47
- export { Centrifuge } from 'centrifuge';
48
- export type { Subscription } from 'centrifuge';
47
+ export * from 'centrifuge';
49
48
 
50
49
  // ─────────────────────────────────────────────────────────────────────────
51
50
  // Core (Platform-agnostic)