typings: use roomName instead of roomIdPrefix
This commit is contained in:
parent
0ce5d26acc
commit
d8e6da5b4b
@ -2,8 +2,8 @@ import { ParticipantPermissions, ParticipantRole } from './participant.js';
|
|||||||
import { MeetRoomPreferences } from './room-preferences.js';
|
import { MeetRoomPreferences } from './room-preferences.js';
|
||||||
|
|
||||||
interface BaseRoomOptions {
|
interface BaseRoomOptions {
|
||||||
|
roomName?: string;
|
||||||
autoDeletionDate?: number;
|
autoDeletionDate?: number;
|
||||||
roomIdPrefix?: string;
|
|
||||||
preferences?: MeetRoomPreferences;
|
preferences?: MeetRoomPreferences;
|
||||||
// maxParticipants?: number | null;
|
// maxParticipants?: number | null;
|
||||||
}
|
}
|
||||||
@ -18,6 +18,7 @@ export type MeetRoomOptions = BaseRoomOptions;
|
|||||||
*/
|
*/
|
||||||
export interface MeetRoom extends BaseRoomOptions {
|
export interface MeetRoom extends BaseRoomOptions {
|
||||||
roomId: string;
|
roomId: string;
|
||||||
|
roomName: string;
|
||||||
creationDate: number;
|
creationDate: number;
|
||||||
moderatorRoomUrl: string;
|
moderatorRoomUrl: string;
|
||||||
publisherRoomUrl: string;
|
publisherRoomUrl: string;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user