Skip to content

Commit f596e15

Browse files
committed
Rebuild schema for tool markdown reports...
1 parent b1c4601 commit f596e15

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;
@@ -16739,6 +16756,27 @@ export interface components {
1673916756
*/
1674016757
values: string;
1674116758
};
16759+
/** ToolReportForDataset */
16760+
ToolReportForDataset: {
16761+
/**
16762+
* Content
16763+
* @description Raw text contents of the last page revision (type dependent on content_format).
16764+
* @default
16765+
*/
16766+
content: string | null;
16767+
/**
16768+
* Galaxy Version
16769+
* @description The version of Galaxy this object was generated with.
16770+
*/
16771+
generate_time?: string | null;
16772+
/**
16773+
* Galaxy Version
16774+
* @description The version of Galaxy this object was generated with.
16775+
*/
16776+
generate_version?: string | null;
16777+
} & {
16778+
[key: string]: unknown;
16779+
};
1674216780
/** ToolStep */
1674316781
ToolStep: {
1674416782
/**
@@ -19804,7 +19842,10 @@ export interface operations {
1980419842
};
1980519843
get_content_as_text_api_datasets__dataset_id__get_content_as_text_get: {
1980619844
parameters: {
19807-
query?: never;
19845+
query?: {
19846+
/** @description If non-null, get the specified filename from the extra files for this dataset. */
19847+
filename?: string | null;
19848+
};
1980819849
header?: {
1980919850
/** @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. */
1981019851
"run-as"?: string | null;
@@ -20137,6 +20178,50 @@ export interface operations {
2013720178
};
2013820179
};
2013920180
};
20181+
report_api_datasets__dataset_id__report_get: {
20182+
parameters: {
20183+
query?: never;
20184+
header?: {
20185+
/** @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. */
20186+
"run-as"?: string | null;
20187+
};
20188+
path: {
20189+
/** @description The ID of the History Dataset. */
20190+
dataset_id: string;
20191+
};
20192+
cookie?: never;
20193+
};
20194+
requestBody?: never;
20195+
responses: {
20196+
/** @description Successful Response */
20197+
200: {
20198+
headers: {
20199+
[name: string]: unknown;
20200+
};
20201+
content: {
20202+
"application/json": components["schemas"]["ToolReportForDataset"];
20203+
};
20204+
};
20205+
/** @description Request Error */
20206+
"4XX": {
20207+
headers: {
20208+
[name: string]: unknown;
20209+
};
20210+
content: {
20211+
"application/json": components["schemas"]["MessageExceptionModel"];
20212+
};
20213+
};
20214+
/** @description Server Error */
20215+
"5XX": {
20216+
headers: {
20217+
[name: string]: unknown;
20218+
};
20219+
content: {
20220+
"application/json": components["schemas"]["MessageExceptionModel"];
20221+
};
20222+
};
20223+
};
20224+
};
2014020225
show_storage_api_datasets__dataset_id__storage_get: {
2014120226
parameters: {
2014220227
query?: {

0 commit comments

Comments
 (0)