svelte-firekit 0.0.24 → 0.0.25

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.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @module FirekitBatchMutations
3
3
  */
4
- import { doc, setDoc, updateDoc, deleteDoc, getDoc, collection, writeBatch, serverTimestamp } from 'firebase/firestore';
4
+ import { doc, collection, writeBatch, serverTimestamp } from 'firebase/firestore';
5
5
  import { firebaseService } from '../firebase.js';
6
6
  import { firekitUser } from '../auth/user.svelte.js';
7
7
  /**
package/dist/index.d.ts CHANGED
@@ -8,6 +8,7 @@ export { firekitDocMutations } from './firestore/document-mutations.svelte.js';
8
8
  export { firekitCollection } from './firestore/collection.svelte.js';
9
9
  export { firekitDoc } from './firestore/doc.svelte.js';
10
10
  export { firekitCollectionGroup } from './firestore/collection-group.svelte.js';
11
+ export { firekitBatchMutations } from './firestore/batch-mutations.svelte.js';
11
12
  export { firekitRealtimeDB } from './realtime/realtime.svelte.js';
12
13
  export { firekitDownloadUrl } from './storage/download-url.svelte.js';
13
14
  export { firekitStorageList } from './storage/storage-list.svelte.js';
package/dist/index.js CHANGED
@@ -11,6 +11,7 @@ export { firekitDocMutations } from './firestore/document-mutations.svelte.js';
11
11
  export { firekitCollection } from './firestore/collection.svelte.js';
12
12
  export { firekitDoc } from './firestore/doc.svelte.js';
13
13
  export { firekitCollectionGroup } from './firestore/collection-group.svelte.js';
14
+ export { firekitBatchMutations } from './firestore/batch-mutations.svelte.js';
14
15
  // realtime services
15
16
  export { firekitRealtimeDB } from './realtime/realtime.svelte.js';
16
17
  // Storage services
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-firekit",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev",