diff --git a/client/src/api/fileSources.ts b/client/src/api/fileSources.ts index 68935db4573f..eb984b938e8f 100644 --- a/client/src/api/fileSources.ts +++ b/client/src/api/fileSources.ts @@ -4,3 +4,4 @@ export type FileSourceTemplateSummary = components["schemas"]["FileSourceTemplat export type FileSourceTemplateSummaries = FileSourceTemplateSummary[]; export type UserFileSourceModel = components["schemas"]["UserFileSourceModel"]; +export type FileSourceTypes = UserFileSourceModel["type"]; diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 05a06bc61dc7..b8a076a8e0ac 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -8785,7 +8785,7 @@ export interface components { * Type * @enum {string} */ - type: "ftp" | "posix" | "s3fs" | "azure"; + type: "ftp" | "posix" | "s3fs" | "azure" | "onedata"; /** Variables */ variables?: | ( @@ -13748,7 +13748,7 @@ export interface components { * Type * @enum {string} */ - type: "aws_s3" | "azure_blob" | "boto3" | "disk" | "generic_s3"; + type: "aws_s3" | "azure_blob" | "boto3" | "disk" | "generic_s3" | "onedata"; /** Variables */ variables?: | ( @@ -16503,7 +16503,7 @@ export interface components { * Type * @enum {string} */ - type: "aws_s3" | "azure_blob" | "boto3" | "disk" | "generic_s3"; + type: "aws_s3" | "azure_blob" | "boto3" | "disk" | "generic_s3" | "onedata"; /** * Uuid * Format: uuid4 @@ -16578,7 +16578,7 @@ export interface components { * Type * @enum {string} */ - type: "ftp" | "posix" | "s3fs" | "azure"; + type: "ftp" | "posix" | "s3fs" | "azure" | "onedata"; /** Uri Root */ uri_root: string; /** diff --git a/client/src/components/FileSources/FileSourceTypeSpan.vue b/client/src/components/FileSources/FileSourceTypeSpan.vue index 95129c85a085..e41b3b32858d 100644 --- a/client/src/components/FileSources/FileSourceTypeSpan.vue +++ b/client/src/components/FileSources/FileSourceTypeSpan.vue @@ -1,13 +1,18 @@