delete draft

Script windmill Verified

by admin ยท 8/13/2023

The script

Submitted by admin Typescript (fetch-only)
Verified 370 days ago
1
/**
2
 * delete draft
3
 *
4
 */
5
export async function main(
6
  workspace: string,
7
  kind: "script" | "flow" | "app",
8
  path: string
9
) {
10
  const url = new URL(
11
    `${BASE_URL}/api/w/${workspace}/drafts/delete/${kind}/${path}`
12
  );
13

14
  const response = await fetch(url, {
15
    method: "DELETE",
16
    headers: {
17
      Authorization: "Bearer " + WM_TOKEN,
18
    },
19
    body: undefined,
20
  });
21
  if (!response.ok) {
22
    const text = await response.text();
23
    throw new Error(`${response.status} ${text}`);
24
  }
25
  return await response.text();
26
}
27