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

@activepieces/shared

Package Overview
Dependencies
Maintainers
3
Versions
222
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.40 to 0.3.41

2

package.json
{
"name": "@activepieces/shared",
"version": "0.3.40",
"version": "0.3.41",
"type": "commonjs",

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

import { ActionType } from '../../flows/actions/action';
import { ExecutionState } from './execution-state';
import { StopResponse } from './step-output';
export declare enum ExecutionOutputStatus {

@@ -53,5 +54,5 @@ FAILED = "FAILED",

export declare type StopExecutionOutput = BaseExecutionOutput<ExecutionOutputStatus.STOPPED> & {
stopResponse?: unknown;
stopResponse?: StopResponse;
};
export declare type ExecutionOutput = FinishExecutionOutput | PauseExecutionOutput | StopExecutionOutput;
export {};

@@ -10,2 +10,7 @@ import { ActionType } from "../../flows/actions/action";

}
export declare type StopResponse = {
status?: number;
body?: unknown;
headers?: Record<string, string>;
};
export declare type StepOutput<T extends ActionType = ActionType, O = any> = {

@@ -20,3 +25,3 @@ type: T;

pauseMetadata?: PauseMetadata;
stopResponse?: unknown;
stopResponse?: StopResponse;
};

@@ -23,0 +28,0 @@ declare type LoopOnItemsOutput = {

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