Browse Source

fix(nocodb): comparison_op & fk_column_id types in swagger.json

pull/5771/head
Wing-Kam Wong 1 year ago
parent
commit
002c1948f6
  1. 146
      packages/nocodb/src/schema/swagger.json

146
packages/nocodb/src/schema/swagger.json

@ -15197,38 +15197,45 @@
}, },
"comparison_op": { "comparison_op": {
"description": "Comparison Operator", "description": "Comparison Operator",
"enum": [ "anyOf": [
"allof", {
"anyof", "enum": [
"blank", "allof",
"btw", "anyof",
"checked", "blank",
"empty", "btw",
"eq", "checked",
"ge", "empty",
"gt", "eq",
"gte", "ge",
"in", "gt",
"is", "gte",
"isWithin", "in",
"isnot", "is",
"le", "isWithin",
"like", "isnot",
"lt", "le",
"lte", "like",
"nallof", "lt",
"nanyof", "lte",
"nbtw", "nallof",
"neq", "nanyof",
"nlike", "nbtw",
"not", "neq",
"notblank", "nlike",
"notchecked", "not",
"notempty", "notblank",
"notnull", "notchecked",
"null" "notempty",
], "notnull",
"type": "string" "null"
],
"type": "string"
},
{
"type": "null"
}
]
}, },
"comparison_sub_op": { "comparison_sub_op": {
"anyOf": [ "anyOf": [
@ -15262,7 +15269,7 @@
"description": "Comparison Sub-Operator" "description": "Comparison Sub-Operator"
}, },
"fk_column_id": { "fk_column_id": {
"$ref": "#/components/schemas/Id", "$ref": "#/components/schemas/StringOrNull",
"description": "Foreign Key to Column" "description": "Foreign Key to Column"
}, },
"fk_hook_id": { "fk_hook_id": {
@ -15518,38 +15525,45 @@
"properties": { "properties": {
"comparison_op": { "comparison_op": {
"description": "Comparison Operator", "description": "Comparison Operator",
"enum": [ "anyOf": [
"allof", {
"anyof", "enum": [
"blank", "allof",
"btw", "anyof",
"checked", "blank",
"empty", "btw",
"eq", "checked",
"ge", "empty",
"gt", "eq",
"gte", "ge",
"in", "gt",
"is", "gte",
"isWithin", "in",
"isnot", "is",
"le", "isWithin",
"like", "isnot",
"lt", "le",
"lte", "like",
"nallof", "lt",
"nanyof", "lte",
"nbtw", "nallof",
"neq", "nanyof",
"nlike", "nbtw",
"not", "neq",
"notblank", "nlike",
"notchecked", "not",
"notempty", "notblank",
"notnull", "notchecked",
"null" "notempty",
], "notnull",
"type": "string" "null"
],
"type": "string"
},
{
"type": "null"
}
]
}, },
"comparison_sub_op": { "comparison_sub_op": {
"anyOf": [ "anyOf": [
@ -15583,7 +15597,7 @@
"description": "Comparison Sub-Operator" "description": "Comparison Sub-Operator"
}, },
"fk_column_id": { "fk_column_id": {
"$ref": "#/components/schemas/Id", "$ref": "#/components/schemas/StringOrNull",
"description": "Foreign Key to Column" "description": "Foreign Key to Column"
}, },
"fk_parent_id": { "fk_parent_id": {

Loading…
Cancel
Save