UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

15 lines 527 B
/* Custom modules */ import { createExtension } from "../../../createNodeDescriptor"; import { SQL_RUN_QUERY } from "./runQuery"; import { SQL_RUN_TRANSACTION } from "./runTransaction"; import { SQL_RUN_STORED_PROCEDURE } from "./runStoredProcedure"; import { SQL_CONNECTION } from "./sqlConnection"; export const cognigySQLModule = createExtension({ nodes: [ SQL_RUN_QUERY, SQL_RUN_STORED_PROCEDURE, SQL_RUN_TRANSACTION ], connections: [SQL_CONNECTION] }); //# sourceMappingURL=index.js.map