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/cjs/sdk.js +11 -5
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +11 -5
- package/dist/esm/sdk.js.map +1 -1
- package/package.json +1 -1
- package/src/channel.ts +12 -4
- package/src/client.ts +1 -1
- package/types/channel.d.ts +6 -4
package/dist/cjs/sdk.js
CHANGED
|
@@ -128,7 +128,7 @@ class Client {
|
|
|
128
128
|
'x-sdk-name': 'React Native',
|
|
129
129
|
'x-sdk-platform': 'client',
|
|
130
130
|
'x-sdk-language': 'reactnative',
|
|
131
|
-
'x-sdk-version': '0.
|
|
131
|
+
'x-sdk-version': '0.23.0',
|
|
132
132
|
'X-Appwrite-Response-Format': '1.8.0',
|
|
133
133
|
};
|
|
134
134
|
this.realtime = {
|
|
@@ -5431,18 +5431,24 @@ class Channel {
|
|
|
5431
5431
|
return "account";
|
|
5432
5432
|
}
|
|
5433
5433
|
// Global events
|
|
5434
|
-
static
|
|
5434
|
+
static documents() {
|
|
5435
5435
|
return "documents";
|
|
5436
5436
|
}
|
|
5437
|
-
static
|
|
5437
|
+
static rows() {
|
|
5438
5438
|
return "rows";
|
|
5439
5439
|
}
|
|
5440
|
-
static
|
|
5440
|
+
static files() {
|
|
5441
5441
|
return "files";
|
|
5442
5442
|
}
|
|
5443
|
-
static
|
|
5443
|
+
static executions() {
|
|
5444
5444
|
return "executions";
|
|
5445
5445
|
}
|
|
5446
|
+
static teams() {
|
|
5447
|
+
return "teams";
|
|
5448
|
+
}
|
|
5449
|
+
static memberships() {
|
|
5450
|
+
return "memberships";
|
|
5451
|
+
}
|
|
5446
5452
|
}
|
|
5447
5453
|
|
|
5448
5454
|
exports.Condition = void 0;
|