(
key: IntegrationTaskKey,
params: {
conversationId: string;
issueId: string;
variables?: Omit<L.AttachmentLinkFrontMutationVariables, "conversationId" | "issueId">;
}
)
| 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, |
nothing calls this directly
no test coverage detected