// // Copyright © 2024 Hardcore Engineering Inc. // // Licensed under the Eclipse Public License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. You may // obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // // See the License for the specific language governing permissions and // limitations under the License. // import { Account, Class, Doc, Markup, Ref, Space, Timestamp } from '@hcengineering/core' import { ChatMessage } from '@hcengineering/chunter' import { Room, RoomLanguage } from '@hcengineering/love' import { Person } from '@hcengineering/contact' export enum AIEventType { Message = 'message', Transfer = 'transfer' } export interface AIEventRequest { type: AIEventType collection: string messageClass: Ref> messageId: Ref message: string createdOn: Timestamp } export interface AIMessageEventRequest extends AIEventRequest { objectId: Ref objectClass: Ref> objectSpace: Ref user: Ref email: string } export interface AITransferEventRequest extends AIEventRequest { toEmail: string toWorkspace: string fromWorkspace: string fromWorkspaceName: string fromWorkspaceUrl: string parentMessageId?: Ref } export interface TranslateRequest { text: Markup lang: string } export interface TranslateResponse { text: Markup lang: string } export interface ConnectMeetingRequest { roomId: Ref language: RoomLanguage transcription: boolean } export interface DisconnectMeetingRequest { roomId: Ref } export interface PostTranscriptRequest { transcript: string participant: Ref roomName: string } export interface IdentityResponse { identity: Ref name: string }