Interface StudioHelperSettings

Represents the settings for initializing StudioHelper.

interface StudioHelperSettings {
    concurrentUploads?: number;
    credentialsFile?: string;
    ignoreFile?: string;
    loginPromptEnabled?: boolean;
    promptSchema?: any;
    proxy?: string;
    strictSSL?: boolean;
    studio: string;
    useCacheDir?: boolean;
}

Properties

concurrentUploads?: number

The maximum number of concurrent uploads.

credentialsFile?: string

The credentials file.

ignoreFile?: string

The ignore file.

loginPromptEnabled?: boolean

Whether to enable the login prompt.

promptSchema?: any

The prompt schema.

proxy?: string

The proxy to use.

strictSSL?: boolean

Whether to use strict SSL.

studio: string

The Studio host (e.g., 'xyz.studio.crasman.fi').

useCacheDir?: boolean

Whether to use the cache directory.