The list of web service URLs.

interface WebServiceSettings {
    aromatizeServiceURL?: string;
    cipStereoServiceURL?: string;
    clean2dServiceURL?: string;
    enumerateServiceURL?: string;
    getJWT?: (() => string);
    hydrogenizeServiceURL?: string;
    iupacNamingServiceURL?: string;
    iupacNumberingServiceURL?: string;
    licenseServiceURL?: string;
    molConvertServiceURL?: string;
    overrideNetworkService?: NetworkService;
    searchServiceURL?: string;
    tiffServiceURL?: string;
    timeServiceURL?: string;
}

Properties

aromatizeServiceURL?: string

The URL of the aromatize service. Desired protocol variant must be set.

cipStereoServiceURL?: string

The URL of the CIP stereo calculation service.

clean2dServiceURL?: string

The URL used for the name search and clean2d service. Desired protocol variant must be set.

enumerateServiceURL?: string

The URL of the enumeration service.

getJWT?: (() => string)

Type declaration

    • (): string
    • Callback for getting JWT token. If this method is provided then we append the JWT returned by it to all our backend service call's header

      Returns string

hydrogenizeServiceURL?: string

The URL of the hydrogenize webservice. Desired protocol variant must be set.

iupacNamingServiceURL?: string

The URL of the iupac naming webservice.

iupacNumberingServiceURL?: string

The URL of the iupac numbering webservice.

licenseServiceURL?: string

The URL of the license service.

molConvertServiceURL?: string

The URL of the molecule IO webservice.

overrideNetworkService?: NetworkService

Override network service layer.

searchServiceURL?: string

The server endpoint to call the search service.

tiffServiceURL?: string

The URL of the TIFF export webservice.

timeServiceURL?: string

The URL of the time service.

Generated using TypeDoc