fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-18 20:42:45 +01:00
parent 8d687f3739
commit 9d90ad0119
2 changed files with 3 additions and 2 deletions

View File

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

View File

@ -1,6 +1,7 @@
import * as plugins from '../plugins.js'; import * as plugins from '../plugins.js';
import * as clusterInterfaces from '../data/cluster.js'; import * as clusterInterfaces from '../data/cluster.js';
import * as serverInterfaces from '../data/server.js'; import * as serverInterfaces from '../data/server.js';
import type { IService } from '../data/service.js';
export interface IRequest_Any_Cloudly_GetServerConfig export interface IRequest_Any_Cloudly_GetServerConfig
extends plugins.typedrequestInterfaces.implementsTR< extends plugins.typedrequestInterfaces.implementsTR<
@ -50,7 +51,7 @@ extends plugins.typedrequestInterfaces.implementsTR<
method: 'pushContainerUpdate' method: 'pushContainerUpdate'
request: { request: {
configData: clusterInterfaces.ICluster; configData: clusterInterfaces.ICluster;
specificContainerConfigToUpdate: clusterInterfaces.IService; specificContainerConfigToUpdate: IService;
}; };
response: {} response: {}
} }