codify-schemas 1.0.67 → 1.0.69
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/messages/get-resource-info-response-data-schema.json +2 -3
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/messages/get-resource-info-response-data-schema.json +2 -3
- package/src/messages/get-resource-info-response-data-schema.test.ts +2 -2
- package/src/types/index.ts +1 -1
|
@@ -43,12 +43,11 @@
|
|
|
43
43
|
},
|
|
44
44
|
"description": "A list of properties that are required for importing and destroying a resource"
|
|
45
45
|
},
|
|
46
|
-
"
|
|
46
|
+
"preventImport": {
|
|
47
47
|
"type": "boolean",
|
|
48
48
|
"description": "Controls whether a resource can be imported. For example: action resources cannot be imported"
|
|
49
49
|
}
|
|
50
|
-
}
|
|
51
|
-
"required": ["canImport"]
|
|
50
|
+
}
|
|
52
51
|
},
|
|
53
52
|
"allowMultiple": {
|
|
54
53
|
"type": "object",
|
package/dist/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -43,12 +43,11 @@
|
|
|
43
43
|
},
|
|
44
44
|
"description": "A list of properties that are required for importing and destroying a resource"
|
|
45
45
|
},
|
|
46
|
-
"
|
|
46
|
+
"preventImport": {
|
|
47
47
|
"type": "boolean",
|
|
48
48
|
"description": "Controls whether a resource can be imported. For example: action resources cannot be imported"
|
|
49
49
|
}
|
|
50
|
-
}
|
|
51
|
-
"required": ["canImport"]
|
|
50
|
+
}
|
|
52
51
|
},
|
|
53
52
|
"allowMultiple": {
|
|
54
53
|
"type": "object",
|
|
@@ -52,7 +52,7 @@ describe('Get resources response data schema', () => {
|
|
|
52
52
|
requiredParameters: ['plugin'],
|
|
53
53
|
},
|
|
54
54
|
importAndDestroy: {
|
|
55
|
-
|
|
55
|
+
preventImport: true,
|
|
56
56
|
requiredProperties: ['plugin']
|
|
57
57
|
},
|
|
58
58
|
allowMultiple: {
|
|
@@ -103,7 +103,7 @@ describe('Get resources response data schema', () => {
|
|
|
103
103
|
requiredParameters: ['plugin'],
|
|
104
104
|
},
|
|
105
105
|
importAndDestroy: {
|
|
106
|
-
|
|
106
|
+
preventImport: true,
|
|
107
107
|
requiredParameters: ['plugin'],
|
|
108
108
|
},
|
|
109
109
|
allowMultiple: {
|
package/src/types/index.ts
CHANGED