@studyportals/domain-client 6.0.0-0 → 6.0.0-10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +88 -85
- package/index.js +33 -34
- package/package.json +10 -8
- package/protobuf/Area.d.ts +11 -0
- package/protobuf/Area.js +30 -0
- package/protobuf/Article.d.ts +60 -0
- package/protobuf/Article.js +226 -0
- package/protobuf/Body.d.ts +11 -0
- package/protobuf/Body.js +30 -0
- package/protobuf/CampaignInformation.d.ts +11 -0
- package/protobuf/CampaignInformation.js +30 -0
- package/protobuf/ClickTracking.d.ts +11 -0
- package/protobuf/ClickTracking.js +30 -0
- package/protobuf/CommercialEntity.d.ts +14 -0
- package/protobuf/CommercialEntity.js +48 -0
- package/protobuf/Cover.d.ts +10 -0
- package/protobuf/Cover.js +26 -0
- package/protobuf/Deadline.d.ts +11 -0
- package/protobuf/Deadline.js +30 -0
- package/protobuf/Degree.d.ts +16 -0
- package/protobuf/Degree.js +50 -0
- package/protobuf/Description.d.ts +16 -0
- package/protobuf/Description.js +45 -0
- package/protobuf/Discipline.d.ts +26 -0
- package/protobuf/Discipline.js +84 -0
- package/protobuf/Duration.d.ts +11 -0
- package/protobuf/Duration.js +30 -0
- package/protobuf/EnglishRequirement.d.ts +11 -0
- package/protobuf/EnglishRequirement.js +30 -0
- package/protobuf/EssentialInformation.d.ts +17 -0
- package/protobuf/EssentialInformation.js +54 -0
- package/protobuf/File.d.ts +22 -0
- package/protobuf/File.js +74 -0
- package/protobuf/GPARequirement.d.ts +11 -0
- package/protobuf/GPARequirement.js +30 -0
- package/protobuf/InternalLink.d.ts +12 -24
- package/protobuf/InternalLink.js +30 -49
- package/protobuf/Link.d.ts +11 -23
- package/protobuf/Link.js +30 -44
- package/protobuf/LivingCost.d.ts +11 -0
- package/protobuf/LivingCost.js +30 -0
- package/protobuf/Location.d.ts +18 -0
- package/protobuf/Location.js +56 -0
- package/protobuf/Logo.d.ts +10 -0
- package/protobuf/Logo.js +26 -0
- package/protobuf/MiniProgrammeCard.d.ts +18 -27
- package/protobuf/MiniProgrammeCard.js +50 -61
- package/protobuf/OptionalLink.d.ts +12 -0
- package/protobuf/OptionalLink.js +34 -0
- package/protobuf/Organisation.d.ts +211 -0
- package/protobuf/Organisation.js +853 -0
- package/protobuf/OrganisationInformation.d.ts +9 -0
- package/protobuf/OrganisationInformation.js +20 -0
- package/protobuf/OrganisationRanking.d.ts +15 -0
- package/protobuf/OrganisationRanking.js +41 -0
- package/protobuf/Person.d.ts +14 -0
- package/protobuf/Person.js +40 -0
- package/protobuf/ProgrammeCard.d.ts +60 -0
- package/protobuf/ProgrammeCard.js +197 -0
- package/protobuf/ProgrammeGrid.d.ts +14 -0
- package/protobuf/ProgrammeGrid.js +37 -0
- package/protobuf/Ranking.d.ts +22 -0
- package/protobuf/Ranking.js +76 -0
- package/protobuf/RankingInstitute.d.ts +15 -0
- package/protobuf/RankingInstitute.js +44 -0
- package/protobuf/Review.d.ts +17 -0
- package/protobuf/Review.js +52 -0
- package/protobuf/ReviewRating.d.ts +12 -0
- package/protobuf/ReviewRating.js +34 -0
- package/protobuf/RichText.d.ts +10 -0
- package/protobuf/RichText.js +28 -0
- package/protobuf/SocialLink.d.ts +21 -0
- package/protobuf/SocialLink.js +70 -0
- package/protobuf/StartDate.d.ts +13 -0
- package/protobuf/StartDate.js +38 -0
- package/protobuf/Timing.d.ts +17 -0
- package/protobuf/Timing.js +49 -0
- package/protobuf/Topic.d.ts +10 -0
- package/protobuf/Topic.js +26 -0
- package/protobuf/TrackedLink.d.ts +13 -0
- package/protobuf/TrackedLink.js +36 -0
- package/protobuf/Tracking.d.ts +18 -0
- package/protobuf/Tracking.js +58 -0
- package/protobuf/TuitionFee.d.ts +13 -0
- package/protobuf/TuitionFee.js +38 -0
- package/protobuf/Unibuddy.d.ts +10 -0
- package/protobuf/Unibuddy.js +26 -0
- package/protobuf/index.d.ts +45 -6
- package/protobuf/index.js +45 -7
- package/src/clients/article-detail-page-client.d.ts +8 -0
- package/src/clients/article-detail-page-client.js +16 -0
- package/src/clients/index.d.ts +7 -1
- package/src/clients/index.js +7 -2
- package/src/clients/organisation-page-client.d.ts +8 -0
- package/src/clients/organisation-page-client.js +16 -0
- package/src/clients/protobuf-client.d.ts +14 -11
- package/src/clients/protobuf-client.js +26 -16
- package/src/clients/{mini-programme-card-client.d.ts → public-mini-programme-card-client.d.ts} +8 -8
- package/src/clients/{mini-programme-card-client.js → public-mini-programme-card-client.js} +16 -17
- package/src/domain-client.d.ts +14 -14
- package/src/domain-client.js +89 -63
- package/src/exceptions/bad-request-exception.d.ts +2 -2
- package/src/exceptions/bad-request-exception.js +2 -3
- package/src/exceptions/client-exception.d.ts +2 -2
- package/src/exceptions/client-exception.js +2 -3
- package/src/exceptions/internal-server-exception.d.ts +2 -2
- package/src/exceptions/internal-server-exception.js +2 -3
- package/src/exceptions/not-found-exception.d.ts +2 -2
- package/src/exceptions/not-found-exception.js +2 -3
- package/src/exceptions/property-not-available-exception.d.ts +2 -2
- package/src/exceptions/property-not-available-exception.js +2 -3
- package/src/factories/DateFactory.d.ts +5 -5
- package/src/factories/DateFactory.js +5 -6
- package/src/factories/InternalLinkFactory.d.ts +9 -9
- package/src/factories/InternalLinkFactory.js +21 -17
- package/src/i-api-response.d.ts +6 -6
- package/src/i-api-response.js +1 -2
- package/src/i-class-factory.d.ts +4 -4
- package/src/i-class-factory.js +1 -2
- package/src/i-model-description.d.ts +7 -7
- package/src/i-model-description.js +5 -6
- package/src/model-client.d.ts +16 -16
- package/src/model-client.js +43 -44
- package/src/model-factory.d.ts +11 -11
- package/src/model-factory.js +68 -69
- package/src/models/bestfit-programme/bestfit-programme-client.d.ts +7 -7
- package/src/models/bestfit-programme/bestfit-programme-client.js +12 -13
- package/src/models/bestfit-programme/i-best-fit-programme.d.ts +82 -82
- package/src/models/bestfit-programme/i-best-fit-programme.js +1 -2
- package/src/models/bestfit-programme/i-city.d.ts +14 -14
- package/src/models/bestfit-programme/i-city.js +1 -2
- package/src/models/bestfit-programme/i-english-requirements.d.ts +51 -51
- package/src/models/bestfit-programme/i-english-requirements.js +1 -2
- package/src/models/bestfit-programme/i-g-p-a-requirement.d.ts +20 -20
- package/src/models/bestfit-programme/i-g-p-a-requirement.js +1 -2
- package/src/models/bestfit-programme/i-living-cost.d.ts +20 -20
- package/src/models/bestfit-programme/i-living-cost.js +1 -2
- package/src/models/bestfit-programme/i-tuition-fee.d.ts +50 -50
- package/src/models/bestfit-programme/i-tuition-fee.js +1 -2
- package/src/models/common/i-city.d.ts +14 -14
- package/src/models/common/i-city.js +1 -2
- package/src/models/common/i-country.d.ts +20 -20
- package/src/models/common/i-country.js +1 -2
- package/src/models/common/i-english-requirements.d.ts +51 -51
- package/src/models/common/i-english-requirements.js +1 -2
- package/src/models/common/i-g-p-a-requirement.d.ts +20 -20
- package/src/models/common/i-g-p-a-requirement.js +1 -2
- package/src/models/common/i-internal-link.d.ts +28 -28
- package/src/models/common/i-internal-link.js +1 -2
- package/src/models/common/i-logo.d.ts +14 -14
- package/src/models/common/i-logo.js +1 -2
- package/src/models/common/i-review-rating.d.ts +26 -0
- package/src/models/common/i-review-rating.js +1 -0
- package/src/models/common/i-tuition-fee.d.ts +50 -50
- package/src/models/common/i-tuition-fee.js +1 -2
- package/src/models/compare-programme/i-english-requirements.d.ts +51 -51
- package/src/models/compare-programme/i-english-requirements.js +1 -2
- package/src/models/compare-programme/i-g-p-a-requirement.d.ts +20 -20
- package/src/models/compare-programme/i-g-p-a-requirement.js +1 -2
- package/src/models/compare-programme/i-living-cost.d.ts +20 -20
- package/src/models/compare-programme/i-living-cost.js +1 -2
- package/src/models/copilot-country/copilot-country-client.d.ts +7 -7
- package/src/models/copilot-country/copilot-country-client.js +12 -13
- package/src/models/copilot-country/i-copilot-country.d.ts +39 -39
- package/src/models/copilot-country/i-copilot-country.js +1 -2
- package/src/models/copilot-country/i-copilot-ranking-card.d.ts +38 -38
- package/src/models/copilot-country/i-copilot-ranking-card.js +1 -2
- package/src/models/copilot-programme/copilot-programme-client.d.ts +7 -7
- package/src/models/copilot-programme/copilot-programme-client.js +12 -13
- package/src/models/copilot-programme/i-copilot-programme.d.ts +125 -125
- package/src/models/copilot-programme/i-copilot-programme.js +1 -2
- package/src/models/copilot-programme/i-deadline.d.ts +20 -20
- package/src/models/copilot-programme/i-deadline.js +1 -2
- package/src/models/copilot-programme/i-english-requirements.d.ts +51 -51
- package/src/models/copilot-programme/i-english-requirements.js +1 -2
- package/src/models/copilot-programme/i-g-p-a-requirement.d.ts +20 -20
- package/src/models/copilot-programme/i-g-p-a-requirement.js +1 -2
- package/src/models/copilot-programme/i-geo-targeting-configuration.d.ts +38 -38
- package/src/models/copilot-programme/i-geo-targeting-configuration.js +1 -2
- package/src/models/copilot-programme/i-geo-targeting-values.d.ts +30 -30
- package/src/models/copilot-programme/i-geo-targeting-values.js +1 -2
- package/src/models/copilot-programme/i-internal-link.d.ts +28 -28
- package/src/models/copilot-programme/i-internal-link.js +1 -2
- package/src/models/copilot-programme/i-link.d.ts +22 -22
- package/src/models/copilot-programme/i-link.js +1 -2
- package/src/models/copilot-programme/i-living-cost.d.ts +20 -20
- package/src/models/copilot-programme/i-living-cost.js +1 -2
- package/src/models/copilot-programme/i-start-date.d.ts +33 -33
- package/src/models/copilot-programme/i-start-date.js +1 -2
- package/src/models/copilot-programme/i-timing.d.ts +45 -45
- package/src/models/copilot-programme/i-timing.js +1 -2
- package/src/models/copilot-programme/i-tuition-values.d.ts +50 -50
- package/src/models/copilot-programme/i-tuition-values.js +1 -2
- package/src/models/customerio-organisation/customerio-organisation-client.d.ts +7 -7
- package/src/models/customerio-organisation/customerio-organisation-client.js +12 -13
- package/src/models/customerio-organisation/i-city.d.ts +14 -14
- package/src/models/customerio-organisation/i-city.js +1 -2
- package/src/models/customerio-organisation/i-country.d.ts +20 -20
- package/src/models/customerio-organisation/i-country.js +1 -2
- package/src/models/customerio-organisation/i-customer-i-o-organisation.d.ts +35 -35
- package/src/models/customerio-organisation/i-customer-i-o-organisation.js +1 -2
- package/src/models/customerio-organisation/i-customer-io-organisation.d.ts +35 -35
- package/src/models/customerio-organisation/i-customer-io-organisation.js +1 -2
- package/src/models/customerio-organisation/i-review.d.ts +7 -7
- package/src/models/customerio-organisation/i-review.js +1 -2
- package/src/models/customerio-programme/customerio-programme-client.d.ts +7 -7
- package/src/models/customerio-programme/customerio-programme-client.js +12 -13
- package/src/models/customerio-programme/i-country.d.ts +20 -20
- package/src/models/customerio-programme/i-country.js +1 -2
- package/src/models/customerio-programme/i-customer-i-o-programme.d.ts +107 -107
- package/src/models/customerio-programme/i-customer-i-o-programme.js +1 -2
- package/src/models/customerio-programme/i-customer-io-programme.d.ts +107 -107
- package/src/models/customerio-programme/i-customer-io-programme.js +1 -2
- package/src/models/customerio-programme/i-deadline.d.ts +20 -20
- package/src/models/customerio-programme/i-deadline.js +1 -2
- package/src/models/customerio-programme/i-english-requirements.d.ts +51 -51
- package/src/models/customerio-programme/i-english-requirements.js +1 -2
- package/src/models/customerio-programme/i-internal-link.d.ts +28 -28
- package/src/models/customerio-programme/i-internal-link.js +1 -2
- package/src/models/customerio-programme/i-logo.d.ts +14 -14
- package/src/models/customerio-programme/i-logo.js +1 -2
- package/src/models/customerio-programme/i-start-date.d.ts +33 -33
- package/src/models/customerio-programme/i-start-date.js +1 -2
- package/src/models/customerio-programme/i-timing.d.ts +45 -45
- package/src/models/customerio-programme/i-timing.js +1 -2
- package/src/models/customerio-programme/i-tuition-fee.d.ts +50 -50
- package/src/models/customerio-programme/i-tuition-fee.js +1 -2
- package/src/models/faq-static-content/i-faq-static-content.d.ts +9 -9
- package/src/models/faq-static-content/i-faq-static-content.js +1 -2
- package/src/models/faq-static-content/i-faq.d.ts +4 -4
- package/src/models/faq-static-content/i-faq.js +1 -2
- package/src/models/faq-static-content/i-static-content-url.d.ts +4 -4
- package/src/models/faq-static-content/i-static-content-url.js +1 -2
- package/src/models/faq-static-content/public-faq-static-content-client.d.ts +7 -7
- package/src/models/faq-static-content/public-faq-static-content-client.js +12 -13
- package/src/models/organisation-card/i-organisation-card.d.ts +38 -36
- package/src/models/organisation-card/i-organisation-card.js +1 -2
- package/src/models/organisation-card/i-ranking-discipline.d.ts +4 -4
- package/src/models/organisation-card/i-ranking-discipline.js +1 -2
- package/src/models/organisation-card/i-review-rating-domain.d.ts +6 -6
- package/src/models/organisation-card/i-review-rating-domain.js +1 -2
- package/src/models/organisation-card/organisation-card-client.d.ts +7 -7
- package/src/models/organisation-card/organisation-card-client.js +12 -13
- package/src/models/organisation-for-search/i-organisation-for-search.d.ts +32 -32
- package/src/models/organisation-for-search/i-organisation-for-search.js +1 -2
- package/src/models/organisation-for-search/public-organisation-for-search-client.d.ts +7 -7
- package/src/models/organisation-for-search/public-organisation-for-search-client.js +12 -13
- package/src/models/organisation-search-document/i-organisation-search-document.d.ts +122 -122
- package/src/models/organisation-search-document/i-organisation-search-document.js +1 -2
- package/src/models/organisation-search-document/organisation-search-document-client.d.ts +7 -7
- package/src/models/organisation-search-document/organisation-search-document-client.js +12 -13
- package/src/models/programme-card/i-click-tracking-data.d.ts +5 -5
- package/src/models/programme-card/i-click-tracking-data.js +1 -2
- package/src/models/programme-card/i-cover.d.ts +14 -14
- package/src/models/programme-card/i-cover.js +1 -2
- package/src/models/programme-card/i-deadline.d.ts +20 -20
- package/src/models/programme-card/i-deadline.js +1 -2
- package/src/models/programme-card/i-duration.d.ts +40 -40
- package/src/models/programme-card/i-duration.js +1 -2
- package/src/models/programme-card/i-english-requirements.d.ts +51 -51
- package/src/models/programme-card/i-english-requirements.js +1 -2
- package/src/models/programme-card/i-g-p-a-requirement.d.ts +20 -20
- package/src/models/programme-card/i-g-p-a-requirement.js +1 -2
- package/src/models/programme-card/i-internal-link.d.ts +28 -28
- package/src/models/programme-card/i-internal-link.js +1 -2
- package/src/models/programme-card/i-link.d.ts +22 -22
- package/src/models/programme-card/i-link.js +1 -2
- package/src/models/programme-card/i-living-cost.d.ts +20 -20
- package/src/models/programme-card/i-living-cost.js +1 -2
- package/src/models/programme-card/i-location.d.ts +12 -12
- package/src/models/programme-card/i-location.js +1 -2
- package/src/models/programme-card/i-logo.d.ts +14 -14
- package/src/models/programme-card/i-logo.js +1 -2
- package/src/models/programme-card/i-optional-link.d.ts +23 -23
- package/src/models/programme-card/i-optional-link.js +1 -2
- package/src/models/programme-card/i-programme-card.d.ts +212 -205
- package/src/models/programme-card/i-programme-card.js +1 -2
- package/src/models/programme-card/i-review-rating-domain.d.ts +6 -6
- package/src/models/programme-card/i-review-rating-domain.js +1 -2
- package/src/models/programme-card/i-start-date.d.ts +33 -33
- package/src/models/programme-card/i-start-date.js +1 -2
- package/src/models/programme-card/i-timing.d.ts +45 -45
- package/src/models/programme-card/i-timing.js +1 -2
- package/src/models/programme-card/i-tracked-link.d.ts +29 -29
- package/src/models/programme-card/i-tracked-link.js +1 -2
- package/src/models/programme-card/i-tracking.d.ts +46 -46
- package/src/models/programme-card/i-tracking.js +1 -2
- package/src/models/programme-card/i-tuition-fee.d.ts +50 -50
- package/src/models/programme-card/i-tuition-fee.js +1 -2
- package/src/models/programme-card/programme-card-client.d.ts +7 -7
- package/src/models/programme-card/programme-card-client.js +12 -13
- package/src/models/ranking-cards/i-ranking.d.ts +18 -18
- package/src/models/ranking-cards/i-ranking.js +1 -2
- package/src/models/scholarship-card/i-scholarship-card-v2.d.ts +20 -20
- package/src/models/scholarship-card/i-scholarship-card-v2.js +1 -2
- package/src/models/scholarship-card/i-scholarship-card.d.ts +15 -15
- package/src/models/scholarship-card/i-scholarship-card.js +1 -2
- package/src/models/scholarship-card/public-scholarship-card-client.d.ts +7 -7
- package/src/models/scholarship-card/public-scholarship-card-client.js +12 -13
- package/src/models/scholarship-card/scholarship-card-v2-client.d.ts +7 -7
- package/src/models/scholarship-card/scholarship-card-v2-client.js +12 -13
- package/src/models/scholarship-card-v2/i-scholarship-card.d.ts +15 -15
- package/src/models/scholarship-card-v2/i-scholarship-card.js +1 -2
- package/src/models/scholarship-card-v2/scholarship-card-v2-client.d.ts +7 -7
- package/src/models/scholarship-card-v2/scholarship-card-v2-client.js +12 -13
- package/src/models/scholarship-search-document/i-scholarship-search-document.d.ts +38 -38
- package/src/models/scholarship-search-document/i-scholarship-search-document.js +1 -2
- package/src/models/scholarship-search-document/scholarship-search-document-client.d.ts +7 -7
- package/src/models/scholarship-search-document/scholarship-search-document-client.js +12 -13
- package/src/models/search-discipline/i-search-discipline.d.ts +26 -26
- package/src/models/search-discipline/i-search-discipline.js +1 -2
- package/src/models/search-discipline/public-search-discipline-client.d.ts +7 -7
- package/src/models/search-discipline/public-search-discipline-client.js +12 -13
- package/src/models/search-projection/i-geo-targeting-configuration.d.ts +38 -38
- package/src/models/search-projection/i-geo-targeting-configuration.js +1 -2
- package/src/models/search-projection/i-geo-targeting-values.d.ts +30 -30
- package/src/models/search-projection/i-geo-targeting-values.js +1 -2
- package/src/models/search-projection/i-organisation-values.d.ts +46 -46
- package/src/models/search-projection/i-organisation-values.js +1 -2
- package/src/models/search-projection/i-premium-values.d.ts +35 -35
- package/src/models/search-projection/i-premium-values.js +1 -2
- package/src/models/search-projection/i-search-projection.d.ts +186 -186
- package/src/models/search-projection/i-search-projection.js +1 -2
- package/src/models/search-projection/i-tuition-values.d.ts +50 -50
- package/src/models/search-projection/i-tuition-values.js +1 -2
- package/src/models/search-projection/search-projection-client.d.ts +7 -7
- package/src/models/search-projection/search-projection-client.js +12 -13
- package/src/models/sitemap-articles-info/i-sitemap-article-info.d.ts +26 -26
- package/src/models/sitemap-articles-info/i-sitemap-article-info.js +1 -2
- package/src/models/sitemap-articles-info/sitemap-articles-info-client.d.ts +7 -7
- package/src/models/sitemap-articles-info/sitemap-articles-info-client.js +12 -13
- package/src/models/sitemap-cities-info/i-sitemap-city-info.d.ts +14 -14
- package/src/models/sitemap-cities-info/i-sitemap-city-info.js +1 -2
- package/src/models/sitemap-cities-info/sitemap-cities-info-client.d.ts +7 -7
- package/src/models/sitemap-cities-info/sitemap-cities-info-client.js +12 -13
- package/src/models/sitemap-countries-info/i-sitemap-country-info.d.ts +14 -14
- package/src/models/sitemap-countries-info/i-sitemap-country-info.js +1 -2
- package/src/models/sitemap-countries-info/sitemap-countries-info-client.d.ts +7 -7
- package/src/models/sitemap-countries-info/sitemap-countries-info-client.js +12 -13
- package/src/models/sitemap-country-degree-info/i-degree-info.d.ts +14 -14
- package/src/models/sitemap-country-degree-info/i-degree-info.js +1 -2
- package/src/models/sitemap-country-degree-info/i-sitemap-country-degree-info.d.ts +11 -11
- package/src/models/sitemap-country-degree-info/i-sitemap-country-degree-info.js +1 -2
- package/src/models/sitemap-country-degree-info/sitemap-country-degree-info-client.d.ts +7 -7
- package/src/models/sitemap-country-degree-info/sitemap-country-degree-info-client.js +12 -13
- package/src/models/sitemap-disciplines-info/i-sitemap-discipline-info.d.ts +14 -14
- package/src/models/sitemap-disciplines-info/i-sitemap-discipline-info.js +1 -2
- package/src/models/sitemap-disciplines-info/sitemap-disciplines-info-client.d.ts +7 -7
- package/src/models/sitemap-disciplines-info/sitemap-disciplines-info-client.js +12 -13
- package/src/models/sitemap-organisations-info/i-sitemap-organisation-info.d.ts +26 -26
- package/src/models/sitemap-organisations-info/i-sitemap-organisation-info.js +1 -2
- package/src/models/sitemap-organisations-info/sitemap-organisations-info-client.d.ts +7 -7
- package/src/models/sitemap-organisations-info/sitemap-organisations-info-client.js +12 -13
- package/src/models/sitemap-programme-info/i-sitemap-programme-info.d.ts +26 -26
- package/src/models/sitemap-programme-info/i-sitemap-programme-info.js +1 -2
- package/src/models/sitemap-programme-info/sitemap-programme-info-client.d.ts +7 -7
- package/src/models/sitemap-programme-info/sitemap-programme-info-client.js +12 -13
- package/src/models/sitemap-rankings-info/i-sitemap-rankings-info.d.ts +14 -14
- package/src/models/sitemap-rankings-info/i-sitemap-rankings-info.js +1 -2
- package/src/models/sitemap-rankings-info/sitemap-rankings-info-client.d.ts +7 -7
- package/src/models/sitemap-rankings-info/sitemap-rankings-info-client.js +12 -13
- package/src/types/portal-map.d.ts +2 -2
- package/src/types/portal-map.js +1 -2
- package/src/types/portal-type.d.ts +7 -7
- package/src/types/portal-type.js +8 -9
- package/src/types.d.ts +4 -4
- package/src/types.js +1 -2
- package/test.d.ts +1 -0
- package/test.js +5 -0
- package/vitest.config.d.ts +2 -0
- package/vitest.config.js +9 -0
- package/vitest.setup.d.ts +1 -0
- package/vitest.setup.js +4 -0
- package/index.js.map +0 -1
- package/protobuf/InternalLink.js.map +0 -1
- package/protobuf/Link.js.map +0 -1
- package/protobuf/MiniProgrammeCard.js.map +0 -1
- package/protobuf/index.js.map +0 -1
- package/src/clients/index.js.map +0 -1
- package/src/clients/mini-programme-card-client.js.map +0 -1
- package/src/clients/protobuf-client.js.map +0 -1
- package/src/domain-client.js.map +0 -1
- package/src/exceptions/bad-request-exception.js.map +0 -1
- package/src/exceptions/client-exception.js.map +0 -1
- package/src/exceptions/internal-server-exception.js.map +0 -1
- package/src/exceptions/not-found-exception.js.map +0 -1
- package/src/exceptions/property-not-available-exception.js.map +0 -1
- package/src/factories/DateFactory.js.map +0 -1
- package/src/factories/InternalLinkFactory.js.map +0 -1
- package/src/i-api-response.js.map +0 -1
- package/src/i-class-factory.js.map +0 -1
- package/src/i-model-description.js.map +0 -1
- package/src/model-client.js.map +0 -1
- package/src/model-factory.js.map +0 -1
- package/src/models/bestfit-programme/bestfit-programme-client.js.map +0 -1
- package/src/models/bestfit-programme/i-best-fit-programme.js.map +0 -1
- package/src/models/bestfit-programme/i-city.js.map +0 -1
- package/src/models/bestfit-programme/i-english-requirements.js.map +0 -1
- package/src/models/bestfit-programme/i-g-p-a-requirement.js.map +0 -1
- package/src/models/bestfit-programme/i-living-cost.js.map +0 -1
- package/src/models/bestfit-programme/i-tuition-fee.js.map +0 -1
- package/src/models/common/i-city.js.map +0 -1
- package/src/models/common/i-country.js.map +0 -1
- package/src/models/common/i-english-requirements.js.map +0 -1
- package/src/models/common/i-g-p-a-requirement.js.map +0 -1
- package/src/models/common/i-internal-link.js.map +0 -1
- package/src/models/common/i-logo.js.map +0 -1
- package/src/models/common/i-tuition-fee.js.map +0 -1
- package/src/models/compare-programme/i-english-requirements.js.map +0 -1
- package/src/models/compare-programme/i-g-p-a-requirement.js.map +0 -1
- package/src/models/compare-programme/i-living-cost.js.map +0 -1
- package/src/models/copilot-country/copilot-country-client.js.map +0 -1
- package/src/models/copilot-country/i-copilot-country.js.map +0 -1
- package/src/models/copilot-country/i-copilot-ranking-card.js.map +0 -1
- package/src/models/copilot-programme/copilot-programme-client.js.map +0 -1
- package/src/models/copilot-programme/i-copilot-programme.js.map +0 -1
- package/src/models/copilot-programme/i-deadline.js.map +0 -1
- package/src/models/copilot-programme/i-english-requirements.js.map +0 -1
- package/src/models/copilot-programme/i-g-p-a-requirement.js.map +0 -1
- package/src/models/copilot-programme/i-geo-targeting-configuration.js.map +0 -1
- package/src/models/copilot-programme/i-geo-targeting-values.js.map +0 -1
- package/src/models/copilot-programme/i-internal-link.js.map +0 -1
- package/src/models/copilot-programme/i-link.js.map +0 -1
- package/src/models/copilot-programme/i-living-cost.js.map +0 -1
- package/src/models/copilot-programme/i-start-date.js.map +0 -1
- package/src/models/copilot-programme/i-timing.js.map +0 -1
- package/src/models/copilot-programme/i-tuition-values.js.map +0 -1
- package/src/models/customerio-organisation/customerio-organisation-client.js.map +0 -1
- package/src/models/customerio-organisation/i-city.js.map +0 -1
- package/src/models/customerio-organisation/i-country.js.map +0 -1
- package/src/models/customerio-organisation/i-customer-i-o-organisation.js.map +0 -1
- package/src/models/customerio-organisation/i-customer-io-organisation.js.map +0 -1
- package/src/models/customerio-organisation/i-review.js.map +0 -1
- package/src/models/customerio-programme/customerio-programme-client.js.map +0 -1
- package/src/models/customerio-programme/i-country.js.map +0 -1
- package/src/models/customerio-programme/i-customer-i-o-programme.js.map +0 -1
- package/src/models/customerio-programme/i-customer-io-programme.js.map +0 -1
- package/src/models/customerio-programme/i-deadline.js.map +0 -1
- package/src/models/customerio-programme/i-english-requirements.js.map +0 -1
- package/src/models/customerio-programme/i-internal-link.js.map +0 -1
- package/src/models/customerio-programme/i-logo.js.map +0 -1
- package/src/models/customerio-programme/i-start-date.js.map +0 -1
- package/src/models/customerio-programme/i-timing.js.map +0 -1
- package/src/models/customerio-programme/i-tuition-fee.js.map +0 -1
- package/src/models/faq-static-content/i-faq-static-content.js.map +0 -1
- package/src/models/faq-static-content/i-faq.js.map +0 -1
- package/src/models/faq-static-content/i-static-content-url.js.map +0 -1
- package/src/models/faq-static-content/public-faq-static-content-client.js.map +0 -1
- package/src/models/organisation-card/i-organisation-card.js.map +0 -1
- package/src/models/organisation-card/i-ranking-discipline.js.map +0 -1
- package/src/models/organisation-card/i-review-rating-domain.js.map +0 -1
- package/src/models/organisation-card/organisation-card-client.js.map +0 -1
- package/src/models/organisation-for-search/i-organisation-for-search.js.map +0 -1
- package/src/models/organisation-for-search/public-organisation-for-search-client.js.map +0 -1
- package/src/models/organisation-search-document/i-organisation-search-document.js.map +0 -1
- package/src/models/organisation-search-document/organisation-search-document-client.js.map +0 -1
- package/src/models/programme-card/i-click-tracking-data.js.map +0 -1
- package/src/models/programme-card/i-cover.js.map +0 -1
- package/src/models/programme-card/i-deadline.js.map +0 -1
- package/src/models/programme-card/i-duration.js.map +0 -1
- package/src/models/programme-card/i-english-requirements.js.map +0 -1
- package/src/models/programme-card/i-g-p-a-requirement.js.map +0 -1
- package/src/models/programme-card/i-internal-link.js.map +0 -1
- package/src/models/programme-card/i-link.js.map +0 -1
- package/src/models/programme-card/i-living-cost.js.map +0 -1
- package/src/models/programme-card/i-location.js.map +0 -1
- package/src/models/programme-card/i-logo.js.map +0 -1
- package/src/models/programme-card/i-optional-link.js.map +0 -1
- package/src/models/programme-card/i-programme-card.js.map +0 -1
- package/src/models/programme-card/i-review-rating-domain.js.map +0 -1
- package/src/models/programme-card/i-start-date.js.map +0 -1
- package/src/models/programme-card/i-timing.js.map +0 -1
- package/src/models/programme-card/i-tracked-link.js.map +0 -1
- package/src/models/programme-card/i-tracking.js.map +0 -1
- package/src/models/programme-card/i-tuition-fee.js.map +0 -1
- package/src/models/programme-card/programme-card-client.js.map +0 -1
- package/src/models/ranking-cards/i-ranking.js.map +0 -1
- package/src/models/scholarship-card/i-scholarship-card-v2.js.map +0 -1
- package/src/models/scholarship-card/i-scholarship-card.js.map +0 -1
- package/src/models/scholarship-card/public-scholarship-card-client.js.map +0 -1
- package/src/models/scholarship-card/scholarship-card-v2-client.js.map +0 -1
- package/src/models/scholarship-card-v2/i-scholarship-card.js.map +0 -1
- package/src/models/scholarship-card-v2/scholarship-card-v2-client.js.map +0 -1
- package/src/models/scholarship-search-document/i-scholarship-search-document.js.map +0 -1
- package/src/models/scholarship-search-document/scholarship-search-document-client.js.map +0 -1
- package/src/models/search-discipline/i-search-discipline.js.map +0 -1
- package/src/models/search-discipline/public-search-discipline-client.js.map +0 -1
- package/src/models/search-projection/i-geo-targeting-configuration.js.map +0 -1
- package/src/models/search-projection/i-geo-targeting-values.js.map +0 -1
- package/src/models/search-projection/i-organisation-values.js.map +0 -1
- package/src/models/search-projection/i-premium-values.js.map +0 -1
- package/src/models/search-projection/i-search-projection.js.map +0 -1
- package/src/models/search-projection/i-tuition-values.js.map +0 -1
- package/src/models/search-projection/search-projection-client.js.map +0 -1
- package/src/models/sitemap-articles-info/i-sitemap-article-info.js.map +0 -1
- package/src/models/sitemap-articles-info/sitemap-articles-info-client.js.map +0 -1
- package/src/models/sitemap-cities-info/i-sitemap-city-info.js.map +0 -1
- package/src/models/sitemap-cities-info/sitemap-cities-info-client.js.map +0 -1
- package/src/models/sitemap-countries-info/i-sitemap-country-info.js.map +0 -1
- package/src/models/sitemap-countries-info/sitemap-countries-info-client.js.map +0 -1
- package/src/models/sitemap-country-degree-info/i-degree-info.js.map +0 -1
- package/src/models/sitemap-country-degree-info/i-sitemap-country-degree-info.js.map +0 -1
- package/src/models/sitemap-country-degree-info/sitemap-country-degree-info-client.js.map +0 -1
- package/src/models/sitemap-disciplines-info/i-sitemap-discipline-info.js.map +0 -1
- package/src/models/sitemap-disciplines-info/sitemap-disciplines-info-client.js.map +0 -1
- package/src/models/sitemap-organisations-info/i-sitemap-organisation-info.js.map +0 -1
- package/src/models/sitemap-organisations-info/sitemap-organisations-info-client.js.map +0 -1
- package/src/models/sitemap-programme-info/i-sitemap-programme-info.js.map +0 -1
- package/src/models/sitemap-programme-info/sitemap-programme-info-client.js.map +0 -1
- package/src/models/sitemap-rankings-info/i-sitemap-rankings-info.js.map +0 -1
- package/src/models/sitemap-rankings-info/sitemap-rankings-info-client.js.map +0 -1
- package/src/types/portal-map.js.map +0 -1
- package/src/types/portal-type.js.map +0 -1
- package/src/types.js.map +0 -1
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-english-requirements.js.map
|
|
1
|
+
export {};
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
export interface IInternalLink {
|
|
2
|
-
/**
|
|
3
|
-
* Get an optional text describing the link (typically <a>-tags contents).
|
|
4
|
-
*
|
|
5
|
-
* @return string
|
|
6
|
-
* @throws PropertyNotAvailableException
|
|
7
|
-
*/
|
|
8
|
-
getDescription(): string;
|
|
9
|
-
canShowDescription(): boolean;
|
|
10
|
-
/**
|
|
11
|
-
* Returns on which portal a this link should link towards.
|
|
12
|
-
*
|
|
13
|
-
* @return string
|
|
14
|
-
*/
|
|
15
|
-
getPortalType(): string;
|
|
16
|
-
/**
|
|
17
|
-
* Get the url to refer to.
|
|
18
|
-
*
|
|
19
|
-
* Note that the url provided is always a relative URL. A base URL is needed
|
|
20
|
-
* to make it a full valid path.
|
|
21
|
-
* The only exception is when an external link is provided (meaning, outside
|
|
22
|
-
* of StudyPortals-maintained domains). In this case a full url will be
|
|
23
|
-
* provided.
|
|
24
|
-
*
|
|
25
|
-
* @return string
|
|
26
|
-
*/
|
|
27
|
-
getUrl(): string;
|
|
28
|
-
}
|
|
1
|
+
export interface IInternalLink {
|
|
2
|
+
/**
|
|
3
|
+
* Get an optional text describing the link (typically <a>-tags contents).
|
|
4
|
+
*
|
|
5
|
+
* @return string
|
|
6
|
+
* @throws PropertyNotAvailableException
|
|
7
|
+
*/
|
|
8
|
+
getDescription(): string;
|
|
9
|
+
canShowDescription(): boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Returns on which portal a this link should link towards.
|
|
12
|
+
*
|
|
13
|
+
* @return string
|
|
14
|
+
*/
|
|
15
|
+
getPortalType(): string;
|
|
16
|
+
/**
|
|
17
|
+
* Get the url to refer to.
|
|
18
|
+
*
|
|
19
|
+
* Note that the url provided is always a relative URL. A base URL is needed
|
|
20
|
+
* to make it a full valid path.
|
|
21
|
+
* The only exception is when an external link is provided (meaning, outside
|
|
22
|
+
* of StudyPortals-maintained domains). In this case a full url will be
|
|
23
|
+
* provided.
|
|
24
|
+
*
|
|
25
|
+
* @return string
|
|
26
|
+
*/
|
|
27
|
+
getUrl(): string;
|
|
28
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-internal-link.js.map
|
|
1
|
+
export {};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export interface ILogo {
|
|
2
|
-
/**
|
|
3
|
-
* Get the file ID of the logo.
|
|
4
|
-
*
|
|
5
|
-
* @return number
|
|
6
|
-
*/
|
|
7
|
-
getId(): number;
|
|
8
|
-
/**
|
|
9
|
-
* Get the imgix URL of the logo.
|
|
10
|
-
*
|
|
11
|
-
* @return string
|
|
12
|
-
*/
|
|
13
|
-
getSource(): string;
|
|
14
|
-
}
|
|
1
|
+
export interface ILogo {
|
|
2
|
+
/**
|
|
3
|
+
* Get the file ID of the logo.
|
|
4
|
+
*
|
|
5
|
+
* @return number
|
|
6
|
+
*/
|
|
7
|
+
getId(): number;
|
|
8
|
+
/**
|
|
9
|
+
* Get the imgix URL of the logo.
|
|
10
|
+
*
|
|
11
|
+
* @return string
|
|
12
|
+
*/
|
|
13
|
+
getSource(): string;
|
|
14
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-logo.js.map
|
|
1
|
+
export {};
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import { IDeadline } from "../../..";
|
|
2
|
-
export interface IStartDate {
|
|
3
|
-
/**
|
|
4
|
-
* Get the date the programme starts on.
|
|
5
|
-
*
|
|
6
|
-
* @return Date
|
|
7
|
-
*/
|
|
8
|
-
getDate(): Date;
|
|
9
|
-
/**
|
|
10
|
-
* Get a list of deadlines that apply to this start date.
|
|
11
|
-
*
|
|
12
|
-
* Note: In case of extendable start dates, all information in the
|
|
13
|
-
* Deadline objects has already been extended to the first available start
|
|
14
|
-
* date.
|
|
15
|
-
*
|
|
16
|
-
* @return IDeadline[]
|
|
17
|
-
* @throws PropertyNotAvailableException
|
|
18
|
-
*/
|
|
19
|
-
getDeadlines(): IDeadline[];
|
|
20
|
-
canShowDeadlines(): boolean;
|
|
21
|
-
/**
|
|
22
|
-
* True if you can apply at any time for this programme (rolling admission)
|
|
23
|
-
*
|
|
24
|
-
* @return boolean
|
|
25
|
-
*/
|
|
26
|
-
isApplyingAnytime(): boolean;
|
|
27
|
-
/**
|
|
28
|
-
* True if the start date has passed (you can't start at this date anymore).
|
|
29
|
-
*
|
|
30
|
-
* @return boolean
|
|
31
|
-
*/
|
|
32
|
-
isPassed(): boolean;
|
|
33
|
-
}
|
|
1
|
+
import { IDeadline } from "../../..";
|
|
2
|
+
export interface IStartDate {
|
|
3
|
+
/**
|
|
4
|
+
* Get the date the programme starts on.
|
|
5
|
+
*
|
|
6
|
+
* @return Date
|
|
7
|
+
*/
|
|
8
|
+
getDate(): Date;
|
|
9
|
+
/**
|
|
10
|
+
* Get a list of deadlines that apply to this start date.
|
|
11
|
+
*
|
|
12
|
+
* Note: In case of extendable start dates, all information in the
|
|
13
|
+
* Deadline objects has already been extended to the first available start
|
|
14
|
+
* date.
|
|
15
|
+
*
|
|
16
|
+
* @return IDeadline[]
|
|
17
|
+
* @throws PropertyNotAvailableException
|
|
18
|
+
*/
|
|
19
|
+
getDeadlines(): IDeadline[];
|
|
20
|
+
canShowDeadlines(): boolean;
|
|
21
|
+
/**
|
|
22
|
+
* True if you can apply at any time for this programme (rolling admission)
|
|
23
|
+
*
|
|
24
|
+
* @return boolean
|
|
25
|
+
*/
|
|
26
|
+
isApplyingAnytime(): boolean;
|
|
27
|
+
/**
|
|
28
|
+
* True if the start date has passed (you can't start at this date anymore).
|
|
29
|
+
*
|
|
30
|
+
* @return boolean
|
|
31
|
+
*/
|
|
32
|
+
isPassed(): boolean;
|
|
33
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-start-date.js.map
|
|
1
|
+
export {};
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import { IDeadline, IStartDate } from "../../..";
|
|
2
|
-
export interface ITiming {
|
|
3
|
-
/**
|
|
4
|
-
* Get the IDeadline applicable for this type and programme.
|
|
5
|
-
*
|
|
6
|
-
* Note: In case of extendable start dates, all information in the
|
|
7
|
-
* Deadline object has already been extended to the first available start
|
|
8
|
-
* date.
|
|
9
|
-
*
|
|
10
|
-
* @return IDeadline
|
|
11
|
-
* @throws PropertyNotAvailableException
|
|
12
|
-
*/
|
|
13
|
-
getDeadline(): IDeadline;
|
|
14
|
-
canShowDeadline(): boolean;
|
|
15
|
-
/**
|
|
16
|
-
* Get the IStartDate applicable for this type and programme.
|
|
17
|
-
*
|
|
18
|
-
* Note: In case of extendable start dates, all information in the
|
|
19
|
-
* StartDate objects has already been extended to the first available start
|
|
20
|
-
* date.
|
|
21
|
-
*
|
|
22
|
-
* @return IStartDate
|
|
23
|
-
* @throws PropertyNotAvailableException
|
|
24
|
-
*/
|
|
25
|
-
getStartDate(): IStartDate;
|
|
26
|
-
canShowStartDate(): boolean;
|
|
27
|
-
/**
|
|
28
|
-
* Type of user the timing is applicable to (e.g. general, eea, national).
|
|
29
|
-
*
|
|
30
|
-
* @return string
|
|
31
|
-
*/
|
|
32
|
-
getType(): string;
|
|
33
|
-
/**
|
|
34
|
-
* True if the programme allows to apply at any time (rolling application).
|
|
35
|
-
*
|
|
36
|
-
* @return boolean
|
|
37
|
-
*/
|
|
38
|
-
isApplyingAnytime(): boolean;
|
|
39
|
-
/**
|
|
40
|
-
* True if the programme can start at any time (rolling admission).
|
|
41
|
-
*
|
|
42
|
-
* @return boolean
|
|
43
|
-
*/
|
|
44
|
-
isStartingAnytime(): boolean;
|
|
45
|
-
}
|
|
1
|
+
import { IDeadline, IStartDate } from "../../..";
|
|
2
|
+
export interface ITiming {
|
|
3
|
+
/**
|
|
4
|
+
* Get the IDeadline applicable for this type and programme.
|
|
5
|
+
*
|
|
6
|
+
* Note: In case of extendable start dates, all information in the
|
|
7
|
+
* Deadline object has already been extended to the first available start
|
|
8
|
+
* date.
|
|
9
|
+
*
|
|
10
|
+
* @return IDeadline
|
|
11
|
+
* @throws PropertyNotAvailableException
|
|
12
|
+
*/
|
|
13
|
+
getDeadline(): IDeadline;
|
|
14
|
+
canShowDeadline(): boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Get the IStartDate applicable for this type and programme.
|
|
17
|
+
*
|
|
18
|
+
* Note: In case of extendable start dates, all information in the
|
|
19
|
+
* StartDate objects has already been extended to the first available start
|
|
20
|
+
* date.
|
|
21
|
+
*
|
|
22
|
+
* @return IStartDate
|
|
23
|
+
* @throws PropertyNotAvailableException
|
|
24
|
+
*/
|
|
25
|
+
getStartDate(): IStartDate;
|
|
26
|
+
canShowStartDate(): boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Type of user the timing is applicable to (e.g. general, eea, national).
|
|
29
|
+
*
|
|
30
|
+
* @return string
|
|
31
|
+
*/
|
|
32
|
+
getType(): string;
|
|
33
|
+
/**
|
|
34
|
+
* True if the programme allows to apply at any time (rolling application).
|
|
35
|
+
*
|
|
36
|
+
* @return boolean
|
|
37
|
+
*/
|
|
38
|
+
isApplyingAnytime(): boolean;
|
|
39
|
+
/**
|
|
40
|
+
* True if the programme can start at any time (rolling admission).
|
|
41
|
+
*
|
|
42
|
+
* @return boolean
|
|
43
|
+
*/
|
|
44
|
+
isStartingAnytime(): boolean;
|
|
45
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-timing.js.map
|
|
1
|
+
export {};
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
export interface ITuitionFee {
|
|
2
|
-
/**
|
|
3
|
-
* Get the tuition amount per unit in the provided currency.
|
|
4
|
-
*
|
|
5
|
-
* Note: all transformable units will be converted to yearly amounts. This
|
|
6
|
-
* includes per semester and full programme tuition fees.
|
|
7
|
-
*
|
|
8
|
-
* @return number
|
|
9
|
-
*/
|
|
10
|
-
getAmount(): number;
|
|
11
|
-
/**
|
|
12
|
-
* Get the applicable currency.
|
|
13
|
-
*
|
|
14
|
-
* @return string
|
|
15
|
-
*/
|
|
16
|
-
getCurrency(): string;
|
|
17
|
-
/**
|
|
18
|
-
* Get the original tuition amount before any transformation step.
|
|
19
|
-
*
|
|
20
|
-
* @return number
|
|
21
|
-
*/
|
|
22
|
-
getOriginalAmount(): number;
|
|
23
|
-
/**
|
|
24
|
-
* Get the original tuition unit before any transformation step.
|
|
25
|
-
*
|
|
26
|
-
* @return string
|
|
27
|
-
*/
|
|
28
|
-
getOriginalUnit(): string;
|
|
29
|
-
/**
|
|
30
|
-
* Get targeted audience (national, international, eea, etc).
|
|
31
|
-
*
|
|
32
|
-
* @return string
|
|
33
|
-
*/
|
|
34
|
-
getTarget(): string;
|
|
35
|
-
/**
|
|
36
|
-
* Get the unit the tuition fee applies for.
|
|
37
|
-
*
|
|
38
|
-
* Note: all transformable units will be converted to 'year'. This means
|
|
39
|
-
* this value will be either 'year', 'module' or 'credit'.
|
|
40
|
-
*
|
|
41
|
-
* @return string
|
|
42
|
-
*/
|
|
43
|
-
getUnit(): string;
|
|
44
|
-
/**
|
|
45
|
-
* True if the study is free for this target audience.
|
|
46
|
-
*
|
|
47
|
-
* @return boolean
|
|
48
|
-
*/
|
|
49
|
-
isFree(): boolean;
|
|
50
|
-
}
|
|
1
|
+
export interface ITuitionFee {
|
|
2
|
+
/**
|
|
3
|
+
* Get the tuition amount per unit in the provided currency.
|
|
4
|
+
*
|
|
5
|
+
* Note: all transformable units will be converted to yearly amounts. This
|
|
6
|
+
* includes per semester and full programme tuition fees.
|
|
7
|
+
*
|
|
8
|
+
* @return number
|
|
9
|
+
*/
|
|
10
|
+
getAmount(): number;
|
|
11
|
+
/**
|
|
12
|
+
* Get the applicable currency.
|
|
13
|
+
*
|
|
14
|
+
* @return string
|
|
15
|
+
*/
|
|
16
|
+
getCurrency(): string;
|
|
17
|
+
/**
|
|
18
|
+
* Get the original tuition amount before any transformation step.
|
|
19
|
+
*
|
|
20
|
+
* @return number
|
|
21
|
+
*/
|
|
22
|
+
getOriginalAmount(): number;
|
|
23
|
+
/**
|
|
24
|
+
* Get the original tuition unit before any transformation step.
|
|
25
|
+
*
|
|
26
|
+
* @return string
|
|
27
|
+
*/
|
|
28
|
+
getOriginalUnit(): string;
|
|
29
|
+
/**
|
|
30
|
+
* Get targeted audience (national, international, eea, etc).
|
|
31
|
+
*
|
|
32
|
+
* @return string
|
|
33
|
+
*/
|
|
34
|
+
getTarget(): string;
|
|
35
|
+
/**
|
|
36
|
+
* Get the unit the tuition fee applies for.
|
|
37
|
+
*
|
|
38
|
+
* Note: all transformable units will be converted to 'year'. This means
|
|
39
|
+
* this value will be either 'year', 'module' or 'credit'.
|
|
40
|
+
*
|
|
41
|
+
* @return string
|
|
42
|
+
*/
|
|
43
|
+
getUnit(): string;
|
|
44
|
+
/**
|
|
45
|
+
* True if the study is free for this target audience.
|
|
46
|
+
*
|
|
47
|
+
* @return boolean
|
|
48
|
+
*/
|
|
49
|
+
isFree(): boolean;
|
|
50
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-tuition-fee.js.map
|
|
1
|
+
export {};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { IFaq } from "./i-faq";
|
|
2
|
-
import { IStaticContentUrl } from "./i-static-content-url";
|
|
3
|
-
export interface IFaqStaticContent {
|
|
4
|
-
getFaqId(): number | null;
|
|
5
|
-
getStaticContentId(): number | null;
|
|
6
|
-
getFaqs(): IFaq[] | null;
|
|
7
|
-
getStaticContentText(): string | null;
|
|
8
|
-
getStaticContentUrls(): IStaticContentUrl[] | null;
|
|
9
|
-
}
|
|
1
|
+
import { IFaq } from "./i-faq";
|
|
2
|
+
import { IStaticContentUrl } from "./i-static-content-url";
|
|
3
|
+
export interface IFaqStaticContent {
|
|
4
|
+
getFaqId(): number | null;
|
|
5
|
+
getStaticContentId(): number | null;
|
|
6
|
+
getFaqs(): IFaq[] | null;
|
|
7
|
+
getStaticContentText(): string | null;
|
|
8
|
+
getStaticContentUrls(): IStaticContentUrl[] | null;
|
|
9
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-faq-static-content.js.map
|
|
1
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface IFaq {
|
|
2
|
-
getQuestion(): string;
|
|
3
|
-
getAnswer(): string;
|
|
4
|
-
}
|
|
1
|
+
export interface IFaq {
|
|
2
|
+
getQuestion(): string;
|
|
3
|
+
getAnswer(): string;
|
|
4
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-faq.js.map
|
|
1
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface IStaticContentUrl {
|
|
2
|
-
getUrl(): string;
|
|
3
|
-
getText(): string;
|
|
4
|
-
}
|
|
1
|
+
export interface IStaticContentUrl {
|
|
2
|
+
getUrl(): string;
|
|
3
|
+
getText(): string;
|
|
4
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-static-content-url.js.map
|
|
1
|
+
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ModelClient } from "../../model-client";
|
|
2
|
-
import { IFaqStaticContent } from "./i-faq-static-content";
|
|
3
|
-
export declare class PublicFaqStaticContentClient extends ModelClient<IFaqStaticContent> {
|
|
4
|
-
protected getModelName(): string;
|
|
5
|
-
protected getVersion(): string;
|
|
6
|
-
isPublic(): boolean;
|
|
7
|
-
}
|
|
1
|
+
import { ModelClient } from "../../model-client";
|
|
2
|
+
import { IFaqStaticContent } from "./i-faq-static-content";
|
|
3
|
+
export declare class PublicFaqStaticContentClient extends ModelClient<IFaqStaticContent> {
|
|
4
|
+
protected getModelName(): string;
|
|
5
|
+
protected getVersion(): string;
|
|
6
|
+
isPublic(): boolean;
|
|
7
|
+
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import { ModelClient } from "../../model-client";
|
|
2
|
-
export class PublicFaqStaticContentClient extends ModelClient {
|
|
3
|
-
getModelName() {
|
|
4
|
-
return 'faq-static-content';
|
|
5
|
-
}
|
|
6
|
-
getVersion() {
|
|
7
|
-
return 'v1';
|
|
8
|
-
}
|
|
9
|
-
isPublic() {
|
|
10
|
-
return true;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=public-faq-static-content-client.js.map
|
|
1
|
+
import { ModelClient } from "../../model-client";
|
|
2
|
+
export class PublicFaqStaticContentClient extends ModelClient {
|
|
3
|
+
getModelName() {
|
|
4
|
+
return 'faq-static-content';
|
|
5
|
+
}
|
|
6
|
+
getVersion() {
|
|
7
|
+
return 'v1';
|
|
8
|
+
}
|
|
9
|
+
isPublic() {
|
|
10
|
+
return true;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -1,36 +1,38 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
1
|
+
import { IReviewRating } from "../common/i-review-rating";
|
|
2
|
+
import { IRankingDiscipline } from "./i-ranking-discipline";
|
|
3
|
+
export interface IOrganisationCard {
|
|
4
|
+
getNumberOfProgrammesForBachelors(): number;
|
|
5
|
+
getNumberOfProgrammesForDistanceLearning(): number;
|
|
6
|
+
getNumberOfProgrammesForMasters(): number;
|
|
7
|
+
getNumberOfProgrammesForPhd(): number;
|
|
8
|
+
getNumberOfProgrammesForShortCourses(): number;
|
|
9
|
+
getOrganisationGlobalMetaRankingPosition(): number | null;
|
|
10
|
+
getOrganisationMetaRankingPositionsByDiscipline(): IRankingDiscipline[] | null;
|
|
11
|
+
getOrganisationGlobalPositionPercentage(): string | null;
|
|
12
|
+
getOrganisationHasDeliveryMethodBlended(): boolean;
|
|
13
|
+
getOrganisationHasDeliveryMethodOnCampus(): boolean;
|
|
14
|
+
getOrganisationHasDeliveryMethodOnline(): boolean;
|
|
15
|
+
getOrganisationId(): number;
|
|
16
|
+
getOrganisationIsPremium(): boolean;
|
|
17
|
+
getOrganisationLocationCityName(): string | null;
|
|
18
|
+
getOrganisationLocationCityRelativeLinkOfDetailPage(): string | null;
|
|
19
|
+
getOrganisationLocationCountryIsoCode(): string | null;
|
|
20
|
+
getOrganisationLocationCountryName(): string | null;
|
|
21
|
+
getOrganisationLocationCountryRelativeLinkOfDetailPage(): string | null;
|
|
22
|
+
getOrganisationLocationAreaCode(): string | null;
|
|
23
|
+
getOrganisationLogoSquareCdn(): string | null;
|
|
24
|
+
getOrganisationMayShowCoverImage(): boolean;
|
|
25
|
+
getOrganisationMayShowLogoSquare(): boolean;
|
|
26
|
+
getOrganisationName(): string;
|
|
27
|
+
getOrganisationRelativeLinkOfDetailPage(): string;
|
|
28
|
+
getOrganisationSummary(): string | null;
|
|
29
|
+
getOrganisationVenuesCount(): number;
|
|
30
|
+
getScholarshipsCountForBachelors(): number;
|
|
31
|
+
getScholarshipsCountForMasters(): number;
|
|
32
|
+
getScholarshipsCountForPhd(): number;
|
|
33
|
+
isForProfitFunding(): boolean;
|
|
34
|
+
isNonProfitFunding(): boolean;
|
|
35
|
+
isPublicFunding(): boolean;
|
|
36
|
+
getCampaignType(): number;
|
|
37
|
+
getReviewRating(): IReviewRating | null;
|
|
38
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-organisation-card.js.map
|
|
1
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface IRankingDiscipline {
|
|
2
|
-
getDisciplineId(): number;
|
|
3
|
-
getPosition(): number | null;
|
|
4
|
-
}
|
|
1
|
+
export interface IRankingDiscipline {
|
|
2
|
+
getDisciplineId(): number;
|
|
3
|
+
getPosition(): number | null;
|
|
4
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-ranking-discipline.js.map
|
|
1
|
+
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export interface IReviewRatingDomain {
|
|
2
|
-
getAverage(): number;
|
|
3
|
-
getAverageStarRating(): number;
|
|
4
|
-
getQuantity(): number;
|
|
5
|
-
hasEnoughQuantity(): boolean;
|
|
6
|
-
}
|
|
1
|
+
export interface IReviewRatingDomain {
|
|
2
|
+
getAverage(): number;
|
|
3
|
+
getAverageStarRating(): number;
|
|
4
|
+
getQuantity(): number;
|
|
5
|
+
hasEnoughQuantity(): boolean;
|
|
6
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=i-review-rating-domain.js.map
|
|
1
|
+
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { IOrganisationCard } from "../../..";
|
|
2
|
-
import { ModelClient } from "../../model-client";
|
|
3
|
-
export declare class OrganisationCardClient extends ModelClient<IOrganisationCard> {
|
|
4
|
-
protected getModelName(): string;
|
|
5
|
-
protected getVersion(): string;
|
|
6
|
-
isPublic(): boolean;
|
|
7
|
-
}
|
|
1
|
+
import { IOrganisationCard } from "../../..";
|
|
2
|
+
import { ModelClient } from "../../model-client";
|
|
3
|
+
export declare class OrganisationCardClient extends ModelClient<IOrganisationCard> {
|
|
4
|
+
protected getModelName(): string;
|
|
5
|
+
protected getVersion(): string;
|
|
6
|
+
isPublic(): boolean;
|
|
7
|
+
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import { ModelClient } from "../../model-client";
|
|
2
|
-
export class OrganisationCardClient extends ModelClient {
|
|
3
|
-
getModelName() {
|
|
4
|
-
return 'organisation-card';
|
|
5
|
-
}
|
|
6
|
-
getVersion() {
|
|
7
|
-
return 'v1';
|
|
8
|
-
}
|
|
9
|
-
isPublic() {
|
|
10
|
-
return false;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=organisation-card-client.js.map
|
|
1
|
+
import { ModelClient } from "../../model-client";
|
|
2
|
+
export class OrganisationCardClient extends ModelClient {
|
|
3
|
+
getModelName() {
|
|
4
|
+
return 'organisation-card';
|
|
5
|
+
}
|
|
6
|
+
getVersion() {
|
|
7
|
+
return 'v1';
|
|
8
|
+
}
|
|
9
|
+
isPublic() {
|
|
10
|
+
return false;
|
|
11
|
+
}
|
|
12
|
+
}
|