@dereekb/firebase 12.0.4 → 12.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/firebase",
3
- "version": "12.0.4",
3
+ "version": "12.0.6",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./src/index.d.ts",
@@ -1,12 +1,11 @@
1
1
  import { type Observable } from 'rxjs';
2
2
  import { type FirestoreAccessorDriverRef } from '../driver/accessor';
3
- import { type FirestoreCollectionNameRef, type FirestoreModelId, type FirestoreModelIdentityCollectionName, type FirestoreModelIdentityModelType, type FirestoreModelIdentityRef, type FirestoreModelIdRef, type FirestoreModelKey, type FirestoreModelKeyRef } from './../collection/collection';
3
+ import { type FirestoreCollectionNameRef, type FirestoreModelId, type FirestoreModelIdentityCollectionName, type FirestoreModelIdentityModelType, type FirestoreModelIdentityRef, type FirestoreModelIdRef, type FirestoreModelKey, type FirestoreModelKeyRef, type FirestoreModelTypeRef, type FirestoreModelIdentity, type FirestoreModelTypeModelIdentityRef } from './../collection/collection';
4
4
  import { type DocumentReference, type CollectionReference, type Transaction, type WriteBatch, type DocumentSnapshot, type SnapshotOptions, type WriteResult, type FirestoreDataConverter } from '../types';
5
5
  import { type FirestoreAccessorIncrementUpdate, type FirestoreDocumentDataAccessor, type FirestoreDocumentUpdateParams, type FirestoreAccessorStreamMode } from './accessor';
6
6
  import { type CollectionReferenceRef, type DocumentReferenceRef, type FirestoreContextReference, type FirestoreDataConverterRef } from '../reference';
7
7
  import { type FirestoreDocumentContext } from './context';
8
8
  import { type Building, type Maybe } from '@dereekb/util';
9
- import { type FirestoreModelTypeRef, type FirestoreModelIdentity, type FirestoreModelTypeModelIdentityRef } from '../collection/collection';
10
9
  import { type InterceptAccessorFactoryFunction } from './accessor.wrap';
11
10
  import { type FirestoreDataConverterFactory, type FirestoreDataConverterFactoryRef, type InterceptFirestoreDataConverterFactory } from './converter';
12
11
  export interface FirestoreDocument<T, I extends FirestoreModelIdentity = FirestoreModelIdentity> extends FirestoreDataConverterRef<T>, DocumentReferenceRef<T>, CollectionReferenceRef<T>, FirestoreModelIdentityRef<I>, FirestoreModelTypeRef<FirestoreModelIdentityModelType<I>>, FirestoreCollectionNameRef<FirestoreModelIdentityCollectionName<I>>, FirestoreModelKeyRef, FirestoreModelIdRef {
@@ -1,6 +1,5 @@
1
- import { type LimitedFirestoreDocumentAccessorContextExtension } from './../accessor/document';
1
+ import { type LimitedFirestoreDocumentAccessorContextExtension, type FirestoreDocument } from './../accessor/document';
2
2
  import { type ArrayOrValue, type Maybe } from '@dereekb/util';
3
- import { type FirestoreDocument } from '../accessor/document';
4
3
  import { type FirestoreExecutableQuery, type FirestoreQueryFactory } from '../query';
5
4
  import { type FirestoreQueryConstraint } from '../query/constraint';
6
5
  import { type Transaction } from '../types';
@@ -1,6 +1,5 @@
1
- import { type FieldPath, type SnapshotListenOptions, type Transaction } from './../types';
1
+ import { type FieldPath, type SnapshotListenOptions, type Transaction, type Query, type QuerySnapshot } from './../types';
2
2
  import { type Observable } from 'rxjs';
3
- import { type Query, type QuerySnapshot } from '../types';
4
3
  import { type FirestoreQueryConstraint } from '../query/constraint';
5
4
  import { type Maybe } from '@dereekb/util';
6
5
  export type FirestoreQueryDriverQueryFunction = <T>(query: Query<T>, ...queryConstraints: FirestoreQueryConstraint[]) => Query<T>;
@@ -1,6 +1,5 @@
1
- import { type FieldPathOrStringPath } from './../types';
1
+ import { type FieldPathOrStringPath, type DocumentSnapshot, type DocumentData, type FieldPath } from './../types';
2
2
  import { type ArrayOrValue, type SeparateResult, type SortingOrder, type Maybe, type StringKeyPropertyKeys } from '@dereekb/util';
3
- import { type DocumentSnapshot, type DocumentData, type FieldPath } from '../types';
4
3
  /**
5
4
  * Type identifier for a Firestore query constraint.
6
5
  *
package/test/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [12.0.6](https://github.com/dereekb/dbx-components/compare/v12.0.5-dev...v12.0.6) (2025-05-07)
6
+
7
+
8
+
9
+ ## [12.0.5](https://github.com/dereekb/dbx-components/compare/v12.0.4-dev...v12.0.5) (2025-05-02)
10
+
11
+
12
+
5
13
  ## [12.0.4](https://github.com/dereekb/dbx-components/compare/v12.0.3-dev...v12.0.4) (2025-04-29)
6
14
 
7
15
 
package/test/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/firebase/test",
3
- "version": "12.0.4",
3
+ "version": "12.0.6",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@dereekb/util": "*",