1.3.1 • Published 2 years ago

quip-api-typescript v1.3.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

quip-api-typescript

codecov npm version

This is the unofficial Node.js library to access the Quip Automation API.

Notice

This library should be considered as Work In Progress. The official quip-api library wasn't updated recently and isn't maintained anymore, so I created this one that is more convenient to use thanks to typings and promises.

Installation

npm i quip-api-typescript

Usage

For now, the library supports only access token auth (no OAuth).

import { QuipClient } from 'quip-api-typescript';

const ACCESS_TOKEN = 'your-access-token';
const client = new QuipClient(ACCESS_TOKEN);

// use like this
client.threads.getThreadHtmlV2({ id: '' }).then(response => doSomething(response));

// or this
client.users.getUser({ id: 'john@acme.com' }).then(response => doSomething(response));

Documentation

More methods, request and response types can be found in the documentation.

Official Quip API Docs

Contributing

PRs are welcome! Please feel encouraged to star this repo too!

1.2.0

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.1

2 years ago

1.1.7

2 years ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago