npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wg-api-sdk

v1.0.8

Published

An SDK that provides auto-generated fetch functions and types for interacting with WeGroup 's APIs, based on the OpenAPI specification file.

Downloads

200

Readme

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.