@studyportals/sp-lord-business-interface
Advanced tools
Comparing version 0.0.1-73 to 0.0.1-74
{ | ||
"name": "@studyportals/sp-lord-business-interface", | ||
"version": "0.0.1-73", | ||
"version": "0.0.1-74", | ||
"description": "Typescript library containing resources that facilitate integration with Lord Business.", | ||
@@ -5,0 +5,0 @@ "main": "bin/index.js", |
@@ -7,2 +7,3 @@ import { ProgrammeLevel } from "../"; | ||
tuitionFee: number | undefined; | ||
tuitionFeeCurrencyIso: string | undefined; | ||
programmeName: string | undefined; | ||
@@ -9,0 +10,0 @@ programmeLevel: ProgrammeLevel | undefined; |
@@ -13,2 +13,3 @@ "use strict"; | ||
serialization.tuitionFee = this.tuitionFee; | ||
serialization.tuitionFeeCurrencyIso = this.tuitionFeeCurrencyIso; | ||
serialization.programmeName = this.programmeName; | ||
@@ -15,0 +16,0 @@ serialization.programmeLevel = this.programmeLevel; |
@@ -31,4 +31,5 @@ import { EnrolmentIdentificationSource, EnrolmentNotInScopeReason, EnrolmentStatus, FulfillmentStep, ProgrammeLevel, SuccessFeeType } from "../"; | ||
readonly enrolmentConfirmedNote?: string | undefined; | ||
readonly tuitionFeeCurrencyIso?: string | undefined; | ||
readonly __presentation_enrolment__: true; | ||
constructor(identity: string, source: EnrolmentIdentificationSource, fulfillmentStep: FulfillmentStep, status: EnrolmentStatus, organisationIdentity: string, organisationName: string, studentIdentity: string, studentEmail: string, studentRegistrationDateIso: string, lastQualificationStatus: EnrolmentStatus, studentCountryIso?: string | undefined, studentName?: string | undefined, enrichmentSourceFacebook?: string | undefined, enrichmentSourceLinkedIn?: string | undefined, programmeLevel?: ProgrammeLevel | undefined, programmeName?: string | undefined, intakeMonth?: number | undefined, intakeYear?: number | undefined, tuitionFee?: number | undefined, firstActivityDateIso?: string | undefined, lastActivityDateIso?: string | undefined, partnershipSuccessManagerName?: string | undefined, successFeeType?: SuccessFeeType | undefined, enrolmentNotInScopeReasons?: readonly EnrolmentNotInScopeReason[] | undefined, confirmationUnsureNote?: string | undefined, enrolmentNotRecognizedNote?: string | undefined, enrolmentNotInScopeReasonsNote?: string | undefined, enrolmentConfirmedNote?: string | undefined); | ||
constructor(identity: string, source: EnrolmentIdentificationSource, fulfillmentStep: FulfillmentStep, status: EnrolmentStatus, organisationIdentity: string, organisationName: string, studentIdentity: string, studentEmail: string, studentRegistrationDateIso: string, lastQualificationStatus: EnrolmentStatus, studentCountryIso?: string | undefined, studentName?: string | undefined, enrichmentSourceFacebook?: string | undefined, enrichmentSourceLinkedIn?: string | undefined, programmeLevel?: ProgrammeLevel | undefined, programmeName?: string | undefined, intakeMonth?: number | undefined, intakeYear?: number | undefined, tuitionFee?: number | undefined, firstActivityDateIso?: string | undefined, lastActivityDateIso?: string | undefined, partnershipSuccessManagerName?: string | undefined, successFeeType?: SuccessFeeType | undefined, enrolmentNotInScopeReasons?: readonly EnrolmentNotInScopeReason[] | undefined, confirmationUnsureNote?: string | undefined, enrolmentNotRecognizedNote?: string | undefined, enrolmentNotInScopeReasonsNote?: string | undefined, enrolmentConfirmedNote?: string | undefined, tuitionFeeCurrencyIso?: string | undefined); | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
class PresentationEnrolment { | ||
constructor(identity, source, fulfillmentStep, status, organisationIdentity, organisationName, studentIdentity, studentEmail, studentRegistrationDateIso, lastQualificationStatus, studentCountryIso, studentName, enrichmentSourceFacebook, enrichmentSourceLinkedIn, programmeLevel, programmeName, intakeMonth, intakeYear, tuitionFee, firstActivityDateIso, lastActivityDateIso, partnershipSuccessManagerName, successFeeType, enrolmentNotInScopeReasons, confirmationUnsureNote, enrolmentNotRecognizedNote, enrolmentNotInScopeReasonsNote, enrolmentConfirmedNote) { | ||
constructor(identity, source, fulfillmentStep, status, organisationIdentity, organisationName, studentIdentity, studentEmail, studentRegistrationDateIso, lastQualificationStatus, studentCountryIso, studentName, enrichmentSourceFacebook, enrichmentSourceLinkedIn, programmeLevel, programmeName, intakeMonth, intakeYear, tuitionFee, firstActivityDateIso, lastActivityDateIso, partnershipSuccessManagerName, successFeeType, enrolmentNotInScopeReasons, confirmationUnsureNote, enrolmentNotRecognizedNote, enrolmentNotInScopeReasonsNote, enrolmentConfirmedNote, tuitionFeeCurrencyIso) { | ||
this.identity = identity; | ||
@@ -33,2 +33,3 @@ this.source = source; | ||
this.enrolmentConfirmedNote = enrolmentConfirmedNote; | ||
this.tuitionFeeCurrencyIso = tuitionFeeCurrencyIso; | ||
this.__presentation_enrolment__ = true; | ||
@@ -35,0 +36,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
68106
849