UNPKG

projectmanager-sdk

Version:

Software development kit for the ProjectManager.com API. for TypeScript

51 lines (50 loc) 1.69 kB
/** * ProjectManager API for TypeScript * * (c) ProjectManager.com, Inc. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @author ProjectManager.com <support@projectmanager.com> * @copyright ProjectManager.com, Inc. * @link https://github.com/projectmgr/projectmanager-sdk-typescript */ import { ProjectManagerClient } from "../index.js"; import { AstroResult } from "../index.js"; import { MeetingTodoDto } from "../index.js"; import { MeetingTodoCreateDto } from "../index.js"; import { MeetingTodoUpdateDto } from "../index.js"; export declare class MeetingTodosClient { private readonly client; /** * Internal constructor for this client library */ constructor(client: ProjectManagerClient); /** * Get todos for a meeting * * @param meetingId The id of the meeting */ getMeetingTodos(meetingId: string): Promise<AstroResult<MeetingTodoDto[]>>; /** * Creates a new todos and associates it with the meeting * * @param meetingId The id of the meeting * @param body The todos to create */ createMeetingTodos(meetingId: string, body: MeetingTodoCreateDto): Promise<AstroResult<MeetingTodoDto>>; /** * Update a todos * * @param todoId The id of the todos * @param body The fields to update */ updateaMeetingTodos(todoId: string, body: MeetingTodoUpdateDto): Promise<AstroResult<MeetingTodoDto>>; /** * Remove meeting todos * * @param todoId The id of the todos to remove */ removeMeetingTodos(todoId: string): Promise<AstroResult<object>>; }