Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update core service enums #414

Merged
merged 2 commits into from
Oct 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 54 additions & 9 deletions core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,39 +68,69 @@ export enum StoreService {
*/
export enum DataService {
/**
* Gets a list of conversations from the server.
* Gets a list of conversations.
*/
GetConversations = "getConversations",

/**
* Creates a new conversation on the server.
* Creates a new conversation.
*/
CreateConversation = "createConversation",

/**
* Updates an existing conversation on the server.
* Updates an existing conversation.
*/
UpdateConversation = "updateConversation",

/**
* Deletes an existing conversation from the server.
* Deletes an existing conversation.
*/
DeleteConversation = "deleteConversation",

/**
* Creates a new message in an existing conversation on the server.
* Creates a new message in an existing conversation.
*/
CreateMessage = "createMessage",

/**
* Updates an existing message in an existing conversation on the server.
* Updates an existing message in an existing conversation.
*/
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",

/**
* 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",
}

/**
Expand Down Expand Up @@ -179,6 +209,11 @@ export enum PreferenceService {
* The experiment component for which preferences are being managed.
*/
ExperimentComponent = "experimentComponent",

/**
* Gets the plugin preferences.
*/
PluginPreferences = "pluginPreferences",
}

/**
Expand Down Expand Up @@ -239,13 +274,23 @@ export { core } from "./core";
* Core module exports.
* @module
*/
export { RegisterExtensionPoint, deleteFile, downloadFile, invokePluginFunc } from "./core";
export {
RegisterExtensionPoint,
deleteFile,
downloadFile,
invokePluginFunc,
} from "./core";

/**
* Events module exports.
* @module
*/
export { events, EventName, NewMessageRequest, NewMessageResponse } from "./events";
export {
events,
EventName,
NewMessageRequest,
NewMessageResponse,
} from "./events";

/**
* Preferences module exports.
Expand Down