Edits history of script submission #3167 for ' Get status updates from an object (asana)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Asana = {
      token: string;
    };
    /**
     * Get status updates from an object
     * Returns the compact status update records for all updates on the object.
     */
    export async function main(
      auth: Asana,
      opt_pretty: string | undefined,
      opt_fields: string | undefined,
      limit: string | undefined,
      offset: string | undefined,
      parent: string | undefined,
      created_since: string | undefined
    ) {
      const url = new URL(`https://app.asana.com/api/1.0/status_updates`);
      for (const [k, v] of [
        ["opt_pretty", opt_pretty],
        ["opt_fields", opt_fields],
        ["limit", limit],
        ["offset", offset],
        ["parent", parent],
        ["created_since", created_since],
      ]) {
        if (v !== undefined && v !== "") {
          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 383 days ago

  • nativets
    type Asana = {
      token: string;
    };
    /**
     * Get status updates from an object
     * Returns the compact status update records for all updates on the object.
     */
    export async function main(
      auth: Asana,
      opt_pretty: string | undefined,
      opt_fields: string | undefined,
      limit: string | undefined,
      offset: string | undefined,
      parent: string | undefined,
      created_since: string | undefined
    ) {
      const url = new URL(`https://app.asana.com/api/1.0/status_updates`);
      for (const [k, v] of [
        ["opt_pretty", opt_pretty],
        ["opt_fields", opt_fields],
        ["limit", limit],
        ["offset", offset],
        ["parent", parent],
        ["created_since", created_since],
      ]) {
        if (v !== undefined && v !== "") {
          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 937 days ago