1 | |
2 | * update app history |
3 | * |
4 | */ |
5 | export async function main( |
6 | workspace: string, |
7 | id: string, |
8 | version: string, |
9 | body: { deployment_msg?: string; [k: string]: unknown } |
10 | ) { |
11 | const url = new URL( |
12 | `${BASE_URL}/api/w/${workspace}/apps/history_update/a/${id}/v/${version}` |
13 | ); |
14 |
|
15 | const response = await fetch(url, { |
16 | method: "POST", |
17 | headers: { |
18 | "Content-Type": "application/json", |
19 | Authorization: "Bearer " + WM_TOKEN, |
20 | }, |
21 | body: JSON.stringify(body), |
22 | }); |
23 | if (!response.ok) { |
24 | const text = await response.text(); |
25 | throw new Error(`${response.status} ${text}`); |
26 | } |
27 | return await response.text(); |
28 | } |
29 |
|