@unito/integration-api 4.1.0 → 4.1.1
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.
|
@@ -21,6 +21,13 @@
|
|
|
21
21
|
"semantic": {
|
|
22
22
|
"$ref": "https://unito.io/integration_api/definitions.schema.json#/$defs/relationSemantic"
|
|
23
23
|
},
|
|
24
|
+
"name": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"pattern": "^[a-zA-Z0-9_-]*$",
|
|
27
|
+
"minLength": 1,
|
|
28
|
+
"maxLength": 100,
|
|
29
|
+
"deprecated": true
|
|
30
|
+
},
|
|
24
31
|
"schema": {
|
|
25
32
|
"oneOf": [
|
|
26
33
|
{
|
package/dist/src/types.d.ts
CHANGED
|
@@ -132,6 +132,11 @@ export interface ReferenceRelation {
|
|
|
132
132
|
* The semantic of the relation.
|
|
133
133
|
*/
|
|
134
134
|
semantic?: RelationSemantic;
|
|
135
|
+
/**
|
|
136
|
+
* The name for the reference relation.
|
|
137
|
+
* @deprecated Will be removed in a future version.
|
|
138
|
+
*/
|
|
139
|
+
name?: string;
|
|
135
140
|
/**
|
|
136
141
|
* The shape of the relation.
|
|
137
142
|
*/
|