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;
category?: string;
input_schema?: string;
input?: string;
input?: string | null;
creator?: string;
creator_website?: string;
price?: string;

2
scripts/sdk/swagger.json

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

Loading…
Cancel
Save