@bluecopa/core 0.1.32 → 0.1.34
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.
|
@@ -22,12 +22,13 @@ declare class PusherWebsocket implements IWebsocketProvider {
|
|
|
22
22
|
userId: string;
|
|
23
23
|
private pusherKey?;
|
|
24
24
|
private pusherCluster?;
|
|
25
|
+
private authenticationEndpoint?;
|
|
25
26
|
private notebookChannel;
|
|
26
27
|
private notificationChannel;
|
|
27
28
|
private reconResultChannel;
|
|
28
29
|
private statementResultChannel;
|
|
29
30
|
private otherChannels;
|
|
30
|
-
constructor(userId: string, pusherKey: string, pusherCluster: string);
|
|
31
|
+
constructor(userId: string, pusherKey: string, pusherCluster: string, authenticationEndpoint?: string);
|
|
31
32
|
/**
|
|
32
33
|
* Set user info for presence channels.
|
|
33
34
|
* Note: For Pusher, presence info is set via the server-side auth endpoint.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bluecopa/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.34",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.es.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"axios": "1.12.0",
|
|
37
37
|
"centrifuge": "5.2.2",
|
|
38
|
-
"lodash": "4.17.
|
|
38
|
+
"lodash": "4.17.23",
|
|
39
39
|
"pusher-js": "^8.3.0"
|
|
40
40
|
}
|
|
41
41
|
}
|