Skip to content

Commit 4b3e443

Browse files
committed
chore: regenerate
1 parent ee6af99 commit 4b3e443

File tree

5 files changed

+4
-14
lines changed

5 files changed

+4
-14
lines changed

CHANGELOG.md

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

3-
## 18.2.0
4-
5-
* Add `gif` support to `ImageFormat` enum
6-
* Add `increment` and `decrement` attribute support to both new Tables API and old Document API - https://appwrite.io/blog/post/announcing-auto-increment-support
7-
* Fix `Document` autocompletion not working even when a generic type is provided
8-
* Fix undefined `filePath` param in `chunkedUpload` method
9-
103
## 18.1.1
114

125
* Fix using `devKeys` resulting in an error by conditionally removing credentials

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@18.2.0"></script>
36+
<script src="https://cdn.jsdelivr.net/npm/appwrite@18.1.0"></script>
3737
```
3838

3939

docs/examples/databases/create-document.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@ import { Client, Databases } from "appwrite";
22

33
const client = new Client()
44
.setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
5-
.setAdmin('') //
6-
.setSession('') // The user session to authenticate with
7-
.setKey('') //
8-
.setJWT('<YOUR_JWT>'); // Your secret JSON Web Token
5+
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
96

107
const databases = new Databases(client);
118

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 abstract and simplify complex and repetitive development tasks behind a very simple REST API",
5-
"version": "18.2.0",
5+
"version": "18.1.0",
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
@@ -316,7 +316,7 @@ class Client {
316316
'x-sdk-name': 'Web',
317317
'x-sdk-platform': 'client',
318318
'x-sdk-language': 'web',
319-
'x-sdk-version': '18.2.0',
319+
'x-sdk-version': '18.1.0',
320320
'X-Appwrite-Response-Format': '1.7.0',
321321
};
322322

0 commit comments

Comments
 (0)