From d440fbc46dee3de2004e4bf65589fbe8054b9040 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Tue, 28 May 2024 00:23:54 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/data/cluster.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 10fe11d..3e4fc22 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/interfaces', - version: '1.0.53', + version: '1.0.54', description: 'interfaces for working with containers' } diff --git a/ts/data/cluster.ts b/ts/data/cluster.ts index e030d94..b2b42e4 100644 --- a/ts/data/cluster.ts +++ b/ts/data/cluster.ts @@ -4,8 +4,9 @@ import { type IDockerRegistryInfo } from '../data/docker.js'; import type { IServer } from './server.js'; export interface IClusterIdentifier { + clusterId: string; clusterName: string; - secretKey: string; + jwt: string; } export interface ICluster {