Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Releases: dubisdev/todoist-rest-client

todoist-rest-client v.2.1.1

31 Oct 17:24
736761f

Choose a tag to compare

What's Changed

Full Changelog: 2.1.0...2.1.1

todoist-rest-client v.2.1.0

29 Oct 21:11

Choose a tag to compare

What's Changed

Full Changelog: 2.0.4...2.1.0

todoist-rest-client v.2.0.4

27 Oct 17:46
ebe063f

Choose a tag to compare

What's Changed

Full Changelog: 2.0.3...2.0.4

todoist-rest-client v.2.0.3

14 Oct 13:15

Choose a tag to compare

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

22 Sep 10:26
371e634

Choose a tag to compare

--> Move from classes to functions

todoist-rest-client v0.0.5

17 Sep 21:44
2fcedd2

Choose a tag to compare

This is a security update

todoist-rest-client v.0.0.4

05 May 17:45

Choose a tag to compare

TODOIST-REST-CLIENT v.0.0.4

A simple todoist-rest-api client

Important changes

  • Now create function 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 TaskObject

todoist-rest-client v.0.0.3

04 May 08:57

Choose a tag to compare

TODOIST-REST-CLIENT v.0.0.3

Important changes

  • Now create function 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

03 May 11:11

Choose a tag to compare

todoist-rest-client is here!

A todoist rest API client with:

Implemented Features

  • get Today Tasks
  • get All Tasks
  • create task