@elyx-code/project-logic-tree 0.0.6725 → 0.0.6727
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 +69 -69
- package/dist/index.d.ts +12 -7
- package/dist/index.js +6737 -6562
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9769,8 +9769,8 @@ export declare function clampToRange(input: ISODateString, minISO: ISODateString
|
|
|
9769
9769
|
export declare const clampToRangeOperation: IActionDescriptorTransfer;
|
|
9770
9770
|
|
|
9771
9771
|
export declare function cloneProject(project: ProjectState, { enrich, shallowErrors, ...other }?: {
|
|
9772
|
-
enrich
|
|
9773
|
-
shallowErrors
|
|
9772
|
+
enrich?: boolean;
|
|
9773
|
+
shallowErrors?: boolean;
|
|
9774
9774
|
resetVersionOptions?: {
|
|
9775
9775
|
commonTimestamp?: string;
|
|
9776
9776
|
author?: string;
|
|
@@ -9782,8 +9782,8 @@ export declare function cloneProject(project: ProjectState, { enrich, shallowErr
|
|
|
9782
9782
|
};
|
|
9783
9783
|
|
|
9784
9784
|
export declare function cloneProjectAsync(project: ProjectState, { enrich, shallowErrors, ...other }?: YieldOptions & {
|
|
9785
|
-
enrich
|
|
9786
|
-
shallowErrors
|
|
9785
|
+
enrich?: boolean;
|
|
9786
|
+
shallowErrors?: boolean;
|
|
9787
9787
|
resetVersionOptions?: {
|
|
9788
9788
|
commonTimestamp?: string;
|
|
9789
9789
|
author?: string;
|
|
@@ -9794,9 +9794,8 @@ export declare function cloneProjectAsync(project: ProjectState, { enrich, shall
|
|
|
9794
9794
|
maps: Map<EntityId, EntityId>;
|
|
9795
9795
|
}>;
|
|
9796
9796
|
|
|
9797
|
-
export declare function cloneToShallowRecordAsync(project: ProjectState, {
|
|
9798
|
-
|
|
9799
|
-
shallowErrors: boolean;
|
|
9797
|
+
export declare function cloneToShallowRecordAsync(project: ProjectState, { shallowErrors, ...other }?: YieldOptions & {
|
|
9798
|
+
shallowErrors?: boolean;
|
|
9800
9799
|
resetVersionOptions?: {
|
|
9801
9800
|
commonTimestamp?: string;
|
|
9802
9801
|
author?: string;
|
|
@@ -21403,6 +21402,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
21403
21402
|
export declare interface IInputMap extends IInputMap_meta, IChildEntity, IValueReadingEntity {
|
|
21404
21403
|
declaration: IArgumentDeclaration | IProperty | IValueDescriptor | null;
|
|
21405
21404
|
defaultValue: ILiteralValue | null;
|
|
21405
|
+
dataType: IDataType | null;
|
|
21406
21406
|
parent: PassThroughCallableEntity | TerminationEntity;
|
|
21407
21407
|
}
|
|
21408
21408
|
|
|
@@ -21440,12 +21440,14 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
21440
21440
|
export declare interface IInputMapShallowTransfer extends IInputMap_meta, IChildEntityShallowTransfer, IValueReadingEntityShallowTransfer {
|
|
21441
21441
|
declaration: IArgumentDeclarationReference | IPropertyReference | IValueDescriptorReference | null;
|
|
21442
21442
|
defaultValue: ILiteralValueReference | null;
|
|
21443
|
+
dataType: IDataTypeReference | null;
|
|
21443
21444
|
parent: PassThroughCallableEntityReference | TerminationEntityReference;
|
|
21444
21445
|
}
|
|
21445
21446
|
|
|
21446
21447
|
export declare interface IInputMapTransfer extends IInputMap_meta, IChildEntityTransfer, IValueReadingEntityTransfer {
|
|
21447
21448
|
declaration: IArgumentDeclaration | IArgumentDeclarationTransfer | IProperty | IPropertyTransfer | IValueDescriptor | IValueDescriptorTransfer | null;
|
|
21448
21449
|
defaultValue: ILiteralValue | ILiteralValueTransfer | null;
|
|
21450
|
+
dataType: IDataType | IDataTypeTransfer | null;
|
|
21449
21451
|
parent: PassThroughCallableEntity | PassThroughCallableEntityReference | TerminationEntity | TerminationEntityReference;
|
|
21450
21452
|
}
|
|
21451
21453
|
|
|
@@ -22200,6 +22202,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
22200
22202
|
|
|
22201
22203
|
export declare interface IOutputMap extends IOutputMap_meta, IChildEntity, IValueWritingEntity {
|
|
22202
22204
|
declaration: IValueDescriptor | IProperty | null;
|
|
22205
|
+
dataType: IDataType | null;
|
|
22203
22206
|
parent: PassThroughCallableEntity;
|
|
22204
22207
|
}
|
|
22205
22208
|
|
|
@@ -22227,11 +22230,13 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
22227
22230
|
|
|
22228
22231
|
export declare interface IOutputMapShallowTransfer extends IOutputMap_meta, IChildEntityShallowTransfer, IValueWritingEntityShallowTransfer {
|
|
22229
22232
|
declaration: IValueDescriptorReference | IPropertyReference | null;
|
|
22233
|
+
dataType: IDataTypeReference | null;
|
|
22230
22234
|
parent: PassThroughCallableEntityReference;
|
|
22231
22235
|
}
|
|
22232
22236
|
|
|
22233
22237
|
export declare interface IOutputMapTransfer extends IOutputMap_meta, IChildEntityTransfer, IValueWritingEntityTransfer {
|
|
22234
22238
|
declaration: IValueDescriptor | IValueDescriptorTransfer | IProperty | IPropertyTransfer | null;
|
|
22239
|
+
dataType: IDataType | IDataTypeTransfer | null;
|
|
22235
22240
|
parent: PassThroughCallableEntity | PassThroughCallableEntityReference;
|
|
22236
22241
|
}
|
|
22237
22242
|
|