Skip to content

Commit

Permalink
chore: has_consistency_check fix dist
Browse files Browse the repository at this point in the history
  • Loading branch information
k0stik committed Nov 27, 2024
1 parent 0b01a57 commit aa5d28b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@
},
"name": {
"type": "string",
"enum": [
"default",
"atomsTooClose",
"atomsOverlap"
],
"description": "Name of the consistency check that is performed, which is listed in an enum."
},
"severity": {
Expand Down
5 changes: 0 additions & 5 deletions dist/js/schema/system/consistency_check.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@
},
"name": {
"type": "string",
"enum": [
"default",
"atomsTooClose",
"atomsOverlap"
],
"description": "Name of the consistency check that is performed, which is listed in an enum."
},
"severity": {
Expand Down
5 changes: 0 additions & 5 deletions dist/js/schema/system/has_consistency_check.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@
},
"name": {
"type": "string",
"enum": [
"default",
"atomsTooClose",
"atomsOverlap"
],
"description": "Name of the consistency check that is performed, which is listed in an enum."
},
"severity": {
Expand Down
2 changes: 1 addition & 1 deletion dist/js/schemas.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/js/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2906,7 +2906,7 @@ export interface HasConsistencyCheckHasMetadataNamedDefaultableInMemoryEntitySch
/**
* Name of the consistency check that is performed, which is listed in an enum.
*/
name: "default" | "atomsTooClose" | "atomsOverlap";
name: string;
/**
* Severity level of the problem, which is used in UI to differentiate.
*/
Expand Down Expand Up @@ -21931,7 +21931,7 @@ export interface ConsistencyCheck {
/**
* Name of the consistency check that is performed, which is listed in an enum.
*/
name: "default" | "atomsTooClose" | "atomsOverlap";
name: string;
/**
* Severity level of the problem, which is used in UI to differentiate.
*/
Expand Down Expand Up @@ -22068,7 +22068,7 @@ export interface HasConsistencyCheckSchema {
/**
* Name of the consistency check that is performed, which is listed in an enum.
*/
name: "default" | "atomsTooClose" | "atomsOverlap";
name: string;
/**
* Severity level of the problem, which is used in UI to differentiate.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/py/mat3ra/esse/data/schemas.py

Large diffs are not rendered by default.

0 comments on commit aa5d28b

Please sign in to comment.