mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-03-11 17:23:41 +00:00
feat: improve monorepo dev experience
This commit is contained in:
@@ -31,16 +31,13 @@ export interface SCAcademicEventWithoutReferences
|
||||
SCThingWithCategoriesWithoutReferences<SCAcademicEventCategories, SCThingWithCategoriesSpecificValues> {
|
||||
/**
|
||||
* Majors of the academic event that this event belongs to
|
||||
* @aggregatable
|
||||
* @filterable
|
||||
* @keyword
|
||||
* @elasticsearch filterable aggregatable
|
||||
*/
|
||||
majors?: string[];
|
||||
|
||||
/**
|
||||
* Original unmapped category from the source of the academic event
|
||||
* @filterable
|
||||
* @keyword
|
||||
* @elasticsearch filterable
|
||||
*/
|
||||
originalCategory?: string;
|
||||
|
||||
@@ -50,7 +47,8 @@ export interface SCAcademicEventWithoutReferences
|
||||
translations?: SCTranslations<SCAcademicEventTranslatableProperties>;
|
||||
|
||||
/**
|
||||
* Type of an academic event
|
||||
* Type discriminator
|
||||
* @elasticsearch type
|
||||
*/
|
||||
type: SCThingType.AcademicEvent;
|
||||
}
|
||||
@@ -58,7 +56,7 @@ export interface SCAcademicEventWithoutReferences
|
||||
/**
|
||||
* An academic event
|
||||
* @validatable
|
||||
* @indexable
|
||||
* @elasticsearch indexable
|
||||
*/
|
||||
export interface SCAcademicEvent
|
||||
extends SCEvent,
|
||||
@@ -70,7 +68,8 @@ export interface SCAcademicEvent
|
||||
translations?: SCTranslations<SCAcademicEventTranslatableProperties>;
|
||||
|
||||
/**
|
||||
* Type of an academic event
|
||||
* Type discriminator
|
||||
* @elasticsearch type
|
||||
*/
|
||||
type: SCThingType.AcademicEvent;
|
||||
}
|
||||
@@ -101,13 +100,11 @@ export type SCAcademicEventCategories =
|
||||
export interface SCAcademicEventTranslatableProperties extends SCThingWithCategoriesTranslatableProperties {
|
||||
/**
|
||||
* Translations of the majors of the academic event that this event belongs to
|
||||
* @keyword
|
||||
*/
|
||||
majors?: string[];
|
||||
|
||||
/**
|
||||
* Translation of the original unmapped category from the source of the academic event
|
||||
* @keyword
|
||||
*/
|
||||
originalCategory?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user