@unito/integration-api 0.43.12 → 0.43.14

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.
@@ -45,6 +45,7 @@
45
45
  "comments",
46
46
  "subtasks",
47
47
  "users",
48
+ "attachments",
48
49
  null
49
50
  ]
50
51
  },
@@ -50,6 +50,7 @@ exports.RelationSemantic = void 0;
50
50
  RelationSemantic["COMMENTS"] = "comments";
51
51
  RelationSemantic["SUBTASKS"] = "subtasks";
52
52
  RelationSemantic["USERS"] = "users";
53
+ RelationSemantic["ATTACHMENTS"] = "attachments";
53
54
  })(exports.RelationSemantic || (exports.RelationSemantic = {}));
54
55
  /**
55
56
  * An OperatorType represents an operator used in a filter.
@@ -104,10 +104,6 @@ export interface BlobFieldSchema extends AbstractFieldSchema {
104
104
  * The type of the field.
105
105
  */
106
106
  type: FieldValueType.BLOB;
107
- /**
108
- * Cannot be an array.
109
- */
110
- isArray?: false;
111
107
  }
112
108
  export interface ReferenceFieldSchema extends AbstractFieldSchema {
113
109
  /**
@@ -219,7 +215,8 @@ export declare enum Semantic {
219
215
  export declare enum RelationSemantic {
220
216
  COMMENTS = "comments",
221
217
  SUBTASKS = "subtasks",
222
- USERS = "users"
218
+ USERS = "users",
219
+ ATTACHMENTS = "attachments"
223
220
  }
224
221
  /**
225
222
  * An OperatorType represents an operator used in a filter.
package/dist/src/types.js CHANGED
@@ -48,6 +48,7 @@ export var RelationSemantic;
48
48
  RelationSemantic["COMMENTS"] = "comments";
49
49
  RelationSemantic["SUBTASKS"] = "subtasks";
50
50
  RelationSemantic["USERS"] = "users";
51
+ RelationSemantic["ATTACHMENTS"] = "attachments";
51
52
  })(RelationSemantic || (RelationSemantic = {}));
52
53
  /**
53
54
  * An OperatorType represents an operator used in a filter.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-api",
3
- "version": "0.43.12",
3
+ "version": "0.43.14",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",
@@ -16,8 +16,8 @@
16
16
  "dist/schemas/**/*"
17
17
  ],
18
18
  "engines": {
19
- "node": ">=18",
20
- "npm": ">=9.5.0"
19
+ "node": ">=20",
20
+ "npm": ">=10"
21
21
  },
22
22
  "scripts": {
23
23
  "prepublishOnly": "npm run lint && npm run test",
@@ -46,7 +46,7 @@
46
46
  "connectors"
47
47
  ],
48
48
  "devDependencies": {
49
- "@types/node": "18.x",
49
+ "@types/node": "20.x",
50
50
  "@typescript-eslint/eslint-plugin": "7.x",
51
51
  "@typescript-eslint/parser": "7.x",
52
52
  "c8": "9.x",