Skip to main content Link Search Menu Expand Document (external link)

index overview

Added in v0.0.1


Table of contents


commands

PingCli

Runnable PingOne CLI with all subcommands configured.

This is the complete CLI application ready to execute with all built-in commands.

Signature

export declare const PingCli: (
  args: ReadonlyArray<string>
) => Effect<
  void,
  (Error | HttpClientError | ParseError | HttpBodyError | PlatformError) | ValidationError,
  (OAuthService | Prompt.Environment | HttpClient | CredentialService | CacheService) | CliApp.Environment
>

Added in v0.0.1

PingCommand

Main PingOne CLI command.

This is the base command that can be extended with custom subcommands.

Signature

export declare const PingCommand: Command<"p1-cli", never, never, {}>

Added in v0.0.1

errors

From “./Errors.js”

Error types and classes for PingOne operations.

Signature

export * from "./Errors.js"

Added in v0.0.1