2020-11-26 15:43:56 +01:00
|
|
|
const postgres = require("./postgres")
|
2020-11-26 17:46:36 +01:00
|
|
|
const dynamodb = require("./dynamodb")
|
|
|
|
const mongodb = require("./mongodb")
|
2020-11-26 18:03:18 +01:00
|
|
|
const elasticsearch = require("./elasticsearch")
|
|
|
|
const couchdb = require("./couchdb")
|
2020-12-12 22:48:51 +01:00
|
|
|
const sqlServer = require("./microsoftSqlServer")
|
2020-11-26 22:23:20 +01:00
|
|
|
const s3 = require("./s3")
|
2021-01-11 18:18:22 +01:00
|
|
|
const airtable = require("./airtable")
|
2021-01-26 12:07:30 +01:00
|
|
|
const mysql = require("./mysql")
|
2021-01-28 14:42:40 +01:00
|
|
|
const arangodb = require("./arangodb")
|
2021-02-15 18:05:53 +01:00
|
|
|
const rest = require("./rest")
|
2020-11-26 15:43:56 +01:00
|
|
|
|
|
|
|
const DEFINITIONS = {
|
|
|
|
POSTGRES: postgres.schema,
|
2020-11-26 17:46:36 +01:00
|
|
|
DYNAMODB: dynamodb.schema,
|
|
|
|
MONGODB: mongodb.schema,
|
2020-11-26 18:03:18 +01:00
|
|
|
ELASTICSEARCH: elasticsearch.schema,
|
|
|
|
COUCHDB: couchdb.schema,
|
2020-12-12 22:48:51 +01:00
|
|
|
SQL_SERVER: sqlServer.schema,
|
2020-11-26 22:23:20 +01:00
|
|
|
S3: s3.schema,
|
2021-01-11 18:18:22 +01:00
|
|
|
AIRTABLE: airtable.schema,
|
2021-01-26 12:07:30 +01:00
|
|
|
MYSQL: mysql.schema,
|
2021-01-28 14:42:40 +01:00
|
|
|
ARANGODB: arangodb.schema,
|
2021-02-15 18:05:53 +01:00
|
|
|
REST: rest.schema,
|
2020-11-26 15:43:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const INTEGRATIONS = {
|
|
|
|
POSTGRES: postgres.integration,
|
2020-11-26 17:46:36 +01:00
|
|
|
DYNAMODB: dynamodb.integration,
|
|
|
|
MONGODB: mongodb.integration,
|
2020-11-26 18:03:18 +01:00
|
|
|
ELASTICSEARCH: elasticsearch.integration,
|
|
|
|
COUCHDB: couchdb.integration,
|
2020-11-26 22:23:20 +01:00
|
|
|
S3: s3.integration,
|
2020-12-12 22:48:51 +01:00
|
|
|
SQL_SERVER: sqlServer.integration,
|
2021-01-11 18:18:22 +01:00
|
|
|
AIRTABLE: airtable.integration,
|
2021-01-26 12:07:30 +01:00
|
|
|
MYSQL: mysql.integration,
|
2021-01-28 15:23:17 +01:00
|
|
|
ARANGODB: arangodb.integration,
|
2021-02-15 18:05:53 +01:00
|
|
|
REST: rest.integration,
|
2020-11-26 15:43:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
definitions: DEFINITIONS,
|
|
|
|
integrations: INTEGRATIONS,
|
|
|
|
}
|