@@ -1621,7 +1621,7 @@ components:
ConnectorConfig:
type: object
additionalProperties:
- type: string
+ type: object
TaskId:
@@ -2,7 +2,7 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
- "version": "5.0.1",
+ "version": "5.1.1",
"generators": {
"fetch": {
"generatorName": "typescript-fetch",
@@ -14,6 +14,9 @@
"supportsES6": true,
"nullSafeAdditionalProps": true,
"withInterfaces": true
+ },
+ "typeMappings": {
+ "object": "any"
}
@@ -2,9 +2,7 @@ import { Connect, Connector, FullConnectorInfo, Task } from 'generated-sources';
export type ConnectName = Connect['name'];
export type ConnectorName = Connector['name'];
-export interface ConnectorConfig {
- [key: string]: string | undefined;
-}
+export type ConnectorConfig = Connector['config'];
export interface ConnectState {
connects: Connect[];