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.4 to 1.2.5

2

lib/client.d.ts

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

postTasks(activityArn: string): Promise<any>;
patchTasks(taskId: string, taskResult: any): Promise<any>;
patchTasks(taskId: string, taskResult?: any, taskError?: any): Promise<any>;
makeGetRequest(path: string): Promise<any>;

@@ -18,0 +18,0 @@ makeDeleteRequest(path: string): Promise<any>;

@@ -51,5 +51,8 @@ "use strict";

};
Client.prototype.patchTasks = function (taskId, taskResult) {
Client.prototype.patchTasks = function (taskId, taskResult, taskError) {
if (taskResult === void 0) { taskResult = {}; }
if (taskError === void 0) { taskError = {}; }
var body = {
taskResult: taskResult,
taskError: taskError,
};

@@ -56,0 +59,0 @@ return this.makePatchRequest("/tasks/" + taskId, body);

@@ -5,3 +5,2 @@ import { Token } from './credentials';

setPersistentToken: (value: T) => void;
hasActiveToken: () => boolean;
}
{
"name": "@lucidtech/las-sdk-core",
"version": "1.2.4",
"version": "1.2.5",
"author": "Lucidtech AS <hello@lucidtech.ai>",

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

},
"gitHead": "7220ca3a313ed6abbddb831d211910331bffe141"
"gitHead": "5cd945327ef7ec223815c9a0a6ddc925a15e3be5"
}
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