Metadata-Version: 2.1
Name: stateless-sdk
Version: 0.0.21
Summary: A CLI for interacting with the Stateless Gateway
Author-email: blockjoe <joe@stateless.solutions>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer~=0.9.0
Requires-Dist: pydantic~=2.4.2
Requires-Dist: httpx~=0.24.1
Requires-Dist: rich~=13.6.0
Requires-Dist: ujson~=5.8.0
Requires-Dist: inquirer~=3.1.4
Provides-Extra: dev
Requires-Dist: black>=23.7.0; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: isort; extra == "dev"
Provides-Extra: testing
Requires-Dist: pytest; extra == "testing"
Requires-Dist: pytest-asyncio; extra == "testing"
Requires-Dist: pytest-dotenv; extra == "testing"
Requires-Dist: pytest-httpx; extra == "testing"
Requires-Dist: pytest-cov; extra == "testing"
Requires-Dist: respx; extra == "testing"

# Stateless CLI Documentation

## Overview
The Stateless CLI is a powerful command-line interface that allows you to interact with the Stateless services for managing offerings, entrypoints, buckets, and API keys. 

## Installing the CLI

### Prerequisites
Before installing the CLI, ensure you have the following:
- Python 3.10 or newer
- pip installed (Python's package installer)

### Installation Steps
The CLI is available through a Python package repository, and you can download it using pip:

```bash
pip install stateless-sdk
```
After installation, run the setup command to initiate the CLI. This command will also handle API key setup:

```bash
stateless-cli
```

During the setup, if you don't have an API key, the CLI will direct you to the Stateless API key registration page. Once you have your API key, you can set it as an environment variable for the CLI to use.

Setting the environment variable with your API key can be done in different ways depending on your operating system.

For Unix-like operating systems (Linux, macOS): 

```bash
export STATELESS_API_KEY='your_api_key_here'
```

For Windows Command Prompt:

```bash
set STATELESS_API_KEY=your_api_key_here
```

For Windows PowerShell:

```bash
$env:STATELESS_API_KEY="your_api_key_here"
```
Replace your_api_key_here with the actual API key provided by Stateless.

To check if the CLI has been installed correctly, you can run the help command:

```bash
stateless-cli --help
```

This should display a list of available commands and their descriptions.

If you installed the CLI in a custom directory or it's not available globally, you might need to update your system's PATH variable to include the directory where the CLI is installed.

Once the CLI is installed and the API key is set, you can start using it to manage various aspects of the Stateless services by calling the corresponding subcommands, like stateless-cli offerings list.

## API Keys
API keys are essential for both applications and providers to interact securely with the platform by authenticating access to resources. Always handle API keys with care, keeping them confidential and using them as per the platform's best practices.

## Commands

### Create an API key

```bash
stateless-cli api-keys create
```

The create command lets users generate a new API key. When this command is executed, the CLI will interactively prompt for the required information, including the name of the API key and the number of days until expiration. Upon completion, a confirmation message will be displayed with details of the newly created API key. Upon completion, a confirmation message will be displayed with details of the newly created API key.

### Update an API key

```bash
stateless-cli api-keys update
```
The update command allows users to modify the details of an existing API key. The CLI will prompt the user to choose an API key and then provide options to update its name and expiration date.

### Retrieve API key details

```bash
stateless-cli api-keys view 
```

Users can fetch details about a specific API key using this command. The CLI will prompt the user to select an API key, and then display its details.

### List all API keys

```bash
stateless-cli api-keys list
```

Fetches and displays a list of all the API keys associated with the current account. The list will include the ID and name of each API key.

### Delete an API key

```bash
stateless-cli api-keys delete
```

This command allows for the deletion of a specific API key. The user will be prompted to select an API key for deletion. Please note that this action is irreversible, and deleted keys cannot be recovered.

## Offerings
Offerings are the cataloged services or data streams provided by the platform, which users can utilize within their applications. These offerings may relate to specific blockchain data, services, or entry points for data access. Managing offerings is a crucial aspect for both providers, who supply these services, and consumers, who integrate them into their applications.

## Commands

### List all offerings

```bash
stateless-cli offerings list
```

Use this command to retrieve and list all available offerings. The output displays a table listing all offerings, including their IDs, providers, chains, and the count of entry points associated with each offering.

### See offering details

```bash
stateless-cli offerings detail <id>
```

Retrieve detailed information about a specific offering using this command. The CLI will prompt the user to select an offering, and the output will display a table with detailed information about the offering, including its ID, the provider name, the chain it operates on, and the URLs for each of its entry points.

### Create an offering (Provider only)

```bash
stateless-cli offerings create
```
The create command allows data service providers to create a new offering. The CLI will interactively prompt for the required information, including the target blockchain platform for the offering.

### Update an offering (Provider only) 

```bash
stateless-cli offerings update <offering_id>
```

Providers can modify the details of an existing offering using this command. The CLI will prompt the user to select an offering and then provide options to update its chain ID. If the update is successful, the command prints a confirmation message with the ID of the updated offering.

### Delete an offering (Provider only)

```bash
stateless-cli offerings delete <offering_id>
```

Use this command to remove an offering from the platform. The user will be prompted to select an offering for deletion. A success message will confirm the offering has been deleted. Please note that this action is irreversible.

## Buckets
Buckets are designated blockchain data providers that applications using the platform's APIs elect to send their requests. The CLI offers commands to seamlessly manage these Buckets. 

Prior to leveraging these commands, please ensure all prerequisites, such as API keys and configurations, are properly implemented.

## Commands

### List Buckets

```bash
stateless-cli buckets list
```

This command fetches and displays all the active Buckets of the current account. Users can view a comprehensive list and glean important information about each 'Bucket,' such as its ID, Name, associated Chain, and Offerings.

### Create Bucket

```bash
stateless-cli buckets create
```

The create command allows users to create a new Bucket associated with their account. The CLI will interactively prompt for the required information, including Bucket Name, Chain ID, and Offerings (selected from available offerings).

### Update Bucket

```bash
stateless-cli buckets update <bucket_id>
```

This command allows users to modify the details of an existing bucket. The CLI will prompt the user to select a bucket and then provide options to update its name and associated offerings.

### Retrieve Bucket Details

```bash
stateless-cli buckets view <bucket_id>
```

Fetches detailed information about a specific Bucket based on its UUID. The CLI will prompt the user to select a bucket, and the output will display detailed information about the Bucket, including its ID, name, associated chain, and offerings.

### Delete a Bucket

```bash
stateless-cli buckets delete <bucket_id>
```

This command provides the functionality to remove a Bucket from an account. The user will be prompted to select a bucket for deletion. Please note that this action will permanently delete the specified Bucket resource and all its associated data. A confirmation message will be displayed upon successful deletion.

### Check Health of Bucket Nodes

```bash
stateless-cli buckets health
```

Presents a list of Buckets to select from. After selection, it shows the node status, block height, and latency for each provider within the Bucket.

```bash
stateless-cli buckets health <url>
```

Checks the health of a specific bucket.

```bash
stateless-cli buckets health --live
stateless-cli buckets health <url> --live
```

By appending the --live flag to the health check commands, the metrics will be updated in real-time, offering dynamic and up-to-date information on the nodes' status.

## Entrypoints

Entrypoints are specific URLs or access points that data providers use to
provide access to an individual offering. Managing entrypoints is essential for
providers to control how and where their data is accessed. This set of CLI
commands is intended for providers to manage entrypoints, these details are
managed by the service and not relevant to the application's usage.

## Commands

### List all entrypoints (Provider only)

```bash
stateless-cli entrypoints list
```

Retrieves and lists all entrypoints associated with a specific offering. Users can view a table displaying each entrypoint's ID, URL, and associated region.

### Retrieve an entrypoint (Provider only)

```bash
stateless-cli entrypoints view <entrypoint_id>
```

Fetches information about a specific entrypoint. The CLI will prompt the user to select an entrypoint, and the output will display a JSON-formatted output detailing the entrypoint's configuration.

### Create an entrypoint (Provider only)

```bash
stateless-cli entrypoints create
```

The create command registers a new entrypoint. When executed, the CLI will interactively prompt for the required information, including Entrypoint URL, Offering ID, and Region ID.

### Update an entrypoint (Provider only)

```bash
stateless-cli entrypoints update <entrypoint_id>
```
Allows for updating the configuration of an existing entrypoint. The CLI will prompt the user to select an entrypoint and then provide options to update its URL.

### Delete an entrypoint (Provider only)

```bash
stateless-cli entrypoints delete <entrypoint_id>
```

Removes an entrypoint from the registry. The user will be prompted to select an entrypoint for deletion. A message confirming the successful deletion of the entrypoint will be displayed. Please note this action is final and cannot be undone.

## Help
The `help` command in the gateway-cli is designed to provide users with assistance and information on how to use various commands within the CLI. It's an essential tool for both new and experienced users to quickly get help on specific commands or to get an overview of the CLI's capabilities.

### General Help

```bash
stateless-cli help
```

This command displays a general help message, which includes a list of all top-level commands available in the gateway-cli. It provides a brief description of what each command does to better understand the overall functionality. 

When you run `gateway-cli help`, you will see an output similar to the following:

```bash
stateless-cli

Usage:
  gateway-cli [command]

Available Commands:
  buckets        Manage your Buckets
  offerings      Handle Offerings on the platform
  entrypoints    Control Entrypoints for data access
  api-keys       Operations related to API keys

Use "stateless-cli [command] help" for more information about a command.
```

### Command Specific Help
To get detailed help on a specific command, append `help` after the command name:

```bash
stateless-cli [command] help
```

For example:

```bash
stateless-cli buckets help
```

Displays help for the `buckets` command, including its subcommands like list, create, update, view, and delete.

```bash
stateless-cli offerings help
```

Shows detailed usage for the `offerings` command, including information on listing, creating, updating, and deleting offerings.

```bash
stateless-cli entrypoints help
```

Provides help specific to the `entrypoints` command, guiding on how to manage entrypoints.
