Edits history of script submission #860 for ' run script by hash (windmill)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    /**
     * run script by hash
     *
     */
    export async function main(
      workspace: string,
      hash: 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/h/${hash}`);
      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 370 days ago

  • nativets
    /**
     * run script by hash
     *
     */
    export async function main(
      workspace: string,
      hash: 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/h/${hash}`);
      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 797 days ago

  • nativets
    /**
     * run script by hash
     *
     */
    export async function main(
      workspace: string,
      hash: 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/h/${hash}`);
      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 931 days ago

  • nativets
    /**
     * run script by hash
     *
     */
    export async function main(
      workspace: string,
      hash: 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/h/${hash}`);
      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 933 days ago

  • nativets
    /**
     * run script by hash
     *
     */
    export async function main(
      workspace: string,
      hash: 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/h/${hash}`);
      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 1003 days ago