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 ef72a43 commit 2af0d61
Showing 1 changed file with 29 additions and 19 deletions.
48 changes: 29 additions & 19 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6614,8 +6614,6 @@ export interface components {
};
/** CompositeDataElement */
CompositeDataElement: {
/** Md5 */
MD5?: string | null;
/**
* Auto Decompress
* @description Decompress compressed data before sniffing?
Expand Down Expand Up @@ -6646,6 +6644,8 @@ export interface components {
*/
ext: string;
extra_files?: components["schemas"]["ExtraFiles"] | null;
/** Hashes */
hashes?: components["schemas"]["DatasetHash-Input"][] | null;
/** Info */
info?: string | null;
/** Name */
Expand Down Expand Up @@ -8242,7 +8242,17 @@ export interface components {
*/
DatasetExtraFiles: components["schemas"]["ExtraFileEntry"][];
/** DatasetHash */
DatasetHash: {
"DatasetHash-Input": {
/**
* Hash Function
* @enum {string}
*/
hash_function: "MD5" | "SHA-1" | "SHA-256" | "SHA-512";
/** Hash Value */
hash_value: string;
};
/** DatasetHash */
"DatasetHash-Output": {
/**
* Extra Files Path
* @description The path to the extra files used to generate the hash.
Expand Down Expand Up @@ -9420,8 +9430,6 @@ export interface components {
};
/** FileDataElement */
FileDataElement: {
/** Md5 */
MD5?: string | null;
/**
* Auto Decompress
* @description Decompress compressed data before sniffing?
Expand Down Expand Up @@ -9451,6 +9459,8 @@ export interface components {
*/
ext: string;
extra_files?: components["schemas"]["ExtraFiles"] | null;
/** Hashes */
hashes?: components["schemas"]["DatasetHash-Input"][] | null;
/** Info */
info?: string | null;
/** Name */
Expand Down Expand Up @@ -9753,8 +9763,6 @@ export interface components {
};
/** FtpImportElement */
FtpImportElement: {
/** Md5 */
MD5?: string | null;
/**
* Auto Decompress
* @description Decompress compressed data before sniffing?
Expand Down Expand Up @@ -9786,6 +9794,8 @@ export interface components {
extra_files?: components["schemas"]["ExtraFiles"] | null;
/** Ftp Path */
ftp_path: string;
/** Hashes */
hashes?: components["schemas"]["DatasetHash-Input"][] | null;
/** Info */
info?: string | null;
/** Name */
Expand Down Expand Up @@ -10158,7 +10168,7 @@ export interface components {
* Hashes
* @description The list of hashes associated with this dataset.
*/
hashes?: components["schemas"]["DatasetHash"][] | null;
hashes?: components["schemas"]["DatasetHash-Output"][] | null;
/**
* HDA or LDDA
* @description Whether this dataset belongs to a history (HDA) or a library (LDDA).
Expand Down Expand Up @@ -10409,7 +10419,7 @@ export interface components {
* Hashes
* @description The list of hashes associated with this dataset.
*/
hashes: components["schemas"]["DatasetHash"][];
hashes: components["schemas"]["DatasetHash-Output"][];
/**
* HDA or LDDA
* @description Whether this dataset belongs to a history (HDA) or a library (LDDA).
Expand Down Expand Up @@ -14386,8 +14396,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 @@ -14430,6 +14438,8 @@ export interface components {
*/
ext: string;
extra_files?: components["schemas"]["ExtraFiles"] | null;
/** Hashes */
hashes?: components["schemas"]["DatasetHash-Input"][] | null;
/** Info */
info?: string | null;
/** Name */
Expand Down Expand Up @@ -15030,8 +15040,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 @@ -15061,6 +15069,8 @@ export interface components {
*/
ext: string;
extra_files?: components["schemas"]["ExtraFiles"] | null;
/** Hashes */
hashes?: components["schemas"]["DatasetHash-Input"][] | null;
/** Info */
info?: string | null;
/** Name */
Expand Down Expand Up @@ -15090,8 +15100,6 @@ export interface components {
};
/** PathDataElement */
PathDataElement: {
/** Md5 */
MD5?: string | null;
/**
* Auto Decompress
* @description Decompress compressed data before sniffing?
Expand Down Expand Up @@ -15121,6 +15129,8 @@ export interface components {
*/
ext: string;
extra_files?: components["schemas"]["ExtraFiles"] | null;
/** Hashes */
hashes?: components["schemas"]["DatasetHash-Input"][] | null;
/** Info */
info?: string | null;
/** Link Data Only */
Expand Down Expand Up @@ -16011,8 +16021,6 @@ export interface components {
};
/** ServerDirElement */
ServerDirElement: {
/** Md5 */
MD5?: string | null;
/**
* Auto Decompress
* @description Decompress compressed data before sniffing?
Expand Down Expand Up @@ -16042,6 +16050,8 @@ export interface components {
*/
ext: string;
extra_files?: components["schemas"]["ExtraFiles"] | null;
/** Hashes */
hashes?: components["schemas"]["DatasetHash-Input"][] | null;
/** Info */
info?: string | null;
/** Link Data Only */
Expand Down Expand Up @@ -17735,8 +17745,6 @@ export interface components {
};
/** UrlDataElement */
UrlDataElement: {
/** Md5 */
MD5?: string | null;
/**
* Auto Decompress
* @description Decompress compressed data before sniffing?
Expand Down Expand Up @@ -17766,6 +17774,8 @@ export interface components {
*/
ext: string;
extra_files?: components["schemas"]["ExtraFiles"] | null;
/** Hashes */
hashes?: components["schemas"]["DatasetHash-Input"][] | null;
/** Info */
info?: string | null;
/** Name */
Expand Down

0 comments on commit 2af0d61

Please sign in to comment.