Library Overview
Overview of the functionalities in the Typescript Client Library
The Lume Typescript Client Library is currently in beta. Please reach out to our support team if you have any questions or feature requests, or encounter any bugs.
Introduction
The Lume Client Library is accessed via the entry class, Lume
.
This Typescript library provides an overview of the classes, methods, and models of the Client Library. You can always refer to the ground truth in the package bundle itself after installing it.
Search Resources
The Lume Client Library provides methods to search through flows and runs using various filters.
Search Flows
You can search for flows using the searchFlows
method. This method accepts filters for name and tags.
For the tags_filter
, you can chain multiple tags through our boolean operations. You can look for tags with the color yellow and blue.
Search runs
You can search for runs using the searchRuns
method. This method accepts filters for name, tags, and version_id.
More Information
Refer to the Client Library Bundle Code to review the workflows and use the corresponding methods in the Typescript Client Library.