🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@activepieces/shared

Package Overview
Dependencies
Maintainers
3
Versions
298
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

to
0.10.77

4

package.json
{
"name": "@activepieces/shared",
"version": "0.10.76",
"version": "0.10.77",
"type": "commonjs",

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

"semver": "7.6.0",
"tslib": "2.6.1"
"tslib": "2.6.2"
},
"main": "./src/index.js"
}

@@ -46,2 +46,3 @@ import { TriggerType } from '../../flows/triggers/trigger';

}): BranchStepOutput;
setDuration(duration: number): BranchStepOutput;
}

@@ -64,3 +65,4 @@ export type LoopStepResult = {

addIteration(): LoopStepOutput;
setDuration(duration: number): LoopStepOutput;
}
export {};

@@ -56,2 +56,5 @@ "use strict";

}
setDuration(duration) {
return new BranchStepOutput(Object.assign(Object.assign({}, this), { duration }));
}
}

@@ -96,4 +99,7 @@ exports.BranchStepOutput = BranchStepOutput;

}
setDuration(duration) {
return new LoopStepOutput(Object.assign(Object.assign({}, this), { duration }));
}
}
exports.LoopStepOutput = LoopStepOutput;
//# sourceMappingURL=step-output.js.map

Sorry, the diff of this file is not supported yet