UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

123 lines 2.72 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.availablePermissions = exports.projectWidePermissions = exports.organisationWidePermissions = void 0; /** * @openapi * * components: * schemas: * TOrganisationWidePermissions: * type: string * enum: * - analyticsOdata * - apiKeys * - auditEvents * - liveAgentAccount * - projects * - userDetails * - users * - voiceGatewayAccount */ exports.organisationWidePermissions = [ "analyticsOdata", "apiKeys", "auditEvents", "assignProject", "liveAgentAccount", "projects", "userDetails", "users", "voiceGatewayAccount", ]; /** * @openapi * * components: * schemas: * TProjectWidePermissions: * type: string * enum: * - agentAssistConfigs * - aiAgents * - analytics * - connections * - contactProfiles * - conversationHistory * - endpoints * - extensions * - extensionsTrust * - flowNodeComments * - flowNodeDescription * - flowNodes * - flows * - followUser * - intents * - largeLanguageModels * - knowledgeStores * - lexicons * - liveAgentInbox * - locales * - logs * - memberDetails * - members * - goals * - handoverProviders * - nluConnectors * - packages * - playbooks * - project * - projectSettings * - snapshots * - states * - tasks * - tokens * - functions * - yesNoIntents * - dataPrivacySettings * - simulator */ exports.projectWidePermissions = [ "agentAssistConfigs", "aiAgents", "analytics", "connections", "contactProfiles", "conversationHistory", "endpoints", "extensions", "extensionsTrust", "flowNodeComments", "flowNodeDescription", "flowNodes", "functions", "flows", "followUser", "intents", "largeLanguageModels", "knowledgeStores", "lexicons", "liveAgentInbox", "locales", "logs", "memberDetails", "members", "goals", "handoverProviders", "nluConnectors", "packages", "playbooks", "project", "projectSettings", "snapshots", "states", "tasks", "tokens", "yesNoIntents", "dataPrivacySettings", "simulator" ]; exports.availablePermissions = [ ...exports.organisationWidePermissions, ...exports.projectWidePermissions, ]; //# sourceMappingURL=IPermission.js.map