Edits history of script submission #1011 for ' run script by path with get (windmill)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    /**
     * run script by path with get
     *
     */
    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,
      payload: string | undefined
    ) {
      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],
        ["payload", payload],
      ]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + WM_TOKEN,
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 370 days ago

  • nativets
    /**
     * run script by path with get
     *
     */
    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,
      payload: string | undefined
    ) {
      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],
        ["payload", payload],
      ]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + WM_TOKEN,
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 797 days ago

  • nativets
    /**
     * run script by path with get
     *
     */
    export async function main(
      workspace: string,
      path: string,
      parent_job: string | undefined,
      job_id: string | undefined,
      include_header: string | undefined,
      queue_limit: string | undefined,
      payload: string | undefined
    ) {
      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],
        ["payload", payload],
      ]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + WM_TOKEN,
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 931 days ago

  • nativets
    /**
     * run script by path with get
     *
     */
    export async function main(
      workspace: string,
      path: string,
      parent_job: string | undefined,
      job_id: string | undefined,
      include_header: string | undefined,
      queue_limit: string | undefined,
      payload: string | undefined
    ) {
      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],
        ["payload", payload],
      ]) {
        if (v !== undefined) {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + WM_TOKEN,
        },
        body: undefined,
      });
      return await response.json();
    }
    

    Submitted by rubenfiszel 933 days ago

  • nativets
    /**
     * run script by path with get
     *
     */
    export async function main(
      workspace: string,
      path: string,
      parent_job: string | undefined,
      job_id: string | undefined,
      include_header: string | undefined,
      queue_limit: string | undefined,
      payload: string | undefined,
    ) {
      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],
        ["payload", payload],
      ]) {
        if (v !== undefined) {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + WM_TOKEN,
        },
        body: undefined,
      });
      return await response.json();
    }
    

    Submitted by admin 1003 days ago