MCPcopy Index your code
hub / github.com/triggerdotdev/trigger.dev / attachmentLinkFront

Method attachmentLinkFront

integrations/linear/src/index.ts:319–346  ·  view source on GitHub ↗
(
    key: IntegrationTaskKey,
    params: {
      conversationId: string;
      issueId: string;
      variables?: Omit<L.AttachmentLinkFrontMutationVariables, "conversationId" | "issueId">;
    }
  )

Source from the content-addressed store, hash-verified

317 }
318
319 attachmentLinkFront(
320 key: IntegrationTaskKey,
321 params: {
322 conversationId: string;
323 issueId: string;
324 variables?: Omit<L.AttachmentLinkFrontMutationVariables, "conversationId" | "issueId">;
325 }
326 ): LinearReturnType<FrontAttachmentPayload> {
327 return this.runTask(
328 key,
329 async (client) => {
330 const payload = await client.attachmentLinkFront(
331 params.conversationId,
332 params.issueId,
333 params.variables
334 );
335 return serializeLinearOutput(payload);
336 },
337 {
338 name: "Link Front Conversation",
339 params,
340 properties: [
341 { label: "Issue ID", text: params.issueId },
342 { label: "Conversation ID", text: params.conversationId },
343 ],
344 }
345 );
346 }
347
348 attachmentLinkIntercom(
349 key: IntegrationTaskKey,

Callers

nothing calls this directly

Calls 2

runTaskMethod · 0.95
serializeLinearOutputFunction · 0.85

Tested by

no test coverage detected