This commit is contained in:
Benjamin Toby
2025-02-05 19:34:03 +01:00
parent 1acdad97a2
commit 06de31dcb2
10 changed files with 23 additions and 15 deletions
+3
View File
@@ -55,6 +55,9 @@ export declare const TextFieldTypesArray: readonly [{
}, {
readonly title: "Javascript";
readonly value: "javascript";
}, {
readonly title: "Shell";
readonly value: "shell";
}];
export type DSQL_FieldSchemaType = {
fieldName?: string;
+1
View File
@@ -9,6 +9,7 @@ exports.TextFieldTypesArray = [
{ title: "HTML", value: "html" },
{ title: "CSS", value: "css" },
{ title: "Javascript", value: "javascript" },
{ title: "Shell", value: "shell" },
];
exports.ServerQueryOperators = ["AND", "OR"];
exports.ServerQueryEqualities = ["EQUAL", "LIKE", "NOT EQUAL"];