UNPKG

attio-js

Version:

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

55 lines 1.97 kB
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { ClientSDK } from "../lib/sdks.js"; import { Attributes } from "./attributes.js"; import { Comments } from "./comments.js"; import { Entries } from "./entries.js"; import { Lists } from "./lists.js"; import { Meta } from "./meta.js"; import { Notes } from "./notes.js"; import { Objects } from "./objects.js"; import { Records } from "./records.js"; import { Tasks } from "./tasks.js"; import { Threads } from "./threads.js"; import { Webhooks } from "./webhooks.js"; import { WorkspaceMembers } from "./workspacemembers.js"; export class Attio extends ClientSDK { get objects() { return (this._objects ?? (this._objects = new Objects(this._options))); } get attributes() { return (this._attributes ?? (this._attributes = new Attributes(this._options))); } get records() { return (this._records ?? (this._records = new Records(this._options))); } get lists() { return (this._lists ?? (this._lists = new Lists(this._options))); } get entries() { return (this._entries ?? (this._entries = new Entries(this._options))); } get workspaceMembers() { return (this._workspaceMembers ?? (this._workspaceMembers = new WorkspaceMembers(this._options))); } get notes() { return (this._notes ?? (this._notes = new Notes(this._options))); } get tasks() { return (this._tasks ?? (this._tasks = new Tasks(this._options))); } get threads() { return (this._threads ?? (this._threads = new Threads(this._options))); } get comments() { return (this._comments ?? (this._comments = new Comments(this._options))); } get webhooks() { return (this._webhooks ?? (this._webhooks = new Webhooks(this._options))); } get meta() { return (this._meta ?? (this._meta = new Meta(this._options))); } } //# sourceMappingURL=sdk.js.map