nestjs-temporal-core
    Preparing search index...

    Interface ClientConnectionOptions

    Configuration options for Temporal client connection. Used for establishing connection to Temporal server.

    const clientOptions: ClientConnectionOptions = {
    address: 'localhost:7233',
    namespace: 'default',
    tls: false,
    metadata: { 'client-version': '1.0.0' }
    };
    interface ClientConnectionOptions {
        address: string;
        apiKey?: string;
        metadata?: Record<string, string>;
        namespace?: string;
        tls?: boolean | TLSConfig;
    }
    Index

    Properties

    address: string
    apiKey?: string
    metadata?: Record<string, string>
    namespace?: string
    tls?: boolean | TLSConfig