No description
  • TypeScript 99.3%
  • Mustache 0.7%
Find a file
Vault Automation 89117e7cec
[Automated] Updated OpenAPI Spec from Vault Enterprise (#36)
* auto: openapi spec update

* auto: generated client updates

---------

Co-authored-by: zofskeez <24611656+zofskeez@users.noreply.github.com>
2026-03-20 08:47:41 -06:00
.github Version Bump Worflows (#29) 2026-03-10 21:44:31 -06:00
.openapi-generator [Automated] Updated OpenAPI Spec from Vault Enterprise (#36) 2026-03-20 08:47:41 -06:00
scripts Copywrite Headers Date Fix (#34) 2026-03-04 10:56:55 -07:00
src [Automated] Updated OpenAPI Spec from Vault Enterprise (#36) 2026-03-20 08:47:41 -06:00
templates Prefix Enums With Class Name (#28) 2026-02-25 13:31:43 -07:00
.copywrite.hcl Prefix Enums With Class Name (#28) 2026-02-25 13:31:43 -07:00
.gitignore Initial Client Generation Setup (#2) 2025-07-16 16:29:43 -06:00
.npmignore initial commit transferring openapi generated client from Vault (#1) 2025-07-16 15:36:15 -06:00
.openapi-generator-ignore Initial Client Generation Setup (#2) 2025-07-16 16:29:43 -06:00
LICENSE [COMPLIANCE] Add MPL-2.0 LICENSE (#6) 2025-08-07 09:26:04 -06:00
openapi.json [Automated] Updated OpenAPI Spec from Vault Enterprise (#36) 2026-03-20 08:47:41 -06:00
openapitools.json initial commit transferring openapi generated client from Vault (#1) 2025-07-16 15:36:15 -06:00
package.json bumps basic-ftp version (#32) 2026-03-02 15:08:03 -07:00
README.md Update Spec for Vault v1.22.0 (#26) 2026-02-13 17:20:30 -07:00
tsconfig.esm.json initial commit transferring openapi generated client from Vault (#1) 2025-07-16 15:36:15 -06:00
tsconfig.json initial commit transferring openapi generated client from Vault (#1) 2025-07-16 15:36:15 -06:00
yarn.lock bumps basic-ftp version (#32) 2026-03-02 15:08:03 -07:00

@hashicorp/vault-client-typescript@1.22.0

This generator creates TypeScript/JavaScript client that utilizes Fetch API. The generated Node module can be used in the following environments:

Environment

  • Node.js
  • Webpack
  • Browserify

Language level

  • ES5 - you must have a Promises/A+ library installed
  • ES6

Module system

  • CommonJS
  • ES6 module system

It can be used in both TypeScript and JavaScript. In TypeScript, the definition will be automatically resolved via package.json. (Reference)

Building

To build and compile the typescript sources to javascript use:

npm install
npm run build

Publishing

First build the package then run npm publish

Consuming

navigate to the folder of your consuming project and run one of the following commands.

published:

npm install @hashicorp/vault-client-typescript@1.22.0 --save

unPublished (not recommended):

npm install PATH_TO_GENERATED_PACKAGE --save