/**
* run flow by path
*
*/
export async function main(
workspace: string,
path: string,
scheduled_for: string | undefined,
scheduled_in_secs: string | undefined,
parent_job: string | undefined,
tag: string | undefined,
job_id: string | undefined,
include_header: string | undefined,
invisible_to_owner: string | undefined,
body: { [k: string]: unknown }
) {
const url = new URL(`${BASE_URL}/api/w/${workspace}/jobs/run/f/${path}`);
for (const [k, v] of [
["scheduled_for", scheduled_for],
["scheduled_in_secs", scheduled_in_secs],
["parent_job", parent_job],
["tag", tag],
["job_id", job_id],
["include_header", include_header],
["invisible_to_owner", invisible_to_owner],
]) {
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.text();
}
Submitted by hugo697 274 days ago
/**
* run flow by path
*
*/
export async function main(
workspace: string,
path: string,
scheduled_for: string | undefined,
scheduled_in_secs: string | undefined,
parent_job: string | undefined,
job_id: string | undefined,
include_header: string | undefined,
invisible_to_owner: string | undefined,
body: { [k: string]: unknown }
) {
const url = new URL(`${BASE_URL}/api/w/${workspace}/jobs/run/f/${path}`);
for (const [k, v] of [
["scheduled_for", scheduled_for],
["scheduled_in_secs", scheduled_in_secs],
["parent_job", parent_job],
["job_id", job_id],
["include_header", include_header],
["invisible_to_owner", invisible_to_owner],
]) {
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.text();
}
Submitted by hugo697 408 days ago
/**
* run flow by path
*
*/
export async function main(
workspace: string,
path: string,
scheduled_for: string | undefined,
scheduled_in_secs: string | undefined,
parent_job: string | undefined,
job_id: string | undefined,
include_header: string | undefined,
invisible_to_owner: string | undefined,
body: { [k: string]: unknown }
) {
const url = new URL(`${BASE_URL}/api/w/${workspace}/jobs/run/f/${path}`);
for (const [k, v] of [
["scheduled_for", scheduled_for],
["scheduled_in_secs", scheduled_in_secs],
["parent_job", parent_job],
["job_id", job_id],
["include_header", include_header],
["invisible_to_owner", invisible_to_owner],
]) {
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.text();
}
Submitted by rubenfiszel 410 days ago
/**
* run flow by path
*
*/
export async function main(
workspace: string,
path: string,
scheduled_for: string | undefined,
scheduled_in_secs: string | undefined,
parent_job: string | undefined,
job_id: string | undefined,
include_header: string | undefined,
invisible_to_owner: string | undefined,
body: { [k: string]: unknown },
) {
const url = new URL(`${BASE_URL}/api/w/${workspace}/jobs/run/f/${path}`);
for (const [k, v] of [
["scheduled_for", scheduled_for],
["scheduled_in_secs", scheduled_in_secs],
["parent_job", parent_job],
["job_id", job_id],
["include_header", include_header],
["invisible_to_owner", invisible_to_owner],
]) {
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.text();
}
Submitted by admin 480 days ago