Skip to content

Commit 35189f3

Browse files
authored
Merge pull request #77 from appwrite/dev
2 parents f7af193 + b13f7cd commit 35189f3

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

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

3+
## 8.1.1
4+
5+
* Fixed: Added `files` field to `package.json` to publish only built artifacts to npm
6+
37
## 8.1.0
48

59
* Added: Added `getHeaders()` method to `Client` to expose current request headers

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

3939

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: 5 additions & 1 deletion
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 abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
5-
"version": "8.1.0",
5+
"version": "8.1.1",
66
"license": "BSD-3-Clause",
77
"main": "dist/cjs/sdk.js",
88
"exports": {
@@ -15,6 +15,10 @@
1515
},
1616
"module": "dist/esm/sdk.js",
1717
"types": "types/index.d.ts",
18+
"files": [
19+
"dist",
20+
"types"
21+
],
1822
"repository": {
1923
"type": "git",
2024
"url": "https://github.com/appwrite/sdk-for-console"

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ class Client {
406406
'x-sdk-name': 'Console',
407407
'x-sdk-platform': 'console',
408408
'x-sdk-language': 'web',
409-
'x-sdk-version': '8.1.0',
409+
'x-sdk-version': '8.1.1',
410410
'X-Appwrite-Response-Format': '1.9.0',
411411
};
412412

0 commit comments

Comments
 (0)