@studyportals/sp-lord-business-interface
Advanced tools
Comparing version 0.0.1-99 to 0.0.1-100
{ | ||
"name": "@studyportals/sp-lord-business-interface", | ||
"version": "0.0.1-99", | ||
"version": "0.0.1-100", | ||
"description": "Typescript library containing resources that facilitate integration with Lord Business.", | ||
@@ -5,0 +5,0 @@ "main": "bin/index.js", |
@@ -38,4 +38,5 @@ import { DisqualificationReason, EnrolmentIdentificationSource, EnrolmentNotInScopeReason, EnrolmentStatus, FulfillmentStep, ProgrammeLevel, SuccessFeeType } from "../"; | ||
readonly studentResidenceCountryIso?: string | undefined; | ||
readonly isPreconfirmedAndNotReviewed: boolean; | ||
readonly __presentation_enrolment__: true; | ||
constructor(identity: string, source: EnrolmentIdentificationSource, fulfillmentStep: FulfillmentStep, status: EnrolmentStatus, lastQualificationStatus: EnrolmentStatus, organisationIdentity: string, organisationName: string, studentIdentity?: string | undefined, studentEmail?: string | undefined, studentRegistrationDateIso?: string | undefined, 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, studentOrganisationRegistrationNumber?: string | undefined, disqualificationReasons?: readonly DisqualificationReason[] | undefined, disqualificationReasonNote?: string | undefined, invoicingBatchIdentity?: string | undefined, isChallengedAndUnconfirmed?: boolean, studentResidenceCountryIso?: string | undefined); | ||
constructor(identity: string, source: EnrolmentIdentificationSource, fulfillmentStep: FulfillmentStep, status: EnrolmentStatus, lastQualificationStatus: EnrolmentStatus, organisationIdentity: string, organisationName: string, studentIdentity?: string | undefined, studentEmail?: string | undefined, studentRegistrationDateIso?: string | undefined, 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, studentOrganisationRegistrationNumber?: string | undefined, disqualificationReasons?: readonly DisqualificationReason[] | undefined, disqualificationReasonNote?: string | undefined, invoicingBatchIdentity?: string | undefined, isChallengedAndUnconfirmed?: boolean, studentResidenceCountryIso?: string | undefined, isPreconfirmedAndNotReviewed?: boolean); | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
class PresentationEnrolment { | ||
constructor(identity, source, fulfillmentStep, status, lastQualificationStatus, organisationIdentity, organisationName, studentIdentity, studentEmail, studentRegistrationDateIso, studentCountryIso, studentName, enrichmentSourceFacebook, enrichmentSourceLinkedIn, programmeLevel, programmeName, intakeMonth, intakeYear, tuitionFee, firstActivityDateIso, lastActivityDateIso, partnershipSuccessManagerName, successFeeType, enrolmentNotInScopeReasons, confirmationUnsureNote, enrolmentNotRecognizedNote, enrolmentNotInScopeReasonsNote, enrolmentConfirmedNote, tuitionFeeCurrencyIso, studentOrganisationRegistrationNumber, disqualificationReasons, disqualificationReasonNote, invoicingBatchIdentity, isChallengedAndUnconfirmed = false, studentResidenceCountryIso) { | ||
constructor(identity, source, fulfillmentStep, status, lastQualificationStatus, organisationIdentity, organisationName, studentIdentity, studentEmail, studentRegistrationDateIso, studentCountryIso, studentName, enrichmentSourceFacebook, enrichmentSourceLinkedIn, programmeLevel, programmeName, intakeMonth, intakeYear, tuitionFee, firstActivityDateIso, lastActivityDateIso, partnershipSuccessManagerName, successFeeType, enrolmentNotInScopeReasons, confirmationUnsureNote, enrolmentNotRecognizedNote, enrolmentNotInScopeReasonsNote, enrolmentConfirmedNote, tuitionFeeCurrencyIso, studentOrganisationRegistrationNumber, disqualificationReasons, disqualificationReasonNote, invoicingBatchIdentity, isChallengedAndUnconfirmed = false, studentResidenceCountryIso, isPreconfirmedAndNotReviewed = false) { | ||
this.identity = identity; | ||
@@ -40,2 +40,3 @@ this.source = source; | ||
this.studentResidenceCountryIso = studentResidenceCountryIso; | ||
this.isPreconfirmedAndNotReviewed = isPreconfirmedAndNotReviewed; | ||
this.__presentation_enrolment__ = true; | ||
@@ -42,0 +43,0 @@ } |
Sorry, the diff of this file is not supported yet
86189
1061