From f9f10efe6fde202a3ec91561607bfe5cd0ec9409 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Tue, 6 Feb 2024 18:30:39 +0100 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/data/cloudlyconfig.ts | 15 +++++++++++++++ ts/data/index.ts | 1 + 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 ts/data/cloudlyconfig.ts diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 65fc133..671828d 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.24', + version: '1.0.25', description: 'interfaces for working with containers' } diff --git a/ts/data/cloudlyconfig.ts b/ts/data/cloudlyconfig.ts new file mode 100644 index 0000000..149d6d6 --- /dev/null +++ b/ts/data/cloudlyconfig.ts @@ -0,0 +1,15 @@ +import * as plugins from '../plugins.js'; + +export interface ICloudlyConfig { + cfToken?: string; + digitalOceanToken?: string; + environment?: 'production' | 'integration'; + gitlabUser?: string; + gitlabToken?: string; + letsEncryptEmail?: string; + letsEncryptPrivateKey?: string; + mongoDescriptor?: plugins.tsclass.database.IMongoDescriptor; + publicUrl?: string; + publicPort?: string; + sslMode?: 'none' | 'letsencrypt' | 'external'; +} \ No newline at end of file diff --git a/ts/data/index.ts b/ts/data/index.ts index 2245d52..abf1125 100644 --- a/ts/data/index.ts +++ b/ts/data/index.ts @@ -1,3 +1,4 @@ +export * from './cloudlyconfig.js'; export * from './cluster.js'; export * from './config.js'; export * from './docker.js';