@studyportals/search-api-interface 1.2.2-22 → 1.2.2-23
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
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HitsTotalRelation = void 0;
|
|
4
|
+
var HitsTotalRelation;
|
|
5
|
+
(function (HitsTotalRelation) {
|
|
6
|
+
HitsTotalRelation["EXACTLY"] = "exactly";
|
|
7
|
+
HitsTotalRelation["MORE_THAN"] = "more than";
|
|
8
|
+
})(HitsTotalRelation || (exports.HitsTotalRelation = HitsTotalRelation = {}));
|
|
9
|
+
//# sourceMappingURL=HitsTotalRelation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HitsTotalRelation.js","sourceRoot":"","sources":["../../src/HitsTotalRelation.ts"],"names":[],"mappings":";;;AAAA,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IAC5B,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;AACtB,CAAC,EAHW,iBAAiB,iCAAjB,iBAAiB,QAG5B"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { HitsTotalRelation } from "../HitsTotalRelation";
|
|
1
2
|
export interface IOrganisationSearchResponse<T> {
|
|
2
3
|
readonly organisations: readonly T[];
|
|
3
4
|
readonly hitsTotal: number;
|
|
4
|
-
readonly hitsTotalRelation:
|
|
5
|
+
readonly hitsTotalRelation: HitsTotalRelation;
|
|
5
6
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { HitsTotalRelation } from "../HitsTotalRelation";
|
|
1
2
|
export interface IProgrammeSearchResponse<T> {
|
|
2
3
|
readonly programmes: readonly T[];
|
|
3
4
|
readonly hitsTotal: number;
|
|
4
|
-
readonly hitsTotalRelation:
|
|
5
|
+
readonly hitsTotalRelation: HitsTotalRelation;
|
|
5
6
|
}
|