@firebase/firestore 3.4.9-canary.259389ae5 → 3.4.9-canary.2cd1cc76f
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/api/transaction.d.ts +2 -0
- package/dist/firestore/src/lite-api/transaction.d.ts +2 -0
- package/dist/firestore/src/local/query_engine.d.ts +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm2017.js +6 -4
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +6 -4
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +5 -3
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.mjs +5 -3
- package/dist/index.node.mjs.map +1 -1
- package/dist/index.rn.js +835 -833
- package/dist/index.rn.js.map +1 -1
- package/dist/internal.d.ts +2 -0
- package/dist/lite/firestore/src/api/transaction.d.ts +2 -0
- package/dist/lite/firestore/src/lite-api/transaction.d.ts +2 -0
- package/dist/lite/firestore/src/local/query_engine.d.ts +1 -1
- package/dist/lite/index.browser.esm2017.js +4 -2
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.browser.esm5.js +4 -2
- package/dist/lite/index.browser.esm5.js.map +1 -1
- package/dist/lite/index.d.ts +2 -0
- package/dist/lite/index.node.cjs.js +4 -2
- package/dist/lite/index.node.cjs.js.map +1 -1
- package/dist/lite/index.node.mjs +4 -2
- package/dist/lite/index.node.mjs.map +1 -1
- package/dist/lite/index.rn.esm2017.js +4 -2
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/internal.d.ts +2 -0
- package/dist/lite/packages/firestore/dist/lite/index.browser.esm2017.d.ts +2 -0
- package/dist/lite/packages/firestore/src/api/transaction.d.ts +2 -0
- package/dist/lite/packages/firestore/src/lite-api/transaction.d.ts +2 -0
- package/dist/lite/packages/firestore/src/local/query_engine.d.ts +1 -1
- package/dist/lite/private.d.ts +2 -0
- package/dist/packages/firestore/dist/index.esm2017.d.ts +2 -0
- package/dist/packages/firestore/src/api/transaction.d.ts +2 -0
- package/dist/packages/firestore/src/lite-api/transaction.d.ts +2 -0
- package/dist/packages/firestore/src/local/query_engine.d.ts +1 -1
- package/dist/private.d.ts +2 -0
- package/package.json +11 -9
|
@@ -51,6 +51,8 @@ export declare class Transaction extends LiteTransaction {
|
|
|
51
51
|
* transaction against.
|
|
52
52
|
* @param updateFunction - The function to execute within the transaction
|
|
53
53
|
* context.
|
|
54
|
+
* @param options - An options object to configure maximum number of attempts to
|
|
55
|
+
* commit.
|
|
54
56
|
* @returns If the transaction completed successfully or was explicitly aborted
|
|
55
57
|
* (the `updateFunction` returned a failed promise), the promise returned by the
|
|
56
58
|
* `updateFunction `is returned here. Otherwise, if the transaction failed, a
|
|
@@ -112,6 +112,8 @@ export declare class Transaction {
|
|
|
112
112
|
* transaction against.
|
|
113
113
|
* @param updateFunction - The function to execute within the transaction
|
|
114
114
|
* context.
|
|
115
|
+
* @param options - An options object to configure maximum number of attempts to
|
|
116
|
+
* commit.
|
|
115
117
|
* @returns If the transaction completed successfully or was explicitly aborted
|
|
116
118
|
* (the `updateFunction` returned a failed promise), the promise returned by the
|
|
117
119
|
* `updateFunction `is returned here. Otherwise, if the transaction failed, a
|
|
@@ -83,7 +83,7 @@ export declare class QueryEngine {
|
|
|
83
83
|
* Determines if a limit query needs to be refilled from cache, making it
|
|
84
84
|
* ineligible for index-free execution.
|
|
85
85
|
*
|
|
86
|
-
* @param query The query.
|
|
86
|
+
* @param query - The query.
|
|
87
87
|
* @param sortedPreviousResults - The documents that matched the query when it
|
|
88
88
|
* was last synchronized, sorted by the query's comparator.
|
|
89
89
|
* @param remoteKeys - The document keys that matched the query at the last
|
package/dist/index.d.ts
CHANGED
|
@@ -1436,6 +1436,8 @@ export declare function refEqual<T>(left: DocumentReference<T> | CollectionRefer
|
|
|
1436
1436
|
* transaction against.
|
|
1437
1437
|
* @param updateFunction - The function to execute within the transaction
|
|
1438
1438
|
* context.
|
|
1439
|
+
* @param options - An options object to configure maximum number of attempts to
|
|
1440
|
+
* commit.
|
|
1439
1441
|
* @returns If the transaction completed successfully or was explicitly aborted
|
|
1440
1442
|
* (the `updateFunction` returned a failed promise), the promise returned by the
|
|
1441
1443
|
* `updateFunction `is returned here. Otherwise, if the transaction failed, a
|
package/dist/index.esm2017.js
CHANGED
|
@@ -66,7 +66,7 @@ C.MOCK_USER = new C("mock-user");
|
|
|
66
66
|
* See the License for the specific language governing permissions and
|
|
67
67
|
* limitations under the License.
|
|
68
68
|
*/
|
|
69
|
-
let x = "9.8.
|
|
69
|
+
let x = "9.8.2-canary.2cd1cc76f";
|
|
70
70
|
|
|
71
71
|
/**
|
|
72
72
|
* @license
|
|
@@ -11045,7 +11045,7 @@ class mo {
|
|
|
11045
11045
|
* Determines if a limit query needs to be refilled from cache, making it
|
|
11046
11046
|
* ineligible for index-free execution.
|
|
11047
11047
|
*
|
|
11048
|
-
* @param query The query.
|
|
11048
|
+
* @param query - The query.
|
|
11049
11049
|
* @param sortedPreviousResults - The documents that matched the query when it
|
|
11050
11050
|
* was last synchronized, sorted by the query's comparator.
|
|
11051
11051
|
* @param remoteKeys - The document keys that matched the query at the last
|
|
@@ -19275,6 +19275,8 @@ function yl(t, e) {
|
|
|
19275
19275
|
* transaction against.
|
|
19276
19276
|
* @param updateFunction - The function to execute within the transaction
|
|
19277
19277
|
* context.
|
|
19278
|
+
* @param options - An options object to configure maximum number of attempts to
|
|
19279
|
+
* commit.
|
|
19278
19280
|
* @returns If the transaction completed successfully or was explicitly aborted
|
|
19279
19281
|
* (the `updateFunction` returned a failed promise), the promise returned by the
|
|
19280
19282
|
* `updateFunction `is returned here. Otherwise, if the transaction failed, a
|
|
@@ -19458,9 +19460,9 @@ function Dl(t, e) {
|
|
|
19458
19460
|
return n = Object.assign({
|
|
19459
19461
|
useFetchStreams: e
|
|
19460
19462
|
}, n), i._setSettings(n), i;
|
|
19461
|
-
}), "PUBLIC")), registerVersion(D, "3.4.9-canary.
|
|
19463
|
+
}), "PUBLIC")), registerVersion(D, "3.4.9-canary.2cd1cc76f", t),
|
|
19462
19464
|
// BUILD_TARGET will be replaced by values like esm5, esm2017, cjs5, etc during the compilation
|
|
19463
|
-
registerVersion(D, "3.4.9-canary.
|
|
19465
|
+
registerVersion(D, "3.4.9-canary.2cd1cc76f", "esm2017");
|
|
19464
19466
|
}();
|
|
19465
19467
|
|
|
19466
19468
|
export { el as AbstractUserDataWriter, Jc as Bytes, Cc as CACHE_SIZE_UNLIMITED, Ec as CollectionReference, Ic as DocumentReference, Sh as DocumentSnapshot, zc as FieldPath, Yc as FieldValue, xc as Firestore, Q as FirestoreError, Xc as GeoPoint, Dc as LoadBundleTask, Tc as Query, Oh as QueryConstraint, Dh as QueryDocumentSnapshot, Ch as QuerySnapshot, vh as SnapshotMetadata, at as Timestamp, Tl as Transaction, il as WriteBatch, kt as _DatabaseId, $t as _DocumentKey, et as _EmptyAppCheckTokenProvider, z as _EmptyAuthCredentialsProvider, Et as _FieldPath, wc as _cast, q as _debugAssert, Rt as _isBase64Available, $ as _logWarn, Sl as _setIndexConfiguration, lc as _validateIsNotUsedTogether, ml as addDoc, bl as arrayRemove, Pl as arrayUnion, Lc as clearIndexedDbPersistence, Ac as collection, Rc as collectionGroup, pc as connectFirestoreEmulator, wl as deleteDoc, Al as deleteField, Kc as disableNetwork, Pc as doc, Hc as documentId, Fc as enableIndexedDbPersistence, $c as enableMultiTabIndexedDbPersistence, qc as enableNetwork, Hh as endAt, zh as endBefore, Oc as ensureFirestoreConfigured, pl as executeWrite, ol as getDoc, al as getDocFromCache, cl as getDocFromServer, hl as getDocs, ll as getDocsFromCache, fl as getDocsFromServer, kc as getFirestore, Vl as increment, Nc as initializeFirestore, qh as limit, Kh as limitToLast, Qc as loadBundle, jc as namedQuery, gl as onSnapshot, yl as onSnapshotsInSync, Lh as orderBy, Mh as query, Vc as queryEqual, bc as refEqual, El as runTransaction, Rl as serverTimestamp, dl as setDoc, O as setLogLevel, Nh as snapshotEqual, jh as startAfter, Qh as startAt, Gc as terminate, _l as updateDoc, Uc as waitForPendingWrites, $h as where, vl as writeBatch };
|