Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@swimlane/connector-interfaces

Package Overview
Dependencies
Maintainers
54
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@swimlane/connector-interfaces - npm Package Compare versions

Comparing version 1.8.5-rc4 to 1.8.5-rc5

29

dist/manifest/connector/connector.manifest.d.ts

@@ -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

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc