1.0.8 • Published 10 months ago

wg-api-sdk v1.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

wg-api-sdk

Overview

wg-api-sdk is a Software Development Kit (SDK) that provides auto-generated fetch functions and TypeScript types for interacting with WeGroup's APIs. This SDK is generated based on the OpenAPI specification file, ensuring that the client code stays in sync with the API.

Features

  • Auto-generated fetch functions for seamless API interactions.
  • Strongly-typed interfaces and types generated from the OpenAPI specification.
  • Easy integration into your TypeScript projects. (tree shakable)

Installation

To install the wg-api-sdk, use npm or yarn:

npm install wg-api-sdk

or

yarn add wg-api-sdk

NPM package usage

Here's a basic example of how to use the SDK in your project:

import { wgApiClient, getPartyById } from 'wg-api-sdk';

// Define api client once (openapi-fetch)
export const apiClient = wgApiClient({ baseUrl: 'xx'});

// See docs -> https://openapi-ts.dev/openapi-fetch/middleware-auth
apiClient.use(myMiddleWare)

// Example function call
const example = async () => {
  try {
    const data = await getPartyById({
      params: {
        path: {
          party_id: 'e009aed2-72d0-491d-9b76-dea451e91a12'
        }
      }
    }, apiClient)
    console.log(data)
  } catch {
    // Handle error
  }
}

Scripts

  • generate: Generates the TypeScript types from the OpenAPI specification.
  • build: Builds the SDK using tsup.
  • clear: Removes the generated source files.

Generating API Types

To regenerate the API types based on the latest OpenAPI specification, you can use the generate script:

npm run generate

This script runs a TypeScript script located at scripts/index.ts and then calls the generate-openapi-types script to fetch and generate the types fromi the OpenAPI spec.

Building the SDK

To build the SDK, you can use the provided build script:

npm run build

This script uses tsup to compile the TypeScript code and generate the necessary distribution files.

Clearing Generated Sources

If you need to clear the generated sources, use the clear script:

npm run clear

Built Using

  • TypeScript: A strongly typed programming language that builds on JavaScript.
  • tsup: A TypeScript bundler powered by esbuild.
  • tsx: A fast TypeScript execution environment.
  • openapi-typescript: Generate TypeScript types from OpenAPI schemas.
  • openapi-fetch: A simple fetch client for OpenAPI.
  • Handlebars: A simple JavaScript template engine based on Mustache templates.

License

This project is licensed under the MIT License.

Contact

For any questions or support, please contact WeGroup.

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.0

10 months ago