UNPKG

attio-js

Version:

Developer-friendly & type-safe JS/TS SDK based on the official OpenAPI spec of Attio.

19 lines 1.74 kB
import { AttioCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { APIError } from "../models/errors/apierror.js"; import { GetV2ListsListNotFoundError, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesValidationTypeError } from "../models/errors/getv2objectsobject.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { GetV2ListsListEntriesEntryIdAttributesAttributeValuesRequest, GetV2ListsListEntriesEntryIdAttributesAttributeValuesResponse } from "../models/operations/getv2listslistentriesentryidattributesattributevalues.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * List attribute values for a list entry * * @remarks * Gets all values for a given attribute on a list entry. If the attribute is historic, this endpoint has the ability to return all historic values using the `show_historic` query param. * * Required scopes: `list_entry:read`, `list_configuration:read`. */ export declare function entriesAttributesValuesList(client: AttioCore, request: GetV2ListsListEntriesEntryIdAttributesAttributeValuesRequest, options?: RequestOptions): APIPromise<Result<GetV2ListsListEntriesEntryIdAttributesAttributeValuesResponse, GetV2ObjectsObjectRecordsRecordIdAttributesAttributeValuesValidationTypeError | GetV2ListsListNotFoundError | APIError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>; //# sourceMappingURL=entriesAttributesValuesList.d.ts.map