Edits history of script submission #1344 for ' List pull requests for a user (bitbucket)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List pull requests for a user
     * Returns all pull requests authored by the specified user.
    
    By default only open pull requests are returned. This can be controlled
    using the `state` query parameter. To retrieve pull requests that are
    in one of multiple states, repeat the `state` parameter for each
    individual state.
    
    This endpoint also supports filtering and sorting of the results. See
    filtering and sorting for more details.
     */
    export async function main(
      auth: Bitbucket,
      selected_user: string,
      state: "OPEN" | "MERGED" | "DECLINED" | "SUPERSEDED" | undefined
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/pullrequests/${selected_user}`
      );
      for (const [k, v] of [["state", state]]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 375 days ago

  • nativets
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List pull requests for a user
     * Returns all pull requests authored by the specified user.
    
    By default only open pull requests are returned. This can be controlled
    using the `state` query parameter. To retrieve pull requests that are
    in one of multiple states, repeat the `state` parameter for each
    individual state.
    
    This endpoint also supports filtering and sorting of the results. See
    filtering and sorting for more details.
     */
    export async function main(
      auth: Bitbucket,
      selected_user: string,
      state: "OPEN" | "MERGED" | "DECLINED" | "SUPERSEDED" | undefined
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/pullrequests/${selected_user}`
      );
      for (const [k, v] of [["state", state]]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 880 days ago

  • nativets
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List pull requests for a user
     * Returns all pull requests authored by the specified user.
    
    By default only open pull requests are returned. This can be controlled
    using the `state` query parameter. To retrieve pull requests that are
    in one of multiple states, repeat the `state` parameter for each
    individual state.
    
    This endpoint also supports filtering and sorting of the results. See
    [filtering and sorting](/cloud/bitbucket/rest/intro/#filtering) for more details.
     */
    export async function main(
      auth: Bitbucket,
      selected_user: string,
      state: "OPEN" | "MERGED" | "DECLINED" | "SUPERSEDED" | undefined
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/pullrequests/${selected_user}`
      );
      for (const [k, v] of [["state", state]]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 935 days ago