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

@launchtray/hatch-scim2-client-sdk

v0.21.0-alpha.55

Published

This project is a TypeScript client sdk project that contains autogenerated code based on an [OpenAPI Specification](https://swagger.io/specification/).

Downloads

74

Readme

hatch-scim2-client-sdk

This project is a TypeScript client sdk project that contains autogenerated code based on an OpenAPI Specification.

Code generation process

A client SDK is typically generated from an OpenAPI specification, which is in turn generated or defined by an API project within the same repository. The OpenAPI specification often also serves as an input to the generation of a server SDK library, which can be used to help define the middleware necessary to provide the API.

API interfaces

This library defines TypeScript interfaces for each API that it provides an HTTP client implementation for. For servers who are both clients and servers of an API (e.g. for webapps providing server-side rendering), a "Local" version of the client SDK is also provided, which forwards client cookies and makes requests to localhost.

Registration

To register a client SDK for a remote server (e.g. in browser client code), use the registerRemoteApis method provided by this library. e.g. in composeClient.ts:

import {
  registerRemoteApis,
} from '@launchtray/hatch-scim2-client-sdk';
import {ROOT_CONTAINER} from '@launchtray/hatch-util';

export default async (): Promise<WebClientComposition> => {
  /* ... */
  registerRemoteApis(ROOT_CONTAINER);
  /* ... */
};

To register a client SDK for the API server to itself use server-side (e.g. for server-side rendering), use the registerLocalApis method provided by this library. e.g. in composeServer.ts:

import {
  registerLocalApis,
} from '@launchtray/hatch-scim2-client-sdk';
import {ROOT_CONTAINER} from '@launchtray/hatch-util';

export default async (): Promise<WebServerComposition> => {
  /* ... */
  registerLocalApis(ROOT_CONTAINER);
  /* ... */
};

Use

To use the client SDK (e.g. in web app managers), add them as injected parameters using the tokens provided by this library. For example (assuming the existence of ExampleApi):

import {
  ExampleApi,
  ExampleApiInjectionToken,
} from '@launchtray/hatch-scim2-client-sdk';

/* ... */

@webAppManager()
export default class ExampleManager {
  constructor(
    private dependency: ExampleDependencyForManager,
    @inject(ExampleApiInjectionToken) private exampleApi: ExampleApi,
    @inject('Logger') private logger: Logger,
  ) {}
  
  /* ... */
  
  *someManagerMethod() {
    const responseValue = await exampleApi.getExampleValue();
  }
}

Example Usage

Each HTTP endpoint has two associated member methods. One that only returns the response body object, and one "raw" method which returns more detail about response headers, status codes, etc.

const exampleApi = new ExampleApi();
const responseValue = await exampleApi.getExampleValue();
const responseRawValue = await exampleApi.getExampleValueRaw();

For specific methods provided by this library, refer to the types defined in the src/autogen/apis directory.

The client sdk can be instantiated with an optional configuration object:

import {
  Configuration, 
  ConfigurationParameters, 
  ExampleApi,
} from '@launchtray/hatch-scim2-client-sdk';

const configurationParameters: ConfigurationParameters = {
  basePath: 'http://localhost:3000',
  accessKey: accessKey || getAccessKey,
};

const configuration = new Configuration(configurationParameters);
const exampleApi = new ExampleApi(configuration);
const responseValue = await exampleApi.getExampleValue();

See the ConfigurationParameters interface in the runtime.ts file for more information.