Skip to content

Commit 6ef664e

Browse files
committed
Rebuild schema for tool markdown reports...
1 parent d599495 commit 6ef664e

File tree

1 file changed

+86
-1
lines changed

1 file changed

+86
-1
lines changed

client/src/api/schema/schema.ts

Lines changed: 86 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,6 +571,23 @@ export interface paths {
571571
patch?: never;
572572
trace?: never;
573573
};
574+
"/api/datasets/{dataset_id}/report": {
575+
parameters: {
576+
query?: never;
577+
header?: never;
578+
path?: never;
579+
cookie?: never;
580+
};
581+
/** Return JSON content Galaxy will use to render Markdown reports */
582+
get: operations["report_api_datasets__dataset_id__report_get"];
583+
put?: never;
584+
post?: never;
585+
delete?: never;
586+
options?: never;
587+
head?: never;
588+
patch?: never;
589+
trace?: never;
590+
};
574591
"/api/datasets/{dataset_id}/storage": {
575592
parameters: {
576593
query?: never;
@@ -16699,6 +16716,27 @@ export interface components {
1669916716
*/
1670016717
values: string;
1670116718
};
16719+
/** ToolReportForDataset */
16720+
ToolReportForDataset: {
16721+
/**
16722+
* Content
16723+
* @description Raw text contents of the last page revision (type dependent on content_format).
16724+
* @default
16725+
*/
16726+
content: string | null;
16727+
/**
16728+
* Galaxy Version
16729+
* @description The version of Galaxy this object was generated with.
16730+
*/
16731+
generate_time?: string | null;
16732+
/**
16733+
* Galaxy Version
16734+
* @description The version of Galaxy this object was generated with.
16735+
*/
16736+
generate_version?: string | null;
16737+
} & {
16738+
[key: string]: unknown;
16739+
};
1670216740
/** ToolStep */
1670316741
ToolStep: {
1670416742
/**
@@ -19641,7 +19679,10 @@ export interface operations {
1964119679
};
1964219680
get_content_as_text_api_datasets__dataset_id__get_content_as_text_get: {
1964319681
parameters: {
19644-
query?: never;
19682+
query?: {
19683+
/** @description If non-null, get the specified filename from the extra files for this dataset. */
19684+
filename?: string | null;
19685+
};
1964519686
header?: {
1964619687
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
1964719688
"run-as"?: string | null;
@@ -19974,6 +20015,50 @@ export interface operations {
1997420015
};
1997520016
};
1997620017
};
20018+
report_api_datasets__dataset_id__report_get: {
20019+
parameters: {
20020+
query?: never;
20021+
header?: {
20022+
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
20023+
"run-as"?: string | null;
20024+
};
20025+
path: {
20026+
/** @description The ID of the History Dataset. */
20027+
dataset_id: string;
20028+
};
20029+
cookie?: never;
20030+
};
20031+
requestBody?: never;
20032+
responses: {
20033+
/** @description Successful Response */
20034+
200: {
20035+
headers: {
20036+
[name: string]: unknown;
20037+
};
20038+
content: {
20039+
"application/json": components["schemas"]["ToolReportForDataset"];
20040+
};
20041+
};
20042+
/** @description Request Error */
20043+
"4XX": {
20044+
headers: {
20045+
[name: string]: unknown;
20046+
};
20047+
content: {
20048+
"application/json": components["schemas"]["MessageExceptionModel"];
20049+
};
20050+
};
20051+
/** @description Server Error */
20052+
"5XX": {
20053+
headers: {
20054+
[name: string]: unknown;
20055+
};
20056+
content: {
20057+
"application/json": components["schemas"]["MessageExceptionModel"];
20058+
};
20059+
};
20060+
};
20061+
};
1997720062
show_storage_api_datasets__dataset_id__storage_get: {
1997820063
parameters: {
1997920064
query?: {

0 commit comments

Comments
 (0)