@unito/integration-api 0.43.5 → 0.43.6

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.
@@ -19,6 +19,9 @@
19
19
  "canDeleteItem": {
20
20
  "type": "boolean"
21
21
  },
22
+ "canAddFields": {
23
+ "type": "boolean"
24
+ },
22
25
  "fields": {
23
26
  "type": "array",
24
27
  "items": {
@@ -314,6 +314,10 @@ export interface RelationSchema {
314
314
  * Can we delete items?
315
315
  */
316
316
  canDeleteItem?: boolean;
317
+ /**
318
+ * Can we add fields to the schema?
319
+ */
320
+ canAddFields?: boolean;
317
321
  /**
318
322
  * The shape of the fields.
319
323
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-api",
3
- "version": "0.43.5",
3
+ "version": "0.43.6",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",