# @emilgroup/document-sdk

> OpenAPI client for @emilgroup/document-sdk

Latest version **1.52.0** (published 2026-07-20) · Unlicense license · 0 weekly downloads

## Install

```sh
npm install @emilgroup/document-sdk
pnpm add @emilgroup/document-sdk
yarn add @emilgroup/document-sdk
bun add @emilgroup/document-sdk
```

## Health

**Score 60/100 (C)** — status: active.

Positive: has types; no vulnerabilities; recently updated; high maintenance score.

Warnings: low downloads; no esm support.

## Facts

| | |
|---|---|
| Version | 1.52.0 |
| Published | 2026-07-20 |
| First published | 2023-06-16 |
| Weekly downloads | 0 |
| License | Unlicense |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 951.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | OpenAPI-Generator Contributors |
| Maintainers | ahmed.zeno, adobrodey-emil, pavlomaksymov, alexandrecastro, alexeyoleynik, edgar-emil, emil_engineering, jonathan.chen, wojciech_at_emil, maksym-emil, yevheniia-emil, emil_aleksandra, vitaly_emil, andrii_meleniuk, iaroslav.ovcharenko, hussein.istanbouli, thomascover42, emil-hussein, thmd, rkachalka, zamiul, emil-rick, mads-emil, olga_timchenko |
| Keywords | axios, typescript, openapi-client, openapi-generator, @emilgroup/document-sdk |

## Links

- npm: https://www.npmjs.com/package/@emilgroup/document-sdk
- npm.io page: https://npm.io/package/@emilgroup/document-sdk

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) 1.18.0

## Alternatives

- [launchdarkly-js-client-sdk](https://npm.io/package/launchdarkly-js-client-sdk.md) — 2.5M weekly downloads
- [@elastic/elasticsearch](https://npm.io/package/@elastic/elasticsearch.md) — 2.1M weekly downloads
- [@c8y/client](https://npm.io/package/@c8y/client.md) — 15.3K weekly downloads
- [@signaldb/maverickjs](https://npm.io/package/@signaldb/maverickjs.md) — 1.7K weekly downloads
- [@bbc/http-transport-cache](https://npm.io/package/@bbc/http-transport-cache.md) — 1.2K weekly downloads

## Recent versions

- 1.52.0 (latest) — 2026-07-20
- 1.52.1-beta.8 (beta) — 2026-08-26
- 1.12.2 (beta.202404251116) — 2024-04-25
- 1.11.1 (beta.202404191535) — 2024-04-19
- 1.52.1-beta.7 — 2026-08-19
- 1.52.1-beta.6 — 2026-08-12
- 1.52.1-beta.5 — 2026-08-12
- 1.52.1-beta.4 — 2026-08-11
- 1.52.1-beta.3 — 2026-08-11
- 1.52.1-beta.2 — 2026-08-10
- 1.52.1-beta.1 — 2026-07-29
- 1.52.1-beta.0 — 2026-07-27
- 1.51.0 — 2026-07-20
- 1.49.0 — 2026-07-20
- 1.46.1-beta.32 — 2026-07-09
- … 112 more at https://npm.io/package/@emilgroup/document-sdk/versions

## README

# Emil Documents SDK

This TypeScript/JavaScript client utilizes [axios](https://github.com/axios/axios). The generated module can be used with client-based applications (i.e. React).

Language level
* ES5 - you must have a Promises/A+ library installed
* ES6

Module system
* CommonJS
* ES6 module system

Although this package can be used in both TypeScript and JavaScript, it is intended to be used with TypeScript. The definition should be automatically resolved via `package.json`. ([Reference](http://www.typescriptlang.org/docs/handbook/typings-for-npm-packages.html)). For more information, you can go to [Emil Api documentation](https://emil.stoplight.io/docs/emil-api/).

## Consuming

Navigate to the folder of your consuming project and run one of the following commands:

```
npm install @emilgroup/document-sdk@1.52.0 --save
```
or 
```
yarn add @emilgroup/document-sdk@1.52.0
```

And then you can import `DocumentsApi`.

```ts
import { DocumentsApi } from '@emilgroup/document-sdk'

const documentsApi = new DocumentsApi();
```

To use authentication protected endpoints, you have to first authorize. To do so, use the `authorize` function in `DocumentsApi`:

```ts
async function listDocuments(): Promise<Void> {
    try {
        const documentsApi = new DocumentsApi();

        await documentsApi.authorize('username', 'password');

        const { data: { items } } = await documentsApi.listDocuments();

        console.log(items);
    } catch(error) {
      // process error
  }
}
```

---
_Source: https://npm.io/package/@emilgroup/document-sdk · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
