Commit fec33715 authored by Thea Schöbl's avatar Thea Schöbl
Browse files

feat: add @filterable tags

parent 6dcca892
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ export interface SCAcademicTermWithoutReferences
   * Short name of the academic term, using the given pattern
   *
   * @aggregatable
   * @filterable
   * @keyword
   */
  acronym: string;
+1 −0
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ export interface SCCreativeWorkWithoutReferences
   * Keywords of the creative work
   *
   * @aggregatable
   * @filterable
   * @keyword
   */
  keywords?: string[];
+1 −0
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@ export interface SCThingWithCategoriesWithoutReferences<T, U extends SCThingWith
   *
   * @sortable ducet
   * @aggregatable
   * @filterable
   */
  categories: T[];

+1 −0
Original line number Diff line number Diff line
@@ -89,6 +89,7 @@ export interface SCThingWithoutReferences {
   * Type of the thing
   *
   * @sortable ducet
   * @filterable
   * @aggregatable
   */
  type: SCThingType;
+1 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ export interface SCAcademicEventWithoutReferences
   * Majors of the academic event that this event belongs to
   *
   * @aggregatable
   * @filterable
   * @keyword
   */
  majors?: string[];
Loading