multi-framework-signals example: rebuild shapes

feat/orm-diffs^2
Laurin Weger 7 hours ago
parent d78b7dabd5
commit 615f872663
No known key found for this signature in database
GPG Key ID: 9B372BB0B792770F
  1. 2
      sdk/js/examples/multi-framework-signals/src/shapes/orm/catShape.schema.ts
  2. 6
      sdk/js/examples/multi-framework-signals/src/shapes/orm/catShape.typings.ts
  3. 2
      sdk/js/examples/multi-framework-signals/src/shapes/orm/personShape.schema.ts
  4. 6
      sdk/js/examples/multi-framework-signals/src/shapes/orm/personShape.typings.ts
  5. 2
      sdk/js/examples/multi-framework-signals/src/shapes/orm/testShape.schema.ts
  6. 8
      sdk/js/examples/multi-framework-signals/src/shapes/orm/testShape.typings.ts

@ -19,7 +19,7 @@ export const catShapeSchema: Schema = {
maxCardinality: 1,
minCardinality: 1,
iri: "http://www.w3.org/1999/02/22-rdf-syntax-ns#type",
readablePredicate: "type",
readablePredicate: "@type",
},
{
dataTypes: [

@ -10,11 +10,11 @@ export type IRI = string;
* Cat Type
*/
export interface Cat {
id: IRI;
readonly "@id": IRI;
/**
* Original IRI: http://www.w3.org/1999/02/22-rdf-syntax-ns#type
*/
type: string;
"@type": string;
/**
* Original IRI: http://example.org/name
*/
@ -31,7 +31,7 @@ export interface Cat {
* Original IRI: http://example.org/address
*/
address: {
id: IRI;
readonly "@id": IRI;
/**
* Original IRI: http://example.org/street
*/

@ -19,7 +19,7 @@ export const personShapeSchema: Schema = {
maxCardinality: 1,
minCardinality: 1,
iri: "http://www.w3.org/1999/02/22-rdf-syntax-ns#type",
readablePredicate: "type",
readablePredicate: "@type",
},
{
dataTypes: [

@ -10,11 +10,11 @@ export type IRI = string;
* Person Type
*/
export interface Person {
id: IRI;
readonly "@id": IRI;
/**
* Original IRI: http://www.w3.org/1999/02/22-rdf-syntax-ns#type
*/
type: string;
"@type": string;
/**
* Original IRI: http://example.org/name
*/
@ -23,7 +23,7 @@ export interface Person {
* Original IRI: http://example.org/address
*/
address: {
id: IRI;
readonly "@id": IRI;
/**
* Original IRI: http://example.org/street
*/

@ -19,7 +19,7 @@ export const testShapeSchema: Schema = {
maxCardinality: 1,
minCardinality: 1,
iri: "http://www.w3.org/1999/02/22-rdf-syntax-ns#type",
readablePredicate: "type",
readablePredicate: "@type",
extra: true,
},
{

@ -10,11 +10,11 @@ export type IRI = string;
* TestObject Type
*/
export interface TestObject {
id: IRI;
readonly "@id": IRI;
/**
* Original IRI: http://www.w3.org/1999/02/22-rdf-syntax-ns#type
*/
type: string;
"@type": string;
/**
* Original IRI: http://example.org/stringValue
*/
@ -35,7 +35,7 @@ export interface TestObject {
* Original IRI: http://example.org/objectValue
*/
objectValue: {
id: IRI;
readonly "@id": IRI;
/**
* Original IRI: http://example.org/nestedString
*/
@ -55,7 +55,7 @@ export interface TestObject {
anotherObject?: Record<
IRI,
{
id: IRI;
readonly "@id": IRI;
/**
* Original IRI: http://example.org/prop1
*/

Loading…
Cancel
Save