@studyportals/sp-lord-business-interface
Advanced tools
Comparing version 0.0.1-71 to 0.0.1-72
{ | ||
"name": "@studyportals/sp-lord-business-interface", | ||
"version": "0.0.1-71", | ||
"version": "0.0.1-72", | ||
"description": "Typescript library containing resources that facilitate integration with Lord Business.", | ||
@@ -5,0 +5,0 @@ "main": "bin/index.js", |
@@ -12,3 +12,3 @@ import { IRequestSender, ISuperAgentRequestFactory } from "@studyportals/mb-platform-http-requests"; | ||
retrieveAllEnrolments(): Promise<PresentationEnrolment[]>; | ||
retrievePartnershipForOrganisation(organisationIdentity: string): Promise<PresentationPartnership>; | ||
retrievePartnership(): Promise<PresentationPartnership>; | ||
triggerEnrolmentInCurrentProcessingRound(enrolmentIdentity: string): Promise<void>; | ||
@@ -15,0 +15,0 @@ triggerEnrolmentNotForInvoicing(enrolmentIdentity: string): Promise<void>; |
@@ -34,6 +34,5 @@ "use strict"; | ||
} | ||
retrievePartnershipForOrganisation(organisationIdentity) { | ||
retrievePartnership() { | ||
return __awaiter(this, void 0, void 0, function* () { | ||
const request = this.createGetRequest("/presentation/partnerships"); | ||
request.send({ organisationIdentity }); | ||
const result = yield this.requestSender.sendAndExtractBody(request); | ||
@@ -40,0 +39,0 @@ return result.partnership; |
Sorry, the diff of this file is not supported yet
67456
844