Skip to content

Commit 2460ef6

Browse files
authored
Merge pull request #171 from appwrite/dev
feat: Web SDK update for version 25.1.1
2 parents da63148 + c3165dd commit 2460ef6

12 files changed

Lines changed: 14 additions & 503 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## 25.1.1
4+
5+
* Fixed: Removed `Advisor` service and `Insight`, `InsightCTA`, `InsightList`, `Report`, `ReportList` models (admin-only endpoints, not intended for client SDKs)
6+
* Added: `sizeActual` field to `File` model
7+
38
## 25.1.0
49

510
* Added: Realtime `presences` channel and `RealtimePresence` types for presence subscriptions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { Client, Account } from "appwrite";
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@25.1.0"></script>
36+
<script src="https://cdn.jsdelivr.net/npm/appwrite@25.1.1"></script>
3737
```
3838

3939

docs/examples/advisor/get-insight.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

docs/examples/advisor/get-report.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

docs/examples/advisor/list-insights.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

docs/examples/advisor/list-reports.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "appwrite",
33
"homepage": "https://appwrite.io/support",
44
"description": "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
5-
"version": "25.1.0",
5+
"version": "25.1.1",
66
"license": "BSD-3-Clause",
77
"main": "dist/cjs/sdk.js",
88
"exports": {

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ class Client {
382382
'x-sdk-name': 'Web',
383383
'x-sdk-platform': 'client',
384384
'x-sdk-language': 'web',
385-
'x-sdk-version': '25.1.0',
385+
'x-sdk-version': '25.1.1',
386386
'X-Appwrite-Response-Format': '1.9.5',
387387
};
388388

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export { Graphql } from './services/graphql';
1414
export { Locale } from './services/locale';
1515
export { Messaging } from './services/messaging';
1616
export { Presences } from './services/presences';
17-
export { Advisor } from './services/advisor';
1817
export { Storage } from './services/storage';
1918
export { TablesDB } from './services/tables-db';
2019
export { Teams } from './services/teams';

0 commit comments

Comments
 (0)