@unito/integration-api 2.0.0 → 4.0.0

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.
@@ -226,7 +226,7 @@ export declare const OperatorTypes: {
226
226
  readonly IS_NULL: "!!";
227
227
  readonly IS_NOT_NULL: "!";
228
228
  };
229
- export type OperationType = (typeof OperatorTypes)[keyof typeof OperatorTypes];
229
+ export type OperatorType = (typeof OperatorTypes)[keyof typeof OperatorTypes];
230
230
  /**
231
231
  * An Item represents a syncable entity. It has fields of its own as well as relations to other items.
232
232
  */
@@ -314,7 +314,7 @@ export interface Relation {
314
314
  /**
315
315
  * The semantic of the relation.
316
316
  */
317
- semantic?: Semantic;
317
+ semantic?: RelationSemantic;
318
318
  /**
319
319
  * The shape of the relation.
320
320
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-api",
3
- "version": "2.0.0",
3
+ "version": "4.0.0",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",