UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

19 lines 716 B
/** Cognigy Modules */ import { createExtension } from "../../createNodeDescriptor"; /** Nodes */ import { microsoftTokenStatusNode } from "./tokenStatus"; import { microsoftGetTokenNode } from "./getToken"; import { microsoftInvalidateTokenNode } from "./invalidateToken"; import { microsoftTokenGranted } from "./tokenStatus/tokenGranted"; import { microsoftTokenNotGranted } from "./tokenStatus/tokenNotGranted"; export const cognigyMicrosoftModule = createExtension({ nodes: [ microsoftTokenStatusNode, microsoftInvalidateTokenNode, microsoftGetTokenNode, microsoftTokenGranted, microsoftTokenNotGranted ], connections: [] }); //# sourceMappingURL=index.js.map