@karmaniverous/entity-manager 6.4.4 → 6.4.5
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 +4 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -863,13 +863,11 @@ interface LoggerOptions {
|
|
|
863
863
|
*
|
|
864
864
|
* @category Query
|
|
865
865
|
*/
|
|
866
|
-
interface ShardQueryMapBuilderOptions
|
|
866
|
+
interface ShardQueryMapBuilderOptions {
|
|
867
867
|
/** `entityManager.config.entities` key. */
|
|
868
868
|
entityToken: string;
|
|
869
869
|
/** Either the designated entity hash key or a generated property with `sharded === true`. */
|
|
870
870
|
hashKeyToken: string;
|
|
871
|
-
/** A partial `Item` sufficiently populated to generate the query hash key & index values. */
|
|
872
|
-
item: Item;
|
|
873
871
|
/** Dehydrated page key from the previous query data page. */
|
|
874
872
|
pageKey?: string;
|
|
875
873
|
}
|
|
@@ -879,9 +877,9 @@ interface ShardQueryMapBuilderOptions<Item extends Entity> {
|
|
|
879
877
|
*
|
|
880
878
|
* @category Query
|
|
881
879
|
*/
|
|
882
|
-
declare abstract class ShardQueryMapBuilder<Item extends Entity
|
|
883
|
-
readonly options:
|
|
884
|
-
constructor(options:
|
|
880
|
+
declare abstract class ShardQueryMapBuilder<Item extends Entity> {
|
|
881
|
+
readonly options: ShardQueryMapBuilderOptions;
|
|
882
|
+
constructor(options: ShardQueryMapBuilderOptions);
|
|
885
883
|
abstract getShardQueryMap(): ShardQueryMap<Item>;
|
|
886
884
|
}
|
|
887
885
|
|
package/package.json
CHANGED