athena-api-client@1.0.0
A TypeScript SDK client for the localhost API.
Usage
First, install the SDK from npm.
npm install athena-api-client --save
Next, try it out.
import {
Configuration,
AccountsApi,
} from 'athena-api-client';
import type { CreateAccountOperationRequest } from 'athena-api-client';
async function example() {
console.log("🚀 Testing athena-api-client SDK...");
const config = new Configuration({
apiKey: "YOUR API KEY",
});
const api = new AccountsApi(config);
const body = {
createAccountRequest: ...,
} satisfies CreateAccountOperationRequest;
try {
const data = await api.createAccount(body);
console.log(data);
} catch (error) {
console.error(error);
}
}
example().catch(console.error);
Documentation
API Endpoints
All URIs are relative to http://localhost:3000
Models
Authorization
Authentication schemes defined for the API:
AuthToken
- Type: API key
- API key parameter name:
X-Auth-Token
- Location: HTTP header
About
This TypeScript SDK client supports the Fetch API
and is automatically generated by the
OpenAPI Generator project:
- API version:
1.0.0
- Package version:
1.0.0
- Generator version:
7.19.0
- Build package:
org.openapitools.codegen.languages.TypeScriptFetchClientCodegen
The generated npm module supports the following:
- Environments
- Node.js
- Webpack
- Browserify
- Language levels
- ES5 - you must have a Promises/A+ library installed
- ES6
- Module systems
- CommonJS
- ES6 module system
Development
Building
To build the TypeScript source code, you need to have Node.js and npm installed.
After cloning the repository, navigate to the project directory and run:
npm install
npm run build
Publishing
Once you've built the package, you can publish it to npm:
npm publish
License