Skip to content

Commit ae25f4a

Browse files
Merge pull request #144 from appwrite/dev
feat: Node.js SDK update for version 22.1.3
2 parents 6d2ff1c + ad08e6a commit ae25f4a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "node-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": "22.1.2",
5+
"version": "22.1.3",
66
"license": "BSD-3-Clause",
77
"main": "dist/index.js",
88
"type": "commonjs",

src/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class AppwriteException extends Error {
7373
}
7474

7575
function getUserAgent() {
76-
let ua = 'AppwriteNodeJSSDK/22.1.2';
76+
let ua = 'AppwriteNodeJSSDK/22.1.3';
7777

7878
// `process` is a global in Node.js, but not fully available in all runtimes.
7979
const platform: string[] = [];
@@ -122,7 +122,7 @@ class Client {
122122
'x-sdk-name': 'Node.js',
123123
'x-sdk-platform': 'server',
124124
'x-sdk-language': 'nodejs',
125-
'x-sdk-version': '22.1.2',
125+
'x-sdk-version': '22.1.3',
126126
'user-agent' : getUserAgent(),
127127
'X-Appwrite-Response-Format': '1.8.0',
128128
};

0 commit comments

Comments
 (0)