@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.
Files changed (40) hide show
  1. package/dist/firestore/src/api/database.d.ts +5 -5
  2. package/dist/firestore/src/lite-api/database.d.ts +6 -6
  3. package/dist/index.cjs.js +4 -4
  4. package/dist/index.cjs.js.map +1 -1
  5. package/dist/index.d.ts +23 -3
  6. package/dist/index.esm2017.js +4 -4
  7. package/dist/index.esm2017.js.map +1 -1
  8. package/dist/index.esm5.js +4 -4
  9. package/dist/index.esm5.js.map +1 -1
  10. package/dist/index.node.cjs.js +3 -3
  11. package/dist/index.node.cjs.js.map +1 -1
  12. package/dist/index.node.mjs +3 -3
  13. package/dist/index.node.mjs.map +1 -1
  14. package/dist/index.rn.js +4 -4
  15. package/dist/index.rn.js.map +1 -1
  16. package/dist/internal.d.ts +5 -5
  17. package/dist/lite/firestore/src/api/database.d.ts +5 -5
  18. package/dist/lite/firestore/src/lite-api/database.d.ts +6 -6
  19. package/dist/lite/index.browser.esm2017.js +2 -2
  20. package/dist/lite/index.browser.esm2017.js.map +1 -1
  21. package/dist/lite/index.browser.esm5.js +2 -2
  22. package/dist/lite/index.browser.esm5.js.map +1 -1
  23. package/dist/lite/index.cjs.js +2 -2
  24. package/dist/lite/index.cjs.js.map +1 -1
  25. package/dist/lite/index.d.ts +36 -2
  26. package/dist/lite/index.node.cjs.js +2 -2
  27. package/dist/lite/index.node.cjs.js.map +1 -1
  28. package/dist/lite/index.node.mjs +2 -2
  29. package/dist/lite/index.node.mjs.map +1 -1
  30. package/dist/lite/index.rn.esm2017.js +2 -2
  31. package/dist/lite/index.rn.esm2017.js.map +1 -1
  32. package/dist/lite/internal.d.ts +6 -6
  33. package/dist/lite/packages/firestore/src/api/database.d.ts +5 -5
  34. package/dist/lite/packages/firestore/src/lite-api/database.d.ts +6 -6
  35. package/dist/lite/private.d.ts +36 -3
  36. package/dist/packages/firestore/dist/index.esm2017.d.ts +1 -1
  37. package/dist/packages/firestore/src/api/database.d.ts +5 -5
  38. package/dist/packages/firestore/src/lite-api/database.d.ts +6 -6
  39. package/dist/private.d.ts +23 -3
  40. package/package.json +1 -1
@@ -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
- * @internal
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
- * @internal
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
- * @internal
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
- * @internal
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
- * @internal
135
+ * @beta
136
136
  */
137
137
  export declare function getFirestore(app: FirebaseApp, databaseId: string): Firestore;
138
138
  /**
package/dist/index.cjs.js CHANGED
@@ -70,7 +70,7 @@ V.MOCK_USER = new V("mock-user");
70
70
  * See the License for the specific language governing permissions and
71
71
  * limitations under the License.
72
72
  */
73
- let S = "9.22.2";
73
+ let S = "9.23.0-20230621164011";
74
74
 
75
75
  /**
76
76
  * @license
@@ -18344,7 +18344,7 @@ class Eh {
18344
18344
  * @param app - The {@link @firebase/app#FirebaseApp} with which the {@link Firestore} instance will
18345
18345
  * be associated.
18346
18346
  * @param settings - A settings object to configure the {@link Firestore} instance.
18347
- * @param databaseId - The name of database.
18347
+ * @param databaseId - The name of the database.
18348
18348
  * @returns A newly initialized {@link Firestore} instance.
18349
18349
  */ function Rh(t, e, n) {
18350
18350
  n || (n = "(default)");
@@ -21382,9 +21382,9 @@ function Jf(t, e) {
21382
21382
  return s = Object.assign({
21383
21383
  useFetchStreams: e
21384
21384
  }, s), r._setSettings(s), r;
21385
- }), "PUBLIC").setMultipleInstances(!0)), app.registerVersion(b, "3.12.2", t),
21385
+ }), "PUBLIC").setMultipleInstances(!0)), app.registerVersion(b, "3.13.0-20230621164011", t),
21386
21386
  // BUILD_TARGET will be replaced by values like esm5, esm2017, cjs5, etc during the compilation
21387
- app.registerVersion(b, "3.12.2", "cjs2017");
21387
+ app.registerVersion(b, "3.13.0-20230621164011", "cjs2017");
21388
21388
  }();
21389
21389
 
21390
21390
  exports.AbstractUserDataWriter = Wl;