Guid => GuidEntity

This commit is contained in:
barsdeveloper
2021-11-23 20:40:27 +01:00
parent a224903f35
commit 6a3e2cc36f
9 changed files with 63 additions and 68 deletions

View File

@@ -4,6 +4,7 @@ import FunctionReferenceEntity from "./entity/FunctionReferenceEntity"
import GeneralSerializer from "./serialization/GeneralSerializer"
import GraphLink from "./graph/GraphLink"
import GraphNode from "./graph/GraphNode"
import GuidEntity from "./entity/GuidEntity"
import LocalizedTextEntity from "./entity/LocalizedTextEntity"
import ObjectEntity from "./entity/ObjectEntity"
import ObjectReferenceEntity from "./entity/ObjectReferenceEntity"
@@ -45,5 +46,6 @@ SerializerFactory.registerSerializer(
))
)
SerializerFactory.registerSerializer(PathSymbolEntity, new ToStringSerializer(PathSymbolEntity))
SerializerFactory.registerSerializer(GuidEntity, new ToStringSerializer(GuidEntity))
export { Blueprint as Blueprint, GraphNode as GraphNode, GraphLink as GraphLink }