diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index c4ac46076c00..19954176a24f 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -13415,6 +13415,21 @@ export interface components { * @description The source of the content. Can be other history element to be copied or library elements. */ source: components["schemas"]["DatasetSourceType"]; + /** + * Validate hashes + * @description Set to true to enable dataset validation during materialization. + * @default false + */ + validate_hashes: boolean; + }; + /** MaterializeDatasetOptions */ + MaterializeDatasetOptions: { + /** + * Validate hashes + * @description Set to true to enable dataset validation during materialization. + * @default false + */ + validate_hashes: boolean; }; /** MessageExceptionModel */ MessageExceptionModel: { @@ -23481,7 +23496,11 @@ export interface operations { }; cookie?: never; }; - requestBody?: never; + requestBody?: { + content: { + "application/json": components["schemas"]["MaterializeDatasetOptions"] | null; + }; + }; responses: { /** @description Successful Response */ 200: {