2020-04-28 06:52:53 +00:00
|
|
|
export const PLUGIN_NAME_POSTGRES = "PostgresDbPlugin";
|
|
|
|
|
export const PLUGIN_NAME_MONGODB = " MongoDBPlugin";
|
|
|
|
|
export const PLUGIN_NAME_DBS = [PLUGIN_NAME_POSTGRES, PLUGIN_NAME_MONGODB];
|
2020-06-10 07:49:27 +00:00
|
|
|
export const QUERY_BODY_FIELD = "actionConfiguration.body";
|
2020-04-28 06:52:53 +00:00
|
|
|
export const PLUGIN_PACKAGE_POSTGRES = "postgres-plugin";
|
|
|
|
|
export const PLUGIN_PACKAGE_MONGO = "mongo-plugin";
|
|
|
|
|
export const PLUGIN_PACKAGE_DBS = [
|
|
|
|
|
PLUGIN_PACKAGE_POSTGRES,
|
|
|
|
|
PLUGIN_PACKAGE_MONGO,
|
|
|
|
|
];
|