codify-schemas 1.0.64 → 1.0.65

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.
@@ -22,6 +22,17 @@
22
22
  "type": "string"
23
23
  }
24
24
  },
25
+ "import": {
26
+ "type": "object",
27
+ "properties": {
28
+ "requiredProperties": {
29
+ "type": "array",
30
+ "items": {
31
+ "type": "string"
32
+ }
33
+ }
34
+ }
35
+ },
25
36
  "importAndDestroy": {
26
37
  "type": "object",
27
38
  "properties": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-schemas",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,6 +22,17 @@
22
22
  "type": "string"
23
23
  }
24
24
  },
25
+ "import": {
26
+ "type": "object",
27
+ "properties": {
28
+ "requiredProperties": {
29
+ "type": "array",
30
+ "items": {
31
+ "type": "string"
32
+ }
33
+ }
34
+ }
35
+ },
25
36
  "importAndDestroy": {
26
37
  "type": "object",
27
38
  "properties": {
@@ -48,6 +48,9 @@ describe('Get resources response data schema', () => {
48
48
  ],
49
49
 
50
50
  },
51
+ import: {
52
+ requiredParameters: ['plugin'],
53
+ },
51
54
  importAndDestroy: {
52
55
  requiredProperties: ['plugin']
53
56
  },
@@ -95,6 +98,9 @@ describe('Get resources response data schema', () => {
95
98
  "typeB"
96
99
  ]
97
100
  },
101
+ import: {
102
+ requiredParameters: ['plugin'],
103
+ },
98
104
  importAndDestroy: {
99
105
  requiredParameters: ['plugin'],
100
106
  },