File tree Expand file tree Collapse file tree
x-pack/platform/plugins/shared/agent_builder/server/services/conversation/client Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ const convertBaseFromEs = (document: Document) => {
5959 title : document . _source . title ,
6060 created_at : document . _source . created_at ,
6161 updated_at : document . _source . updated_at ,
62- ...( document . _source . read !== undefined && { read : document . _source . read } ) ,
6362 ...( document . _source . status !== undefined && { status : document . _source . status } ) ,
63+ ...( document . _source . read !== undefined && { read : document . _source . read } ) ,
6464 } ;
6565} ;
6666
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export type ConversationCreateRequest = Omit<
2727} ;
2828
2929export type ConversationUpdateRequest = Pick < Conversation , 'id' > &
30- Partial < Pick < Conversation , 'title' | 'rounds' | 'attachments' | 'state' | 'read ' | 'status ' > > ;
30+ Partial < Pick < Conversation , 'title' | 'rounds' | 'attachments' | 'state' | 'status ' | 'read ' > > ;
3131
3232export interface ConversationListOptions {
3333 agentId ?: string ;
You can’t perform that action at this time.
0 commit comments