docs(packages/backend-common): fix api report

Signed-off-by: secustor <sebastian@poxhofer.at>
This commit is contained in:
secustor
2024-04-04 19:37:46 +02:00
parent 5fad80cf78
commit a0f55a1217
2 changed files with 20 additions and 1 deletions
+15
View File
@@ -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 };
+5 -1
View File
@@ -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,