Compare commits

...

6 Commits

Author SHA1 Message Date
Wieland Schöbl
44e61bf336 0.28.0 2019-09-10 14:10:20 +02:00
Wieland Schöbl
fba63db137 feat: add onlyOnType field for SCFacet 2019-09-10 07:42:11 +00:00
Wieland Schöbl
8a5251c2e6 docs: update changelog 2019-09-03 12:57:42 +02:00
Wieland Schöbl
bde71c7e3a 0.27.0 2019-09-03 12:57:41 +02:00
Wieland Schöbl
fec33715ad feat: add @filterable tags 2019-08-21 10:34:04 +02:00
Karl-Philipp Wulfert
6dcca89257 docs: update changelog 2019-08-19 12:10:22 +02:00
11 changed files with 38 additions and 2 deletions

View File

@@ -1,3 +1,26 @@
# [0.27.0](https://gitlab.com/openstapps/core/compare/v0.26.0...v0.27.0) (2019-09-03)
### Features
* add [@filterable](https://gitlab.com/filterable) tags ([fec3371](https://gitlab.com/openstapps/core/commit/fec3371))
# [0.26.0](https://gitlab.com/openstapps/core/compare/v0.25.0...v0.26.0) (2019-08-19)
### Bug Fixes
* complete german translations ([bad15dc](https://gitlab.com/openstapps/core/commit/bad15dc))
### Features
* add pluginRequestTimeout field to backend config ([88f579e](https://gitlab.com/openstapps/core/commit/88f579e))
# [0.25.0](https://gitlab.com/openstapps/core/compare/v0.24.0...v0.25.0) (2019-07-25)

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "@openstapps/core",
"version": "0.26.0",
"version": "0.28.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "@openstapps/core",
"version": "0.26.0",
"version": "0.28.0",
"description": "StAppsCore - Generalized model of data",
"keywords": [
"Model",

View File

@@ -13,6 +13,7 @@
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
import {SCThingsField} from '../../meta';
import {SCThingType} from '../../things/abstract/thing';
/**
* A search facet
@@ -27,6 +28,11 @@ export interface SCFacet {
* Field of the aggregation
*/
field: SCThingsField;
/**
* Type of the aggregation
*/
onlyOnType?: SCThingType;
}
/**

View File

@@ -25,6 +25,7 @@ export interface SCAcademicTermWithoutReferences
* Short name of the academic term, using the given pattern
*
* @aggregatable
* @filterable
* @keyword
*/
acronym: string;

View File

@@ -44,6 +44,7 @@ export interface SCCreativeWorkWithoutReferences
* Keywords of the creative work
*
* @aggregatable
* @filterable
* @keyword
*/
keywords?: string[];

View File

@@ -29,6 +29,7 @@ export interface SCThingWithCategoriesWithoutReferences<T, U extends SCThingWith
*
* @sortable ducet
* @aggregatable
* @filterable
*/
categories: T[];

View File

@@ -89,6 +89,7 @@ export interface SCThingWithoutReferences {
* Type of the thing
*
* @sortable ducet
* @filterable
* @aggregatable
*/
type: SCThingType;

View File

@@ -33,6 +33,7 @@ export interface SCAcademicEventWithoutReferences
* Majors of the academic event that this event belongs to
*
* @aggregatable
* @filterable
* @keyword
*/
majors?: string[];

View File

@@ -46,6 +46,7 @@ export interface SCBuildingWithoutReferences
*
* @sortable ducet
* @aggregatable
* @filterable
*/
categories: SCBuildingCategories[];

View File

@@ -47,6 +47,7 @@ export interface SCDishWithoutReferences
*
* @sortable ducet
* @aggregatable
* @filterable
*/
categories: SCDishCategories[];