1 | type Asana = { |
2 | token: string; |
3 | }; |
4 | |
5 | * Add a tag to a task |
6 | * Adds a tag to a task. Returns an empty data block. |
7 | */ |
8 | export async function main( |
9 | auth: Asana, |
10 | task_gid: string, |
11 | opt_pretty: string | undefined, |
12 | opt_fields: string | undefined, |
13 | body: { data?: { tag: string; [k: string]: unknown }; [k: string]: unknown } |
14 | ) { |
15 | const url = new URL(`https://app.asana.com/api/1.0/tasks/${task_gid}/addTag`); |
16 | for (const [k, v] of [ |
17 | ["opt_pretty", opt_pretty], |
18 | ["opt_fields", opt_fields], |
19 | ]) { |
20 | if (v !== undefined && v !== "") { |
21 | url.searchParams.append(k, v); |
22 | } |
23 | } |
24 | const response = await fetch(url, { |
25 | method: "POST", |
26 | headers: { |
27 | "Content-Type": "application/json", |
28 | Authorization: "Bearer " + auth.token, |
29 | }, |
30 | body: JSON.stringify(body), |
31 | }); |
32 | if (!response.ok) { |
33 | const text = await response.text(); |
34 | throw new Error(`${response.status} ${text}`); |
35 | } |
36 | return await response.json(); |
37 | } |
38 |
|