Hierarchy

Implements

Constructors

Properties

_config: BuilderConfig
sanitizeUri: any

Accessors

Methods

  • Add a partial BuilderConfig This is equivalent to calling each of the plural add functions: addEnvs, setWrappers, etc.

    Parameters

    Returns ClientConfigBuilder

    ClientConfigBuilder (mutated self)

  • Add an Env. If an Env is already associated with the uri, it is modified.

    Parameters

    • uri: string
    • env: Record<string, unknown>

    Returns ClientConfigBuilder

    ClientConfigBuilder (mutated self)

  • Add one or more Envs This is equivalent to calling addEnv for each Env

    Parameters

    • envs: Record<string, Record<string, unknown>>

    Returns ClientConfigBuilder

    ClientConfigBuilder (mutated self)

  • Register one or more implementation of a single interface

    Parameters

    • interfaceUri: string
    • implementationUris: string[] | Set<string>

    Returns ClientConfigBuilder

    ClientConfigBuilder (mutated self)

  • Add a URI Resolver, capable of resolving a URI to a wrapper

    Parameters

    Returns ClientConfigBuilder

    ClientConfigBuilder (mutated self)

    Remarks

    A UriResolverLike can be any one of: IUriResolver | IUriRedirect | IUriPackage | IUriWrapper | UriResolverLike[];

  • Add one or more URI Resolvers, capable of resolving URIs to wrappers

    Parameters

    Returns ClientConfigBuilder

    ClientConfigBuilder (mutated self)

    Remarks

    A UriResolverLike can be any one of: IUriResolver | IUriRedirect | IUriPackage | IUriWrapper | UriResolverLike[];

  • Build a sanitized core client configuration that can be passed to the PolywrapClient or PolywrapCoreClient constructors

    Returns CoreClientConfig

    CoreClientConfig that results from applying all the steps in the builder pipeline

  • Add an Env. If an Env is already associated with the uri, it is replaced.

    Parameters

    • uri: string
    • env: Record<string, unknown>

    Returns ClientConfigBuilder

    ClientConfigBuilder (mutated self)

  • Add one or more embedded wrap packages This is equivalent to calling setPackage for each package

    Parameters

    Returns ClientConfigBuilder

    ClientConfigBuilder (mutated self)

  • Add one or more embedded wrappers. This is equivalent to calling setWrapper for each wrapper.

    Parameters

    • uriWrappers: Record<string, Wrapper>

    Returns ClientConfigBuilder

    ClientConfigBuilder (mutated self)

Generated using TypeDoc