backendless 6.3.10 → 6.3.13-test.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/backendless.d.ts +5 -3
- package/dist/backendless.js +7962 -7202
- package/dist/backendless.js.map +1 -1
- package/dist/backendless.min.js +2 -2
- package/dist/backendless.min.js.LICENSE.txt +398 -0
- package/es/data/store.js +13 -5
- package/es/index.js +13 -1
- package/es/messaging/channel/index.js +6 -0
- package/es/rso/connection.js +6 -0
- package/es/users/index.js +3 -2
- package/lib/data/store.js +13 -5
- package/lib/index.js +13 -1
- package/lib/messaging/channel/index.js +6 -0
- package/lib/rso/connection.js +6 -0
- package/lib/users/index.js +3 -2
- package/package.json +4 -5
- package/src/data/store.js +20 -7
- package/src/index.js +13 -0
- package/src/messaging/channel/index.js +6 -0
- package/src/rso/connection.js +6 -0
- package/src/users/index.js +2 -2
package/backendless.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
declare module Backendless {
|
|
6
6
|
let debugMode: boolean;
|
|
7
|
+
let useTableClassesFromGlobalScope: boolean;
|
|
7
8
|
let serverURL: string;
|
|
8
9
|
let appId: string;
|
|
9
10
|
let apiKey: string;
|
|
@@ -35,7 +36,8 @@ declare module Backendless {
|
|
|
35
36
|
serverURL?: string;
|
|
36
37
|
domain?: string;
|
|
37
38
|
debugMode?: boolean;
|
|
38
|
-
XMLHttpRequest?: XMLHttpRequest
|
|
39
|
+
XMLHttpRequest?: XMLHttpRequest;
|
|
40
|
+
useTableClassesFromGlobalScope?: boolean;
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
/**
|
|
@@ -360,7 +362,7 @@ declare module Backendless {
|
|
|
360
362
|
|
|
361
363
|
function disableUser(userId: string): Promise<void>;
|
|
362
364
|
|
|
363
|
-
function getAuthorizationUrlLink(providerCode: string, fieldsMapping?: object, scope?: string, redirect?: boolean, redirectAfterLoginUrl?: string): Promise<string>;
|
|
365
|
+
function getAuthorizationUrlLink(providerCode: string, fieldsMapping?: object, scope?: string, redirect?: boolean, redirectAfterLoginUrl?: string, callbackUrlDomain?: string): Promise<string>;
|
|
364
366
|
}
|
|
365
367
|
|
|
366
368
|
/**
|
|
@@ -1217,7 +1219,7 @@ declare module Backendless {
|
|
|
1217
1219
|
|
|
1218
1220
|
removeCommandListener(callback: (command: Object) => void): ChannelClass;
|
|
1219
1221
|
|
|
1220
|
-
removeCommandListeners(): ChannelClass;
|
|
1222
|
+
removeCommandListeners(callback?: (command: Object) => void): ChannelClass;
|
|
1221
1223
|
|
|
1222
1224
|
addUserStatusListener(callback: (userStates: Object) => void, onError?: (error: Object) => void): ChannelClass;
|
|
1223
1225
|
|