# @maxim_mazurok/gapi.client.documentai-v1

> TypeScript typings for Cloud Document AI API v1

Latest version **0.2.20260901** (published 2026-09-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install @maxim_mazurok/gapi.client.documentai-v1
pnpm add @maxim_mazurok/gapi.client.documentai-v1
yarn add @maxim_mazurok/gapi.client.documentai-v1
bun add @maxim_mazurok/gapi.client.documentai-v1
```

## Health

**Score 65/100 (B)** — status: active.

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

Warnings: low downloads; no esm support; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.2.20260901 |
| Published | 2026-09-04 |
| First published | 2022-08-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 257.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 59 |
| Author | Maxim Mazurok |
| Maintainers | maxim_mazurok |

## Links

- npm: https://www.npmjs.com/package/@maxim_mazurok/gapi.client.documentai-v1
- Repository: https://github.com/Maxim-Mazurok/google-api-typings-generator
- Homepage: https://github.com/Maxim-Mazurok/google-api-typings-generator#readme
- Issues: https://github.com/Maxim-Mazurok/google-api-typings-generator/issues
- npm.io page: https://npm.io/package/@maxim_mazurok/gapi.client.documentai-v1

## Dependencies (2)

- [@types/gapi.client](https://npm.io/package/@types/gapi.client.md) *
- [@types/gapi.client.discovery-v1](https://npm.io/package/@types/gapi.client.discovery-v1.md) *

## Recent versions

- 0.2.20260901 (latest) — 2026-09-04
- 0.2.20260823 — 2026-08-29
- 0.2.20260820 — 2026-08-25
- 0.2.20260812 — 2026-08-14
- 0.2.20260810 — 2026-08-13
- 0.2.20260727 — 2026-07-31
- 0.2.20260706 — 2026-07-09
- 0.2.20260608 — 2026-06-29
- 0.1.20260608 — 2026-06-13
- 0.1.20260601 — 2026-06-07
- 0.1.20260316 — 2026-03-18
- 0.1.20260309 — 2026-03-12
- 0.1.20260228 — 2026-03-05
- 0.1.20260224 — 2026-02-26
- 0.1.20260223 — 2026-02-24
- … 200 more at https://npm.io/package/@maxim_mazurok/gapi.client.documentai-v1/versions

## README

# TypeScript typings for Cloud Document AI API v1

Service to parse structured information from unstructured or semi-structured documents using state-of-the-art Google AI such as natural language, computer vision, translation, and AutoML.
For detailed description please check [documentation](https://cloud.google.com/document-ai/docs/).

## Installing

Install typings for Cloud Document AI API:

```
npm install @types/gapi.client.documentai-v1 --save-dev
```

## TypeScript 6.0+

TypeScript 6.0 changed `types` to default to `[]`. You must now explicitly list type packages in `tsconfig.json`:

```json
{
  "compilerOptions": {
    "types": ["gapi", "gapi.auth2", "gapi.client", "gapi.client.documentai-v1"]
  }
}
```

## Usage

You need to initialize Google API client in your code:

```typescript
gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});
```

Then load api client wrapper:

```typescript
gapi.client.load(
  'https://documentai.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.documentai
  },
);
```

```typescript
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('documentai', 'v1', () => {
  // now we can use:
  // gapi.client.documentai
});
```

Don't forget to authenticate your client before sending any request to resources:

```typescript
// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [
    // See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
    'https://www.googleapis.com/auth/cloud-platform',
  ],
  immediate = true;
// ...

gapi.auth.authorize(
  {client_id: client_id, scope: scope, immediate: immediate},
  authResult => {
    if (authResult && !authResult.error) {
      /* handle successful authorization */
    } else {
      /* handle authorization error */
    }
  },
);
```

After that you can use Cloud Document AI API resources: <!-- TODO: make this work for multiple namespaces -->

```typescript
/*
Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
*/
await gapi.client.documentai.operations.delete({name: 'name'});
```

For provenance information see [Provenance section on NPM](https://www.npmjs.com/package/@maxim_mazurok/gapi.client.documentai-v1#Provenance:~:text=none-,Provenance,-Built%20and%20signed)

---
_Source: https://npm.io/package/@maxim_mazurok/gapi.client.documentai-v1 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
