@supabase/realtime-js 2.10.0-next.8 → 2.10.0
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/README.md
CHANGED
|
@@ -104,6 +104,7 @@ channel.subscribe(async (status) => {
|
|
|
104
104
|
|
|
105
105
|
- Setting `ack` to `true` means that the `channel.send` promise will resolve once server replies with acknowledgement that it received the broadcast message request.
|
|
106
106
|
- Setting `self` to `true` means that the client will receive the broadcast message it sent out.
|
|
107
|
+
- Setting `private` to `true` means that the client will use RLS to determine if the user can connect or not to a given channel.
|
|
107
108
|
|
|
108
109
|
## Presence
|
|
109
110
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "2.10.0
|
|
1
|
+
export declare const version = "2.10.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/main/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "2.10.0
|
|
1
|
+
export declare const version = "2.10.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '2.10.0
|
|
1
|
+
export const version = '2.10.0';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
package/src/lib/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '2.10.0
|
|
1
|
+
export const version = '2.10.0'
|