@lucidtech/las-sdk-core
Advanced tools
Comparing version 1.2.8 to 1.2.9
@@ -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. |
{ | ||
"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. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34895
591