/** * Matrix Node - Version 1 * Discriminator: resource=room, operation=join */ interface Credentials { matrixApi: CredentialReference; } /** Join a new room */ export type MatrixV1RoomJoinParams = { resource: 'room'; operation: 'join'; /** * Room ID or Alias */ roomIdOrAlias?: string | Expression | PlaceholderValue; }; export type MatrixV1RoomJoinNode = { type: 'n8n-nodes-base.matrix'; version: 1; credentials?: Credentials; config: NodeConfig; };