docs(packages/backend-common): fix api report
Signed-off-by: secustor <sebastian@poxhofer.at>
This commit is contained in:
@@ -305,6 +305,20 @@ export type DatabaseManagerOptions = {
|
||||
logger?: LoggerService;
|
||||
};
|
||||
|
||||
// @public
|
||||
export interface DockerAuthentication {
|
||||
// (undocumented)
|
||||
auth?: string;
|
||||
// (undocumented)
|
||||
email?: string;
|
||||
// (undocumented)
|
||||
password?: string;
|
||||
// (undocumented)
|
||||
serveraddress?: string;
|
||||
// (undocumented)
|
||||
username?: string;
|
||||
}
|
||||
|
||||
// @public
|
||||
export class DockerContainerRunner implements ContainerRunner {
|
||||
constructor(options: { dockerClient: Docker });
|
||||
@@ -740,6 +754,7 @@ export type RunContainerOptions = {
|
||||
envVars?: Record<string, string>;
|
||||
pullImage?: boolean;
|
||||
defaultUser?: boolean;
|
||||
authentication?: DockerAuthentication;
|
||||
};
|
||||
|
||||
export { SearchOptions };
|
||||
|
||||
@@ -14,7 +14,11 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
export type { ContainerRunner, RunContainerOptions } from './ContainerRunner';
|
||||
export type {
|
||||
ContainerRunner,
|
||||
RunContainerOptions,
|
||||
DockerAuthentication,
|
||||
} from './ContainerRunner';
|
||||
export { DockerContainerRunner } from './DockerContainerRunner';
|
||||
export type {
|
||||
KubernetesContainerRunnerOptions,
|
||||
|
||||
Reference in New Issue
Block a user