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

@lucidtech/las-sdk-core

Package Overview
Dependencies
Maintainers
2
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lucidtech/las-sdk-core - npm Package Compare versions

Comparing version 1.2.8 to 1.2.9

1

lib/client.d.ts

@@ -15,2 +15,3 @@ import { Credentials } from './credentials';

postTasks(activityArn: string): Promise<any>;
deleteProcess(processId: string): Promise<any>;
/**

@@ -17,0 +18,0 @@ * Either taskResult or taskError shoud be provided, but not both.

@@ -51,2 +51,6 @@ "use strict";

};
Client.prototype.deleteProcess = function (processId) {
var url = "/processes/" + processId;
return this.makeDeleteRequest(url);
};
/**

@@ -53,0 +57,0 @@ * Either taskResult or taskError shoud be provided, but not both.

4

package.json
{
"name": "@lucidtech/las-sdk-core",
"version": "1.2.8",
"version": "1.2.9",
"author": "Lucidtech AS <hello@lucidtech.ai>",

@@ -23,3 +23,3 @@ "maintainers": [

},
"gitHead": "3d497c347187e557bcc5367fa37ad1680ed40420"
"gitHead": "a7f5a3d0e61053fbddf0812c9c8c214757793e1c"
}

@@ -64,2 +64,7 @@ import axios, { AxiosRequestConfig } from 'axios';

deleteProcess(processId: string) {
const url = `/processes/${processId}`;
return this.makeDeleteRequest(url);
}
/**

@@ -66,0 +71,0 @@ * Either taskResult or taskError shoud be provided, but not both.

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