@swimlane/connector-interfaces
Advanced tools
Comparing version 1.8.5-rc4 to 1.8.5-rc5
@@ -77,3 +77,32 @@ import { BlankString, SpdxIdString, UriString } from '../../json-schema'; | ||
repository: UriString | BlankString; | ||
/** | ||
* Configuration details related to connector action execution | ||
* @default {} | ||
*/ | ||
runConfig: ConnectorManifestRunConfig; | ||
} | ||
/** | ||
* Configuration details related to connector action execution | ||
*/ | ||
export interface ConnectorManifestRunConfig { | ||
/** | ||
* Configuration details related to connector action inputs | ||
* @default {} | ||
*/ | ||
inputs: ConnectorManifestRunConfigInputs; | ||
} | ||
/** | ||
* Configuration details related to connector action inputs | ||
*/ | ||
export interface ConnectorManifestRunConfigInputs { | ||
/** | ||
* The method used to to pass input arguments to connector actions | ||
* @default 'env' | ||
*/ | ||
type: ConnectorInputsType; | ||
} | ||
export declare enum ConnectorInputsType { | ||
env = "env", | ||
stdin = "stdin" | ||
} | ||
export {}; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ConnectorInputsType = void 0; | ||
var ConnectorInputsType; | ||
(function (ConnectorInputsType) { | ||
ConnectorInputsType["env"] = "env"; | ||
ConnectorInputsType["stdin"] = "stdin"; | ||
})(ConnectorInputsType = exports.ConnectorInputsType || (exports.ConnectorInputsType = {})); | ||
//# sourceMappingURL=connector.manifest.js.map |
{ | ||
"name": "@swimlane/connector-interfaces", | ||
"version": "1.8.5-rc4", | ||
"version": "1.8.5-rc5", | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
68542
941
0