@firebase/firestore 3.12.2 → 3.13.0-20230621164011
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/database.d.ts +5 -5
- package/dist/firestore/src/lite-api/database.d.ts +6 -6
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +23 -3
- package/dist/index.esm2017.js +4 -4
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +4 -4
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +3 -3
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.mjs +3 -3
- package/dist/index.node.mjs.map +1 -1
- package/dist/index.rn.js +4 -4
- package/dist/index.rn.js.map +1 -1
- package/dist/internal.d.ts +5 -5
- package/dist/lite/firestore/src/api/database.d.ts +5 -5
- package/dist/lite/firestore/src/lite-api/database.d.ts +6 -6
- package/dist/lite/index.browser.esm2017.js +2 -2
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.browser.esm5.js +2 -2
- package/dist/lite/index.browser.esm5.js.map +1 -1
- package/dist/lite/index.cjs.js +2 -2
- package/dist/lite/index.cjs.js.map +1 -1
- package/dist/lite/index.d.ts +36 -2
- package/dist/lite/index.node.cjs.js +2 -2
- package/dist/lite/index.node.cjs.js.map +1 -1
- package/dist/lite/index.node.mjs +2 -2
- package/dist/lite/index.node.mjs.map +1 -1
- package/dist/lite/index.rn.esm2017.js +2 -2
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/internal.d.ts +6 -6
- package/dist/lite/packages/firestore/src/api/database.d.ts +5 -5
- package/dist/lite/packages/firestore/src/lite-api/database.d.ts +6 -6
- package/dist/lite/private.d.ts +36 -3
- package/dist/packages/firestore/dist/index.esm2017.d.ts +1 -1
- package/dist/packages/firestore/src/api/database.d.ts +5 -5
- package/dist/packages/firestore/src/lite-api/database.d.ts +6 -6
- package/dist/private.d.ts +23 -3
- package/package.json +1 -1
package/dist/internal.d.ts
CHANGED
|
@@ -2813,9 +2813,9 @@ export declare function getFirestore(app: FirebaseApp): Firestore;
|
|
|
2813
2813
|
* default {@link @firebase/app#FirebaseApp}. If no instance exists, initializes a new
|
|
2814
2814
|
* instance with default settings.
|
|
2815
2815
|
*
|
|
2816
|
-
* @param databaseId - The name of database.
|
|
2816
|
+
* @param databaseId - The name of the database.
|
|
2817
2817
|
* @returns The {@link Firestore} instance of the provided app.
|
|
2818
|
-
* @
|
|
2818
|
+
* @beta
|
|
2819
2819
|
*/
|
|
2820
2820
|
export declare function getFirestore(databaseId: string): Firestore;
|
|
2821
2821
|
|
|
@@ -2835,9 +2835,9 @@ export declare function getFirestore(): Firestore;
|
|
|
2835
2835
|
*
|
|
2836
2836
|
* @param app - The {@link @firebase/app#FirebaseApp} instance that the returned {@link Firestore}
|
|
2837
2837
|
* instance is associated with.
|
|
2838
|
-
* @param databaseId - The name of database.
|
|
2838
|
+
* @param databaseId - The name of the database.
|
|
2839
2839
|
* @returns The {@link Firestore} instance of the provided app.
|
|
2840
|
-
* @
|
|
2840
|
+
* @beta
|
|
2841
2841
|
*/
|
|
2842
2842
|
export declare function getFirestore(app: FirebaseApp, databaseId: string): Firestore;
|
|
2843
2843
|
|
|
@@ -3104,7 +3104,7 @@ declare const enum IndexType {
|
|
|
3104
3104
|
* @param app - The {@link @firebase/app#FirebaseApp} with which the {@link Firestore} instance will
|
|
3105
3105
|
* be associated.
|
|
3106
3106
|
* @param settings - A settings object to configure the {@link Firestore} instance.
|
|
3107
|
-
* @param databaseId - The name of database.
|
|
3107
|
+
* @param databaseId - The name of the database.
|
|
3108
3108
|
* @returns A newly initialized {@link Firestore} instance.
|
|
3109
3109
|
*/
|
|
3110
3110
|
export declare function initializeFirestore(app: FirebaseApp, settings: FirestoreSettings, databaseId?: string): Firestore;
|
|
@@ -62,7 +62,7 @@ export declare class Firestore extends LiteFirestore {
|
|
|
62
62
|
* @param app - The {@link @firebase/app#FirebaseApp} with which the {@link Firestore} instance will
|
|
63
63
|
* be associated.
|
|
64
64
|
* @param settings - A settings object to configure the {@link Firestore} instance.
|
|
65
|
-
* @param databaseId - The name of database.
|
|
65
|
+
* @param databaseId - The name of the database.
|
|
66
66
|
* @returns A newly initialized {@link Firestore} instance.
|
|
67
67
|
*/
|
|
68
68
|
export declare function initializeFirestore(app: FirebaseApp, settings: FirestoreSettings, databaseId?: string): Firestore;
|
|
@@ -81,9 +81,9 @@ export declare function getFirestore(app: FirebaseApp): Firestore;
|
|
|
81
81
|
* default {@link @firebase/app#FirebaseApp}. If no instance exists, initializes a new
|
|
82
82
|
* instance with default settings.
|
|
83
83
|
*
|
|
84
|
-
* @param databaseId - The name of database.
|
|
84
|
+
* @param databaseId - The name of the database.
|
|
85
85
|
* @returns The {@link Firestore} instance of the provided app.
|
|
86
|
-
* @
|
|
86
|
+
* @beta
|
|
87
87
|
*/
|
|
88
88
|
export declare function getFirestore(databaseId: string): Firestore;
|
|
89
89
|
/**
|
|
@@ -101,9 +101,9 @@ export declare function getFirestore(): Firestore;
|
|
|
101
101
|
*
|
|
102
102
|
* @param app - The {@link @firebase/app#FirebaseApp} instance that the returned {@link Firestore}
|
|
103
103
|
* instance is associated with.
|
|
104
|
-
* @param databaseId - The name of database.
|
|
104
|
+
* @param databaseId - The name of the database.
|
|
105
105
|
* @returns The {@link Firestore} instance of the provided app.
|
|
106
|
-
* @
|
|
106
|
+
* @beta
|
|
107
107
|
*/
|
|
108
108
|
export declare function getFirestore(app: FirebaseApp, databaseId: string): Firestore;
|
|
109
109
|
/**
|
|
@@ -90,9 +90,9 @@ export declare function initializeFirestore(app: FirebaseApp, settings: Firestor
|
|
|
90
90
|
* @param app - The {@link @firebase/app#FirebaseApp} with which the `Firestore` instance will
|
|
91
91
|
* be associated.
|
|
92
92
|
* @param settings - A settings object to configure the `Firestore` instance.
|
|
93
|
-
* @param databaseId - The name of database.
|
|
93
|
+
* @param databaseId - The name of the database.
|
|
94
94
|
* @returns A newly initialized `Firestore` instance.
|
|
95
|
-
* @
|
|
95
|
+
* @beta
|
|
96
96
|
*/
|
|
97
97
|
export declare function initializeFirestore(app: FirebaseApp, settings: FirestoreSettings, databaseId?: string): Firestore;
|
|
98
98
|
/**
|
|
@@ -118,9 +118,9 @@ export declare function getFirestore(app: FirebaseApp): Firestore;
|
|
|
118
118
|
* default {@link @firebase/app#FirebaseApp}. If no instance exists, initializes a new
|
|
119
119
|
* instance with default settings.
|
|
120
120
|
*
|
|
121
|
-
* @param databaseId - The name of database.
|
|
121
|
+
* @param databaseId - The name of the database.
|
|
122
122
|
* @returns The {@link Firestore} instance of the provided app.
|
|
123
|
-
* @
|
|
123
|
+
* @beta
|
|
124
124
|
*/
|
|
125
125
|
export declare function getFirestore(databaseId: string): Firestore;
|
|
126
126
|
/**
|
|
@@ -130,9 +130,9 @@ export declare function getFirestore(databaseId: string): Firestore;
|
|
|
130
130
|
*
|
|
131
131
|
* @param app - The {@link @firebase/app#FirebaseApp} instance that the returned {@link Firestore}
|
|
132
132
|
* instance is associated with.
|
|
133
|
-
* @param databaseId - The name of database.
|
|
133
|
+
* @param databaseId - The name of the database.
|
|
134
134
|
* @returns The {@link Firestore} instance of the provided app.
|
|
135
|
-
* @
|
|
135
|
+
* @beta
|
|
136
136
|
*/
|
|
137
137
|
export declare function getFirestore(app: FirebaseApp, databaseId: string): Firestore;
|
|
138
138
|
/**
|
|
@@ -63,7 +63,7 @@ d.MOCK_USER = new d("mock-user");
|
|
|
63
63
|
* See the License for the specific language governing permissions and
|
|
64
64
|
* limitations under the License.
|
|
65
65
|
*/
|
|
66
|
-
let w = "9.
|
|
66
|
+
let w = "9.23.0-20230621164011";
|
|
67
67
|
|
|
68
68
|
/**
|
|
69
69
|
* @license
|
|
@@ -7173,7 +7173,7 @@ class bs {
|
|
|
7173
7173
|
return n && s._setSettings(n), s;
|
|
7174
7174
|
}), "PUBLIC").setMultipleInstances(!0)),
|
|
7175
7175
|
// RUNTIME_ENV and BUILD_TARGET are replaced by real values during the compilation
|
|
7176
|
-
registerVersion("firestore-lite", "3.
|
|
7176
|
+
registerVersion("firestore-lite", "3.13.0-20230621164011", ""), registerVersion("firestore-lite", "3.13.0-20230621164011", "esm2017");
|
|
7177
7177
|
|
|
7178
7178
|
export { $n as AggregateField, Nn as AggregateQuerySnapshot, Mn as Bytes, xn as CollectionReference, Dn as DocumentReference, pr as DocumentSnapshot, Ln as FieldPath, jn as FieldValue, Tn as Firestore, U as FirestoreError, Bn as GeoPoint, Fn as Query, Rr as QueryCompositeFilterConstraint, Er as QueryConstraint, yr as QueryDocumentSnapshot, kr as QueryEndAtConstraint, Tr as QueryFieldFilterConstraint, Dr as QueryLimitConstraint, $r as QueryOrderByConstraint, gr as QuerySnapshot, Sr as QueryStartAtConstraint, xt as Timestamp, bs as Transaction, fs as WriteBatch, Zr as addDoc, is as aggregateFieldEqual, os as aggregateQuerySnapshotEqual, Vr as and, hs as arrayRemove, as as arrayUnion, rs as average, Sn as collection, qn as collectionGroup, Pn as connectFirestoreEmulator, ss as count, Xr as deleteDoc, us as deleteField, On as doc, Un as documentId, Mr as endAt, Cr as endBefore, es as getAggregate, ts as getCount, Kr as getDoc, Yr as getDocs, Rn as getFirestore, ls as increment, An as initializeFirestore, Fr as limit, xr as limitToLast, Pr as or, Nr as orderBy, Ir as query, Cn as queryEqual, kn as refEqual, Es as runTransaction, cs as serverTimestamp, Hr as setDoc, p as setLogLevel, _r as snapshotEqual, Or as startAfter, qr as startAt, ns as sum, Vn as terminate, Jr as updateDoc, Ar as where, ws as writeBatch };
|
|
7179
7179
|
//# sourceMappingURL=index.browser.esm2017.js.map
|