Socket
Socket
Sign inDemoInstall

workflow-manager

Package Overview
Dependencies
Maintainers
3
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

workflow-manager - npm Package Compare versions

Comparing version 0.15.1 to 0.16.0

7

index.d.ts

@@ -86,3 +86,3 @@ import { Logger } from "kayvee";

getWorkflowByID(workflowID: string, options?: RequestOptions, cb?: Callback<models.Workflow>): Promise<models.Workflow>
getWorkflowByID(params: models.GetWorkflowByIDParams, options?: RequestOptions, cb?: Callback<models.Workflow>): Promise<models.Workflow>

@@ -162,2 +162,7 @@ resumeWorkflowByID(params: models.ResumeWorkflowByIDParams, options?: RequestOptions, cb?: Callback<models.Workflow>): Promise<models.Workflow>

type GetWorkflowByIDParams = {
workflowID: string;
fetchHistory?: boolean;
};
type GetWorkflowDefinitionByNameAndVersionParams = {

@@ -164,0 +169,0 @@ name: string;

2

package.json
{
"name": "workflow-manager",
"version": "0.15.1",
"version": "0.16.0",
"description": "Orchestrator for AWS Step Functions",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -26,3 +26,3 @@ <a name="module_workflow-manager"></a>

* [.CancelWorkflow(params, [options], [cb])](#module_workflow-manager--WorkflowManager+CancelWorkflow) ⇒ <code>Promise</code>
* [.getWorkflowByID(workflowID, [options], [cb])](#module_workflow-manager--WorkflowManager+getWorkflowByID) ⇒ <code>Promise</code>
* [.getWorkflowByID(params, [options], [cb])](#module_workflow-manager--WorkflowManager+getWorkflowByID) ⇒ <code>Promise</code>
* [.resumeWorkflowByID(params, [options], [cb])](#module_workflow-manager--WorkflowManager+resumeWorkflowByID) ⇒ <code>Promise</code>

@@ -351,3 +351,3 @@ * [.resolveWorkflowByID(workflowID, [options], [cb])](#module_workflow-manager--WorkflowManager+resolveWorkflowByID) ⇒ <code>Promise</code>

#### workflowManager.getWorkflowByID(workflowID, [options], [cb]) ⇒ <code>Promise</code>
#### workflowManager.getWorkflowByID(params, [options], [cb]) ⇒ <code>Promise</code>
**Kind**: instance method of [<code>WorkflowManager</code>](#exp_module_workflow-manager--WorkflowManager)

@@ -362,3 +362,5 @@ **Fulfill**: <code>Object</code>

| --- | --- | --- |
| workflowID | <code>string</code> | |
| params | <code>Object</code> | |
| params.workflowID | <code>string</code> | |
| [params.fetchHistory] | <code>boolean</code> | When true, the execution history will be fetched from SFN along with the workflow summary |
| [options] | <code>object</code> | |

@@ -365,0 +367,0 @@ | [options.timeout] | <code>number</code> | A request specific timeout |

Sorry, the diff of this file is too big to display

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