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.1.2 to 1.1.3

lib/utils.d.ts

4

lib/client.d.ts

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

postPredictions(documentId: string, modelName: string): Promise<any>;
getProcesses(): Promise<any>;
getProcesses(search?: {
[key: string]: string;
}): Promise<any>;
postProcesses(stateMachineArn: string, inputData: any): Promise<any>;

@@ -12,0 +14,0 @@ postTasks(activityArn: string): Promise<any>;

@@ -7,2 +7,3 @@ "use strict";

var axios_1 = __importDefault(require("axios"));
var utils_1 = require("./utils");
var Client = /** @class */ (function () {

@@ -31,4 +32,5 @@ function Client(apiEndpoint, credentials) {

};
Client.prototype.getProcesses = function () {
return this.makeGetRequest('/processes');
Client.prototype.getProcesses = function (search) {
var url = utils_1.buildURL('/processes', search);
return this.makeGetRequest(url);
};

@@ -35,0 +37,0 @@ Client.prototype.postProcesses = function (stateMachineArn, inputData) {

{
"name": "@lucidtech/las-sdk-core",
"version": "1.1.2",
"version": "1.1.3",
"author": "Lucidtech AS <hello@lucidtech.ai>",

@@ -22,3 +22,4 @@ "maintainers": [

"axios": "^0.19.0"
}
},
"gitHead": "010fe6de6318379747a90176e376d94261130d22"
}
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