@firebase/firestore 4.7.7-canary.c8e5b3e77 → 4.7.7-canary.deb917b5f
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/firestore/src/global_index.d.ts +0 -7
- package/dist/firestore/src/lite-api/database.d.ts +0 -4
- package/dist/firestore/src/lite-api/settings.d.ts +0 -4
- package/dist/firestore/src/util/misc.d.ts +2 -0
- package/dist/firestore/test/integration/util/settings.d.ts +0 -1
- package/dist/index.cjs.js +241 -243
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +242 -244
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.node.cjs.js +53 -54
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.mjs +54 -55
- package/dist/index.node.mjs.map +1 -1
- package/dist/index.rn.js +194 -196
- package/dist/index.rn.js.map +1 -1
- package/dist/internal.d.ts +0 -7
- package/dist/lite/firestore/src/lite-api/database.d.ts +0 -4
- package/dist/lite/firestore/src/lite-api/settings.d.ts +0 -4
- package/dist/lite/firestore/src/util/misc.d.ts +2 -0
- package/dist/lite/firestore/test/integration/util/settings.d.ts +0 -1
- package/dist/lite/index.browser.esm2017.js +166 -146
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.cjs.js +166 -146
- package/dist/lite/index.cjs.js.map +1 -1
- package/dist/lite/index.node.cjs.js +128 -110
- package/dist/lite/index.node.cjs.js.map +1 -1
- package/dist/lite/index.node.mjs +129 -111
- package/dist/lite/index.node.mjs.map +1 -1
- package/dist/lite/index.rn.esm2017.js +179 -159
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/internal.d.ts +0 -7
- package/dist/lite/private.d.ts +0 -4
- package/dist/private.d.ts +0 -4
- package/package.json +9 -9
|
@@ -5833,9 +5833,6 @@ interface PrivateSettings extends FirestoreSettings$1 {
|
|
|
5833
5833
|
experimentalAutoDetectLongPolling?: boolean;
|
|
5834
5834
|
experimentalLongPollingOptions?: ExperimentalLongPollingOptions;
|
|
5835
5835
|
useFetchStreams?: boolean;
|
|
5836
|
-
emulatorOptions?: {
|
|
5837
|
-
mockUserToken?: EmulatorMockTokenOptions | string;
|
|
5838
|
-
};
|
|
5839
5836
|
localCache?: FirestoreLocalCache;
|
|
5840
5837
|
}
|
|
5841
5838
|
/**
|
|
@@ -5931,7 +5928,6 @@ declare class Firestore$1 implements FirestoreService {
|
|
|
5931
5928
|
readonly _persistenceKey: string;
|
|
5932
5929
|
private _settings;
|
|
5933
5930
|
private _settingsFrozen;
|
|
5934
|
-
private _emulatorOptions;
|
|
5935
5931
|
private _terminateTask;
|
|
5936
5932
|
/** @hideconstructor */
|
|
5937
5933
|
constructor(_authCredentials: CredentialsProvider<User>, _appCheckCredentials: CredentialsProvider<string>, _databaseId: DatabaseId, _app?: FirebaseApp | undefined);
|
|
@@ -5944,9 +5940,6 @@ declare class Firestore$1 implements FirestoreService {
|
|
|
5944
5940
|
get _terminated(): boolean;
|
|
5945
5941
|
_setSettings(settings: PrivateSettings): void;
|
|
5946
5942
|
_getSettings(): FirestoreSettingsImpl;
|
|
5947
|
-
_getEmulatorOptions(): {
|
|
5948
|
-
mockUserToken?: EmulatorMockTokenOptions | string;
|
|
5949
|
-
};
|
|
5950
5943
|
_freezeSettings(): FirestoreSettingsImpl;
|
|
5951
5944
|
_delete(): Promise<void>;
|
|
5952
5945
|
_restart(): Promise<void>;
|
|
@@ -44,7 +44,6 @@ export declare class Firestore implements FirestoreService {
|
|
|
44
44
|
readonly _persistenceKey: string;
|
|
45
45
|
private _settings;
|
|
46
46
|
private _settingsFrozen;
|
|
47
|
-
private _emulatorOptions;
|
|
48
47
|
private _terminateTask;
|
|
49
48
|
/** @hideconstructor */
|
|
50
49
|
constructor(_authCredentials: CredentialsProvider<User>, _appCheckCredentials: CredentialsProvider<string>, _databaseId: DatabaseId, _app?: FirebaseApp | undefined);
|
|
@@ -57,9 +56,6 @@ export declare class Firestore implements FirestoreService {
|
|
|
57
56
|
get _terminated(): boolean;
|
|
58
57
|
_setSettings(settings: PrivateSettings): void;
|
|
59
58
|
_getSettings(): FirestoreSettingsImpl;
|
|
60
|
-
_getEmulatorOptions(): {
|
|
61
|
-
mockUserToken?: EmulatorMockTokenOptions | string;
|
|
62
|
-
};
|
|
63
59
|
_freezeSettings(): FirestoreSettingsImpl;
|
|
64
60
|
_delete(): Promise<void>;
|
|
65
61
|
_restart(): Promise<void>;
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import { EmulatorMockTokenOptions } from '@firebase/util';
|
|
18
17
|
import { FirestoreLocalCache } from '../api/cache_config';
|
|
19
18
|
import { CredentialsSettings } from '../api/credentials';
|
|
20
19
|
import { ExperimentalLongPollingOptions } from '../api/long_polling_options';
|
|
@@ -48,9 +47,6 @@ export interface PrivateSettings extends FirestoreSettings {
|
|
|
48
47
|
experimentalAutoDetectLongPolling?: boolean;
|
|
49
48
|
experimentalLongPollingOptions?: ExperimentalLongPollingOptions;
|
|
50
49
|
useFetchStreams?: boolean;
|
|
51
|
-
emulatorOptions?: {
|
|
52
|
-
mockUserToken?: EmulatorMockTokenOptions | string;
|
|
53
|
-
};
|
|
54
50
|
localCache?: FirestoreLocalCache;
|
|
55
51
|
}
|
|
56
52
|
/**
|
|
@@ -31,6 +31,8 @@ export declare function primitiveComparator<T>(left: T, right: T): number;
|
|
|
31
31
|
export interface Equatable<T> {
|
|
32
32
|
isEqual(other: T): boolean;
|
|
33
33
|
}
|
|
34
|
+
/** Compare strings in UTF-8 encoded byte order */
|
|
35
|
+
export declare function compareUtf8Strings(left: string, right: string): number;
|
|
34
36
|
export interface Iterable<V> {
|
|
35
37
|
forEach: (cb: (v: V) => void) => void;
|
|
36
38
|
}
|
|
@@ -18,7 +18,6 @@ import { PrivateSettings } from './firebase_export';
|
|
|
18
18
|
export declare const TARGET_DB_ID: string | '(default)';
|
|
19
19
|
export declare const USE_EMULATOR: boolean;
|
|
20
20
|
export declare const DEFAULT_SETTINGS: PrivateSettings;
|
|
21
|
-
export declare function getEmulatorPort(): number;
|
|
22
21
|
export declare const DEFAULT_PROJECT_ID: any;
|
|
23
22
|
export declare const ALT_PROJECT_ID = "test-db2";
|
|
24
23
|
export declare const COMPOSITE_INDEX_TEST_COLLECTION = "composite-index-test-collection";
|