您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import { IConfig } from '../../react/features/base/config/configType';
  2. import type { Participant } from './Participant';
  3. import WebhookProxy from './WebhookProxy';
  4. export type IContext = {
  5. conferenceJid: string;
  6. dialInPin: string;
  7. iframeAPI: boolean;
  8. jwtKid: string;
  9. jwtPrivateKeyPath: string;
  10. p1: Participant;
  11. p2: Participant;
  12. p3: Participant;
  13. p4: Participant;
  14. roomKey: string;
  15. roomName: string;
  16. skipSuiteTests: boolean;
  17. times: any;
  18. webhooksProxy: WebhookProxy;
  19. };
  20. export type IJoinOptions = {
  21. /**
  22. * Config overwrites to use.
  23. */
  24. configOverwrite?: IConfig;
  25. /**
  26. * The display name to use.
  27. */
  28. displayName?: string;
  29. /**
  30. * Whether to skip setting display name.
  31. */
  32. skipDisplayName?: boolean;
  33. /**
  34. * Whether to skip setting the moderator role for the first participant (whether to use jwt for it).
  35. */
  36. skipFirstModerator?: boolean;
  37. /**
  38. * Whether to skip in meeting checks like ice connected and send receive data. For single in meeting participant.
  39. */
  40. skipInMeetingChecks?: boolean;
  41. /**
  42. * Whether to skip waiting for the participant to join the room. Cases like lobby where we do not succeed to join
  43. * based on the logic of the test.
  44. */
  45. skipWaitToJoin?: boolean;
  46. };