/**
* run script by path
*
*/
export async function main(
workspace: string,
path: string,
parent_job: string | undefined,
tag: string | undefined,
job_id: string | undefined,
include_header: string | undefined,
queue_limit: string | undefined,
body: { [k: string]: unknown }
) {
const url = new URL(
`${BASE_URL}/api/w/${workspace}/jobs/run_wait_result/p/${path}`
);
for (const [k, v] of [
["parent_job", parent_job],
["tag", tag],
["job_id", job_id],
["include_header", include_header],
["queue_limit", queue_limit],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + WM_TOKEN,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 274 days ago
/**
* run script by path
*
*/
export async function main(
workspace: string,
path: string,
parent_job: string | undefined,
job_id: string | undefined,
include_header: string | undefined,
queue_limit: string | undefined,
body: { [k: string]: unknown }
) {
const url = new URL(
`${BASE_URL}/api/w/${workspace}/jobs/run_wait_result/p/${path}`
);
for (const [k, v] of [
["parent_job", parent_job],
["job_id", job_id],
["include_header", include_header],
["queue_limit", queue_limit],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + WM_TOKEN,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 408 days ago
/**
* run script by path
*
*/
export async function main(
workspace: string,
path: string,
parent_job: string | undefined,
job_id: string | undefined,
include_header: string | undefined,
queue_limit: string | undefined,
body: { [k: string]: unknown }
) {
const url = new URL(
`${BASE_URL}/api/w/${workspace}/jobs/run_wait_result/p/${path}`
);
for (const [k, v] of [
["parent_job", parent_job],
["job_id", job_id],
["include_header", include_header],
["queue_limit", queue_limit],
]) {
if (v !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + WM_TOKEN,
},
body: JSON.stringify(body),
});
return await response.json();
}
Submitted by rubenfiszel 410 days ago
/**
* run script by path
*
*/
export async function main(
workspace: string,
path: string,
parent_job: string | undefined,
job_id: string | undefined,
include_header: string | undefined,
queue_limit: string | undefined,
body: { [k: string]: unknown },
) {
const url = new URL(
`${BASE_URL}/api/w/${workspace}/jobs/run_wait_result/p/${path}`,
);
for (const [k, v] of [
["parent_job", parent_job],
["job_id", job_id],
["include_header", include_header],
["queue_limit", queue_limit],
]) {
if (v !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + WM_TOKEN,
},
body: JSON.stringify(body),
});
return await response.json();
}
Submitted by admin 480 days ago