@karmaniverous/entity-manager 6.4.4 → 6.4.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -4
  2. 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<Item extends Entity> {
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,7 +877,7 @@ interface ShardQueryMapBuilderOptions<Item extends Entity> {
879
877
  *
880
878
  * @category Query
881
879
  */
882
- declare abstract class ShardQueryMapBuilder<Item extends Entity, Options extends ShardQueryMapBuilderOptions<Item>> {
880
+ declare abstract class ShardQueryMapBuilder<Item extends Entity, Options extends ShardQueryMapBuilderOptions> {
883
881
  readonly options: Options;
884
882
  constructor(options: Options);
885
883
  abstract getShardQueryMap(): ShardQueryMap<Item>;
package/package.json CHANGED
@@ -132,5 +132,5 @@
132
132
  },
133
133
  "type": "module",
134
134
  "types": "dist/index.d.ts",
135
- "version": "6.4.4"
135
+ "version": "6.4.6"
136
136
  }