@karmaniverous/entity-manager 6.9.2 → 6.10.0
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 +15 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -708,4 +708,18 @@ type ConfigMap<M extends Partial<BaseConfigMap> = Partial<BaseConfigMap>> = Vali
|
|
|
708
708
|
TranscodeMap: 'TranscodeMap' extends keyof M ? NonNullable<M['TranscodeMap']> : DefaultTranscodeMap;
|
|
709
709
|
}>;
|
|
710
710
|
|
|
711
|
-
|
|
711
|
+
/**
|
|
712
|
+
* Replaces a the type of a key `K` in an `object` `T` with an {@link EntityItem | `EntityItem`}.
|
|
713
|
+
*
|
|
714
|
+
* @typeParam C - {@link ConfigMap | `ConfigMap`} that defines an {@link Config | `EntityManager configuration`}'s {@link EntityMap | `EntityMap`}, key properties, and {@link TranscodeMap | `TranscodeMap`}. If omitted, defaults to {@link BaseConfigMap | `BaseConfigMap`}.
|
|
715
|
+
* @typeParam T - The `object` type to modify.
|
|
716
|
+
* @typeParam K - The key to replace with an {@link EntityItem | `EntityItem`}.
|
|
717
|
+
*
|
|
718
|
+
* @category EntityClient
|
|
719
|
+
* @protected
|
|
720
|
+
*/
|
|
721
|
+
type EntityItemize<C extends BaseConfigMap, T extends object, K extends string> = {
|
|
722
|
+
[P in keyof T]: P extends K ? EntityItem<C> : T[P];
|
|
723
|
+
};
|
|
724
|
+
|
|
725
|
+
export { type BaseConfigMap, BaseEntityClient, type BaseEntityClientOptions, BaseQueryBuilder, type BaseQueryBuilderOptions, type Config, type ConfigMap, type EntityItem, type EntityItemize, EntityManager, type EntityToken, type PageKey, type ParsedConfig, type QueryBuilderQueryOptions, type QueryOptions, type QueryResult, type ShardBump, type ShardQueryFunction, type ShardQueryMap, type ShardQueryResult, type ValidateConfigMap };
|
package/package.json
CHANGED