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