@studyportals/domain-client 3.13.0-0 → 3.13.0-2
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 +5 -1
- package/index.js +5 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/src/models/sitemap-country-degree-info/i-degree-info.d.ts +14 -0
- package/src/models/sitemap-country-degree-info/i-degree-info.js +3 -0
- package/src/models/sitemap-country-degree-info/i-degree-info.js.map +1 -0
- package/src/models/sitemap-country-degree-info/i-sitemap-country-degree-info.d.ts +3 -2
package/index.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ import { ISearchCountryFaq } from "./src/models/search-country-faq/i-search-coun
|
|
|
41
41
|
import { PublicSearchCountryFaqClient } from "./src/models/search-country-faq/public-search-country-faq-client";
|
|
42
42
|
import { ISitemapCountryInfo } from "./src/models/sitemap-countries-info/i-sitemap-country-info";
|
|
43
43
|
import { SitemapCountriesInfoClient } from "./src/models/sitemap-countries-info/sitemap-countries-info-client";
|
|
44
|
+
import { IDegreeInfo } from "./src/models/sitemap-country-degree-info/i-degree-info";
|
|
44
45
|
import { ISitemapCountryDegreeInfo } from "./src/models/sitemap-country-degree-info/i-sitemap-country-degree-info";
|
|
45
46
|
import { SitemapCountryDegreeInfoClient } from "./src/models/sitemap-country-degree-info/sitemap-country-degree-info-client";
|
|
46
47
|
import { ISearchDiscipline } from "./src/models/search-discipline/i-search-discipline";
|
|
@@ -58,4 +59,7 @@ import { ISitemapArticleInfo } from "./src/models/sitemap-articles-info/i-sitema
|
|
|
58
59
|
import { SitemapArticlesInfoClient } from "./src/models/sitemap-articles-info/sitemap-articles-info-client";
|
|
59
60
|
import { ISitemapCityInfo } from "./src/models/sitemap-cities-info/i-sitemap-city-info";
|
|
60
61
|
import { SitemapCitiesInfoClient } from "./src/models/sitemap-cities-info/sitemap-cities-info-client";
|
|
61
|
-
|
|
62
|
+
import { PortalType } from "./src/types/portal-type";
|
|
63
|
+
import { PortalMap } from "./src/types/portal-map";
|
|
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 };
|
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
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.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");
|
|
@@ -41,4 +41,8 @@ const sitemap_articles_info_client_1 = require("./src/models/sitemap-articles-in
|
|
|
41
41
|
Object.defineProperty(exports, "SitemapArticlesInfoClient", { enumerable: true, get: function () { return sitemap_articles_info_client_1.SitemapArticlesInfoClient; } });
|
|
42
42
|
const sitemap_cities_info_client_1 = require("./src/models/sitemap-cities-info/sitemap-cities-info-client");
|
|
43
43
|
Object.defineProperty(exports, "SitemapCitiesInfoClient", { enumerable: true, get: function () { return sitemap_cities_info_client_1.SitemapCitiesInfoClient; } });
|
|
44
|
+
const portal_type_1 = require("./src/types/portal-type");
|
|
45
|
+
Object.defineProperty(exports, "PortalType", { enumerable: true, get: function () { return portal_type_1.PortalType; } });
|
|
46
|
+
const model_client_1 = require("./src/model-client");
|
|
47
|
+
Object.defineProperty(exports, "ModelClient", { enumerable: true, get: function () { return model_client_1.ModelClient; } });
|
|
44
48
|
//# 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;
|
|
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;AAlD9B,6FAAwF;AA+DvF,oGA/DQ,2CAAmB,OA+DR;AAxDpB,sGAAiG;AA+DhG,uGA/DQ,iDAAsB,OA+DR;AAzDvB,sGAAiG;AA6DhG,uGA7DQ,iDAAsB,OA6DR;AA1DvB,+GAA0G;AAgEzG,0GAhEQ,uDAAyB,OAgER;AA9D1B,qHAA+G;AAgE9G,2GAhEQ,0DAA0B,OAgER;AA9D3B,uHAAgH;AAgE/G,6GAhEQ,+DAA4B,OAgER;AA9D7B,qHAA+G;AAgE9G,2GAhEQ,0DAA0B,OAgER;AA7D3B,oIAA6H;AAgE5H,+GAhEQ,mEAA8B,OAgER;AA9D/B,oHAA8G;AAgE7G,6GAhEQ,8DAA4B,OAgER;AA9D7B,2HAAqH;AAgEpH,6GAhEQ,8DAA4B,OAgER;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"}
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"i-degree-info.js","sourceRoot":"","sources":["../../../../src/models/sitemap-country-degree-info/i-degree-info.ts"],"names":[],"mappings":""}
|