fix: export chat project method types

This commit is contained in:
Danny Avila 2026-06-02 22:51:50 -04:00
parent 0fafaa2935
commit b1342bf8ea
2 changed files with 11 additions and 2 deletions

View file

@ -1528,8 +1528,6 @@
"com_ui_sidebar_mode_chronological": "Chronological",
"com_ui_sidebar_mode_chronological_list": "Chronological list",
"com_ui_sidebar_mode_recent_projects": "Recent projects",
"com_ui_sidebar_organization_label": "Organize sidebar",
"com_ui_sort_by": "Sort by",
"com_ui_sort_chats_by": "Sort chats by",
"com_ui_sort_created": "Created",
"com_ui_sort_projects_by": "Sort projects by",

View file

@ -33,6 +33,17 @@ import { createConversationTagMethods, type ConversationTagMethods } from './con
import { createMessageMethods, type MessageMethods } from './message';
import { createConversationMethods, type ConversationMethods } from './conversation';
import { createChatProjectMethods, type ChatProjectMethods } from './chatProject';
export type {
AssignConversationToProjectResult,
ChatProjectMethods,
ChatProjectSortBy,
ChatProjectSortDirection,
CreateChatProjectInput,
DeleteChatProjectResult,
ListChatProjectsOptions,
ListChatProjectsResult,
UpdateChatProjectInput,
} from './chatProject';
/* Tier 3 — Complex (heavier injection) */
import {
createTxMethods,