node-appwrite 11.1.0 → 11.1.1

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/.travis.yml CHANGED
@@ -5,7 +5,7 @@ node_js:
5
5
  jobs:
6
6
  include:
7
7
  - stage: NPM RC Release
8
- if: tag == *-RC*
8
+ if: tag =~ /-(rc|RC)/
9
9
  node_js: "14.16"
10
10
  script: echo "Deploying RC to NPM..."
11
11
  deploy:
@@ -14,7 +14,7 @@ jobs:
14
14
  api_key: $NPM_API_KEY
15
15
  tag: next
16
16
  - stage: NPM Release
17
- if: tag != *-RC*
17
+ if: not tag =~ /-(rc|RC)/
18
18
  node_js: "14.16"
19
19
  script: echo "Deploying to NPM..."
20
20
  deploy:
package/lib/client.js CHANGED
@@ -13,11 +13,11 @@ class Client {
13
13
  this.headers = {
14
14
  'accept-encoding': '*',
15
15
  'content-type': '',
16
- 'user-agent' : `AppwriteNodeJSSDK/11.1.0 (${os.type()}; ${os.version()}; ${os.arch()})`,
16
+ 'user-agent' : `AppwriteNodeJSSDK/11.1.1 (${os.type()}; ${os.version()}; ${os.arch()})`,
17
17
  'x-sdk-name': 'Node.js',
18
18
  'x-sdk-platform': 'server',
19
19
  'x-sdk-language': 'nodejs',
20
- 'x-sdk-version': '11.1.0',
20
+ 'x-sdk-version': '11.1.1',
21
21
  'X-Appwrite-Response-Format' : '1.4.0',
22
22
  };
23
23
  this.selfSigned = false;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "node-appwrite",
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": "11.1.0",
5
+ "version": "11.1.1",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "./index.js",
8
8
  "types": "./index.d.ts",