@pipedream/platform
Version:
Pipedream platform globals (typing and runtime type checking)
42 lines (41 loc) • 1.75 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const errors_1 = require("./errors");
exports.default = {
methods: {
/**
* A helper method to get the configuration object that's directly fed to
* the DB client constructor. Used by other features (like SQL proxy) to
* initialize their client in an identical way.
*
* @returns The configuration object for the DB client
*/
getClientConfiguration() {
throw new errors_1.ConfigurationError("getClientConfiguration not implemented");
},
/**
* Executes a query against the database. This method takes care of
* connecting to the database, executing the query, and closing the
* connection.
*
* @param args - The query string or object to be sent to the DB. SQL query.
* @returns The rows returned by the DB as a result of the query.
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
executeQuery(args) {
throw new errors_1.ConfigurationError("executeQuery not implemented");
},
/**
* Adapts the arguments to `executeQuery` so that they can be consumed by
* the SQL proxy (when applicable). Note that this method is not intended to
* be used by the component directly.
*
* @param args - The query string or object to be sent to the DB.
* @returns The adapted query and parameters.
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
proxyAdapter(args) {
throw new errors_1.ConfigurationError("proxyAdapter not implemented");
},
},
};
;