@swimlane/connector-interfaces
Advanced tools
Comparing version 1.11.0 to 1.12.0
@@ -5,2 +5,3 @@ export * from './json-schema'; | ||
export * from './connector-container-image-annotation'; | ||
export * from './container-image-config'; | ||
export * from './container-image-reference'; |
@@ -21,3 +21,4 @@ "use strict"; | ||
__exportStar(require("./connector-container-image-annotation"), exports); | ||
__exportStar(require("./container-image-config"), exports); | ||
__exportStar(require("./container-image-reference"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -397,2 +397,6 @@ import { JSONSchemaType, JSONSchemaTypeName } from 'json-schema-typed'; | ||
contentDisposition?: 'attachment'; | ||
/** | ||
* mark a property as sensitive | ||
*/ | ||
isSensitive?: boolean; | ||
} | ||
@@ -423,2 +427,6 @@ export interface DisplayDescriptor { | ||
/** | ||
* Whether a property is discovered. | ||
*/ | ||
isDiscovered?: boolean; | ||
/** | ||
* Whether a property can have its key edited. | ||
@@ -431,2 +439,6 @@ */ | ||
overrideAddProperty?: boolean; | ||
/** | ||
* Whether an array property should have its `items` schema removed when the array is cleared. | ||
*/ | ||
resetArrayItemsSchema?: boolean; | ||
} |
{ | ||
"name": "@swimlane/connector-interfaces", | ||
"version": "1.11.0", | ||
"version": "1.12.0", | ||
"description": "Contains all the Connector interfaces required by external projects.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
85160
86
1895