@firebase/firestore 3.4.10-canary.8e952e2ee → 3.4.10-canary.bf4959b60
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/platform/node/grpc_connection.d.ts +1 -1
- package/dist/firestore/src/remote/connection.d.ts +1 -1
- package/dist/firestore/src/remote/rest_connection.d.ts +1 -1
- package/dist/index.esm2017.js +7 -7
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +12 -12
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +16 -7
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.mjs +16 -7
- package/dist/index.node.mjs.map +1 -1
- package/dist/index.rn.js +7 -7
- package/dist/index.rn.js.map +1 -1
- package/dist/lite/firestore/src/platform/node/grpc_connection.d.ts +1 -1
- package/dist/lite/firestore/src/remote/connection.d.ts +1 -1
- package/dist/lite/firestore/src/remote/rest_connection.d.ts +1 -1
- package/dist/lite/index.browser.esm2017.js +6 -6
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.browser.esm5.js +11 -11
- package/dist/lite/index.browser.esm5.js.map +1 -1
- package/dist/lite/index.node.cjs.js +6 -6
- package/dist/lite/index.node.cjs.js.map +1 -1
- package/dist/lite/index.node.mjs +6 -6
- package/dist/lite/index.node.mjs.map +1 -1
- package/dist/lite/index.rn.esm2017.js +6 -6
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/packages/firestore/src/platform/node/grpc_connection.d.ts +1 -1
- package/dist/lite/packages/firestore/src/remote/connection.d.ts +1 -1
- package/dist/lite/packages/firestore/src/remote/rest_connection.d.ts +1 -1
- package/dist/packages/firestore/src/platform/node/grpc_connection.d.ts +1 -1
- package/dist/packages/firestore/src/remote/connection.d.ts +1 -1
- package/dist/packages/firestore/src/remote/rest_connection.d.ts +1 -1
- package/package.json +9 -9
|
@@ -29,6 +29,6 @@ export declare class GrpcConnection implements Connection {
|
|
|
29
29
|
constructor(protos: grpc.GrpcObject, databaseInfo: DatabaseInfo);
|
|
30
30
|
private ensureActiveStub;
|
|
31
31
|
invokeRPC<Req, Resp>(rpcName: string, path: string, request: Req, authToken: Token | null, appCheckToken: Token | null): Promise<Resp>;
|
|
32
|
-
invokeStreamingRPC<Req, Resp>(rpcName: string, path: string, request: Req, authToken: Token | null, appCheckToken: Token | null): Promise<Resp[]>;
|
|
32
|
+
invokeStreamingRPC<Req, Resp>(rpcName: string, path: string, request: Req, authToken: Token | null, appCheckToken: Token | null, expectedResponseCount?: number): Promise<Resp[]>;
|
|
33
33
|
openStream<Req, Resp>(rpcName: string, authToken: Token | null, appCheckToken: Token | null): Stream<Req, Resp>;
|
|
34
34
|
}
|
|
@@ -54,7 +54,7 @@ export interface Connection {
|
|
|
54
54
|
* @returns a Promise containing an array with the JSON object encodings of the
|
|
55
55
|
* responses
|
|
56
56
|
*/
|
|
57
|
-
invokeStreamingRPC<Req, Resp>(rpcName: string, path: string, request: Req, authToken: Token | null, appCheckToken: Token | null): Promise<Resp[]>;
|
|
57
|
+
invokeStreamingRPC<Req, Resp>(rpcName: string, path: string, request: Req, authToken: Token | null, appCheckToken: Token | null, expectedResponseCount?: number): Promise<Resp[]>;
|
|
58
58
|
/**
|
|
59
59
|
* Opens a stream to the given stream RPC endpoint. Returns a stream which
|
|
60
60
|
* will try to open itself.
|
|
@@ -29,7 +29,7 @@ export declare abstract class RestConnection implements Connection {
|
|
|
29
29
|
private readonly databaseRoot;
|
|
30
30
|
constructor(databaseInfo: DatabaseInfo);
|
|
31
31
|
invokeRPC<Req, Resp>(rpcName: string, path: string, req: Req, authToken: Token | null, appCheckToken: Token | null): Promise<Resp>;
|
|
32
|
-
invokeStreamingRPC<Req, Resp>(rpcName: string, path: string, request: Req, authToken: Token | null, appCheckToken: Token | null): Promise<Resp[]>;
|
|
32
|
+
invokeStreamingRPC<Req, Resp>(rpcName: string, path: string, request: Req, authToken: Token | null, appCheckToken: Token | null, expectedResponseCount?: number): Promise<Resp[]>;
|
|
33
33
|
abstract openStream<Req, Resp>(rpcName: string, authToken: Token | null, appCheckToken: Token | null): Stream<Req, Resp>;
|
|
34
34
|
/**
|
|
35
35
|
* Modifies the headers for a request, adding any authorization token if
|
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.3-canary.
|
|
69
|
+
let x = "9.8.3-canary.bf4959b60";
|
|
70
70
|
|
|
71
71
|
/**
|
|
72
72
|
* @license
|
|
@@ -12431,7 +12431,7 @@ class {
|
|
|
12431
12431
|
e;
|
|
12432
12432
|
}));
|
|
12433
12433
|
}
|
|
12434
|
-
ao(t, e, n, s, i) {
|
|
12434
|
+
ao(t, e, n, s, i, r) {
|
|
12435
12435
|
// The REST API automatically aggregates all of the streamed results, so we
|
|
12436
12436
|
// can just use the normal invoke() method.
|
|
12437
12437
|
return this.ro(t, e, n, s, i);
|
|
@@ -13178,8 +13178,8 @@ class uu extends class {} {
|
|
|
13178
13178
|
this.appCheckCredentials.invalidateToken()), t) : new Q(G.UNKNOWN, t.toString());
|
|
13179
13179
|
}));
|
|
13180
13180
|
}
|
|
13181
|
-
/** Invokes the provided RPC with streamed results with auth and AppCheck tokens. */ ao(t, e, n) {
|
|
13182
|
-
return this.tu(), Promise.all([ this.authCredentials.getToken(), this.appCheckCredentials.getToken() ]).then((([
|
|
13181
|
+
/** Invokes the provided RPC with streamed results with auth and AppCheck tokens. */ ao(t, e, n, s) {
|
|
13182
|
+
return this.tu(), Promise.all([ this.authCredentials.getToken(), this.appCheckCredentials.getToken() ]).then((([i, r]) => this.bo.ao(t, e, n, i, r, s))).catch((t => {
|
|
13183
13183
|
throw "FirebaseError" === t.name ? (t.code === G.UNAUTHENTICATED && (this.authCredentials.invalidateToken(),
|
|
13184
13184
|
this.appCheckCredentials.invalidateToken()), t) : new Q(G.UNKNOWN, t.toString());
|
|
13185
13185
|
}));
|
|
@@ -15812,7 +15812,7 @@ class jc {
|
|
|
15812
15812
|
const e = await async function(t, e) {
|
|
15813
15813
|
const n = K(t), s = Ls(n.wt) + "/documents", i = {
|
|
15814
15814
|
documents: e.map((t => Ms(n.wt, t)))
|
|
15815
|
-
}, r = await n.ao("BatchGetDocuments", s, i), o = new Map;
|
|
15815
|
+
}, r = await n.ao("BatchGetDocuments", s, i, e.length), o = new Map;
|
|
15816
15816
|
r.forEach((t => {
|
|
15817
15817
|
const e = Gs(n.wt, t);
|
|
15818
15818
|
o.set(e.key.toString(), e);
|
|
@@ -19610,9 +19610,9 @@ function Ol(t, e) {
|
|
|
19610
19610
|
return n = Object.assign({
|
|
19611
19611
|
useFetchStreams: e
|
|
19612
19612
|
}, n), i._setSettings(n), i;
|
|
19613
|
-
}), "PUBLIC")), registerVersion(D, "3.4.10-canary.
|
|
19613
|
+
}), "PUBLIC")), registerVersion(D, "3.4.10-canary.bf4959b60", t),
|
|
19614
19614
|
// BUILD_TARGET will be replaced by values like esm5, esm2017, cjs5, etc during the compilation
|
|
19615
|
-
registerVersion(D, "3.4.10-canary.
|
|
19615
|
+
registerVersion(D, "3.4.10-canary.bf4959b60", "esm2017");
|
|
19616
19616
|
}();
|
|
19617
19617
|
|
|
19618
19618
|
export { ol as AbstractUserDataWriter, eh as Bytes, Ma as CACHE_SIZE_UNLIMITED, va as CollectionReference, ba as DocumentReference, kh as DocumentSnapshot, Za as FieldPath, nh as FieldValue, Fa as Firestore, Q as FirestoreError, sh as GeoPoint, Oa as LoadBundleTask, Pa as Query, Lh as QueryConstraint, Oh as QueryDocumentSnapshot, Mh as QuerySnapshot, Nh as SnapshotMetadata, ut as Timestamp, Pl as Transaction, al as WriteBatch, re as _DatabaseId, dt as _DocumentKey, et as _EmptyAppCheckTokenProvider, z as _EmptyAuthCredentialsProvider, ft as _FieldPath, Ia as _cast, q as _debugAssert, Ht as _isBase64Available, $ as _logWarn, kl as _setIndexConfiguration, ma as _validateIsNotUsedTogether, Tl as addDoc, Cl as arrayRemove, Dl as arrayUnion, Qa as clearIndexedDbPersistence, Va as collection, Sa as collectionGroup, Ra as connectFirestoreEmulator, Il as deleteDoc, Vl as deleteField, za as disableNetwork, Da as doc, th as documentId, qa as enableIndexedDbPersistence, Ka as enableMultiTabIndexedDbPersistence, Wa as enableNetwork, tl as endAt, Zh as endBefore, La as ensureFirestoreConfigured, Rl as executeWrite, ll as getDoc, dl as getDocFromCache, _l as getDocFromServer, wl as getDocs, ml as getDocsFromCache, gl as getDocsFromServer, Ba as getFirestore, xl as increment, $a as initializeFirestore, Wh as limit, zh as limitToLast, Ja as loadBundle, Ya as namedQuery, El as onSnapshot, Al as onSnapshotsInSync, Qh as orderBy, Uh as query, xa as queryEqual, Ca as refEqual, vl as runTransaction, Sl as serverTimestamp, yl as setDoc, O as setLogLevel, $h as snapshotEqual, Yh as startAfter, Jh as startAt, Ha as terminate, pl as updateDoc, ja as waitForPendingWrites, Kh as where, Nl as writeBatch };
|