1.3.3 • Published 6 months ago

rtm-typescript v1.3.3

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

rtm-typescript

GitHub Workflow Status (with event) Quality Gate Status Coverage

WARNING: THIS PACKAGE IS NOT READY FOR CONSUMPTION YET. USE AT YOUR OWN RISK

Install

npm install rtm-typescript

Features

This package currently only supports a few of the RTM API methods. Please come back later...

API Request Throttling

To avoid hitting the RTM Api rate limit, this client will throttle requests to once per second. If you wish to disable this behaviour, set throttle to false in the configuration object.

Usage

import { initialiseApi, ClientPermissions } from "rtm-typescript";

const runMyCode = async () => {
  const key = "my-api-key";
  const secret = "my-shared-secret";

  const client = initialiseApi({
    key,
    secret,
    permissions: ClientPermissions.Read,
  });

  const result = await client.tasks.getList({ list_id: "2" });

  console.log(result);
};

For more information, check out the API Documentation

1.3.3

6 months ago

1.3.2

6 months ago

1.3.1

6 months ago

1.3.0

6 months ago

1.2.17

6 months ago

1.2.16

6 months ago

1.2.15

6 months ago

1.2.14

6 months ago

1.2.13

6 months ago

1.2.12

6 months ago

1.2.11

6 months ago

1.2.10

6 months ago

1.2.9

6 months ago

1.2.8

6 months ago

1.2.7

6 months ago

1.2.6

6 months ago

1.2.5

6 months ago

1.2.4

6 months ago

1.2.3

6 months ago

1.2.2

6 months ago

1.2.1

6 months ago

1.2.0

6 months ago

1.1.0

6 months ago

1.0.0

6 months ago