Skip to content
Snippets Groups Projects
Commit e44e83eb authored by Simon Malesys's avatar Simon Malesys
Browse files

Less constraints for the filters types

parent 5f314a38
No related branches found
No related tags found
No related merge requests found
Pipeline #153561 passed
...@@ -95,10 +95,10 @@ export interface Statistics { ...@@ -95,10 +95,10 @@ export interface Statistics {
*/ */
export interface APIFilters { export interface APIFilters {
keywords: string keywords: string
species: Array<Antibody['species']> species: Array<string>
sources: Array<FastaHeader['source']> sources: Array<string>
heavySegments: Array<FastaHeader['vGeneSegment']> heavySegments: Array<string>
lightSegments: Array<FastaHeader['vGeneSegment']> lightSegments: Array<string>
motif: string motif: string
} }
...@@ -172,10 +172,10 @@ export interface APIUserMadeArchiveResponse { ...@@ -172,10 +172,10 @@ export interface APIUserMadeArchiveResponse {
* @link https://www.typescriptlang.org/docs/handbook/2/objects.html#excess-property-checks * @link https://www.typescriptlang.org/docs/handbook/2/objects.html#excess-property-checks
*/ */
export type AdvancedFilters = { export type AdvancedFilters = {
species: Array<Antibody['species']> species: Array<string>
sources: Array<FastaHeader['source']> sources: Array<string>
heavySegments: Array<FastaHeader['vGeneSegment']> heavySegments: Array<string>
lightSegments: Array<FastaHeader['vGeneSegment']> lightSegments: Array<string>
motif: string motif: string
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment