import * as actions from "./actions" import * as triggers from "./triggers" /** Teams callables. */ export const teams = { addChannelMember: actions.addMicrosoftTeamsChannelMember, addChatMember: actions.addMicrosoftTeamsChatMember, addTeamMember: actions.addMicrosoftTeamsTeamMember, archiveChannel: actions.archiveMicrosoftTeamsChannel, createChannel: actions.createMicrosoftTeamsChannel, createChat: actions.createMicrosoftTeamsChat, deleteChannel: actions.deleteMicrosoftTeamsChannel, getChannel: actions.getMicrosoftTeamsChannel, getChannelMember: actions.getMicrosoftTeamsChannelMember, getChannelMessageHostedContent: actions.getMicrosoftTeamsChannelMessageHostedContent, getChannelMessage: actions.getMicrosoftTeamsChannelMessage, getChat: actions.getMicrosoftTeamsChat, getChatMember: actions.getMicrosoftTeamsChatMember, getChatMessageHostedContent: actions.getMicrosoftTeamsChatMessageHostedContent, getChatMessage: actions.getMicrosoftTeamsChatMessage, getTeam: actions.getMicrosoftTeam, getTeamMember: actions.getMicrosoftTeamsTeamMember, listChannelMembers: actions.listMicrosoftTeamsChannelMembers, listChannelMessages: actions.listMicrosoftTeamsChannelMessages, listChannelMessageHostedContent: actions.listMicrosoftTeamsChannelMessageHostedContent, listChannelReplies: actions.listMicrosoftTeamsChannelReplies, listChannels: actions.listMicrosoftTeamsChannels, listChatMembers: actions.listMicrosoftTeamsChatMembers, listChatMessages: actions.listMicrosoftTeamsChatMessages, listChatMessageHostedContent: actions.listMicrosoftTeamsChatMessageHostedContent, listChats: actions.listMicrosoftTeamsChats, listJoinedTeams: actions.listJoinedMicrosoftTeams, listTeamMembers: actions.listMicrosoftTeamsTeamMembers, onChannelMessagePosted: triggers.onMicrosoftTeamsChannelMessagePosted, onChannelEvent: triggers.onMicrosoftTeamsChannelEvent, onChannelCreated: triggers.onMicrosoftTeamsChannelCreated, onChannelDeleted: triggers.onMicrosoftTeamsChannelDeleted, onChannelMemberAdded: triggers.onMicrosoftTeamsChannelMemberAdded, onChannelMemberEvent: triggers.onMicrosoftTeamsChannelMemberEvent, onChannelMemberRemoved: triggers.onMicrosoftTeamsChannelMemberRemoved, onChannelMemberUpdated: triggers.onMicrosoftTeamsChannelMemberUpdated, onChannelMessageEvent: triggers.onMicrosoftTeamsChannelMessageEvent, onChannelMessageDeleted: triggers.onMicrosoftTeamsChannelMessageDeleted, onChannelMessageUpdated: triggers.onMicrosoftTeamsChannelMessageUpdated, onChannelUpdated: triggers.onMicrosoftTeamsChannelUpdated, onChatMessagePosted: triggers.onMicrosoftTeamsChatMessagePosted, onChatEvent: triggers.onMicrosoftTeamsChatEvent, onChatMemberAdded: triggers.onMicrosoftTeamsChatMemberAdded, onChatMemberEvent: triggers.onMicrosoftTeamsChatMemberEvent, onChatMemberRemoved: triggers.onMicrosoftTeamsChatMemberRemoved, onChatMessageEvent: triggers.onMicrosoftTeamsChatMessageEvent, onChatMessageDeleted: triggers.onMicrosoftTeamsChatMessageDeleted, onChatMessageUpdated: triggers.onMicrosoftTeamsChatMessageUpdated, onChatUpdated: triggers.onMicrosoftTeamsChatUpdated, onTeamEvent: triggers.onMicrosoftTeamsTeamEvent, onTeamDeleted: triggers.onMicrosoftTeamsTeamDeleted, onTeamMemberAdded: triggers.onMicrosoftTeamsTeamMemberAdded, onTeamMemberEvent: triggers.onMicrosoftTeamsTeamMemberEvent, onTeamMemberRemoved: triggers.onMicrosoftTeamsTeamMemberRemoved, onTeamMemberUpdated: triggers.onMicrosoftTeamsTeamMemberUpdated, onTeamUpdated: triggers.onMicrosoftTeamsTeamUpdated, replyToChannelMessage: actions.replyToMicrosoftTeamsChannelMessage, removeChannelMember: actions.removeMicrosoftTeamsChannelMember, removeChatMember: actions.removeMicrosoftTeamsChatMember, removeTeamMember: actions.removeMicrosoftTeamsTeamMember, sendChannelMessage: actions.sendMicrosoftTeamsChannelMessage, sendChatMessage: actions.sendMicrosoftTeamsChatMessage, setChannelMessageReaction: actions.setMicrosoftTeamsChannelMessageReaction, setChatMessageReaction: actions.setMicrosoftTeamsChatMessageReaction, unarchiveChannel: actions.unarchiveMicrosoftTeamsChannel, unsetChannelMessageReaction: actions.unsetMicrosoftTeamsChannelMessageReaction, unsetChatMessageReaction: actions.unsetMicrosoftTeamsChatMessageReaction, updateChannel: actions.updateMicrosoftTeamsChannel, updateChannelMember: actions.updateMicrosoftTeamsChannelMember, updateChat: actions.updateMicrosoftTeamsChat, updateTeamMember: actions.updateMicrosoftTeamsTeamMember, } export { microsoftAccount } from "../microsoft" export * from "./actions" export * from "./triggers" export { getTeamsGraphApi } from "@automate.ax/integration-contracts/teams" export { normalizeTeamsChatMessage, TEAMS_CHANNEL_SCHEMA, TEAMS_CHANNEL_MESSAGE_POSTED_EVENT_SCHEMA, TEAMS_CHAT_MESSAGE_SCHEMA, TEAMS_CHAT_MESSAGE_POSTED_EVENT_SCHEMA, TEAMS_CHAT_SCHEMA, TEAMS_MEMBER_SCHEMA, TEAMS_TEAM_SCHEMA, } from "@automate.ax/integration-contracts/teams"