mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-20 16:42:56 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bde71c7e3a | ||
|
|
fec33715ad | ||
|
|
6dcca89257 |
14
CHANGELOG.md
14
CHANGELOG.md
@@ -1,3 +1,17 @@
|
|||||||
|
# [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)
|
# [0.25.0](https://gitlab.com/openstapps/core/compare/v0.24.0...v0.25.0) (2019-07-25)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@openstapps/core",
|
"name": "@openstapps/core",
|
||||||
"version": "0.26.0",
|
"version": "0.27.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@openstapps/core",
|
"name": "@openstapps/core",
|
||||||
"version": "0.26.0",
|
"version": "0.27.0",
|
||||||
"description": "StAppsCore - Generalized model of data",
|
"description": "StAppsCore - Generalized model of data",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Model",
|
"Model",
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ export interface SCAcademicTermWithoutReferences
|
|||||||
* Short name of the academic term, using the given pattern
|
* Short name of the academic term, using the given pattern
|
||||||
*
|
*
|
||||||
* @aggregatable
|
* @aggregatable
|
||||||
|
* @filterable
|
||||||
* @keyword
|
* @keyword
|
||||||
*/
|
*/
|
||||||
acronym: string;
|
acronym: string;
|
||||||
|
|||||||
@@ -44,6 +44,7 @@ export interface SCCreativeWorkWithoutReferences
|
|||||||
* Keywords of the creative work
|
* Keywords of the creative work
|
||||||
*
|
*
|
||||||
* @aggregatable
|
* @aggregatable
|
||||||
|
* @filterable
|
||||||
* @keyword
|
* @keyword
|
||||||
*/
|
*/
|
||||||
keywords?: string[];
|
keywords?: string[];
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ export interface SCThingWithCategoriesWithoutReferences<T, U extends SCThingWith
|
|||||||
*
|
*
|
||||||
* @sortable ducet
|
* @sortable ducet
|
||||||
* @aggregatable
|
* @aggregatable
|
||||||
|
* @filterable
|
||||||
*/
|
*/
|
||||||
categories: T[];
|
categories: T[];
|
||||||
|
|
||||||
|
|||||||
@@ -89,6 +89,7 @@ export interface SCThingWithoutReferences {
|
|||||||
* Type of the thing
|
* Type of the thing
|
||||||
*
|
*
|
||||||
* @sortable ducet
|
* @sortable ducet
|
||||||
|
* @filterable
|
||||||
* @aggregatable
|
* @aggregatable
|
||||||
*/
|
*/
|
||||||
type: SCThingType;
|
type: SCThingType;
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ export interface SCAcademicEventWithoutReferences
|
|||||||
* Majors of the academic event that this event belongs to
|
* Majors of the academic event that this event belongs to
|
||||||
*
|
*
|
||||||
* @aggregatable
|
* @aggregatable
|
||||||
|
* @filterable
|
||||||
* @keyword
|
* @keyword
|
||||||
*/
|
*/
|
||||||
majors?: string[];
|
majors?: string[];
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ export interface SCBuildingWithoutReferences
|
|||||||
*
|
*
|
||||||
* @sortable ducet
|
* @sortable ducet
|
||||||
* @aggregatable
|
* @aggregatable
|
||||||
|
* @filterable
|
||||||
*/
|
*/
|
||||||
categories: SCBuildingCategories[];
|
categories: SCBuildingCategories[];
|
||||||
|
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ export interface SCDishWithoutReferences
|
|||||||
*
|
*
|
||||||
* @sortable ducet
|
* @sortable ducet
|
||||||
* @aggregatable
|
* @aggregatable
|
||||||
|
* @filterable
|
||||||
*/
|
*/
|
||||||
categories: SCDishCategories[];
|
categories: SCDishCategories[];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user