This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Releases: dubisdev/todoist-rest-client
Releases · dubisdev/todoist-rest-client
todoist-rest-client v.2.1.1
todoist-rest-client v.2.1.0
What's Changed
- feat: project.delete by @dubisdev in #22
- feat: task.reopen() by @dubisdev in #28
- feat: task.delete() by @dubisdev in #28
- fix: task.create returns APITaskObject, not axios response by @dubisdev in #21
- fix: add task descriptions to typescript interface by @dubisdev in #23
Full Changelog: 2.0.4...2.1.0
todoist-rest-client v.2.0.4
todoist-rest-client v.2.0.3
What's new
- Add typescript support
- Remove ESBuild
Breaking Changes
- No more classes! Now imports from {Task, Project} are functions
todoist-rest-client v1.0.0
--> Move from classes to functions
todoist-rest-client v0.0.5
This is a security update
todoist-rest-client v.0.0.4
TODOIST-REST-CLIENT v.0.0.4
A simple todoist-rest-api client
Important changes
- Now
createfunction returns a promise (from axios). (No more changes here) - New general functions:
- Get today JSONs => implemented method for getting today tasks JSON (not content/name arrays)
- Now you can complete tasks!
import TDSClient from "todoist-rest-client";
const myClient = new TDSClient(API_TOKEN);
myClient.completeTask({id: ...}); //with the id
myClient.completeTask({TaskObject: {TaskObject with id prop} }); //with a TaskObjecttodoist-rest-client v.0.0.3
TODOIST-REST-CLIENT v.0.0.3
Important changes
- Now
createfunction returns a boolean: true if the resource was created successfully and false if not. - New general functions:
- Get JSONs => implemented methods for getting JSON (not content/name arrays)
- Now you can create projects!
import TDSClient, { Project } from "todoist-rest-client";
const myClient = new TDSClient(API_TOKEN);
myClient.create({ type: "project" }, new Project({ name: "New Project" }));For more information, see the Readme file.
todoist-rest-client v.0.0.2
todoist-rest-client is here!
A todoist rest API client with:
Implemented Features
- get Today Tasks
- get All Tasks
- create task