Skip to content

Releases: yumauri/gotenberg-js-client

v0.4.1

09 Jan 12:51
Compare
Choose a tag to compare

No breaking changes, just add some sources validation, due to issue #5

v0.4.0

16 Dec 21:31
Compare
Choose a tag to compare

Support new Gotenberg 6.1.0:

➕New features

Custom HTTP headers

// for url conversion
add(header('A-Header', 'Foo'))

// or object
add(headers({ 'A-Header': 'Foo' }))

// for webhook
add(webhookHeader('A-Header', 'Foo'))

// or object
add(webhookHeaders({ 'A-Header': 'Foo' }))

Page ranges

set(range('1-1'))

Add some automation && Change packaging

23 Oct 08:58
Compare
Choose a tag to compare
Pre-release

Breaking changes for TypeScript users:
If you were importing gotenberg-js-client/lib/_types for types, this will not work.
Now types should be imported from the package itself, import { ... } from 'gotenberg-js-client'

Completely new functional API

20 Oct 23:11
Compare
Choose a tag to compare
Pre-release

API completely rewritten, zero OOP, just FP

First naive implementation

15 Oct 13:28
Compare
Choose a tag to compare
Pre-release

First public release.
It is almost complete copy from gotenberg-php-client, rewritten with TypeScript. With similar API.
But I think API is subject to change in future versions.