@appwrite.io/console 1.3.1 → 1.3.2

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/dist/esm/sdk.js CHANGED
@@ -278,7 +278,7 @@ class Client {
278
278
  'x-sdk-name': 'Console',
279
279
  'x-sdk-platform': 'console',
280
280
  'x-sdk-language': 'web',
281
- 'x-sdk-version': '1.3.1',
281
+ 'x-sdk-version': '1.3.2',
282
282
  'X-Appwrite-Response-Format': '1.6.0',
283
283
  };
284
284
  this.realtime = {
@@ -623,6 +623,11 @@ class Client {
623
623
  return response;
624
624
  });
625
625
  }
626
+ ping() {
627
+ return __awaiter(this, void 0, void 0, function* () {
628
+ return this.call('GET', new URL(this.config.endpoint + '/ping'));
629
+ });
630
+ }
626
631
  call(method, url, headers = {}, params = {}, responseType = 'json') {
627
632
  var _a;
628
633
  return __awaiter(this, void 0, void 0, function* () {