Edits history of script submission #13800 for ' List aliases (vercel)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Vercel = {
      token: string;
    };
    /**
     * List aliases
     * Retrieves a list of aliases for the authenticated User or Team. When `domain` is provided, only aliases for that domain will be returned. When `projectId` is provided, it will only return the given project aliases.
     */
    export async function main(
      auth: Vercel,
      domain: string | undefined,
      from: string | undefined,
      limit: string | undefined,
      projectId: string | undefined,
      since: string | undefined,
      until: string | undefined,
      rollbackDeploymentId: string | undefined,
      teamId: string | undefined,
      slug: string | undefined,
    ) {
      const url = new URL(`https://api.vercel.com/v4/aliases`);
      for (const [k, v] of [
        ["domain", domain],
        ["from", from],
        ["limit", limit],
        ["projectId", projectId],
        ["since", since],
        ["until", until],
        ["rollbackDeploymentId", rollbackDeploymentId],
        ["teamId", teamId],
        ["slug", slug],
      ]) {
        if (v !== undefined && v !== "" && k !== undefined) {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + auth.token,
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 428 days ago