# @maxim_mazurok/gapi.client.discovery-v1

> TypeScript typings for API Discovery Service v1

Latest version **0.6.20200806** (published 2026-06-07) · MIT license · 0 weekly downloads

## Install

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

## Health

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

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

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

## Facts

| | |
|---|---|
| Version | 0.6.20200806 |
| Published | 2026-06-07 |
| First published | 2022-08-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 17.2 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.discovery-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.discovery-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.6.20200806 (latest) — 2026-06-07
- 0.5.20200806 — 2026-03-18
- 0.4.20200806 — 2025-08-21
- 0.3.20200806 — 2025-08-21
- 0.2.20200806 — 2025-08-20
- 0.1.20200806 — 2023-09-19
- 0.0.20200806 — 2022-08-14

## README

# TypeScript typings for API Discovery Service v1

Provides information about other Google APIs, such as what APIs are available, the resource, and method details for each API.
For detailed description please check [documentation](https://developers.google.com/discovery/).

## Installing

Install typings for API Discovery Service:

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

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

After that you can use API Discovery Service resources: <!-- TODO: make this work for multiple namespaces -->

```typescript
/*
Retrieve the description of a particular version of an api.
*/
await gapi.client.discovery.apis.getRest({api: 'api', version: 'version'});

/*
Retrieve the list of APIs supported at this endpoint.
*/
await gapi.client.discovery.apis.list({});
```

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

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