react-native-appwrite 0.21.0 → 0.23.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/dist/esm/sdk.js CHANGED
@@ -102,7 +102,7 @@ class Client {
102
102
  'x-sdk-name': 'React Native',
103
103
  'x-sdk-platform': 'client',
104
104
  'x-sdk-language': 'reactnative',
105
- 'x-sdk-version': '0.21.0',
105
+ 'x-sdk-version': '0.23.0',
106
106
  'X-Appwrite-Response-Format': '1.8.0',
107
107
  };
108
108
  this.realtime = {
@@ -5405,18 +5405,24 @@ class Channel {
5405
5405
  return "account";
5406
5406
  }
5407
5407
  // Global events
5408
- static get documents() {
5408
+ static documents() {
5409
5409
  return "documents";
5410
5410
  }
5411
- static get rows() {
5411
+ static rows() {
5412
5412
  return "rows";
5413
5413
  }
5414
- static get files() {
5414
+ static files() {
5415
5415
  return "files";
5416
5416
  }
5417
- static get executions() {
5417
+ static executions() {
5418
5418
  return "executions";
5419
5419
  }
5420
+ static teams() {
5421
+ return "teams";
5422
+ }
5423
+ static memberships() {
5424
+ return "memberships";
5425
+ }
5420
5426
  }
5421
5427
 
5422
5428
  var Condition;