New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@studyportals/sp-lord-business-interface

Package Overview
Dependencies
Maintainers
18
Versions
231
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@studyportals/sp-lord-business-interface - npm Package Compare versions

Comparing version 0.0.1-55 to 0.0.1-56

2

package.json
{
"name": "@studyportals/sp-lord-business-interface",
"version": "0.0.1-55",
"version": "0.0.1-56",
"description": "Typescript library containing resources that facilitate integration with Lord Business.",

@@ -5,0 +5,0 @@ "main": "bin/index.js",

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

triggerStudentNotRecognized(enrolmentIdentity: string): Promise<void>;
triggerEnrolmentConfirmationUnsure(enrolmentIdentity: string, note: string): Promise<void>;
submitPartnershipBatch(organisationIdentity: string): Promise<void>;
enrich(enrolmentIdentity: string, enrolmentEnrichmentSpecification: EnrolmentEnrichmentSpecification): Promise<void>;

@@ -28,0 +30,0 @@ moveEnrolmentToOrganisation(enrolmentIdentity: string, organisationIdentity: string): Promise<void>;

@@ -132,2 +132,16 @@ "use strict";

}
triggerEnrolmentConfirmationUnsure(enrolmentIdentity, note) {
return __awaiter(this, void 0, void 0, function* () {
const request = this.createPostRequest("/enrolment/confirmation-unsure");
request.send({ enrolmentIdentity, note });
yield this.requestSender.send(request);
});
}
submitPartnershipBatch(organisationIdentity) {
return __awaiter(this, void 0, void 0, function* () {
const request = this.createPostRequest("/partnership/submit-batch");
request.send({ organisationIdentity });
yield this.requestSender.send(request);
});
}
enrich(enrolmentIdentity, enrolmentEnrichmentSpecification) {

@@ -134,0 +148,0 @@ return __awaiter(this, void 0, void 0, function* () {

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