@unito/integration-api 1.0.2 → 1.0.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.
@@ -21,11 +21,6 @@
21
21
  "minLength": 1,
22
22
  "maxLength": 100
23
23
  },
24
- "category": {
25
- "type": "string",
26
- "minLength": 1,
27
- "maxLength": 100
28
- },
29
24
  "semantic": {
30
25
  "$ref": "https://unito.io/integration_api/definitions.schema.json#/$defs/semantic"
31
26
  },
@@ -75,10 +75,6 @@ interface AbstractFieldSchema {
75
75
  * Description of the field. For information purposes only.
76
76
  */
77
77
  info?: string;
78
- /**
79
- * Category of the field. Used to group fields together when displayed.
80
- */
81
- category?: string;
82
78
  /**
83
79
  * Whether the field is read only.
84
80
  */
package/package.json CHANGED
@@ -1,14 +1,20 @@
1
1
  {
2
2
  "name": "@unito/integration-api",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
8
8
  "./package.json": "./package.json",
9
9
  ".": {
10
- "import": "./dist/src/index.js",
11
- "require": "./dist/src/index.cjs"
10
+ "import": {
11
+ "types": "./dist/src/index.d.ts",
12
+ "default": "./dist/src/index.js"
13
+ },
14
+ "require": {
15
+ "types": "./dist/src/index.d.ts",
16
+ "default": "./dist/src/index.cjs"
17
+ }
12
18
  }
13
19
  },
14
20
  "files": [