Skip to content

Commit 4f0aa4a

Browse files
authored
Merge pull request #35 from appwrite/regenerate-sdk
Regenerate SDK
2 parents 71ffdcb + d6bda75 commit 4f0aa4a

24 files changed

+898
-75
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { Client, Account } from "@appwrite.io/console";
3333
To install with a CDN (content delivery network) add the following scripts to the bottom of your <body> tag, but before you use any Appwrite services:
3434

3535
```html
36-
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/[email protected].0"></script>
36+
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/[email protected].1"></script>
3737
```
3838

3939

@@ -108,4 +108,4 @@ This library is auto-generated by Appwrite custom [SDK Generator](https://github
108108

109109
## License
110110

111-
Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.
111+
Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@appwrite.io/console",
33
"homepage": "https://appwrite.io/support",
44
"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.5.0",
5+
"version": "1.5.1",
66
"license": "BSD-3-Clause",
77
"main": "dist/cjs/sdk.js",
88
"exports": {

src/client.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ type Headers = {
1919
*/
2020
type RealtimeResponse = {
2121
/**
22-
* Type of the response: 'error', 'event', 'connected', 'pong', or 'response'.
22+
* Type of the response: 'error', 'event', 'connected', 'response' or 'pong'.
2323
*/
2424
type: 'error' | 'event' | 'connected' | 'response' | 'pong';
2525

2626
/**
2727
* Data associated with the response based on the response type.
2828
*/
29-
data: RealtimeResponseAuthenticated | RealtimeResponseConnected | RealtimeResponseError | RealtimeResponseEvent<unknown>;
29+
data: RealtimeResponseAuthenticated | RealtimeResponseConnected | RealtimeResponseError | RealtimeResponseEvent<unknown> | undefined;
3030
}
3131

3232
/**
@@ -316,7 +316,7 @@ class Client {
316316
'x-sdk-name': 'Console',
317317
'x-sdk-platform': 'console',
318318
'x-sdk-language': 'web',
319-
'x-sdk-version': '1.5.0',
319+
'x-sdk-version': '1.5.1',
320320
'X-Appwrite-Response-Format': '1.6.0',
321321
};
322322

@@ -544,6 +544,8 @@ class Client {
544544
})
545545
}
546546
break;
547+
case 'pong':
548+
break; // Handle pong response if needed
547549
case 'error':
548550
throw message.data;
549551
default:

src/models.ts

+48
Original file line numberDiff line numberDiff line change
@@ -3135,6 +3135,14 @@ export namespace Models {
31353135
* Total aggregated number of total databases storage in bytes.
31363136
*/
31373137
storageTotal: number;
3138+
/**
3139+
* Total number of databases reads.
3140+
*/
3141+
databasesReadsTotal: number;
3142+
/**
3143+
* Total number of databases writes.
3144+
*/
3145+
databasesWritesTotal: number;
31383146
/**
31393147
* Aggregated number of databases per period.
31403148
*/
@@ -3151,6 +3159,14 @@ export namespace Models {
31513159
* An array of the aggregated number of databases storage in bytes per period.
31523160
*/
31533161
storage: Metric[];
3162+
/**
3163+
* An array of aggregated number of database reads.
3164+
*/
3165+
databasesReads: Metric[];
3166+
/**
3167+
* An array of aggregated number of database writes.
3168+
*/
3169+
databasesWrites: Metric[];
31543170
}
31553171
/**
31563172
* UsageDatabase
@@ -3172,6 +3188,14 @@ export namespace Models {
31723188
* Total aggregated number of total storage used in bytes.
31733189
*/
31743190
storageTotal: number;
3191+
/**
3192+
* Total number of databases reads.
3193+
*/
3194+
databaseReadsTotal: number;
3195+
/**
3196+
* Total number of databases writes.
3197+
*/
3198+
databaseWritesTotal: number;
31753199
/**
31763200
* Aggregated number of collections per period.
31773201
*/
@@ -3184,6 +3208,14 @@ export namespace Models {
31843208
* Aggregated storage used in bytes per period.
31853209
*/
31863210
storage: Metric[];
3211+
/**
3212+
* An array of aggregated number of database reads.
3213+
*/
3214+
databaseReads: Metric[];
3215+
/**
3216+
* An array of aggregated number of database writes.
3217+
*/
3218+
databaseWrites: Metric[];
31873219
}
31883220
/**
31893221
* UsageCollection
@@ -3507,6 +3539,14 @@ export namespace Models {
35073539
* Total aggregated number of function builds mbSeconds.
35083540
*/
35093541
buildsMbSecondsTotal: number;
3542+
/**
3543+
* Total number of databases reads.
3544+
*/
3545+
databasesReadsTotal: number;
3546+
/**
3547+
* Total number of databases writes.
3548+
*/
3549+
databasesWritesTotal: number;
35103550
/**
35113551
* Aggregated number of requests per period.
35123552
*/
@@ -3559,6 +3599,14 @@ export namespace Models {
35593599
* Aggregated breakdown in totals of phone auth by country.
35603600
*/
35613601
authPhoneCountryBreakdown: MetricBreakdown[];
3602+
/**
3603+
* An array of aggregated number of database reads.
3604+
*/
3605+
databasesReads: Metric[];
3606+
/**
3607+
* An array of aggregated number of database writes.
3608+
*/
3609+
databasesWrites: Metric[];
35623610
}
35633611
/**
35643612
* Headers

0 commit comments

Comments
 (0)