@studyportals/domain-client 3.13.0 → 3.14.0-1

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.
Files changed (38) hide show
  1. package/index.d.ts +9 -7
  2. package/index.js +3 -1
  3. package/index.js.map +1 -1
  4. package/package.json +1 -1
  5. package/src/models/common/i-english-requirements.d.ts +14 -0
  6. package/src/models/common/i-g-p-a-requirement.js.map +1 -0
  7. package/src/models/compare-programme/compare-programme-client.d.ts +7 -0
  8. package/src/models/compare-programme/compare-programme-client.js +17 -0
  9. package/src/models/compare-programme/compare-programme-client.js.map +1 -0
  10. package/src/models/compare-programme/i-compare-programme.d.ts +108 -0
  11. package/src/models/{dotdigital-organisation/i-country.js → compare-programme/i-compare-programme.js} +1 -1
  12. package/src/models/compare-programme/i-compare-programme.js.map +1 -0
  13. package/src/models/bestfit-programme/i-english-requirements.d.ts +0 -37
  14. package/src/models/bestfit-programme/i-english-requirements.js +0 -3
  15. package/src/models/bestfit-programme/i-english-requirements.js.map +0 -1
  16. package/src/models/bestfit-programme/i-g-p-a-requirement.js.map +0 -1
  17. package/src/models/bestfit-programme/i-tuition-fee.d.ts +0 -50
  18. package/src/models/bestfit-programme/i-tuition-fee.js +0 -3
  19. package/src/models/bestfit-programme/i-tuition-fee.js.map +0 -1
  20. package/src/models/dotdigital-organisation/i-city.d.ts +0 -14
  21. package/src/models/dotdigital-organisation/i-city.js +0 -3
  22. package/src/models/dotdigital-organisation/i-city.js.map +0 -1
  23. package/src/models/dotdigital-organisation/i-country.d.ts +0 -14
  24. package/src/models/dotdigital-organisation/i-country.js.map +0 -1
  25. package/src/models/dotdigital-programme/i-country.d.ts +0 -14
  26. package/src/models/dotdigital-programme/i-country.js +0 -3
  27. package/src/models/dotdigital-programme/i-country.js.map +0 -1
  28. package/src/models/dotdigital-programme/i-english-requirements.d.ts +0 -37
  29. package/src/models/dotdigital-programme/i-english-requirements.js +0 -3
  30. package/src/models/dotdigital-programme/i-english-requirements.js.map +0 -1
  31. package/src/models/dotdigital-programme/i-logo.d.ts +0 -14
  32. package/src/models/dotdigital-programme/i-logo.js +0 -3
  33. package/src/models/dotdigital-programme/i-logo.js.map +0 -1
  34. package/src/models/dotdigital-programme/i-tuition-fee.d.ts +0 -50
  35. package/src/models/dotdigital-programme/i-tuition-fee.js +0 -3
  36. package/src/models/dotdigital-programme/i-tuition-fee.js.map +0 -1
  37. /package/src/models/{bestfit-programme → common}/i-g-p-a-requirement.d.ts +0 -0
  38. /package/src/models/{bestfit-programme → common}/i-g-p-a-requirement.js +0 -0
package/index.d.ts CHANGED
@@ -24,12 +24,12 @@ import { IGeoTargetingValues } from "./src/models/search-projection/i-geo-target
24
24
  import { ISearchProjection } from "./src/models/search-projection/i-search-projection";
25
25
  import { SearchProjectionClient } from "./src/models/search-projection/search-projection-client";
26
26
  import { ILivingCost } from "./src/models/bestfit-programme/i-living-cost";
27
- import { IGPARequirement } from "./src/models/bestfit-programme/i-g-p-a-requirement";
27
+ import { IGPARequirement } from "./src/models/common/i-g-p-a-requirement";
28
28
  import { IBestFitProgramme } from "./src/models/bestfit-programme/i-best-fit-programme";
29
29
  import { BestfitProgrammeClient } from "./src/models/bestfit-programme/bestfit-programme-client";
30
- import { ILogo } from "./src/models/dotdigital-programme/i-logo";
31
- import { ITuitionFee } from "./src/models/dotdigital-programme/i-tuition-fee";
32
- import { IEnglishRequirements } from "./src/models/dotdigital-programme/i-english-requirements";
30
+ import { ILogo } from "./src/models/common/i-logo";
31
+ import { ITuitionFee } from "./src/models/common/i-tuition-fee";
32
+ import { IEnglishRequirements } from "./src/models/common/i-english-requirements";
33
33
  import { IInternalLink } from "./src/models/dotdigital-programme/i-internal-link";
34
34
  import { IDotDigitalProgramme } from "./src/models/dotdigital-programme/i-dot-digital-programme";
35
35
  import { DotdigitalProgrammeClient } from "./src/models/dotdigital-programme/dotdigital-programme-client";
@@ -46,8 +46,8 @@ import { ISearchDiscipline } from "./src/models/search-discipline/i-search-disci
46
46
  import { PublicSearchDisciplineClient } from "./src/models/search-discipline/public-search-discipline-client";
47
47
  import { ISitemapDisciplineInfo } from "./src/models/sitemap-disciplines-info/i-sitemap-discipline-info";
48
48
  import { SitemapDisciplinesInfoClient } from "./src/models/sitemap-disciplines-info/sitemap-disciplines-info-client";
49
- import { ICountry } from "./src/models/dotdigital-organisation/i-country";
50
- import { ICity } from "./src/models/dotdigital-organisation/i-city";
49
+ import { ICountry } from "./src/models/common/i-country";
50
+ import { ICity } from "./src/models/common/i-city";
51
51
  import { IReview } from "./src/models/dotdigital-organisation/i-review";
52
52
  import { IDotDigitalOrganisation } from "./src/models/dotdigital-organisation/i-dot-digital-organisation";
53
53
  import { DotdigitalOrganisationClient } from "./src/models/dotdigital-organisation/dotdigital-organisation-client";
@@ -62,4 +62,6 @@ import { SitemapCitiesInfoClient } from "./src/models/sitemap-cities-info/sitema
62
62
  import { PortalType } from "./src/types/portal-type";
63
63
  import { PortalMap } from "./src/types/portal-map";
64
64
  import { ModelClient } from "./src/model-client";
65
- export { BadRequestException, ClientException, InternalServerException, NotFoundException, PropertyNotAvailableException, ICover, ILink, IOptionalLink, ILocation, IClickTrackingData, ITracking, IDuration, IDeadline, IStartDate, ITiming, ITrackedLink, IProgrammeCard, ProgrammeCardClient, ITuitionValues, IPremiumValues, IOrganisationValues, IGeoTargetingConfiguration, IGeoTargetingValues, ISearchProjection, SearchProjectionClient, ILivingCost, IGPARequirement, IBestFitProgramme, BestfitProgrammeClient, ILogo, ITuitionFee, IEnglishRequirements, IInternalLink, IDotDigitalProgramme, DotdigitalProgrammeClient, ISitemapProgrammeInfo, SitemapProgrammeInfoClient, ISearchCountryFaq, PublicSearchCountryFaqClient, ISitemapCountryInfo, SitemapCountriesInfoClient, IDegreeInfo, ISitemapCountryDegreeInfo, SitemapCountryDegreeInfoClient, ISearchDiscipline, PublicSearchDisciplineClient, ISitemapDisciplineInfo, SitemapDisciplinesInfoClient, ICountry, ICity, IReview, IDotDigitalOrganisation, DotdigitalOrganisationClient, ISitemapOrganisationInfo, SitemapOrganisationsInfoClient, ISitemapRankingsInfo, SitemapRankingsInfoClient, ISitemapArticleInfo, SitemapArticlesInfoClient, ISitemapCityInfo, SitemapCitiesInfoClient, PortalType, PortalMap, ModelClient };
65
+ import { ICompareProgramme } from "./src/models/compare-programme/i-compare-programme";
66
+ import { CompareProgrammeClient } from "./src/models/compare-programme/compare-programme-client";
67
+ export { BadRequestException, ClientException, InternalServerException, NotFoundException, PropertyNotAvailableException, ICover, ILink, IOptionalLink, ILocation, IClickTrackingData, ITracking, IDuration, IDeadline, IStartDate, ITiming, ITrackedLink, IProgrammeCard, ProgrammeCardClient, ITuitionValues, IPremiumValues, IOrganisationValues, IGeoTargetingConfiguration, IGeoTargetingValues, ISearchProjection, SearchProjectionClient, ILivingCost, IGPARequirement, IBestFitProgramme, BestfitProgrammeClient, ILogo, ITuitionFee, IEnglishRequirements, IInternalLink, IDotDigitalProgramme, DotdigitalProgrammeClient, ISitemapProgrammeInfo, SitemapProgrammeInfoClient, ISearchCountryFaq, PublicSearchCountryFaqClient, ISitemapCountryInfo, SitemapCountriesInfoClient, IDegreeInfo, ISitemapCountryDegreeInfo, SitemapCountryDegreeInfoClient, ISearchDiscipline, PublicSearchDisciplineClient, ISitemapDisciplineInfo, SitemapDisciplinesInfoClient, ICountry, ICity, IReview, IDotDigitalOrganisation, DotdigitalOrganisationClient, ISitemapOrganisationInfo, SitemapOrganisationsInfoClient, ISitemapRankingsInfo, SitemapRankingsInfoClient, ISitemapArticleInfo, SitemapArticlesInfoClient, ISitemapCityInfo, SitemapCitiesInfoClient, ICompareProgramme, CompareProgrammeClient, PortalType, PortalMap, ModelClient };
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ModelClient = exports.PortalType = exports.SitemapCitiesInfoClient = exports.SitemapArticlesInfoClient = exports.SitemapRankingsInfoClient = exports.SitemapOrganisationsInfoClient = exports.DotdigitalOrganisationClient = exports.SitemapDisciplinesInfoClient = exports.PublicSearchDisciplineClient = exports.SitemapCountryDegreeInfoClient = exports.SitemapCountriesInfoClient = exports.PublicSearchCountryFaqClient = exports.SitemapProgrammeInfoClient = exports.DotdigitalProgrammeClient = exports.BestfitProgrammeClient = exports.SearchProjectionClient = exports.ProgrammeCardClient = exports.PropertyNotAvailableException = exports.NotFoundException = exports.InternalServerException = exports.ClientException = exports.BadRequestException = void 0;
3
+ exports.ModelClient = exports.PortalType = exports.CompareProgrammeClient = exports.SitemapCitiesInfoClient = exports.SitemapArticlesInfoClient = exports.SitemapRankingsInfoClient = exports.SitemapOrganisationsInfoClient = exports.DotdigitalOrganisationClient = exports.SitemapDisciplinesInfoClient = exports.PublicSearchDisciplineClient = exports.SitemapCountryDegreeInfoClient = exports.SitemapCountriesInfoClient = exports.PublicSearchCountryFaqClient = exports.SitemapProgrammeInfoClient = exports.DotdigitalProgrammeClient = exports.BestfitProgrammeClient = exports.SearchProjectionClient = exports.ProgrammeCardClient = exports.PropertyNotAvailableException = exports.NotFoundException = exports.InternalServerException = exports.ClientException = exports.BadRequestException = void 0;
4
4
  const bad_request_exception_1 = require("./src/exceptions/bad-request-exception");
5
5
  Object.defineProperty(exports, "BadRequestException", { enumerable: true, get: function () { return bad_request_exception_1.BadRequestException; } });
6
6
  const client_exception_1 = require("./src/exceptions/client-exception");
@@ -45,4 +45,6 @@ const portal_type_1 = require("./src/types/portal-type");
45
45
  Object.defineProperty(exports, "PortalType", { enumerable: true, get: function () { return portal_type_1.PortalType; } });
46
46
  const model_client_1 = require("./src/model-client");
47
47
  Object.defineProperty(exports, "ModelClient", { enumerable: true, get: function () { return model_client_1.ModelClient; } });
48
+ const compare_programme_client_1 = require("./src/models/compare-programme/compare-programme-client");
49
+ Object.defineProperty(exports, "CompareProgrammeClient", { enumerable: true, get: function () { return compare_programme_client_1.CompareProgrammeClient; } });
48
50
  //# sourceMappingURL=index.js.map
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;AAAA,kFAA4E;AAkE3E,oGAlEQ,2CAAmB,OAkER;AAjEpB,wEAAmE;AAkElE,gGAlEQ,kCAAe,OAkER;AAjEhB,0FAAoF;AAkEnF,wGAlEQ,mDAAuB,OAkER;AAjExB,8EAAwE;AAkEvE,kGAlEQ,uCAAiB,OAkER;AAjElB,wGAAiG;AAkEhG,8GAlEQ,gEAA6B,OAkER;AArD9B,6FAAwF;AAkEvF,oGAlEQ,2CAAmB,OAkER;AA3DpB,sGAAiG;AAkEhG,uGAlEQ,iDAAsB,OAkER;AA9DvB,sGAAiG;AAkEhG,uGAlEQ,iDAAsB,OAkER;AA5DvB,+GAA0G;AAkEzG,0GAlEQ,uDAAyB,OAkER;AAhE1B,qHAA+G;AAkE9G,2GAlEQ,0DAA0B,OAkER;AAhE3B,uHAAgH;AAkE/G,6GAlEQ,+DAA4B,OAkER;AAhE7B,qHAA+G;AAkE9G,2GAlEQ,0DAA0B,OAkER;AA/D3B,oIAA6H;AAkE5H,+GAlEQ,mEAA8B,OAkER;AAhE/B,oHAA8G;AAkE7G,6GAlEQ,8DAA4B,OAkER;AAhE7B,2HAAqH;AAkEpH,6GAlEQ,8DAA4B,OAkER;AA7D7B,wHAAmH;AAkElH,6GAlEQ,6DAA4B,OAkER;AAhE7B,iIAA2H;AAkE1H,+GAlEQ,kEAA8B,OAkER;AAhE/B,kHAA4G;AAkE3G,0GAlEQ,wDAAyB,OAkER;AAhE1B,kHAA4G;AAkE3G,0GAlEQ,wDAAyB,OAkER;AAhE1B,4GAAsG;AAkErG,wGAlEQ,oDAAuB,OAkER;AAjExB,yDAAqD;AAkEpD,2FAlEQ,wBAAU,OAkER;AAhEX,qDAAiD;AAkEhD,4FAlEQ,0BAAW,OAkER"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;AAAA,kFAA4E;AAoE3E,oGApEQ,2CAAmB,OAoER;AAnEpB,wEAAmE;AAoElE,gGApEQ,kCAAe,OAoER;AAnEhB,0FAAoF;AAoEnF,wGApEQ,mDAAuB,OAoER;AAnExB,8EAAwE;AAoEvE,kGApEQ,uCAAiB,OAoER;AAnElB,wGAAiG;AAoEhG,8GApEQ,gEAA6B,OAoER;AAvD9B,6FAAwF;AAoEvF,oGApEQ,2CAAmB,OAoER;AA7DpB,sGAAiG;AAoEhG,uGApEQ,iDAAsB,OAoER;AAhEvB,sGAAiG;AAoEhG,uGApEQ,iDAAsB,OAoER;AA9DvB,+GAA0G;AAoEzG,0GApEQ,uDAAyB,OAoER;AAlE1B,qHAA+G;AAoE9G,2GApEQ,0DAA0B,OAoER;AAlE3B,uHAAgH;AAoE/G,6GApEQ,+DAA4B,OAoER;AAlE7B,qHAA+G;AAoE9G,2GApEQ,0DAA0B,OAoER;AAjE3B,oIAA6H;AAoE5H,+GApEQ,mEAA8B,OAoER;AAlE/B,oHAA8G;AAoE7G,6GApEQ,8DAA4B,OAoER;AAlE7B,2HAAqH;AAoEpH,6GApEQ,8DAA4B,OAoER;AA/D7B,wHAAmH;AAoElH,6GApEQ,6DAA4B,OAoER;AAlE7B,iIAA2H;AAoE1H,+GApEQ,kEAA8B,OAoER;AAlE/B,kHAA4G;AAoE3G,0GApEQ,wDAAyB,OAoER;AAlE1B,kHAA4G;AAoE3G,0GApEQ,wDAAyB,OAoER;AAlE1B,4GAAsG;AAoErG,wGApEQ,oDAAuB,OAoER;AAnExB,yDAAqD;AAsEpD,2FAtEQ,wBAAU,OAsER;AApEX,qDAAiD;AAsEhD,4FAtEQ,0BAAW,OAsER;AApEZ,sGAAgG;AAiE/F,uGAjEQ,iDAAsB,OAiER"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studyportals/domain-client",
3
- "version": "3.13.0",
3
+ "version": "3.14.0-1",
4
4
  "description": "Responsible for fetching data from the Domain API",
5
5
  "main": "bin/index.js",
6
6
  "author": "StudyPortals B.V.",
@@ -1,4 +1,18 @@
1
1
  export interface IEnglishRequirements {
2
+ /**
3
+ * Required score for Cambridge english
4
+ *
5
+ * @return number
6
+ */
7
+ getCambridgeEnglish(): number;
8
+ canShowCambridgeEnglish(): boolean;
9
+ /**
10
+ * Required score for Duolingo
11
+ *
12
+ * @return number
13
+ */
14
+ getDuolingo(): number;
15
+ canShowDuolingo(): boolean;
2
16
  /**
3
17
  * Required score for IELTS tests
4
18
  *
@@ -0,0 +1 @@
1
+ {"version":3,"file":"i-g-p-a-requirement.js","sourceRoot":"","sources":["../../../../src/models/common/i-g-p-a-requirement.ts"],"names":[],"mappings":""}
@@ -0,0 +1,7 @@
1
+ import { ICompareProgramme } from "../../..";
2
+ import { ModelClient } from "../../model-client";
3
+ export declare class CompareProgrammeClient extends ModelClient<ICompareProgramme> {
4
+ protected getModelName(): string;
5
+ protected getVersion(): string;
6
+ isPublic(): boolean;
7
+ }
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CompareProgrammeClient = void 0;
4
+ const model_client_1 = require("../../model-client");
5
+ class CompareProgrammeClient extends model_client_1.ModelClient {
6
+ getModelName() {
7
+ return 'compare-programme';
8
+ }
9
+ getVersion() {
10
+ return 'v1';
11
+ }
12
+ isPublic() {
13
+ return false;
14
+ }
15
+ }
16
+ exports.CompareProgrammeClient = CompareProgrammeClient;
17
+ //# sourceMappingURL=compare-programme-client.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compare-programme-client.js","sourceRoot":"","sources":["../../../../src/models/compare-programme/compare-programme-client.ts"],"names":[],"mappings":";;;AACA,qDAAiD;AAEjD,MAAa,sBAAuB,SAAQ,0BAA8B;IAC/D,YAAY;QACrB,OAAO,mBAAmB,CAAC;IAC5B,CAAC;IAES,UAAU;QACnB,OAAO,IAAI,CAAC;IACb,CAAC;IAEM,QAAQ;QACd,OAAO,KAAK,CAAC;IACd,CAAC;CACD;AAZD,wDAYC"}
@@ -0,0 +1,108 @@
1
+ import { IDuration, IEnglishRequirements, IGPARequirement, IInternalLink, ILink, ILivingCost, ILocation, ITiming, ITuitionFee } from "../../..";
2
+ export interface ICompareProgramme {
3
+ /**
4
+ * Degree of programme
5
+ *
6
+ * @return string
7
+ */
8
+ getDegree(): string;
9
+ /**
10
+ * Duration of the programme
11
+ *
12
+ * @return IDuration | null
13
+ */
14
+ getDuration(): IDuration | null;
15
+ /**
16
+ * English level requirements.
17
+ *
18
+ * @return IEnglishRequirements
19
+ */
20
+ getEnglishRequirements(): IEnglishRequirements;
21
+ /**
22
+ * GPA requirements
23
+ *
24
+ * @return IGPARequirement | null
25
+ */
26
+ getGPA(): IGPARequirement | null;
27
+ /**
28
+ * Id of the programme.
29
+ *
30
+ * @return number
31
+ */
32
+ getId(): number;
33
+ /**
34
+ * Estimated living cost based on universities' location.
35
+ *
36
+ * @return ILivingCost | null
37
+ */
38
+ getLivingCost(): ILivingCost | null;
39
+ /**
40
+ * Indicates where a programme is taught
41
+ *
42
+ * @return ILocation | null
43
+ */
44
+ getLocation(): ILocation | null;
45
+ /**
46
+ * Get a link to the programme page.
47
+ *
48
+ * The link contains the page path as url and the programme name as the
49
+ * link description.
50
+ *
51
+ * @return IInternalLink
52
+ */
53
+ getProgrammeLink(): IInternalLink;
54
+ /**
55
+ * The universities review quantity
56
+ *
57
+ * @return number | null
58
+ */
59
+ getReviewQuantity(): number | null;
60
+ /**
61
+ * The universities review rating
62
+ *
63
+ * @return number | null
64
+ */
65
+ getReviewRating(): number | null;
66
+ /**
67
+ * Get all start dates
68
+ *
69
+ * @return ITiming[]
70
+ */
71
+ getTimings(): ITiming[];
72
+ /**
73
+ * Title of the programme.
74
+ *
75
+ * @return string
76
+ */
77
+ getTitle(): string;
78
+ /**
79
+ * The programmes tuition fees
80
+ *
81
+ * @return ITuitionFee[]
82
+ */
83
+ getTuitionFees(): ITuitionFee[];
84
+ /**
85
+ * Returns a link to the university
86
+ *
87
+ * @return ILink
88
+ */
89
+ getUniversityLink(): ILink;
90
+ /**
91
+ * Amount of years required as work experience
92
+ *
93
+ * @return number | null
94
+ */
95
+ getWorkExperienceYears(): number | null;
96
+ /**
97
+ * Indicates whenever a programme is fully online or not
98
+ *
99
+ * @return boolean
100
+ */
101
+ isFullyOnline(): boolean;
102
+ /**
103
+ * Is programme public
104
+ *
105
+ * @return boolean
106
+ */
107
+ isPublic(): boolean;
108
+ }
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=i-country.js.map
3
+ //# sourceMappingURL=i-compare-programme.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"i-compare-programme.js","sourceRoot":"","sources":["../../../../src/models/compare-programme/i-compare-programme.ts"],"names":[],"mappings":""}
@@ -1,37 +0,0 @@
1
- export interface IEnglishRequirements {
2
- /**
3
- * Required score for Duolingo
4
- *
5
- * @return number
6
- */
7
- getDuolingo(): number;
8
- canShowDuolingo(): boolean;
9
- /**
10
- * Required score for IELTS tests
11
- *
12
- * @return number
13
- */
14
- getIELTS(): number;
15
- canShowIELTS(): boolean;
16
- /**
17
- * Required score for PTE
18
- *
19
- * @return number
20
- */
21
- getPTE(): number;
22
- canShowPTE(): boolean;
23
- /**
24
- * Required score for TOEFL internet
25
- *
26
- * @return number
27
- */
28
- getTOEFLInternet(): number;
29
- canShowTOEFLInternet(): boolean;
30
- /**
31
- * Required score for TOEFL paper
32
- *
33
- * @return number
34
- */
35
- getTOEFLPaper(): number;
36
- canShowTOEFLPaper(): boolean;
37
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=i-english-requirements.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"i-english-requirements.js","sourceRoot":"","sources":["../../../../src/models/bestfit-programme/i-english-requirements.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- {"version":3,"file":"i-g-p-a-requirement.js","sourceRoot":"","sources":["../../../../src/models/bestfit-programme/i-g-p-a-requirement.ts"],"names":[],"mappings":""}
@@ -1,50 +0,0 @@
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,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=i-tuition-fee.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"i-tuition-fee.js","sourceRoot":"","sources":["../../../../src/models/bestfit-programme/i-tuition-fee.ts"],"names":[],"mappings":""}
@@ -1,14 +0,0 @@
1
- export interface ICity {
2
- /**
3
- * Get city id
4
- *
5
- * @return number
6
- */
7
- getId(): number;
8
- /**
9
- * Get city name
10
- *
11
- * @return string
12
- */
13
- getName(): string;
14
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=i-city.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"i-city.js","sourceRoot":"","sources":["../../../../src/models/dotdigital-organisation/i-city.ts"],"names":[],"mappings":""}
@@ -1,14 +0,0 @@
1
- export interface ICountry {
2
- /**
3
- * Get country id
4
- *
5
- * @return number
6
- */
7
- getId(): number;
8
- /**
9
- * Get country name
10
- *
11
- * @return string
12
- */
13
- getName(): string;
14
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"i-country.js","sourceRoot":"","sources":["../../../../src/models/dotdigital-organisation/i-country.ts"],"names":[],"mappings":""}
@@ -1,14 +0,0 @@
1
- export interface ICountry {
2
- /**
3
- * Get country id
4
- *
5
- * @return number
6
- */
7
- getId(): number;
8
- /**
9
- * Get country name
10
- *
11
- * @return string
12
- */
13
- getName(): string;
14
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=i-country.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"i-country.js","sourceRoot":"","sources":["../../../../src/models/dotdigital-programme/i-country.ts"],"names":[],"mappings":""}
@@ -1,37 +0,0 @@
1
- export interface IEnglishRequirements {
2
- /**
3
- * Required score for Duolingo
4
- *
5
- * @return number
6
- */
7
- getDuolingo(): number;
8
- canShowDuolingo(): boolean;
9
- /**
10
- * Required score for IELTS tests
11
- *
12
- * @return number
13
- */
14
- getIELTS(): number;
15
- canShowIELTS(): boolean;
16
- /**
17
- * Required score for PTE
18
- *
19
- * @return number
20
- */
21
- getPTE(): number;
22
- canShowPTE(): boolean;
23
- /**
24
- * Required score for TOEFL internet
25
- *
26
- * @return number
27
- */
28
- getTOEFLInternet(): number;
29
- canShowTOEFLInternet(): boolean;
30
- /**
31
- * Required score for TOEFL paper
32
- *
33
- * @return number
34
- */
35
- getTOEFLPaper(): number;
36
- canShowTOEFLPaper(): boolean;
37
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=i-english-requirements.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"i-english-requirements.js","sourceRoot":"","sources":["../../../../src/models/dotdigital-programme/i-english-requirements.ts"],"names":[],"mappings":""}
@@ -1,14 +0,0 @@
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,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=i-logo.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"i-logo.js","sourceRoot":"","sources":["../../../../src/models/dotdigital-programme/i-logo.ts"],"names":[],"mappings":""}
@@ -1,50 +0,0 @@
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,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=i-tuition-fee.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"i-tuition-fee.js","sourceRoot":"","sources":["../../../../src/models/dotdigital-programme/i-tuition-fee.ts"],"names":[],"mappings":""}