schemas/credentialPatch.json in losant_rest-1.19.6 vs schemas/credentialPatch.json in losant_rest-1.19.8

- old
+ new

@@ -174,9 +174,71 @@ "minLength": 1, "maxLength": 128 } }, "additionalProperties": false + }, + "sqlConfig": { + "type": "object", + "properties": { + "system": { + "type": "string", + "enum": [ + "mssql", + "mysql", + "pg" + ] + }, + "host": { + "type": "string", + "minLength": 1, + "maxLength": 256 + }, + "port": { + "oneOf": [ + { + "type": "integer", + "minimum": 1, + "maximum": 65535 + }, + { + "type": "null" + } + ] + }, + "username": { + "type": "string", + "minLength": 1, + "maxLength": 256 + }, + "password": { + "type": "string", + "minLength": 1, + "maxLength": 256 + }, + "secureConnection": { + "type": "boolean" + }, + "caCertificate": { + "type": "string", + "maxLength": 8196 + }, + "disableSSLVerification": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "mongodbConfig": { + "type": "object", + "properties": { + "connectionUri": { + "type": "string", + "minLength": 1, + "maxLength": 2048 + } + }, + "additionalProperties": false } }, "additionalProperties": false } \ No newline at end of file