@activepieces/shared
Advanced tools
Comparing version 0.10.76 to 0.10.77
{ | ||
"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
460191
6316
+ Addedtslib@2.6.2(transitive)
- Removedtslib@2.6.1(transitive)
Updatedtslib@2.6.2