attio-js
Version:
Developer-friendly & type-safe JS/TS SDK based on the official OpenAPI spec of Attio.
20 lines • 804 B
JavaScript
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import { entriesAttributesValuesList } from "../funcs/entriesAttributesValuesList.js";
import { ClientSDK } from "../lib/sdks.js";
import { unwrapAsync } from "../types/fp.js";
export class Values extends ClientSDK {
/**
* 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`.
*/
async list(request, options) {
return unwrapAsync(entriesAttributesValuesList(this, request, options));
}
}
//# sourceMappingURL=values.js.map