@elyx-code/project-logic-tree 0.0.6788 → 0.0.6789
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 +148 -143
- package/dist/index.d.ts +19 -1
- package/dist/index.js +4418 -4257
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -12483,6 +12483,7 @@ export declare enum EntityGenerationErrorCode {
|
|
|
12483
12483
|
RootReference = "root-reference",
|
|
12484
12484
|
InvalidUUIDStringFormat = "invalid-uuid-string-format",
|
|
12485
12485
|
ReferencedEntityNotFound = "referenced-entity-not-found",
|
|
12486
|
+
ReferencedValueReaderEntityNotFound = "referenced--value-reader-entity-not-found",
|
|
12486
12487
|
EntityIdNotUnique = "entity-id-not-unique",
|
|
12487
12488
|
BuiltInEntityGenerated = "built-in-entity-generated",
|
|
12488
12489
|
BuiltInEntityUpdated = "built-in-entity-updated",
|
|
@@ -19073,6 +19074,11 @@ export declare function getReferencedEntitiesStateOrErrors(data: ElementGenerati
|
|
|
19073
19074
|
errors: EntityGenerationError[];
|
|
19074
19075
|
}[];
|
|
19075
19076
|
errors: EntityGenerationError[];
|
|
19077
|
+
explanations: {
|
|
19078
|
+
id: GenerationExplanationIds;
|
|
19079
|
+
message: string;
|
|
19080
|
+
}[];
|
|
19081
|
+
modifiedData: ElementGenerationTarget;
|
|
19076
19082
|
};
|
|
19077
19083
|
|
|
19078
19084
|
export declare function getReferencedEntityStateOrErrors(data: ElementGenerationTarget, referenceDef: {
|
|
@@ -19082,6 +19088,11 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
19082
19088
|
}, project: ProjectState): {
|
|
19083
19089
|
entityState: EntityState | null;
|
|
19084
19090
|
errors: EntityGenerationError[];
|
|
19091
|
+
explanations: {
|
|
19092
|
+
id: GenerationExplanationIds;
|
|
19093
|
+
message: string;
|
|
19094
|
+
}[];
|
|
19095
|
+
modifiedData: ElementGenerationTarget;
|
|
19085
19096
|
};
|
|
19086
19097
|
|
|
19087
19098
|
/**
|
|
@@ -33996,7 +34007,14 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
33996
34007
|
key: string;
|
|
33997
34008
|
types: EntityType[];
|
|
33998
34009
|
optional?: boolean;
|
|
33999
|
-
}, project: ProjectState):
|
|
34010
|
+
}, project: ProjectState): {
|
|
34011
|
+
errors: EntityGenerationError[];
|
|
34012
|
+
explanations: {
|
|
34013
|
+
id: GenerationExplanationIds;
|
|
34014
|
+
message: string;
|
|
34015
|
+
}[];
|
|
34016
|
+
modifiedData: ElementGenerationTarget;
|
|
34017
|
+
};
|
|
34000
34018
|
|
|
34001
34019
|
export declare function validateSuccessCaller(data: CallableEntityGenerationTarget, callerEntity: CallerEntityState): {
|
|
34002
34020
|
errors: EntityGenerationError[];
|