@elyx-code/project-logic-tree 0.0.6324 → 0.0.6327
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 +3 -0
- package/dist/index.js +14422 -14312
- package/dist/index.umd.cjs +184 -184
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2643,6 +2643,7 @@ export declare class EntityGenerationError implements IEntityGenerationError {
|
|
|
2643
2643
|
|
|
2644
2644
|
export declare enum EntityGenerationErrorCode {
|
|
2645
2645
|
RootReference = "root-reference",
|
|
2646
|
+
InvalidUUIDStringFormat = "invalid-uuid-string-format",
|
|
2646
2647
|
ReferencedEntityNotFound = "referenced-entity-not-found",
|
|
2647
2648
|
EntityIdNotUnique = "entity-id-not-unique",
|
|
2648
2649
|
BuiltInEntityGenerated = "built-in-entity-generated",
|
|
@@ -9850,6 +9851,8 @@ export declare interface IString extends IPrimitiveEntity {
|
|
|
9850
9851
|
name: PrimitiveTypes.String;
|
|
9851
9852
|
}
|
|
9852
9853
|
|
|
9854
|
+
export declare function isUUID(uuid: string): boolean;
|
|
9855
|
+
|
|
9853
9856
|
declare interface ITable {
|
|
9854
9857
|
entity: DefinitionEntityState;
|
|
9855
9858
|
tableName: string;
|