@studyportals/sp-lord-business-interface
Advanced tools
Comparing version 0.0.1-55 to 0.0.1-56
{ | ||
"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
53727
671