diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index a3a790978166..791a492e031f 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -6328,8 +6328,6 @@ export interface components { ColletionSourceType: "hda" | "ldda" | "hdca" | "new_collection"; /** CompositeDataElement */ CompositeDataElement: { - /** Md5 */ - MD5?: string | null; /** * Auto Decompress * @description Decompress compressed data before sniffing? @@ -6360,6 +6358,8 @@ export interface components { */ ext: string; extra_files?: components["schemas"]["ExtraFiles"] | null; + /** Hashes */ + hashes?: components["schemas"]["FetchDatasetHash"][] | null; /** Info */ info?: string | null; /** Name */ @@ -8668,10 +8668,18 @@ export interface components { } & { [key: string]: unknown; }; + /** FetchDatasetHash */ + FetchDatasetHash: { + /** + * Hash Function + * @enum {string} + */ + hash_function: "MD5" | "SHA-1" | "SHA-256" | "SHA-512"; + /** Hash Value */ + hash_value: string; + }; /** FileDataElement */ FileDataElement: { - /** Md5 */ - MD5?: string | null; /** * Auto Decompress * @description Decompress compressed data before sniffing? @@ -8701,6 +8709,8 @@ export interface components { */ ext: string; extra_files?: components["schemas"]["ExtraFiles"] | null; + /** Hashes */ + hashes?: components["schemas"]["FetchDatasetHash"][] | null; /** Info */ info?: string | null; /** Name */ @@ -8964,8 +8974,6 @@ export interface components { }; /** FtpImportElement */ FtpImportElement: { - /** Md5 */ - MD5?: string | null; /** * Auto Decompress * @description Decompress compressed data before sniffing? @@ -8997,6 +9005,8 @@ export interface components { extra_files?: components["schemas"]["ExtraFiles"] | null; /** Ftp Path */ ftp_path: string; + /** Hashes */ + hashes?: components["schemas"]["FetchDatasetHash"][] | null; /** Info */ info?: string | null; /** Name */ @@ -13372,8 +13382,6 @@ export interface components { ModelStoreFormat: "tgz" | "tar" | "tar.gz" | "bag.zip" | "bag.tar" | "bag.tgz" | "rocrate.zip" | "bco.json"; /** NestedElement */ NestedElement: { - /** Md5 */ - MD5?: string | null; /** * Auto Decompress * @description Decompress compressed data before sniffing? @@ -13416,6 +13424,8 @@ export interface components { */ ext: string; extra_files?: components["schemas"]["ExtraFiles"] | null; + /** Hashes */ + hashes?: components["schemas"]["FetchDatasetHash"][] | null; /** Info */ info?: string | null; /** Name */ @@ -14016,8 +14026,6 @@ export interface components { PageSummaryList: components["schemas"]["PageSummary"][]; /** PastedDataElement */ PastedDataElement: { - /** Md5 */ - MD5?: string | null; /** * Auto Decompress * @description Decompress compressed data before sniffing? @@ -14047,6 +14055,8 @@ export interface components { */ ext: string; extra_files?: components["schemas"]["ExtraFiles"] | null; + /** Hashes */ + hashes?: components["schemas"]["FetchDatasetHash"][] | null; /** Info */ info?: string | null; /** Name */ @@ -14076,8 +14086,6 @@ export interface components { }; /** PathDataElement */ PathDataElement: { - /** Md5 */ - MD5?: string | null; /** * Auto Decompress * @description Decompress compressed data before sniffing? @@ -14107,6 +14115,8 @@ export interface components { */ ext: string; extra_files?: components["schemas"]["ExtraFiles"] | null; + /** Hashes */ + hashes?: components["schemas"]["FetchDatasetHash"][] | null; /** Info */ info?: string | null; /** Link Data Only */ @@ -14797,8 +14807,6 @@ export interface components { }; /** ServerDirElement */ ServerDirElement: { - /** Md5 */ - MD5?: string | null; /** * Auto Decompress * @description Decompress compressed data before sniffing? @@ -14828,6 +14836,8 @@ export interface components { */ ext: string; extra_files?: components["schemas"]["ExtraFiles"] | null; + /** Hashes */ + hashes?: components["schemas"]["FetchDatasetHash"][] | null; /** Info */ info?: string | null; /** Link Data Only */ @@ -16441,8 +16451,6 @@ export interface components { }; /** UrlDataElement */ UrlDataElement: { - /** Md5 */ - MD5?: string | null; /** * Auto Decompress * @description Decompress compressed data before sniffing? @@ -16472,6 +16480,8 @@ export interface components { */ ext: string; extra_files?: components["schemas"]["ExtraFiles"] | null; + /** Hashes */ + hashes?: components["schemas"]["FetchDatasetHash"][] | null; /** Info */ info?: string | null; /** Name */