fix(core): update

This commit is contained in:
Philipp Kunz 2024-06-13 10:07:41 +02:00
parent 8edc014d4a
commit 4db2c7bbaf
2 changed files with 7 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.73', version: '1.0.74',
description: 'interfaces for working with containers' description: 'interfaces for working with containers'
} }

View File

@ -5,6 +5,7 @@ export interface IService {
data: { data: {
name: string; name: string;
imageId: string; imageId: string;
imageVersion: string;
environment: { [key: string]: string }; environment: { [key: string]: string };
secretBundleId: string; secretBundleId: string;
scaleFactor: number; scaleFactor: number;
@ -14,7 +15,11 @@ export interface IService {
custom?: { [domain: string]: string }; custom?: { [domain: string]: string };
}; };
resources?: IServiceRessources; resources?: IServiceRessources;
domains: string[]; domains: {
name: string;
port?: number;
protocol?: 'http' | 'https' | 'ssh';
}[];
deploymentIds: string[]; deploymentIds: string[];
deploymentDirectiveIds: string[]; deploymentDirectiveIds: string[];
}; };