@appwrite.io/console 1.4.7 → 1.5.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/iife/sdk.js CHANGED
@@ -281,7 +281,7 @@
281
281
  'x-sdk-name': 'Console',
282
282
  'x-sdk-platform': 'console',
283
283
  'x-sdk-language': 'web',
284
- 'x-sdk-version': '1.4.7',
284
+ 'x-sdk-version': '1.5.0',
285
285
  'X-Appwrite-Response-Format': '1.6.0',
286
286
  };
287
287
  this.realtime = {
@@ -16187,6 +16187,7 @@
16187
16187
  ImageFormat["Gif"] = "gif";
16188
16188
  ImageFormat["Png"] = "png";
16189
16189
  ImageFormat["Webp"] = "webp";
16190
+ ImageFormat["Heic"] = "heic";
16190
16191
  ImageFormat["Avif"] = "avif";
16191
16192
  })(exports.ImageFormat || (exports.ImageFormat = {}));
16192
16193
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@appwrite.io/console",
3
3
  "homepage": "https://appwrite.io/support",
4
4
  "description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
5
- "version": "1.4.7",
5
+ "version": "1.5.0",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "dist/cjs/sdk.js",
8
8
  "exports": {
package/src/client.ts CHANGED
@@ -316,7 +316,7 @@ class Client {
316
316
  'x-sdk-name': 'Console',
317
317
  'x-sdk-platform': 'console',
318
318
  'x-sdk-language': 'web',
319
- 'x-sdk-version': '1.4.7',
319
+ 'x-sdk-version': '1.5.0',
320
320
  'X-Appwrite-Response-Format': '1.6.0',
321
321
  };
322
322
 
@@ -4,5 +4,6 @@ export enum ImageFormat {
4
4
  Gif = 'gif',
5
5
  Png = 'png',
6
6
  Webp = 'webp',
7
+ Heic = 'heic',
7
8
  Avif = 'avif',
8
9
  }
package/src/models.ts CHANGED
@@ -5042,6 +5042,14 @@ export namespace Models {
5042
5042
  * Aggregated stats for function executions.
5043
5043
  */
5044
5044
  executions: Metric[];
5045
+ /**
5046
+ * Aggregated stats for database reads.
5047
+ */
5048
+ databasesReads: Metric[];
5049
+ /**
5050
+ * Aggregated stats for database writes.
5051
+ */
5052
+ databasesWrites: Metric[];
5045
5053
  /**
5046
5054
  * Aggregated stats for total users.
5047
5055
  */
@@ -5074,6 +5082,14 @@ export namespace Models {
5074
5082
  * Aggregated stats for total databases storage.
5075
5083
  */
5076
5084
  databasesStorageTotal: number;
5085
+ /**
5086
+ * Aggregated stats for total databases storage reads.
5087
+ */
5088
+ databasesReadsTotal: number;
5089
+ /**
5090
+ * Aggregated stats for total databases storage writes.
5091
+ */
5092
+ databasesWritesTotal: number;
5077
5093
  /**
5078
5094
  * Aggregated stats for total backups storage.
5079
5095
  */
@@ -4,5 +4,6 @@ export declare enum ImageFormat {
4
4
  Gif = "gif",
5
5
  Png = "png",
6
6
  Webp = "webp",
7
+ Heic = "heic",
7
8
  Avif = "avif"
8
9
  }
package/types/models.d.ts CHANGED
@@ -5042,6 +5042,14 @@ export declare namespace Models {
5042
5042
  * Aggregated stats for function executions.
5043
5043
  */
5044
5044
  executions: Metric[];
5045
+ /**
5046
+ * Aggregated stats for database reads.
5047
+ */
5048
+ databasesReads: Metric[];
5049
+ /**
5050
+ * Aggregated stats for database writes.
5051
+ */
5052
+ databasesWrites: Metric[];
5045
5053
  /**
5046
5054
  * Aggregated stats for total users.
5047
5055
  */
@@ -5074,6 +5082,14 @@ export declare namespace Models {
5074
5082
  * Aggregated stats for total databases storage.
5075
5083
  */
5076
5084
  databasesStorageTotal: number;
5085
+ /**
5086
+ * Aggregated stats for total databases storage reads.
5087
+ */
5088
+ databasesReadsTotal: number;
5089
+ /**
5090
+ * Aggregated stats for total databases storage writes.
5091
+ */
5092
+ databasesWritesTotal: number;
5077
5093
  /**
5078
5094
  * Aggregated stats for total backups storage.
5079
5095
  */