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

@sap/ucl-provider

v2.3.1

Published

ucl-provider

Downloads

578

Readme

The ucl-provider Repository

Overview

    The ucl-provider is an npm package that provides the APIs necessary for exposing UCL systems, packages and services.

The UCL is working with cert and key. In BAS this is transperent to the user as it happens behind the scenes

UCL Docs

Usage

    To add this package as a dependency in your package.json file, under the "dependencies" section, add the following dependency: "@sap/ucl-provider": [Version]

Public APIs

UclProviderRepository

getSystems

Description: Provides a list of UCL systems.
Signature:

async getSystems(): Promise<UclSystemProviderSystem[]>

Input: none.

Output: A list of UCL Systems.

getServiceRetriever

Description: Retrieves an instance of the UCL Service Retriever implementation of the ServiceRetriever interface.
Signature:

getServiceRetriever(): UclServiceRetrieverInterface

Input: none.

Output: An instance that implements the UclServiceRetrieverInterface.

UclSystemProviderSystem

getPackages

Description: Provides a list of the UCL system's packages.
Signature:

getPackages(): Promise<UclPackageProviderSystem[]>

Input: none.

Output: A list of the UCL system's packages.

UclPackageProviderSystem

getServices

Description: Provides a list of UCL services.
Signature:

async getServices(): Promise<Service[]>

Input: none.

Output: A list of services.

getMetadata

Description: Provides the metadata of the UCL service.
Signature:

async getMetadata(
      service: Service, 
      encoding: EncodingMode,
      ): Promise<ServiceMetadata>

Input:

    service: The details of the service that you want to get the metadata for.

    encoding: For metadata, you should use EncodingMode.XML.

Output: An object that contains the metadata XML string of the service.

getJsonLiveData

Description: Provides live data from the UCL service.
Signature:

async getJsonLiveData(
      service: Service, 
      destName: string, 
      entityName: string, 
      options?: Record<string, any>): Promise<ServiceCommon>

Input:

    service: The details of the service that you want to get the live data for.

    destName: The destination name of the live data.

    entityName: The name of the entity in the service that you want the live data for.

    options: Accepts the following parameters:

        filter (optional): Provides query parameters to pass to the service. For example:

            new Filter(new Map([[ServiceRequestKey.TopRows, "2""]]))

Output: An object that contains a JSON string with live data from the service.

More Resources

    1. To create a key and certificate in UCL Canary, see this wiki..

        Note that the WS_BASE_URL in the lunch.json should be directed to UCL canary for the test flow to work.

    2. See a sample flow of ucl-provider APIs here.