Socket
Socket
Sign inDemoInstall

@activepieces/shared

Package Overview
Dependencies
Maintainers
3
Versions
213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@activepieces/shared - npm Package Compare versions

Comparing version 0.3.43 to 0.3.44

2

package.json
{
"name": "@activepieces/shared",
"version": "0.3.43",
"version": "0.3.44",
"type": "commonjs",

@@ -5,0 +5,0 @@ "dependencies": {

@@ -17,2 +17,3 @@ import { FlowOperationRequest } from './flow-operations';

declare function getAllSteps(trigger: Trigger): (Action | Trigger)[];
declare function getAllParentSteps(step: Trigger): (Action | Trigger)[];
declare function getAllChildSteps(action: LoopOnItemsAction | BranchAction): (Action)[];

@@ -32,3 +33,4 @@ declare function getStep(flowVersion: FlowVersion, stepName: string): Action | Trigger | undefined;

getAllChildSteps: typeof getAllChildSteps;
getAllParentSteps: typeof getAllParentSteps;
};
export {};

@@ -85,2 +85,10 @@ "use strict";

}
function getAllParentSteps(step) {
const steps = [];
while (step !== undefined && step !== null) {
steps.push(step);
step = step.nextAction;
}
return steps;
}
function getAllChildSteps(action) {

@@ -330,3 +338,4 @@ switch (action.type) {

getAllChildSteps,
getAllParentSteps
};
//# sourceMappingURL=flow-helper.js.map

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