Skip to content

Commit

Permalink
Merge pull request #25 from appwrite/dev
Browse files Browse the repository at this point in the history
Fix: new version names
  • Loading branch information
Meldiron authored Oct 9, 2024
2 parents 61b1621 + 5881984 commit 9b464d1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { Client, Account } from "@appwrite.io/console";
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:

```html
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@1.2.1"></script>
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@1.2.2"></script>
```


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@appwrite.io/console",
"homepage": "https://appwrite.io/support",
"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",
"version": "1.2.1",
"version": "1.2.2",
"license": "BSD-3-Clause",
"main": "dist/cjs/sdk.js",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class Client {
'x-sdk-name': 'Console',
'x-sdk-platform': 'console',
'x-sdk-language': 'web',
'x-sdk-version': '1.2.1',
'x-sdk-version': '1.2.2',
'X-Appwrite-Response-Format': '1.6.0',
};

Expand Down
4 changes: 2 additions & 2 deletions src/enums/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export enum Runtime {
Node190 = 'node-19.0',
Node200 = 'node-20.0',
Node210 = 'node-21.0',
Node220 = 'node-22.0',
Node22 = 'node-22',
Php80 = 'php-8.0',
Php81 = 'php-8.1',
Php82 = 'php-8.2',
Expand Down Expand Up @@ -42,7 +42,7 @@ export enum Runtime {
Java170 = 'java-17.0',
Java180 = 'java-18.0',
Java210 = 'java-21.0',
Java220 = 'java-22.0',
Java22 = 'java-22',
Swift55 = 'swift-5.5',
Swift58 = 'swift-5.8',
Swift59 = 'swift-5.9',
Expand Down
8 changes: 8 additions & 0 deletions src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2593,6 +2593,14 @@ export namespace Models {
* SMTP server secure protocol
*/
smtpSecure: string;
/**
* Number of times the ping was received for this project.
*/
pingCount: number;
/**
* Last ping datetime in ISO 8601 format.
*/
pingedAt: string;
/**
* Email/Password auth method status
*/
Expand Down

0 comments on commit 9b464d1

Please sign in to comment.