fix(core): update

This commit is contained in:
Philipp Kunz 2024-03-06 19:11:47 +01:00
parent 9a0bb3654c
commit 48cddd932d
2 changed files with 3 additions and 3 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/interfaces',
version: '1.0.46',
version: '1.0.47',
description: 'interfaces for working with containers'
}

View File

@ -38,7 +38,7 @@ export interface IRequest_PushImage extends plugins.typedrequestInterfaces.imple
method: 'pushImage';
request: {
jwt: string;
image: string;
name: string;
version: string;
imageStream?: plugins.typedrequestInterfaces.IVirtualStream;
chunk: Buffer;
@ -54,7 +54,7 @@ export interface IRequest_DownloadImage extends plugins.typedrequestInterfaces.i
method: 'pullImage';
request: {
jwt: string;
image: string;
name: string;
version: string;
};
response: {