UNPKG

@hyperbrowser/sdk

Version:

Node SDK for Hyperbrowser API

26 lines (25 loc) 522 B
export interface CreateProfileParams { name?: string; } export interface CreateProfileResponse { id: string; name: string | null; } export interface ProfileResponse { id: string; name: string | null; teamId: string; createdAt: string; updatedAt: string; } export interface ProfileListParams { name?: string; page?: number; limit?: number; } export interface ProfileListResponse { profiles: ProfileResponse[]; totalCount: number; page: number; perPage: number; }