@hubspot/api-client
Version:
NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files
14 lines (13 loc) • 981 B
TypeScript
import { BaseAPIRequestFactory } from './baseapi';
import { Configuration } from '../configuration';
import { RequestContext, ResponseContext, HttpInfo } from '../http/http';
import { CollectionResponseWithTotalDomain } from '../models/CollectionResponseWithTotalDomain';
import { Domain } from '../models/Domain';
export declare class BasicApiRequestFactory extends BaseAPIRequestFactory {
cmsV3Domains(after?: string, archived?: boolean, createdAfter?: Date, createdAt?: Date, createdBefore?: Date, limit?: number, sort?: Array<string>, updatedAfter?: Date, updatedAt?: Date, updatedBefore?: Date, _options?: Configuration): Promise<RequestContext>;
getById(domainId: string, _options?: Configuration): Promise<RequestContext>;
}
export declare class BasicApiResponseProcessor {
cmsV3DomainsWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CollectionResponseWithTotalDomain>>;
getByIdWithHttpInfo(response: ResponseContext): Promise<HttpInfo<Domain>>;
}