Skip to content

Commit

Permalink
Rebuild schema for sample sheets.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Dec 11, 2024
1 parent 9d32b12 commit 9cca7a5
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6929,6 +6929,11 @@ export interface components {
* @description The type of the collection, can be `list`, `paired`, or define subcollections using `:` as separator like `list:paired` or `list:list`.
*/
collection_type?: string | null;
/**
* Column Definitions
* @description Specify definitions for row data if collection_type if sample_sheet
*/
column_definitions?: components["schemas"]["SampleSheetColumnDefinition"][] | null;
/**
* Content
* @description Depending on the `source` it can be:
Expand Down Expand Up @@ -6982,6 +6987,13 @@ export interface components {
* @description The name of the new collection.
*/
name?: string | null;
/**
* Row data
* @description Specify rows of metadata data corresponding to an indentifier if collection_type is sample_sheet
*/
rows?: {
[key: string]: (string | number | boolean)[];
} | null;
/**
* Source
* @description The source of the content. Can be other history element to be copied or library elements.
Expand Down Expand Up @@ -7136,6 +7148,11 @@ export interface components {
* @description The type of the collection, can be `list`, `paired`, or define subcollections using `:` as separator like `list:paired` or `list:list`.
*/
collection_type?: string | null;
/**
* Column Definitions
* @description Specify definitions for row data if collection_type if sample_sheet
*/
column_definitions?: components["schemas"]["SampleSheetColumnDefinition"][] | null;
/**
* Copy Elements
* @description Whether to create a copy of the source HDAs for the new collection.
Expand Down Expand Up @@ -7174,6 +7191,13 @@ export interface components {
* @description The name of the new collection.
*/
name?: string | null;
/**
* Row data
* @description Specify rows of metadata data corresponding to an indentifier if collection_type is sample_sheet
*/
rows?: {
[key: string]: (string | number | boolean)[];
} | null;
};
/** CreatePagePayload */
CreatePagePayload: {
Expand Down Expand Up @@ -7774,6 +7798,11 @@ export interface components {
* @description Dataset Collection Element summary information.
*/
DCESummary: {
/**
* Columns
* @description A row (or list of columns) of data associated with this element
*/
columns?: (string | number | boolean)[] | null;
/**
* Element Identifier
* @description The actual name of this element.
Expand Down Expand Up @@ -10376,6 +10405,11 @@ export interface components {
* @description The type of the collection, can be `list`, `paired`, or define subcollections using `:` as separator like `list:paired` or `list:list`.
*/
collection_type?: string | null;
/**
* Column Definitions
* @description Column data associated with each element of this collection.
*/
column_definitions?: components["schemas"]["SampleSheetColumnDefinition"][] | null;
/**
* Contents URL
* @description The relative URL to access the contents of this History.
Expand Down Expand Up @@ -10515,6 +10549,11 @@ export interface components {
* @description The type of the collection, can be `list`, `paired`, or define subcollections using `:` as separator like `list:paired` or `list:list`.
*/
collection_type: string;
/**
* Column Definitions
* @description Column data associated with each element of this collection.
*/
column_definitions?: components["schemas"]["SampleSheetColumnDefinition"][] | null;
/**
* Contents URL
* @description The relative URL to access the contents of this History.
Expand Down Expand Up @@ -15735,6 +15774,20 @@ export interface components {
RootModel_Dict_str__int__: {
[key: string]: number;
};
/** SampleSheetColumnDefinition */
SampleSheetColumnDefinition: {
/** Restrictions */
restrictions?: string[] | null;
/** Suggestions */
suggestions?: string[] | null;
/**
* Type
* @enum {string}
*/
type: "string" | "int" | "float" | "boolean";
/** Validators */
validators?: Record<string, never>[] | null;
};
/** SearchJobsPayload */
SearchJobsPayload: {
/**
Expand Down

0 comments on commit 9cca7a5

Please sign in to comment.