Skip to content

Commit 5b12b53

Browse files
committed
Update schema, lint
1 parent ad32a51 commit 5b12b53

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

client/src/api/schema/schema.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12108,6 +12108,12 @@ export interface components {
1210812108
* @description Data of an export record associated with a history that was archived.
1210912109
*/
1211012110
ExportRecordData: {
12111+
/**
12112+
* Ignore Errors
12113+
* @description Last resort. If True, skip serialization errors caused by missing provenance (e.g. orphan implicit collection job associations, null job param refs from older histories that pre-date collections) instead of failing. Exported data may be incomplete or corrupt.
12114+
* @default false
12115+
*/
12116+
ignore_errors: boolean | null;
1211112117
/**
1211212118
* Include deleted
1211312119
* @description Include file contents for deleted datasets (if include_files is True).
@@ -25909,6 +25915,12 @@ export interface components {
2590925915
* @description Override xref for 'description domain' when generating BioCompute object.
2591025916
*/
2591125917
bco_override_xref?: components["schemas"]["XrefItem"][] | null;
25918+
/**
25919+
* Ignore Errors
25920+
* @description Last resort. If True, skip serialization errors caused by missing provenance (e.g. orphan implicit collection job associations, null job param refs from older histories that pre-date collections) instead of failing. Exported data may be incomplete or corrupt.
25921+
* @default false
25922+
*/
25923+
ignore_errors: boolean | null;
2591225924
/**
2591325925
* Include deleted
2591425926
* @description Include file contents for deleted datasets (if include_files is True).
@@ -25940,6 +25952,12 @@ export interface components {
2594025952
};
2594125953
/** WriteStoreToPayload */
2594225954
WriteStoreToPayload: {
25955+
/**
25956+
* Ignore Errors
25957+
* @description Last resort. If True, skip serialization errors caused by missing provenance (e.g. orphan implicit collection job associations, null job param refs from older histories that pre-date collections) instead of failing. Exported data may be incomplete or corrupt.
25958+
* @default false
25959+
*/
25960+
ignore_errors: boolean | null;
2594325961
/**
2594425962
* Include deleted
2594525963
* @description Include file contents for deleted datasets (if include_files is True).

lib/galaxy/schema/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1926,7 +1926,7 @@ class WriteStoreToPayload(StoreExportPayload):
19261926
title="Target URI",
19271927
description="Galaxy Files URI to write mode store content to.",
19281928
)
1929-
ignore_errors: bool = Field(
1929+
ignore_errors: Optional[bool] = Field(
19301930
default=False,
19311931
description=(
19321932
"Last resort. If True, skip serialization errors caused by missing "

0 commit comments

Comments
 (0)