@firebase/firestore 4.5.0-canary.9ca1a4e4f → 4.5.0-canary.c6ecac8ac
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/local/indexeddb_schema.d.ts +2 -1
- package/dist/firestore/src/local/indexeddb_sentinels.d.ts +1 -0
- package/dist/firestore/test/unit/index/firestore_index_value_writer.test.d.ts +1 -0
- package/dist/firestore/test/unit/index/ordered_code_writer.test.d.ts +1 -1
- package/dist/index.cjs.js +134 -126
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +134 -126
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +2164 -2157
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +25 -10
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.mjs +25 -10
- package/dist/index.node.mjs.map +1 -1
- package/dist/index.rn.js +134 -126
- package/dist/index.rn.js.map +1 -1
- package/dist/lite/firestore/src/local/indexeddb_schema.d.ts +2 -1
- package/dist/lite/firestore/src/local/indexeddb_sentinels.d.ts +1 -0
- package/dist/lite/firestore/test/unit/index/firestore_index_value_writer.test.d.ts +1 -0
- package/dist/lite/firestore/test/unit/index/ordered_code_writer.test.d.ts +1 -1
- package/dist/lite/index.browser.esm2017.js +2 -2
- package/dist/lite/index.browser.esm5.js +2 -2
- package/dist/lite/index.cjs.js +2 -2
- package/dist/lite/index.node.cjs.js +2 -2
- package/dist/lite/index.node.mjs +2 -2
- package/dist/lite/index.rn.esm2017.js +2 -2
- package/dist/lite/packages/firestore/src/local/indexeddb_schema.d.ts +2 -1
- package/dist/lite/packages/firestore/src/local/indexeddb_sentinels.d.ts +1 -0
- package/dist/lite/packages/firestore/test/unit/index/firestore_index_value_writer.test.d.ts +1 -0
- package/dist/lite/packages/firestore/test/unit/index/ordered_code_writer.test.d.ts +1 -1
- package/dist/packages/firestore/dist/index.esm2017.d.ts +2 -2
- package/dist/packages/firestore/src/local/indexeddb_schema.d.ts +2 -1
- package/dist/packages/firestore/src/local/indexeddb_sentinels.d.ts +1 -0
- package/dist/packages/firestore/test/unit/index/firestore_index_value_writer.test.d.ts +1 -0
- package/dist/packages/firestore/test/unit/index/ordered_code_writer.test.d.ts +1 -1
- package/package.json +9 -9
|
@@ -43,8 +43,9 @@ import { DbTimestampKey } from './indexeddb_sentinels';
|
|
|
43
43
|
* document lookup via `getAll()`.
|
|
44
44
|
* 14. Add overlays.
|
|
45
45
|
* 15. Add indexing support.
|
|
46
|
+
* 16. Parse timestamp strings before creating index entries.
|
|
46
47
|
*/
|
|
47
|
-
export declare const SCHEMA_VERSION =
|
|
48
|
+
export declare const SCHEMA_VERSION = 16;
|
|
48
49
|
/**
|
|
49
50
|
* Wrapper class to store timestamps (seconds and nanos) in IndexedDb objects.
|
|
50
51
|
*/
|
|
@@ -241,6 +241,7 @@ export declare const V12_STORES: string[];
|
|
|
241
241
|
export declare const V13_STORES: string[];
|
|
242
242
|
export declare const V14_STORES: string[];
|
|
243
243
|
export declare const V15_STORES: string[];
|
|
244
|
+
export declare const V16_STORES: string[];
|
|
244
245
|
/**
|
|
245
246
|
* The list of all default IndexedDB stores used throughout the SDK. This is
|
|
246
247
|
* used when creating transactions so that access across all stores is done
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export declare function compare(left: Uint8Array, right: Uint8Array): number;
|