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 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