Provides methods for managing shots via the API.

This class extends ApiClient to interact with shot-related endpoints, including listing, fetching, updating, and deleting shots.

const shotsClient = new Shots();

// Fetch shots
const shots = await shotsClient.getShots();
console.log(shots.data);

// Fetch a specific shot
const shot = await shotsClient.getShot(123);
console.log(shot.data.title);

// Update a shot
const updatedShot = await shotsClient.updateShot(123, { title: "Updated Title" });
console.log(updatedShot.data.title);

// Delete a shot
const deleteResponse = await shotsClient.deleteShot(123);
console.log(deleteResponse);

Hierarchy

  • ApiClient
    • Shots

Constructors

Properties

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

Methods

  • Deletes a shot by its ID.

    Parameters

    • id: number

      The unique identifier of the shot to delete.

    Returns Promise<FetchResponse<Shot>>

    A promise that resolves to a FetchResponse indicating the deletion result.

    const deleteResponse = await shotsClient.deleteShot(123);
    console.log(deleteResponse);
  • Type Parameters

    • T

    Parameters

    • options: FetchOptions
    • needAccessToken: boolean = true

    Returns Promise<FetchResponse<T>>

  • Fetches a specific shot by its ID.

    Parameters

    • id: number

      The unique identifier of the shot.

    Returns Promise<FetchResponse<Shot>>

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

    const shot = await shotsClient.getShot(123);
    console.log(shot.data.title);
  • Fetches a paginated list of shots.

    Parameters

    • page: number = 1

      The page number to retrieve. Defaults to 1.

    • per_page: number = 30

      The number of shots per page. Defaults to 30.

    Returns Promise<FetchResponse<Shot[]>>

    A promise that resolves to a FetchResponse containing an array of Shot objects.

    const shots = await shotsClient.getShots(1, 20);
    console.log(shots.data);
  • Updates an existing shot by its ID with the specified parameters.

    Parameters

    Returns Promise<FetchResponse<Shot>>

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

    const updatedShot = await shotsClient.updateShot(123, { title: "Updated Title" });
    console.log(updatedShot.data.title);