@unito/integration-api 0.43.12 → 0.43.13
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.
- package/dist/schemas/definitions.json +1 -0
- package/dist/src/index.cjs +1 -0
- package/dist/src/types.d.ts +2 -1
- package/dist/src/types.js +1 -0
- package/package.json +4 -4
package/dist/src/index.cjs
CHANGED
|
@@ -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.
|
package/dist/src/types.d.ts
CHANGED
|
@@ -219,7 +219,8 @@ export declare enum Semantic {
|
|
|
219
219
|
export declare enum RelationSemantic {
|
|
220
220
|
COMMENTS = "comments",
|
|
221
221
|
SUBTASKS = "subtasks",
|
|
222
|
-
USERS = "users"
|
|
222
|
+
USERS = "users",
|
|
223
|
+
ATTACHMENTS = "attachments"
|
|
223
224
|
}
|
|
224
225
|
/**
|
|
225
226
|
* 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.
|
|
3
|
+
"version": "0.43.13",
|
|
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": ">=
|
|
20
|
-
"npm": ">=
|
|
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": "
|
|
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",
|