chore: update core service enums (#414)

This commit is contained in:
Louis 2023-10-21 13:34:00 +07:00 committed by GitHub
parent 3205b5a830
commit ff2b376efb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,39 +68,69 @@ export enum StoreService {
*/ */
export enum DataService { export enum DataService {
/** /**
* Gets a list of conversations from the server. * Gets a list of conversations.
*/ */
GetConversations = "getConversations", GetConversations = "getConversations",
/** /**
* Creates a new conversation on the server. * Creates a new conversation.
*/ */
CreateConversation = "createConversation", CreateConversation = "createConversation",
/** /**
* Updates an existing conversation on the server. * Updates an existing conversation.
*/ */
UpdateConversation = "updateConversation", UpdateConversation = "updateConversation",
/** /**
* Deletes an existing conversation from the server. * Deletes an existing conversation.
*/ */
DeleteConversation = "deleteConversation", DeleteConversation = "deleteConversation",
/** /**
* Creates a new message in an existing conversation on the server. * Creates a new message in an existing conversation.
*/ */
CreateMessage = "createMessage", CreateMessage = "createMessage",
/** /**
* Updates an existing message in an existing conversation on the server. * Updates an existing message in an existing conversation.
*/ */
UpdateMessage = "updateMessage", UpdateMessage = "updateMessage",
/** /**
* Gets a list of messages for an existing conversation from the server. * Gets a list of messages for an existing conversation.
*/ */
GetConversationMessages = "getConversationMessages", GetConversationMessages = "getConversationMessages",
/**
* Gets a conversation matching an ID.
*/
GetConversationById = "getConversationById",
/**
* Creates a new conversation using the prompt instruction.
*/
CreateBot = "createBot",
/**
* Gets all created bots.
*/
GetBots = "getBots",
/**
* Gets a bot matching an ID.
*/
GetBotById = "getBotById",
/**
* Deletes a bot matching an ID.
*/
DeleteBot = "deleteBot",
/**
* Updates a bot matching an ID.
*/
UpdateBot = "updateBot",
} }
/** /**
@ -179,6 +209,11 @@ export enum PreferenceService {
* The experiment component for which preferences are being managed. * The experiment component for which preferences are being managed.
*/ */
ExperimentComponent = "experimentComponent", ExperimentComponent = "experimentComponent",
/**
* Gets the plugin preferences.
*/
PluginPreferences = "pluginPreferences",
} }
/** /**
@ -239,13 +274,23 @@ export { core } from "./core";
* Core module exports. * Core module exports.
* @module * @module
*/ */
export { RegisterExtensionPoint, deleteFile, downloadFile, invokePluginFunc } from "./core"; export {
RegisterExtensionPoint,
deleteFile,
downloadFile,
invokePluginFunc,
} from "./core";
/** /**
* Events module exports. * Events module exports.
* @module * @module
*/ */
export { events, EventName, NewMessageRequest, NewMessageResponse } from "./events"; export {
events,
EventName,
NewMessageRequest,
NewMessageResponse,
} from "./events";
/** /**
* Preferences module exports. * Preferences module exports.