Edits history of script submission #3351 for ' Get custom field contexts for projects and issue types (jira)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Jira = {
      username: string;
      password: string;
      domain: string;
    };
    /**
     * Get custom field contexts for projects and issue types
     * Returns a [paginated](#pagination) list of project and issue type mappings and, for each mapping, the ID of a [custom field context](https://confluence.
     */
    export async function main(
      auth: Jira,
      fieldId: string,
      startAt: string | undefined,
      maxResults: string | undefined,
      body: { mappings: { issueTypeId: string; projectId: string }[] }
    ) {
      const url = new URL(
        `https://${auth.domain}.atlassian.net/rest/api/2/field/${fieldId}/context/mapping`
      );
      for (const [k, v] of [
        ["startAt", startAt],
        ["maxResults", maxResults],
      ]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: JSON.stringify(body),
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 396 days ago

  • nativets
    type Jira = {
      username: string;
      password: string;
      domain: string;
    };
    /**
     * Get custom field contexts for projects and issue types
     * Returns a [paginated](#pagination) list of project and issue type mappings and, for each mapping, the ID of a [custom field context](https://confluence.
     */
    export async function main(
      auth: Jira,
      fieldId: string,
      startAt: string | undefined,
      maxResults: string | undefined,
      body: { mappings: { issueTypeId: string; projectId: string }[] }
    ) {
      const url = new URL(
        `https://${auth.domain}.atlassian.net/rest/api/2/field/${fieldId}/context/mapping`
      );
      for (const [k, v] of [
        ["startAt", startAt],
        ["maxResults", maxResults],
      ]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: JSON.stringify(body),
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 948 days ago