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

@integration-app/sdk

Package Overview
Dependencies
Maintainers
3
Versions
444
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@integration-app/sdk - npm Package Compare versions

Comparing version 0.1.19 to 0.1.20

1

client.d.ts

@@ -42,2 +42,3 @@ declare enum FlowRunState {

createFlow(options: NewFlowOptions): Promise<any>;
deleteFlow(flowId: string): Promise<any>;
openNewConnection(options: NewConnectionOptions): Promise<void>;

@@ -44,0 +45,0 @@ openFlow(flowId: string, options?: OpenFlowOptions): Promise<void>;

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

}
async deleteFlow(flowId) {
return this.delete(`flows/${flowId}`);
}
async openNewConnection(options) {

@@ -63,0 +66,0 @@ const requestId = (Math.random() + 1).toString(36).substring(12);

2

package.json
{
"name": "@integration-app/sdk",
"version": "0.1.19",
"version": "0.1.20",
"description": "JavaScript SDK for Integration.app",

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

@@ -96,2 +96,6 @@ import Pusher, { Channel } from 'pusher-js'

public async deleteFlow(flowId: string) {
return this.delete(`flows/${flowId}`)
}
public async openNewConnection(options: NewConnectionOptions) {

@@ -98,0 +102,0 @@ const requestId = (Math.random() + 1).toString(36).substring(12)

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

Sorry, the diff of this file is not supported yet

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