Provides methods for managing jobs via the API.

This class extends ApiClient to interact with job-related endpoints, including fetching, creating, and updating jobs.

const jobsClient = new Jobs();

// Fetch a job
const job = await jobsClient.getJob(123);
console.log(job.data.title);

// Create a job
const newJob = await jobsClient.postJob({ title: "New Job", description: "Job description" });
console.log(newJob.data.id);

// Update a job
const updatedJob = await jobsClient.updateJob(123, { title: "Updated Title" });
console.log(updatedJob.data.title);

Hierarchy

  • ApiClient
    • Jobs

Constructors

Properties

accessToken: string
baseUrl: string
OnError?: (error: DribbbleError) => void
rateLimitHandler?: (rateLimit: RateLimit) => void

Methods

  • Type Parameters

    • T

    Parameters

    • options: FetchOptions
    • needAccessToken: boolean = true

    Returns Promise<FetchResponse<T>>

  • Retrieves a job by its ID.

    Parameters

    • id: number

      The unique identifier of the job.

    Returns Promise<FetchResponse<Job>>

    A promise that resolves to a FetchResponse containing the job data.

    const job = await jobsClient.getJob(123);
    console.log(job.data.title);
  • Creates a new job with the specified parameters.

    Parameters

    Returns Promise<FetchResponse<Job>>

    A promise that resolves to a FetchResponse containing the newly created job data.

    const newJob = await jobsClient.postJob({
    title: "New Job",
    description: "Job description",
    });
    console.log(newJob.data.id);
  • Updates an existing job by its ID with the specified parameters.

    Parameters

    Returns Promise<FetchResponse<Job>>

    A promise that resolves to a FetchResponse containing the updated job data.

    const updatedJob = await jobsClient.updateJob(123, {
    title: "Updated Title",
    });
    console.log(updatedJob.data.title);