npm package diff

Package: @forge/manifest

Versions: 9.1.0 - 9.2.0-next.0

File: package/out/schema/manifest.d.ts

Index: package/out/schema/manifest.d.ts
===================================================================
--- package/out/schema/manifest.d.ts
+++ package/out/schema/manifest.d.ts
@@ -757,14 +757,16 @@
   [key in ForgeSupportedLocaleCode]?: ForgeSupportedLocaleCode[];
 } & {
   default: ForgeSupportedLocaleCode;
 };
+export type Containers = {
+  key: string;
+  tag: string;
+  health: Health;
+}[];
 export type Services = {
   key: string;
-  containers: {
-    key: string;
-    tag: string;
-  }[];
+  containers: Containers;
 }[];
 
 export interface ManifestSchema {
   app: App;
@@ -61413,4 +61415,13 @@
 export interface Translations {
   resources: TranslationsResources;
   fallback: TranslationsFallback;
 }
+export interface Health {
+  type: 'http';
+  route: {
+    /**
+     * The path to the health check endpoint
+     */
+    path: string;
+  };
+}