File size: 27,234 Bytes
f0743f4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 | import type { AxiosResponse } from 'axios';
import type * as t from './types';
import * as endpoints from './api-endpoints';
import * as a from './types/assistants';
import * as ag from './types/agents';
import * as m from './types/mutations';
import * as q from './types/queries';
import * as f from './types/files';
import * as config from './config';
import request from './request';
import * as s from './schemas';
import * as r from './roles';
import * as permissions from './accessPermissions';
export function revokeUserKey(name: string): Promise<unknown> {
return request.delete(endpoints.revokeUserKey(name));
}
export function revokeAllUserKeys(): Promise<unknown> {
return request.delete(endpoints.revokeAllUserKeys());
}
export function deleteUser(): Promise<s.TPreset> {
return request.delete(endpoints.deleteUser());
}
export function getSharedMessages(shareId: string): Promise<t.TSharedMessagesResponse> {
return request.get(endpoints.shareMessages(shareId));
}
export const listSharedLinks = async (
params: q.SharedLinksListParams,
): Promise<q.SharedLinksResponse> => {
const { pageSize, isPublic, sortBy, sortDirection, search, cursor } = params;
return request.get(
endpoints.getSharedLinks(pageSize, isPublic, sortBy, sortDirection, search, cursor),
);
};
export function getSharedLink(conversationId: string): Promise<t.TSharedLinkGetResponse> {
return request.get(endpoints.getSharedLink(conversationId));
}
export function createSharedLink(
conversationId: string,
targetMessageId?: string,
): Promise<t.TSharedLinkResponse> {
return request.post(endpoints.createSharedLink(conversationId), { targetMessageId });
}
export function updateSharedLink(shareId: string): Promise<t.TSharedLinkResponse> {
return request.patch(endpoints.updateSharedLink(shareId));
}
export function deleteSharedLink(shareId: string): Promise<m.TDeleteSharedLinkResponse> {
return request.delete(endpoints.shareMessages(shareId));
}
export function updateUserKey(payload: t.TUpdateUserKeyRequest) {
const { value } = payload;
if (!value) {
throw new Error('value is required');
}
return request.put(endpoints.keys(), payload);
}
export function getPresets(): Promise<s.TPreset[]> {
return request.get(endpoints.presets());
}
export function createPreset(payload: s.TPreset): Promise<s.TPreset> {
return request.post(endpoints.presets(), payload);
}
export function updatePreset(payload: s.TPreset): Promise<s.TPreset> {
return request.post(endpoints.presets(), payload);
}
export function deletePreset(arg: s.TPreset | undefined): Promise<m.PresetDeleteResponse> {
return request.post(endpoints.deletePreset(), arg);
}
export function getSearchEnabled(): Promise<boolean> {
return request.get(endpoints.searchEnabled());
}
export function getUser(): Promise<t.TUser> {
return request.get(endpoints.user());
}
export function getUserBalance(): Promise<t.TBalanceResponse> {
return request.get(endpoints.balance());
}
export const updateTokenCount = (text: string) => {
return request.post(endpoints.tokenizer(), { arg: text });
};
export const login = (payload: t.TLoginUser): Promise<t.TLoginResponse> => {
return request.post(endpoints.login(), payload);
};
export const logout = (): Promise<m.TLogoutResponse> => {
return request.post(endpoints.logout());
};
export const register = (payload: t.TRegisterUser) => {
return request.post(endpoints.register(), payload);
};
export const userKeyQuery = (name: string): Promise<t.TCheckUserKeyResponse> =>
request.get(endpoints.userKeyQuery(name));
export const getLoginGoogle = () => {
return request.get(endpoints.loginGoogle());
};
export const requestPasswordReset = (
payload: t.TRequestPasswordReset,
): Promise<t.TRequestPasswordResetResponse> => {
return request.post(endpoints.requestPasswordReset(), payload);
};
export const resetPassword = (payload: t.TResetPassword) => {
return request.post(endpoints.resetPassword(), payload);
};
export const verifyEmail = (payload: t.TVerifyEmail): Promise<t.VerifyEmailResponse> => {
return request.post(endpoints.verifyEmail(), payload);
};
export const resendVerificationEmail = (
payload: t.TResendVerificationEmail,
): Promise<t.VerifyEmailResponse> => {
return request.post(endpoints.resendVerificationEmail(), payload);
};
export const getAvailablePlugins = (): Promise<s.TPlugin[]> => {
return request.get(endpoints.plugins());
};
export const updateUserPlugins = (payload: t.TUpdateUserPlugins) => {
return request.post(endpoints.userPlugins(), payload);
};
export const reinitializeMCPServer = (serverName: string) => {
return request.post(endpoints.mcpReinitialize(serverName));
};
export const getMCPConnectionStatus = (): Promise<q.MCPConnectionStatusResponse> => {
return request.get(endpoints.mcpConnectionStatus());
};
export const getMCPServerConnectionStatus = (
serverName: string,
): Promise<q.MCPServerConnectionStatusResponse> => {
return request.get(endpoints.mcpServerConnectionStatus(serverName));
};
export const getMCPAuthValues = (serverName: string): Promise<q.MCPAuthValuesResponse> => {
return request.get(endpoints.mcpAuthValues(serverName));
};
export function cancelMCPOAuth(serverName: string): Promise<m.CancelMCPOAuthResponse> {
return request.post(endpoints.cancelMCPOAuth(serverName), {});
}
/* Config */
export const getStartupConfig = (): Promise<
config.TStartupConfig & {
mcpCustomUserVars?: Record<string, { title: string; description: string }>;
}
> => {
return request.get(endpoints.config());
};
export const getAIEndpoints = (): Promise<t.TEndpointsConfig> => {
return request.get(endpoints.aiEndpoints());
};
export const getModels = async (): Promise<t.TModelsConfig> => {
return request.get(endpoints.models());
};
/* Assistants */
export const createAssistant = ({
version,
...data
}: a.AssistantCreateParams): Promise<a.Assistant> => {
return request.post(endpoints.assistants({ version }), data);
};
export const getAssistantById = ({
endpoint,
assistant_id,
version,
}: {
endpoint: s.AssistantsEndpoint;
assistant_id: string;
version: number | string | number;
}): Promise<a.Assistant> => {
return request.get(
endpoints.assistants({
path: assistant_id,
endpoint,
version,
}),
);
};
export const updateAssistant = ({
assistant_id,
data,
version,
}: {
assistant_id: string;
data: a.AssistantUpdateParams;
version: number | string;
}): Promise<a.Assistant> => {
return request.patch(
endpoints.assistants({
path: assistant_id,
version,
}),
data,
);
};
export const deleteAssistant = ({
assistant_id,
model,
endpoint,
version,
}: m.DeleteAssistantBody & { version: number | string }): Promise<void> => {
return request.delete(
endpoints.assistants({
path: assistant_id,
options: { model, endpoint },
version,
}),
);
};
export const listAssistants = (
params: a.AssistantListParams,
version: number | string,
): Promise<a.AssistantListResponse> => {
return request.get(
endpoints.assistants({
version,
options: params,
}),
);
};
export function getAssistantDocs({
endpoint,
version,
}: {
endpoint: s.AssistantsEndpoint | string;
version: number | string;
}): Promise<a.AssistantDocument[]> {
if (!s.isAssistantsEndpoint(endpoint)) {
return Promise.resolve([]);
}
return request.get(
endpoints.assistants({
path: 'documents',
version,
options: { endpoint },
endpoint: endpoint as s.AssistantsEndpoint,
}),
);
}
/* Tools */
export const getAvailableTools = (
_endpoint: s.AssistantsEndpoint | s.EModelEndpoint.agents,
version?: number | string,
): Promise<s.TPlugin[]> => {
let path = '';
if (s.isAssistantsEndpoint(_endpoint)) {
const endpoint = _endpoint as s.AssistantsEndpoint;
path = endpoints.assistants({
path: 'tools',
endpoint: endpoint,
version: version ?? config.defaultAssistantsVersion[endpoint],
});
} else {
path = endpoints.agents({
path: 'tools',
});
}
return request.get(path);
};
/* MCP Tools - Decoupled from regular tools */
export const getMCPTools = (): Promise<q.MCPServersResponse> => {
return request.get(endpoints.mcp.tools);
};
export const getVerifyAgentToolAuth = (
params: q.VerifyToolAuthParams,
): Promise<q.VerifyToolAuthResponse> => {
return request.get(
endpoints.agents({
path: `tools/${params.toolId}/auth`,
}),
);
};
export const callTool = <T extends m.ToolId>({
toolId,
toolParams,
}: {
toolId: T;
toolParams: m.ToolParams<T>;
}): Promise<m.ToolCallResponse> => {
return request.post(
endpoints.agents({
path: `tools/${toolId}/call`,
}),
toolParams,
);
};
export const getToolCalls = (params: q.GetToolCallParams): Promise<q.ToolCallResults> => {
return request.get(
endpoints.agents({
path: 'tools/calls',
options: params,
}),
);
};
/* Files */
export const getFiles = (): Promise<f.TFile[]> => {
return request.get(endpoints.files());
};
export const getAgentFiles = (agentId: string): Promise<f.TFile[]> => {
return request.get(endpoints.agentFiles(agentId));
};
export const getFileConfig = (): Promise<f.FileConfig> => {
return request.get(`${endpoints.files()}/config`);
};
export const uploadImage = (
data: FormData,
signal?: AbortSignal | null,
): Promise<f.TFileUpload> => {
const requestConfig = signal ? { signal } : undefined;
return request.postMultiPart(endpoints.images(), data, requestConfig);
};
export const uploadFile = (data: FormData, signal?: AbortSignal | null): Promise<f.TFileUpload> => {
const requestConfig = signal ? { signal } : undefined;
return request.postMultiPart(endpoints.files(), data, requestConfig);
};
/* actions */
export const updateAction = (data: m.UpdateActionVariables): Promise<m.UpdateActionResponse> => {
const { assistant_id, version, ...body } = data;
return request.post(
endpoints.assistants({
path: `actions/${assistant_id}`,
version,
}),
body,
);
};
export function getActions(): Promise<ag.Action[]> {
return request.get(
endpoints.agents({
path: 'actions',
}),
);
}
export const deleteAction = async ({
assistant_id,
action_id,
model,
version,
endpoint,
}: m.DeleteActionVariables & { version: number | string }): Promise<void> =>
request.delete(
endpoints.assistants({
path: `actions/${assistant_id}/${action_id}/${model}`,
version,
endpoint,
}),
);
/**
* Agents
*/
export const createAgent = ({ ...data }: a.AgentCreateParams): Promise<a.Agent> => {
return request.post(endpoints.agents({}), data);
};
export const getAgentById = ({ agent_id }: { agent_id: string }): Promise<a.Agent> => {
return request.get(
endpoints.agents({
path: agent_id,
}),
);
};
export const getExpandedAgentById = ({ agent_id }: { agent_id: string }): Promise<a.Agent> => {
return request.get(
endpoints.agents({
path: `${agent_id}/expanded`,
}),
);
};
export const updateAgent = ({
agent_id,
data,
}: {
agent_id: string;
data: a.AgentUpdateParams;
}): Promise<a.Agent> => {
return request.patch(
endpoints.agents({
path: agent_id,
}),
data,
);
};
export const duplicateAgent = ({
agent_id,
}: m.DuplicateAgentBody): Promise<{ agent: a.Agent; actions: ag.Action[] }> => {
return request.post(
endpoints.agents({
path: `${agent_id}/duplicate`,
}),
);
};
export const deleteAgent = ({ agent_id }: m.DeleteAgentBody): Promise<void> => {
return request.delete(
endpoints.agents({
path: agent_id,
}),
);
};
export const listAgents = (params: a.AgentListParams): Promise<a.AgentListResponse> => {
return request.get(
endpoints.agents({
options: params,
}),
);
};
export const revertAgentVersion = ({
agent_id,
version_index,
}: {
agent_id: string;
version_index: number;
}): Promise<a.Agent> => request.post(endpoints.revertAgentVersion(agent_id), { version_index });
/* Marketplace */
/**
* Get agent categories with counts for marketplace tabs
*/
export const getAgentCategories = (): Promise<t.TMarketplaceCategory[]> => {
return request.get(endpoints.agents({ path: 'categories' }));
};
/**
* Unified marketplace agents endpoint with query string controls
*/
export const getMarketplaceAgents = (params: {
requiredPermission: number;
category?: string;
search?: string;
limit?: number;
cursor?: string;
promoted?: 0 | 1;
}): Promise<a.AgentListResponse> => {
return request.get(
endpoints.agents({
// path: 'marketplace',
options: params,
}),
);
};
/* Tools */
export const getAvailableAgentTools = (): Promise<s.TPlugin[]> => {
return request.get(
endpoints.agents({
path: 'tools',
}),
);
};
/* Actions */
export const updateAgentAction = (
data: m.UpdateAgentActionVariables,
): Promise<m.UpdateAgentActionResponse> => {
const { agent_id, ...body } = data;
return request.post(
endpoints.agents({
path: `actions/${agent_id}`,
}),
body,
);
};
export const deleteAgentAction = async ({
agent_id,
action_id,
}: m.DeleteAgentActionVariables): Promise<void> =>
request.delete(
endpoints.agents({
path: `actions/${agent_id}/${action_id}`,
}),
);
/**
* Imports a conversations file.
*
* @param data - The FormData containing the file to import.
* @returns A Promise that resolves to the import start response.
*/
export const importConversationsFile = (data: FormData): Promise<t.TImportResponse> => {
return request.postMultiPart(endpoints.importConversation(), data);
};
export const uploadAvatar = (data: FormData): Promise<f.AvatarUploadResponse> => {
return request.postMultiPart(endpoints.avatar(), data);
};
export const uploadAssistantAvatar = (data: m.AssistantAvatarVariables): Promise<a.Assistant> => {
return request.postMultiPart(
endpoints.assistants({
isAvatar: true,
path: `${data.assistant_id}/avatar`,
options: { model: data.model, endpoint: data.endpoint },
version: data.version,
}),
data.formData,
);
};
export const uploadAgentAvatar = (data: m.AgentAvatarVariables): Promise<a.Agent> => {
return request.postMultiPart(
`${endpoints.images()}/agents/${data.agent_id}/avatar`,
data.formData,
);
};
export const getFileDownload = async (userId: string, file_id: string): Promise<AxiosResponse> => {
return request.getResponse(`${endpoints.files()}/download/${userId}/${file_id}`, {
responseType: 'blob',
headers: {
Accept: 'application/octet-stream',
},
});
};
export const getCodeOutputDownload = async (url: string): Promise<AxiosResponse> => {
return request.getResponse(url, {
responseType: 'blob',
headers: {
Accept: 'application/octet-stream',
},
});
};
export const deleteFiles = async (payload: {
files: f.BatchFile[];
agent_id?: string;
assistant_id?: string;
tool_resource?: a.EToolResources;
}): Promise<f.DeleteFilesResponse> =>
request.deleteWithOptions(endpoints.files(), {
data: payload,
});
/* Speech */
export const speechToText = (data: FormData): Promise<f.SpeechToTextResponse> => {
return request.postMultiPart(endpoints.speechToText(), data);
};
export const textToSpeech = (data: FormData): Promise<ArrayBuffer> => {
return request.postTTS(endpoints.textToSpeechManual(), data);
};
export const getVoices = (): Promise<f.VoiceResponse> => {
return request.get(endpoints.textToSpeechVoices());
};
export const getCustomConfigSpeech = (): Promise<t.TCustomConfigSpeechResponse> => {
return request.get(endpoints.getCustomConfigSpeech());
};
/* conversations */
export function duplicateConversation(
payload: t.TDuplicateConvoRequest,
): Promise<t.TDuplicateConvoResponse> {
return request.post(endpoints.duplicateConversation(), payload);
}
export function forkConversation(payload: t.TForkConvoRequest): Promise<t.TForkConvoResponse> {
return request.post(endpoints.forkConversation(), payload);
}
export function deleteConversation(payload: t.TDeleteConversationRequest) {
return request.deleteWithOptions(endpoints.deleteConversation(), { data: { arg: payload } });
}
export function clearAllConversations(): Promise<unknown> {
return request.delete(endpoints.deleteAllConversation());
}
export const listConversations = (
params?: q.ConversationListParams,
): Promise<q.ConversationListResponse> => {
return request.get(endpoints.conversations(params ?? {}));
};
export function getConversations(cursor: string): Promise<t.TGetConversationsResponse> {
return request.get(endpoints.conversations({ cursor }));
}
export function getConversationById(id: string): Promise<s.TConversation> {
return request.get(endpoints.conversationById(id));
}
export function updateConversation(
payload: t.TUpdateConversationRequest,
): Promise<t.TUpdateConversationResponse> {
return request.post(endpoints.updateConversation(), { arg: payload });
}
export function archiveConversation(
payload: t.TArchiveConversationRequest,
): Promise<t.TArchiveConversationResponse> {
return request.post(endpoints.updateConversation(), { arg: payload });
}
export function genTitle(payload: m.TGenTitleRequest): Promise<m.TGenTitleResponse> {
return request.post(endpoints.genTitle(), payload);
}
export const listMessages = (params?: q.MessagesListParams): Promise<q.MessagesListResponse> => {
return request.get(endpoints.messages(params ?? {}));
};
export function updateMessage(payload: t.TUpdateMessageRequest): Promise<unknown> {
const { conversationId, messageId, text } = payload;
if (!conversationId) {
throw new Error('conversationId is required');
}
return request.put(endpoints.messages({ conversationId, messageId }), { text });
}
export function updateMessageContent(payload: t.TUpdateMessageContent): Promise<unknown> {
const { conversationId, messageId, index, text } = payload;
if (!conversationId) {
throw new Error('conversationId is required');
}
return request.put(endpoints.messages({ conversationId, messageId }), { text, index });
}
export const editArtifact = async ({
messageId,
...params
}: m.TEditArtifactRequest): Promise<m.TEditArtifactResponse> => {
return request.post(endpoints.messagesArtifacts(messageId), params);
};
export function getMessagesByConvoId(conversationId: string): Promise<s.TMessage[]> {
if (
conversationId === config.Constants.NEW_CONVO ||
conversationId === config.Constants.PENDING_CONVO
) {
return Promise.resolve([]);
}
return request.get(endpoints.messages({ conversationId }));
}
export function getPrompt(id: string): Promise<{ prompt: t.TPrompt }> {
return request.get(endpoints.getPrompt(id));
}
export function getPrompts(filter: t.TPromptsWithFilterRequest): Promise<t.TPrompt[]> {
return request.get(endpoints.getPromptsWithFilters(filter));
}
export function getAllPromptGroups(): Promise<q.AllPromptGroupsResponse> {
return request.get(endpoints.getAllPromptGroups());
}
export function getPromptGroups(
filter: t.TPromptGroupsWithFilterRequest,
): Promise<t.PromptGroupListResponse> {
return request.get(endpoints.getPromptGroupsWithFilters(filter));
}
export function getPromptGroup(id: string): Promise<t.TPromptGroup> {
return request.get(endpoints.getPromptGroup(id));
}
export function createPrompt(payload: t.TCreatePrompt): Promise<t.TCreatePromptResponse> {
return request.post(endpoints.postPrompt(), payload);
}
export function addPromptToGroup(
groupId: string,
payload: t.TCreatePrompt,
): Promise<t.TCreatePromptResponse> {
return request.post(endpoints.addPromptToGroup(groupId), payload);
}
export function updatePromptGroup(
variables: t.TUpdatePromptGroupVariables,
): Promise<t.TUpdatePromptGroupResponse> {
return request.patch(endpoints.updatePromptGroup(variables.id), variables.payload);
}
export function deletePrompt(payload: t.TDeletePromptVariables): Promise<t.TDeletePromptResponse> {
return request.delete(endpoints.deletePrompt(payload));
}
export function makePromptProduction(id: string): Promise<t.TMakePromptProductionResponse> {
return request.patch(endpoints.updatePromptTag(id));
}
export function updatePromptLabels(
variables: t.TUpdatePromptLabelsRequest,
): Promise<t.TUpdatePromptLabelsResponse> {
return request.patch(endpoints.updatePromptLabels(variables.id), variables.payload);
}
export function deletePromptGroup(id: string): Promise<t.TDeletePromptGroupResponse> {
return request.delete(endpoints.deletePromptGroup(id));
}
export function getCategories(): Promise<t.TGetCategoriesResponse> {
return request.get(endpoints.getCategories());
}
export function getRandomPrompts(
variables: t.TGetRandomPromptsRequest,
): Promise<t.TGetRandomPromptsResponse> {
return request.get(endpoints.getRandomPrompts(variables.limit, variables.skip));
}
/* Roles */
export function getRole(roleName: string): Promise<r.TRole> {
return request.get(endpoints.getRole(roleName));
}
export function updatePromptPermissions(
variables: m.UpdatePromptPermVars,
): Promise<m.UpdatePermResponse> {
return request.put(endpoints.updatePromptPermissions(variables.roleName), variables.updates);
}
export function updateAgentPermissions(
variables: m.UpdateAgentPermVars,
): Promise<m.UpdatePermResponse> {
return request.put(endpoints.updateAgentPermissions(variables.roleName), variables.updates);
}
export function updateMemoryPermissions(
variables: m.UpdateMemoryPermVars,
): Promise<m.UpdatePermResponse> {
return request.put(endpoints.updateMemoryPermissions(variables.roleName), variables.updates);
}
export function updatePeoplePickerPermissions(
variables: m.UpdatePeoplePickerPermVars,
): Promise<m.UpdatePermResponse> {
return request.put(
endpoints.updatePeoplePickerPermissions(variables.roleName),
variables.updates,
);
}
export function updateMarketplacePermissions(
variables: m.UpdateMarketplacePermVars,
): Promise<m.UpdatePermResponse> {
return request.put(endpoints.updateMarketplacePermissions(variables.roleName), variables.updates);
}
/* Tags */
export function getConversationTags(): Promise<t.TConversationTagsResponse> {
return request.get(endpoints.conversationTags());
}
export function createConversationTag(
payload: t.TConversationTagRequest,
): Promise<t.TConversationTagResponse> {
return request.post(endpoints.conversationTags(), payload);
}
export function updateConversationTag(
tag: string,
payload: t.TConversationTagRequest,
): Promise<t.TConversationTagResponse> {
return request.put(endpoints.conversationTags(tag), payload);
}
export function deleteConversationTag(tag: string): Promise<t.TConversationTagResponse> {
return request.delete(endpoints.conversationTags(tag));
}
export function addTagToConversation(
conversationId: string,
payload: t.TTagConversationRequest,
): Promise<t.TTagConversationResponse> {
return request.put(endpoints.addTagToConversation(conversationId), payload);
}
export function rebuildConversationTags(): Promise<t.TConversationTagsResponse> {
return request.post(endpoints.conversationTags('rebuild'));
}
export function healthCheck(): Promise<string> {
return request.get(endpoints.health());
}
export function getUserTerms(): Promise<t.TUserTermsResponse> {
return request.get(endpoints.userTerms());
}
export function acceptTerms(): Promise<t.TAcceptTermsResponse> {
return request.post(endpoints.acceptUserTerms());
}
export function getBanner(): Promise<t.TBannerResponse> {
return request.get(endpoints.banner());
}
export function updateFeedback(
conversationId: string,
messageId: string,
payload: t.TUpdateFeedbackRequest,
): Promise<t.TUpdateFeedbackResponse> {
return request.put(endpoints.feedback(conversationId, messageId), payload);
}
// 2FA
export function enableTwoFactor(): Promise<t.TEnable2FAResponse> {
return request.get(endpoints.enableTwoFactor());
}
export function verifyTwoFactor(payload: t.TVerify2FARequest): Promise<t.TVerify2FAResponse> {
return request.post(endpoints.verifyTwoFactor(), payload);
}
export function confirmTwoFactor(payload: t.TVerify2FARequest): Promise<t.TVerify2FAResponse> {
return request.post(endpoints.confirmTwoFactor(), payload);
}
export function disableTwoFactor(payload?: t.TDisable2FARequest): Promise<t.TDisable2FAResponse> {
return request.post(endpoints.disableTwoFactor(), payload);
}
export function regenerateBackupCodes(): Promise<t.TRegenerateBackupCodesResponse> {
return request.post(endpoints.regenerateBackupCodes());
}
export function verifyTwoFactorTemp(
payload: t.TVerify2FATempRequest,
): Promise<t.TVerify2FATempResponse> {
return request.post(endpoints.verifyTwoFactorTemp(), payload);
}
/* Memories */
export const getMemories = (): Promise<q.MemoriesResponse> => {
return request.get(endpoints.memories());
};
export const deleteMemory = (key: string): Promise<void> => {
return request.delete(endpoints.memory(key));
};
export const updateMemory = (
key: string,
value: string,
originalKey?: string,
): Promise<q.TUserMemory> => {
return request.patch(endpoints.memory(originalKey || key), { key, value });
};
export const updateMemoryPreferences = (preferences: {
memories: boolean;
}): Promise<{ updated: boolean; preferences: { memories: boolean } }> => {
return request.patch(endpoints.memoryPreferences(), preferences);
};
export const createMemory = (data: {
key: string;
value: string;
}): Promise<{ created: boolean; memory: q.TUserMemory }> => {
return request.post(endpoints.memories(), data);
};
export function searchPrincipals(
params: q.PrincipalSearchParams,
): Promise<q.PrincipalSearchResponse> {
return request.get(endpoints.searchPrincipals(params));
}
export function getAccessRoles(
resourceType: permissions.ResourceType,
): Promise<q.AccessRolesResponse> {
return request.get(endpoints.getAccessRoles(resourceType));
}
export function getResourcePermissions(
resourceType: permissions.ResourceType,
resourceId: string,
): Promise<permissions.TGetResourcePermissionsResponse> {
return request.get(endpoints.getResourcePermissions(resourceType, resourceId));
}
export function updateResourcePermissions(
resourceType: permissions.ResourceType,
resourceId: string,
data: permissions.TUpdateResourcePermissionsRequest,
): Promise<permissions.TUpdateResourcePermissionsResponse> {
return request.put(endpoints.updateResourcePermissions(resourceType, resourceId), data);
}
export function getEffectivePermissions(
resourceType: permissions.ResourceType,
resourceId: string,
): Promise<permissions.TEffectivePermissionsResponse> {
return request.get(endpoints.getEffectivePermissions(resourceType, resourceId));
}
// SharePoint Graph API Token
export function getGraphApiToken(params: q.GraphTokenParams): Promise<q.GraphTokenResponse> {
return request.get(endpoints.graphToken(params.scopes));
}
export function getDomainServerBaseUrl(): string {
return `${endpoints.apiBaseUrl()}/api`;
}
|