UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

23 lines 768 B
/* Custom modules */ import { createExtension } from "../../../createNodeDescriptor"; import { MONGO_FIND } from "./find"; import { MONGO_FIND_ONE } from "./findOne"; import { MONGO_INSERT } from "./insert"; import { MONGO_UPDATE_ONE } from "./updateOne"; import { MONGO_UPDATE_MANY } from "./updateMany"; import { MONGO_REMOVE } from "./remove"; import { MONGO_AGGREGATE } from "./aggregate"; import { MONGO_DB_CONNECTION } from "./mongoDBConnection"; export const cognigyMongoDBModule = createExtension({ nodes: [ MONGO_FIND, MONGO_FIND_ONE, MONGO_INSERT, MONGO_UPDATE_ONE, MONGO_UPDATE_MANY, MONGO_REMOVE, MONGO_AGGREGATE ], connections: [MONGO_DB_CONNECTION] }); //# sourceMappingURL=index.js.map