@karmaniverous/entity-manager 6.2.2 → 6.2.4
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
|
@@ -921,7 +921,7 @@ interface ShardQueryFunctionBuilderOptions<Item extends ItemMap<M, HashKey, Rang
|
|
|
921
921
|
/** `entityManager.config.entities` key. */
|
|
922
922
|
entityToken: EntityToken;
|
|
923
923
|
/** Either the designated entity hash key or a generated property with `sharded === true`. */
|
|
924
|
-
hashKeyToken: HashKey | PropertiesOfType<M[EntityToken], void
|
|
924
|
+
hashKeyToken: HashKey | (PropertiesOfType<M[EntityToken], void> & string);
|
|
925
925
|
/** `entityManager.config.entities.<entityToken>.indexes` key. */
|
|
926
926
|
indexToken: string;
|
|
927
927
|
/** A partial `Item` sufficiently populated to generate the query hash key & index values. */
|
package/package.json
CHANGED