@elyx-code/project-logic-tree 0.0.6722 → 0.0.6723
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.cjs +159 -159
- package/dist/index.d.ts +9 -0
- package/dist/index.js +5176 -5129
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -24643,6 +24643,13 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
24643
24643
|
|
|
24644
24644
|
export declare function mapRange(vRaw: unknown, inMinRaw: unknown, inMaxRaw: unknown, outMinRaw: unknown, outMaxRaw: unknown): number;
|
|
24645
24645
|
|
|
24646
|
+
/**
|
|
24647
|
+
* Maps the keys of a record using a provided map of entity IDs.
|
|
24648
|
+
*
|
|
24649
|
+
* @param {Record< EntityId, Element | ElementTransfer | ElementShallowTransfer>} record - The record to be mapped.
|
|
24650
|
+
* @param {Map<EntityId, EntityId>} entityIdMaps - A map containing the entity ID mappings.
|
|
24651
|
+
* @returns
|
|
24652
|
+
*/
|
|
24646
24653
|
export declare function mapRecord(record: Record<EntityId, Element_2 | ElementTransfer | ElementShallowTransfer> | undefined, entityIdMaps: Map<EntityId, EntityId>): Record<EntityId, Element_2 | ElementTransfer | ElementShallowTransfer>;
|
|
24647
24654
|
|
|
24648
24655
|
export declare function maxOf(inputs: ISODateString[]): ISODateString;
|
|
@@ -30594,6 +30601,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
30594
30601
|
|
|
30595
30602
|
export declare const roundToUnitDT: IDataTypeTransfer;
|
|
30596
30603
|
|
|
30604
|
+
export declare function safeResolveEntityName(entity: EntityState, project: ProjectState, fallback?: string): string;
|
|
30605
|
+
|
|
30597
30606
|
export declare const saltEncDefault: ILiteralValueTransfer;
|
|
30598
30607
|
|
|
30599
30608
|
declare function sanitizeQuery(query: string): string;
|