@unito/integration-api 0.43.1 → 0.43.2

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.
@@ -37,6 +37,14 @@
37
37
  null
38
38
  ]
39
39
  },
40
+ "relationSemantic": {
41
+ "$id": "RelationSemantic",
42
+ "type": ["string", "null"],
43
+ "enum": [
44
+ "comments",
45
+ null
46
+ ]
47
+ },
40
48
  "operatorType": {
41
49
  "$id": "OperatorType",
42
50
  "type": "string",
@@ -28,6 +28,9 @@
28
28
  "searchable": {
29
29
  "type": "boolean"
30
30
  },
31
+ "relationSemantic": {
32
+ "$ref": "https://unito.io/integration_api/definitions.schema.json#/$defs/relationSemantic"
33
+ },
31
34
  "schema": {
32
35
  "$ref": "https://unito.io/integration_api/relationSchema.schema.json"
33
36
  }
@@ -17,6 +17,9 @@
17
17
  "minLength": 1,
18
18
  "maxLength": 100
19
19
  },
20
+ "relationSemantic": {
21
+ "$ref": "https://unito.io/integration_api/definitions.schema.json#/$defs/relationSemantic"
22
+ },
20
23
  "schema": {
21
24
  "$ref": "https://unito.io/integration_api/relationSchema.schema.json"
22
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-api",
3
- "version": "0.43.1",
3
+ "version": "0.43.2",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",
@@ -29,7 +29,7 @@
29
29
  "compile": "rm -rf dist && npm run compile:esm && npm run compile:cjs && npm run compile:schemas",
30
30
  "test": "NODE_ENV=test node --loader ts-node/esm --test ./test/*.test.ts",
31
31
  "test:debug": "NODE_ENV=test node --loader ts-node/esm --inspect-brk --test ./test/*.test.ts",
32
- "ci:test": "nyc npm run test",
32
+ "ci:test": "c8 npm run test",
33
33
  "ci:lint": "npx markdownlint-cli README.md"
34
34
  },
35
35
  "author": {
@@ -50,9 +50,9 @@
50
50
  "@types/node": "18.x",
51
51
  "@typescript-eslint/eslint-plugin": "6.x",
52
52
  "@typescript-eslint/parser": "6.x",
53
+ "c8": "9.x",
53
54
  "eslint": "8.x",
54
55
  "markdownlint-cli": "0.x",
55
- "nyc": "15.x",
56
56
  "prettier": "3.x",
57
57
  "rollup": "4.x",
58
58
  "ts-node": "10.x",