fix(core): update

This commit is contained in:
Philipp Kunz 2024-06-10 01:10:18 +02:00
parent d946bfd536
commit c9c0a7044e
4 changed files with 3 additions and 3 deletions

View File

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

View File

@ -7,7 +7,7 @@ export * from './docker.js';
export * from './env.js'; export * from './env.js';
export * from './event.js'; export * from './event.js';
export * from './image.js'; export * from './image.js';
export * from './secretgroup.js'; export * from './secretbundle.js';
export * from './secretgroup.js' export * from './secretgroup.js'
export * from './server.js'; export * from './server.js';
export * from './service.js'; export * from './service.js';

View File

@ -5,13 +5,13 @@ export interface IService {
imageId: string; imageId: string;
scaleFactor: number; scaleFactor: number;
balancingStrategy: 'round-robin' | 'least-connections'; balancingStrategy: 'round-robin' | 'least-connections';
secrets: { [key: string]: string };
ports: { ports: {
web: number; web: number;
custom?: { [domain: string]: string }; custom?: { [domain: string]: string };
}; };
resources?: IServiceRessources; resources?: IServiceRessources;
domains: string[]; domains: string[];
secrets: { [key: string]: string };
deploymentIds: string[]; deploymentIds: string[];
deploymentDirectiveIds: string[]; deploymentDirectiveIds: string[];
} }