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

@studyportals/sp-lurch-interface

Package Overview
Dependencies
Maintainers
12
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@studyportals/sp-lurch-interface - npm Package Compare versions

Comparing version 2.5.0 to 2.6.0

src/results/discard-input-batch-result.class.d.ts

9

package.json
{
"name": "@studyportals/sp-lurch-interface",
"version": "2.5.0",
"version": "2.6.0",
"description": "Contains Data Transfer Objects required or provided by Lurch through its interface.",

@@ -13,3 +13,6 @@ "scripts": {

"lint-fix": "tslint --fix 'src/**/*.ts'",
"coverage": "nyc report --reporter=lcov"
"coverage": "nyc report --reporter=lcov",
"deploy-patch": "npm test && npm run prepare-deployment && npm version patch && npm run deploy",
"deploy-minor": "npm test && npm run prepare-deployment && npm version minor && npm run deploy",
"deploy-major": "npm test && npm run prepare-deployment && npm version major && npm run deploy"
},

@@ -23,3 +26,3 @@ "author": "SPAF",

"mocha-typescript": "1.1.10",
"nyc": "11.4.1",
"nyc": "15.0.0",
"ts-node": "^6.0.3",

@@ -26,0 +29,0 @@ "tslint": "^5.9.1",

@@ -11,2 +11,3 @@ import { IRequestSender, ISuperAgentRequestFactory } from "@studyportals/mb-platform-http-requests";

approveInputBatch(inputBatchIdentity: string): Promise<void>;
discardInputBatch(inputBatchIdentity: string): Promise<void>;
private createGetRequest;

@@ -13,0 +14,0 @@ private createPostRequest;

@@ -34,2 +34,9 @@ "use strict";

}
discardInputBatch(inputBatchIdentity) {
return __awaiter(this, void 0, void 0, function* () {
const request = this.createPostRequest('/input-batch/discard');
request.send({ inputBatchIdentity });
yield this.requestSender.send(request);
});
}
createGetRequest(relative = '') {

@@ -36,0 +43,0 @@ return this.superAgentRequestFactory.get(this.buildUrl(relative));

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