Skip to content

Commit

Permalink
Rebuild schema for hashes...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Sep 17, 2024
1 parent 9086692 commit 2990870
Showing 1 changed file with 26 additions and 16 deletions.
42 changes: 26 additions & 16 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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?
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -8964,8 +8974,6 @@ export interface components {
};
/** FtpImportElement */
FtpImportElement: {
/** Md5 */
MD5?: string | null;
/**
* Auto Decompress
* @description Decompress compressed data before sniffing?
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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?
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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?
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -14076,8 +14086,6 @@ export interface components {
};
/** PathDataElement */
PathDataElement: {
/** Md5 */
MD5?: string | null;
/**
* Auto Decompress
* @description Decompress compressed data before sniffing?
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -14797,8 +14807,6 @@ export interface components {
};
/** ServerDirElement */
ServerDirElement: {
/** Md5 */
MD5?: string | null;
/**
* Auto Decompress
* @description Decompress compressed data before sniffing?
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -16441,8 +16451,6 @@ export interface components {
};
/** UrlDataElement */
UrlDataElement: {
/** Md5 */
MD5?: string | null;
/**
* Auto Decompress
* @description Decompress compressed data before sniffing?
Expand Down Expand Up @@ -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 */
Expand Down

0 comments on commit 2990870

Please sign in to comment.