Integer => IntegerEntity, No more primitive

This commit is contained in:
barsdeveloper
2021-11-23 21:01:07 +01:00
parent 6a3e2cc36f
commit c774886a2e
8 changed files with 52 additions and 85 deletions

View File

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