Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

feat: improve IRoom Custom fields #765

Draft
wants to merge 1 commit into
base: alpha
Choose a base branch
from
Draft
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
5 changes: 5 additions & 0 deletions src/definition/rooms/IRoom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ export interface IRoom {
updatedAt?: Date;
lastModifiedAt?: Date;
description?: string;
/** @deprecated */
customFields?: { [key: string]: any };
custom?: ICustomFields;
parentRoom?: IRoom;
livechatData?: { [key: string]: any };
}

// eslint-disable-next-line @typescript-eslint/no-empty-interface
interface ICustomFields {}
Loading