@karmaniverous/entity-manager 6.4.0 → 6.4.1
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 +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -936,7 +936,7 @@ interface ShardQueryMapBuilderOptions<Item extends ItemMap<M, HashKey, RangeKey>
|
|
|
936
936
|
* @category Query
|
|
937
937
|
*/
|
|
938
938
|
declare abstract class ShardQueryMapBuilder<Item extends ItemMap<M, HashKey, RangeKey>[EntityToken], EntityToken extends keyof Exactify<M> & string, M extends EntityMap, HashKey extends string, RangeKey extends string, T extends TranscodeMap, Options extends ShardQueryMapBuilderOptions<Item, EntityToken, M, HashKey, RangeKey, T>> {
|
|
939
|
-
|
|
939
|
+
readonly options: Options;
|
|
940
940
|
constructor(options: Options);
|
|
941
941
|
abstract getShardQueryMap(): ShardQueryMap<Item, EntityToken, M, HashKey, RangeKey, T>;
|
|
942
942
|
}
|
package/package.json
CHANGED