From 41c2aec293f2f6a5cf096e6f9b20f3d53f822eb9 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 19 Oct 2020 16:52:37 +0000 Subject: [PATCH] fix(core): update --- ts/interfaces/projectsettings.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/ts/interfaces/projectsettings.ts b/ts/interfaces/projectsettings.ts index f5d4157..42a4e45 100644 --- a/ts/interfaces/projectsettings.ts +++ b/ts/interfaces/projectsettings.ts @@ -1,8 +1,19 @@ export interface IHandlerSettings { + /** + * the slug is a globally unique slug that the package will be answer under + */ slug: string; + /** + * the packagename points to the package to use in the supplied registry + */ packageName: string; + /** + * environment variables are supplied to the service at runtime + */ environmentVariables: { [key: string]: string }; - registryId: string; + /** + * this is needed to know where to get the package to run + */ registryDescriptor: { registryUrl: string; registryToken: string;