We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e59d587 commit b6fd694Copy full SHA for b6fd694
src/channel.ts
@@ -110,21 +110,29 @@ export class Channel<T> {
110
}
111
112
// Global events
113
- static get documents(): string {
+ static documents(): string {
114
return "documents";
115
116
117
- static get rows(): string {
+ static rows(): string {
118
return "rows";
119
120
121
- static get files(): string {
+ static files(): string {
122
return "files";
123
124
125
- static get executions(): string {
+ static executions(): string {
126
return "executions";
127
128
+
129
+ static teams(): string {
130
+ return "teams";
131
+ }
132
133
+ static memberships(): string {
134
+ return "memberships";
135
136
137
138
// Export types for backward compatibility with realtime
0 commit comments