backendless 6.6.0 → 6.6.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/backendless.d.ts +0 -2
- package/dist/backendless.js +8400 -7791
- 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 +0 -7
- package/es/index.js +1 -13
- package/lib/data/store.js +0 -7
- package/lib/index.js +1 -13
- package/package.json +2 -2
- package/src/data/store.js +1 -13
- package/src/index.js +0 -13
package/backendless.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ declare module Backendless {
|
|
|
6
6
|
type JSONValue = string | number | boolean | { [x: string]: JSONValue } | Array<JSONValue>
|
|
7
7
|
|
|
8
8
|
let debugMode: boolean;
|
|
9
|
-
let useTableClassesFromGlobalScope: boolean;
|
|
10
9
|
let serverURL: string;
|
|
11
10
|
let appId: string;
|
|
12
11
|
let apiKey: string;
|
|
@@ -39,7 +38,6 @@ declare module Backendless {
|
|
|
39
38
|
domain?: string;
|
|
40
39
|
debugMode?: boolean;
|
|
41
40
|
XMLHttpRequest?: XMLHttpRequest;
|
|
42
|
-
useTableClassesFromGlobalScope?: boolean;
|
|
43
41
|
}
|
|
44
42
|
|
|
45
43
|
/**
|