Browse Source

fix: allow null type

pull/3364/head
Wing-Kam Wong 2 years ago
parent
commit
c475858e8f
  1. 2
      packages/nocodb-sdk/src/lib/Api.ts
  2. 2
      scripts/sdk/swagger.json

2
packages/nocodb-sdk/src/lib/Api.ts

@ -512,7 +512,7 @@ export interface PluginType {
tags?: string; tags?: string;
category?: string; category?: string;
input_schema?: string; input_schema?: string;
input?: string; input?: string | null;
creator?: string; creator?: string;
creator_website?: string; creator_website?: string;
price?: string; price?: string;

2
scripts/sdk/swagger.json

@ -7718,7 +7718,7 @@
"type": "string" "type": "string"
}, },
"input": { "input": {
"type": "string" "type": ["string", "null"]
}, },
"creator": { "creator": {
"type": "string" "type": "string"

Loading…
Cancel
Save