From d99dc3e3abc0a808d051e901521e318c04cf023a Mon Sep 17 00:00:00 2001 From: tomholford Date: Sat, 5 Nov 2022 01:45:57 -0700 Subject: [PATCH] devex: update zest.pike comment Also remove errant gitignore update --- .gitignore | 2 -- pkg/npm/api/hood/types.ts | 8 ++++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5c6cc51b1..2bfb2cd26 100644 --- a/.gitignore +++ b/.gitignore @@ -84,5 +84,3 @@ pkg/interface/link-webext/web-ext-artifacts *.log .vercel - -pkg/hodl/ \ No newline at end of file diff --git a/pkg/npm/api/hood/types.ts b/pkg/npm/api/hood/types.ts index a6e32ec3e..17676b47a 100644 --- a/pkg/npm/api/hood/types.ts +++ b/pkg/npm/api/hood/types.ts @@ -191,6 +191,14 @@ export interface Pike { wefts: Weft[]; /** * how live is this pike? + * + * live - app is running + * held - app is not running, but is trying to run. this state can be entered + * in two main ways: + * - when installing an app but it hasn't finished downloading (or it did + * but failed to install for some reason) + * - when user forced a kelvin upgrade by suspending desks. + * dead - app is not running */ zest: "live" | "dead" | "held"; }