@unito/integration-api 0.46.0 → 0.46.2
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.
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"type": "object",
|
|
15
15
|
"additionalProperties": true
|
|
16
16
|
},
|
|
17
|
+
"relations": {
|
|
18
|
+
"type": "object",
|
|
19
|
+
"additionalProperties": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"format": "uri-reference",
|
|
22
|
+
"pattern": "^\/.*$"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
17
25
|
"requestSchema": {
|
|
18
26
|
"$ref": "https://unito.io/integration_api/requestSchema.schema.json"
|
|
19
27
|
}
|
package/dist/src/types.d.ts
CHANGED
|
@@ -262,6 +262,12 @@ export interface ItemSummary {
|
|
|
262
262
|
* The shape of the request parameters.
|
|
263
263
|
*/
|
|
264
264
|
requestSchema?: RequestSchema;
|
|
265
|
+
/**
|
|
266
|
+
* Optional list of relation paths.
|
|
267
|
+
*/
|
|
268
|
+
relations?: {
|
|
269
|
+
[k: string]: string;
|
|
270
|
+
};
|
|
265
271
|
}
|
|
266
272
|
/**
|
|
267
273
|
* A BlobSummary contains a path to download the corresponding Blob.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unito/integration-api",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.2",
|
|
4
4
|
"description": "The Unito Integration API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"dist/schemas/**/*"
|
|
17
17
|
],
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": ">=
|
|
19
|
+
"node": ">=18",
|
|
20
20
|
"npm": ">=10"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|