backendless 6.5.9 → 6.6.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/README.md CHANGED
@@ -12,7 +12,7 @@ Follow the steps below to get started with Backendless:
12
12
  * **Create Developer Account**. An account is required in order to create and manage your Backendless application. Registration form is available at [https://develop.backendless.com/registration][registration]
13
13
  * **Login**. Login to your account using Backendless Console at [https://develop.backendless.com/login][login]
14
14
  * **Locate Application ID and API Key**. The console is where you can manage the applications, their configuration settings and data. Before you start using any of the APIs, make sure to select an application in the console and open the “Manage” section. The “App Settings” screen contains the application ID and API keys, which you will need to use in your code.
15
- * **Examples**. The SDK includes several examples demonstrating some of the Backendless functionality. Each example must be configured with the application ID and API key generated for your application. Make sure to copy/paste these values into the following source code files:
15
+ * **Examples**. The SDK includes several examples demonstrating some Backendless functionality. Each example must be configured with the application ID and API key generated for your application. Make sure to copy/paste these values into the following source code files:
16
16
 
17
17
  - User Service Register/Login Demo: `examples/user-service/simple-register-login/js/user-example.js`
18
18
  - User Service Social Login Demo: `examples/user-service/social-login/js/main.js`
@@ -56,6 +56,7 @@ Below are a few links to help with the development:
56
56
  * [YouTube Channel][youtube]
57
57
  * [Facebook][facebook]
58
58
  * [Twitter][twitter]
59
+ * [Telegram][telegram]
59
60
 
60
61
  We would love to hear from you. Please let us know about your experiences using Backendless.
61
62
  You can reach us through the [support page][support] or email: [support@backendless.com](mailto:support@backendless.com)
@@ -63,9 +64,10 @@ You can reach us through the [support page][support] or email: [support@backendl
63
64
  Thank you and endlessly happy coding!
64
65
  The Backendless Team
65
66
 
66
- [documentation]: https://backendless.com/products/documentation/
67
+ [documentation]: https://backendless.com/docs/js/
67
68
  [support]: https://support.backendless.com
68
69
  [slack]: https://slack.backendless.com
70
+ [telegram]: https://t.me/backendless_chat
69
71
  [blog]: https://backendless.com/blog
70
72
  [youtube]: https://youtube.com/backendless
71
73
  [facebook]: https://facebook.com/backendless
package/backendless.d.ts CHANGED
@@ -334,7 +334,7 @@ declare module Backendless {
334
334
  interface HiveStore {
335
335
  keys(options?: StoreKeysOptionsI): Promise<StoreKeysResultI>;
336
336
 
337
- delete(keys: Array<string>): Promise<void>;
337
+ delete(keys: Array<string>): Promise<number>;
338
338
 
339
339
  exist(keys: Array<string>): Promise<number>;
340
340
 
@@ -809,6 +809,8 @@ declare module Backendless {
809
809
 
810
810
  function exists(path: string): Promise<Object>;
811
811
 
812
+ function createDirectory(path: string): Promise<void>;
813
+
812
814
  function removeDirectory(path: string): Promise<number>;
813
815
  }
814
816