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