Skip to content

Commit

Permalink
Add closurizer expansion slots for qualifiers field (#453)
Browse files Browse the repository at this point in the history
Should fix the docs deploy (and is necessary otherwise)
  • Loading branch information
kevinschaper authored Nov 14, 2023
1 parent a6f7623 commit 7a3d713
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions frontend/src/api/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,16 @@ export interface Association {
sex_qualifier?: string,
stage_qualifier?: string,
/** The name of the frequency_qualifier entity */
qualifiers_label?: string,
/** The namespace/prefix of the frequency_qualifier entity */
qualifiers_namespace?: string,
/** The category of the frequency_qualifier entity */
qualifiers_category?: string,
/** Field containing frequency_qualifier id and the ids of all of it's ancestors */
qualifiers_closure?: string[],
/** Field containing frequency_qualifier name and the names of all of it's ancestors */
qualifiers_closure_label?: string[],
/** The name of the frequency_qualifier entity */
frequency_qualifier_label?: string,
/** The namespace/prefix of the frequency_qualifier entity */
frequency_qualifier_namespace?: string,
Expand Down Expand Up @@ -236,6 +246,16 @@ export interface DirectionalAssociation extends Association {
sex_qualifier?: string,
stage_qualifier?: string,
/** The name of the frequency_qualifier entity */
qualifiers_label?: string,
/** The namespace/prefix of the frequency_qualifier entity */
qualifiers_namespace?: string,
/** The category of the frequency_qualifier entity */
qualifiers_category?: string,
/** Field containing frequency_qualifier id and the ids of all of it's ancestors */
qualifiers_closure?: string[],
/** Field containing frequency_qualifier name and the names of all of it's ancestors */
qualifiers_closure_label?: string[],
/** The name of the frequency_qualifier entity */
frequency_qualifier_label?: string,
/** The namespace/prefix of the frequency_qualifier entity */
frequency_qualifier_namespace?: string,
Expand Down

0 comments on commit 7a3d713

Please sign in to comment.