@studyportals/insight-composer-api-interface 1.2.0-beta.0 → 1.3.0-st6.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studyportals/insight-composer-api-interface",
3
- "version": "1.2.0-beta.0",
3
+ "version": "1.3.0-st6.0",
4
4
  "description": "Typescript library containing resources that facilitate integration with Insight Composer API",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@studyportals/mb-platform-http-requests": "^2.8.0",
24
- "@studyportals/search-api-interface": "4.2.0-beta.0",
24
+ "@studyportals/search-api-interface": "^4.2.0",
25
25
  "@studyportals/search-filters": "^6.3.1"
26
26
  }
27
27
  }
@@ -0,0 +1,15 @@
1
+ import { DegreeTypeEnum, DeliveryMethodEnum } from "@studyportals/search-api-interface";
2
+ export interface IOrganisationsInsightsInput {
3
+ readonly organisationIds: string[] | undefined;
4
+ readonly organisationText: string | undefined;
5
+ readonly degree: DegreeTypeEnum | undefined;
6
+ readonly disciplines: string[] | undefined;
7
+ readonly deliveryMethods: DeliveryMethodEnum[] | undefined;
8
+ readonly countryIsoCodes: string[] | undefined;
9
+ readonly countryIsoCodesOfMainLocations: string[] | undefined;
10
+ readonly regionIds: string[] | undefined;
11
+ readonly areaIds: string[] | undefined;
12
+ readonly cityIds: string[] | undefined;
13
+ readonly virtualPath: string | undefined;
14
+ readonly cityIdsOfMainLocation: string[] | undefined;
15
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=organisations-insights-input.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"organisations-insights-input.interface.js","sourceRoot":"","sources":["../../../src/organisations/organisations-insights-input.interface.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export interface IOrganisationsInsights {
2
+ percentageUniversitiesByDiscipline?: number;
3
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=organisations-insights.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"organisations-insights.interface.js","sourceRoot":"","sources":["../../../src/organisations/organisations-insights.interface.ts"],"names":[],"mappings":""}