diff --git a/src/ng-mock/wasm-land/requestShape.ts b/src/ng-mock/wasm-land/requestShape.ts index f545d1f..c844bba 100644 --- a/src/ng-mock/wasm-land/requestShape.ts +++ b/src/ng-mock/wasm-land/requestShape.ts @@ -7,6 +7,7 @@ import type { Cat } from "src/shapes/ldo/catShape.typings"; import type { TestObject } from "src/shapes/ldo/testShape.typings"; export const mockTestObject = { + id: "ex:mock-id-1", type: "TestObject", stringValue: "string", numValue: 42, @@ -19,10 +20,12 @@ export const mockTestObject = { }, anotherObject: { "id:1": { + "id": "id:1", prop1: "prop1 value", prop2: 100, }, "id:2": { + id: "id:1", prop1: "prop2 value", prop2: 200, }, @@ -30,6 +33,7 @@ export const mockTestObject = { } satisfies TestObject; const mockShapeObject1 = { + id: "ex:person-1", type: "Person", name: "Bob", address: { @@ -40,6 +44,7 @@ const mockShapeObject1 = { numberOfHouses: 0, } satisfies Person; const mockShapeObject2 = { + id: "ex:cat-1", type: "Cat", name: "Niko's cat", age: 12,