/** * **temporal** - Command-line interface for running Temporal Server and interacting with Workflows, Activities, Namespaces, and other parts of Temporal * * @domain `temporal.io` * @programs `temporal` * @version `1.5.1` (18 versions available) * @versions From newest version to oldest. * * @install `launchpad install temporal.io` * @homepage https://temporal.io/ * @buildDependencies `go.dev@^1.19` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.temporalio * console.log(pkg.name) // "temporal" * console.log(pkg.description) // "Command-line interface for running Temporal Ser..." * console.log(pkg.programs) // ["temporal"] * console.log(pkg.versions[0]) // "1.5.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/temporal-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const temporalioPackage: { /** * The display name of this package. */ name: 'temporal'; /** * The canonical domain name for this package. */ domain: 'temporal.io'; /** * Brief description of what this package does. */ description: 'Command-line interface for running Temporal Server and interacting with Workflows, Activities, Namespaces, and other parts of Temporal'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/temporal.io/package.yml'; homepageUrl: 'https://temporal.io/'; githubUrl: 'https://github.com/temporalio/cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install temporal.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +temporal.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install temporal.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['temporal']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.19']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.1', '1.5.0', '1.4.1', '1.4.0', '1.3.0', '1.2.0', '1.1.2', '1.1.1', '1.1.0', '1.0.0', '0.13.2', '0.13.1', '0.13.0', '0.12.0', '0.11.0', '0.10.7', '0.10.6', '0.10.5']; aliases: readonly [] }; export type TemporalioPackage = typeof temporalioPackage