@unito/integration-api 0.43.2 → 0.43.3

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.
@@ -39,6 +39,15 @@ exports.Semantic = void 0;
39
39
  Semantic["UPDATED_AT"] = "updatedAt";
40
40
  Semantic["USER"] = "user";
41
41
  })(exports.Semantic || (exports.Semantic = {}));
42
+ /**
43
+ * A Relation Semantic gives meaning to a Relation in the Unito platform. A relation with a
44
+ * specified semantic is expected to hold a certain type of item that can later be used by
45
+ * the consumers of the spec for specific usage.
46
+ */
47
+ exports.RelationSemantic = void 0;
48
+ (function (RelationSemantic) {
49
+ RelationSemantic["COMMENTS"] = "comments";
50
+ })(exports.RelationSemantic || (exports.RelationSemantic = {}));
42
51
  /**
43
52
  * An OperatorType represents an operator used in a filter.
44
53
  */
@@ -196,6 +196,14 @@ export declare enum Semantic {
196
196
  UPDATED_AT = "updatedAt",
197
197
  USER = "user"
198
198
  }
199
+ /**
200
+ * A Relation Semantic gives meaning to a Relation in the Unito platform. A relation with a
201
+ * specified semantic is expected to hold a certain type of item that can later be used by
202
+ * the consumers of the spec for specific usage.
203
+ */
204
+ export declare enum RelationSemantic {
205
+ COMMENTS = "comments"
206
+ }
199
207
  /**
200
208
  * An OperatorType represents an operator used in a filter.
201
209
  */
package/dist/src/types.js CHANGED
@@ -37,6 +37,15 @@ export var Semantic;
37
37
  Semantic["UPDATED_AT"] = "updatedAt";
38
38
  Semantic["USER"] = "user";
39
39
  })(Semantic || (Semantic = {}));
40
+ /**
41
+ * A Relation Semantic gives meaning to a Relation in the Unito platform. A relation with a
42
+ * specified semantic is expected to hold a certain type of item that can later be used by
43
+ * the consumers of the spec for specific usage.
44
+ */
45
+ export var RelationSemantic;
46
+ (function (RelationSemantic) {
47
+ RelationSemantic["COMMENTS"] = "comments";
48
+ })(RelationSemantic || (RelationSemantic = {}));
40
49
  /**
41
50
  * An OperatorType represents an operator used in a filter.
42
51
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-api",
3
- "version": "0.43.2",
3
+ "version": "0.43.3",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",