import type { ApiClient } from "@promobase/sdk-runtime"; export interface ALMAdAccountInfoFields { ad_account_id: string; id: string; managed_by: string; owned_by: string; parent_advertiser_id: string; sub_vertical: string; tag: string[]; user_ids: string[]; vertical: string; } export function aLMAdAccountInfoNode(client: ApiClient, id: string) { return { __path: id, __brand: undefined as unknown as ALMAdAccountInfoFields, get: (opts: { fields: F; params?: Record }) => client.get>(`${id}`, opts), }; }