@karmaniverous/entity-manager 7.3.2 → 7.3.3
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/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -747,7 +747,7 @@ interface BaseEntityClientOptions<CC extends BaseConfigMap, CF = unknown> {
|
|
|
747
747
|
/** {@link EntityManager | `EntityManager`} instance. */
|
|
748
748
|
entityManager: EntityManager<CC, CF>;
|
|
749
749
|
/** Injected logger object. Must support `debug` and `error` methods. Default: `console` */
|
|
750
|
-
logger?: Pick<Console, 'debug' | 'error'
|
|
750
|
+
logger?: Pick<Console, 'debug' | 'error'> | undefined;
|
|
751
751
|
}
|
|
752
752
|
|
|
753
753
|
/**
|
|
@@ -796,7 +796,7 @@ interface BaseQueryBuilderOptions<CC extends BaseConfigMap, EntityClient extends
|
|
|
796
796
|
/** Hash key token. */
|
|
797
797
|
hashKeyToken: CC['HashKey'] | CC['ShardedKeys'];
|
|
798
798
|
/** Dehydrated page key map. */
|
|
799
|
-
pageKeyMap?: string;
|
|
799
|
+
pageKeyMap?: string | undefined;
|
|
800
800
|
}
|
|
801
801
|
|
|
802
802
|
/**
|
|
@@ -830,7 +830,7 @@ declare abstract class BaseQueryBuilder<CC extends BaseConfigMap, EntityClient e
|
|
|
830
830
|
/** Hash key token. */
|
|
831
831
|
readonly hashKeyToken: CC['HashKey'] | CC['ShardedKeys'];
|
|
832
832
|
/** Dehydrated page key map. */
|
|
833
|
-
readonly pageKeyMap?: string;
|
|
833
|
+
readonly pageKeyMap?: string | undefined;
|
|
834
834
|
/**
|
|
835
835
|
* Maps `indexToken` values to database platform-specific query parameters.
|
|
836
836
|
*
|
package/package.json
CHANGED