Skip to main content
Glama

mcp-google-sheets

new-task-assigned-to-user.ts2.13 kB
import { DedupeStrategy, Polling, pollingHelper, } from '@activepieces/pieces-common'; import { createTrigger, PiecePropValueSchema, StaticPropsValue, TriggerStrategy, } from '@activepieces/pieces-framework'; import dayjs from 'dayjs'; import { microsoft365PlannerAuth, microsoft365PlannerCommon } from '../common'; import { PlanDropdown } from '../common/properties'; const props = { planId: PlanDropdown({ required: true }), }; const polling: Polling< PiecePropValueSchema<typeof microsoft365PlannerAuth>, StaticPropsValue<typeof props> > = { strategy: DedupeStrategy.TIMEBASED, items: async ({ auth, propsValue: { planId } }) => { if (!planId) { return []; } const user = await microsoft365PlannerCommon.getUser({ auth }); if (!user || !user.id) { throw new Error('Unable to fetch authenticated user details.'); } const items = await microsoft365PlannerCommon.listTasks({ auth, planId }); return items .filter((item) => { const userId = String(user.id); return ( item.assignments && Object.prototype.hasOwnProperty.call(item.assignments, userId) ); }) .map((item) => ({ epochMilliSeconds: dayjs(item.createdDateTime).valueOf(), data: item, })); }, }; export const newTaskAssignedToUser = createTrigger({ auth: microsoft365PlannerAuth, name: 'newTaskAssignedToUser', displayName: 'New Task Assigned to User', description: 'Triggers when a Task is assigned to the authenticated user in Microsoft 365 Planner.', props, sampleData: {}, type: TriggerStrategy.POLLING, async test(context) { return await pollingHelper.test(polling, context); }, async onEnable(context) { const { store, auth, propsValue } = context; await pollingHelper.onEnable(polling, { store, auth, propsValue }); }, async onDisable(context) { const { store, auth, propsValue } = context; await pollingHelper.onDisable(polling, { store, auth, propsValue }); }, async run(context) { return await pollingHelper.poll(polling, context); }, });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/activepieces/activepieces'

If you have feedback or need assistance with the MCP directory API, please join our Discord server