Skip to content

Commit

Permalink
Update schema for validating hashes arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Sep 26, 2024
1 parent a6e58e0 commit 0f334e5
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down Expand Up @@ -23481,7 +23496,11 @@ export interface operations {
};
cookie?: never;
};
requestBody?: never;
requestBody?: {
content: {
"application/json": components["schemas"]["MaterializeDatasetOptions"] | null;
};
};
responses: {
/** @description Successful Response */
200: {
Expand Down

0 comments on commit 0f334e5

Please sign in to comment.