# @maxim_mazurok/gapi.client.language-v1beta2

> TypeScript typings for Cloud Natural Language API v1beta2

Latest version **0.3.20260913** (published 2026-09-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install @maxim_mazurok/gapi.client.language-v1beta2
pnpm add @maxim_mazurok/gapi.client.language-v1beta2
yarn add @maxim_mazurok/gapi.client.language-v1beta2
bun add @maxim_mazurok/gapi.client.language-v1beta2
```

## 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.3.20260913 |
| Published | 2026-09-14 |
| First published | 2022-08-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 129.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 58 |
| Author | Maxim Mazurok |
| Maintainers | maxim_mazurok |

## Links

- npm: https://www.npmjs.com/package/@maxim_mazurok/gapi.client.language-v1beta2
- 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.language-v1beta2

## 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.3.20260913 (latest) — 2026-09-14
- 0.3.20260906 — 2026-09-09
- 0.3.20260830 — 2026-08-31
- 0.3.20260823 — 2026-08-24
- 0.3.20260816 — 2026-08-17
- 0.3.20260809 — 2026-08-10
- 0.3.20260802 — 2026-08-04
- 0.3.20260726 — 2026-07-27
- 0.3.20260719 — 2026-07-20
- 0.3.20260712 — 2026-07-14
- 0.3.20260705 — 2026-07-06
- 0.3.20260628 — 2026-06-29
- 0.3.20260614 — 2026-06-29
- 0.2.20260614 — 2026-06-15
- 0.2.20260608 — 2026-06-08
- … 175 more at https://npm.io/package/@maxim_mazurok/gapi.client.language-v1beta2/versions

## README

# TypeScript typings for Cloud Natural Language API v1beta2

Provides natural language understanding technologies, such as sentiment analysis, entity recognition, entity sentiment analysis, and other text annotations, to developers.
For detailed description please check [documentation](https://cloud.google.com/natural-language/).

## Installing

Install typings for Cloud Natural Language API:

```
npm install @types/gapi.client.language-v1beta2 --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.language-v1beta2"
    ]
  }
}
```

## 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://language.googleapis.com/$discovery/rest?version=v1beta2',
  () => {
    // now we can use:
    // gapi.client.language
  },
);
```

```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('language', 'v1beta2', () => {
  // now we can use:
  // gapi.client.language
});
```

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 = [
    // Apply machine learning models to reveal the structure and meaning of text
    'https://www.googleapis.com/auth/cloud-language',

    // 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 Natural Language API resources: <!-- TODO: make this work for multiple namespaces -->

```typescript
/*
Finds named entities (currently proper names and common nouns) in the text along with entity types, salience, mentions for each entity, and other properties.
*/
await gapi.client.language.documents.analyzeEntities({});

/*
Finds entities, similar to AnalyzeEntities in the text and analyzes sentiment associated with each entity and its mentions.
*/
await gapi.client.language.documents.analyzeEntitySentiment({});

/*
Analyzes the sentiment of the provided text.
*/
await gapi.client.language.documents.analyzeSentiment({});

/*
Analyzes the syntax of the text and provides sentence boundaries and tokenization along with part of speech tags, dependency trees, and other properties.
*/
await gapi.client.language.documents.analyzeSyntax({});

/*
A convenience method that provides all syntax, sentiment, entity, and classification features in one call.
*/
await gapi.client.language.documents.annotateText({});

/*
Classifies a document into categories.
*/
await gapi.client.language.documents.classifyText({});

/*
Moderates a document for harmful and sensitive categories.
*/
await gapi.client.language.documents.moderateText({});
```

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

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