diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index a30b4b8..dc3089b 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@apiclient.xyz/docker', - version: '1.1.2', + version: '1.1.3', description: 'Provides easy communication with Docker remote API from Node.js, with TypeScript support.' } diff --git a/ts/classes.imagestore.ts b/ts/classes.imagestore.ts index e5575dc..ced9664 100644 --- a/ts/classes.imagestore.ts +++ b/ts/classes.imagestore.ts @@ -14,7 +14,7 @@ export class DockerImageStore { } // Method to store tar stream - public async storeImage(imageName: string, tarStream: NodeJS.ReadableStream): Promise { + public async storeImage(imageName: string, tarStream: plugins.smartstream.stream.Readable): Promise { const imagePath = plugins.path.join(this.options.dirPath, `${imageName}.tar`); // Create a write stream to store the tar file