From a7d0a8cbf0cc9fc6f1bd5cbd1e20388928b6df8b Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Thu, 4 May 2023 11:38:36 -0600 Subject: [PATCH] add mount --- lib/types.ts | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lib/types.ts b/lib/types.ts index d6657aa..f7920d7 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -373,7 +373,7 @@ export type Effects = { * Note: any auth should be filtered out already */ getInterface(options: { - serviceId?: PackageId + packageId?: PackageId interfaceId?: string }): Promise @@ -447,6 +447,19 @@ export type Effects = { }): Promise<{ stop(): Promise }> restart(): void shutdown(): void + + mount(options: { + location: { + volumeId: string, + path: string, + } + target: { + packageId: string, + volumeId: string, + path: string, + readonly: boolean, + } + }): Promise } // prettier-ignore