npm package diff

Package: @forge/api

Versions: 5.1.0-next.4 - 5.1.0-next.5

File: package/out/api/runtime.d.ts

Index: package/out/api/runtime.d.ts
===================================================================
--- package/out/api/runtime.d.ts
+++ package/out/api/runtime.d.ts
@@ -32,8 +32,18 @@
     supportEntitlementNumber?: string;
     trialEndDate?: string;
     type?: string;
 };
+export interface ProductAri {
+    cloudId?: string;
+    workspaceId?: string;
+    product?: string;
+    toString: () => string;
+}
+export interface Installation {
+    ari: InstallationAri;
+    products: ProductAri[];
+}
 export declare type ForgeRuntime = {
     proxy: ProxyInfo;
     contextAri: string;
     container: {
@@ -51,8 +61,9 @@
         functionKey: string;
         moduleType: string;
         moduleKey: string;
         license?: License;
+        installation?: Installation;
     };
     aaid?: string;
     allowedEgress: string[];
     lambdaContext: {
@@ -84,8 +95,9 @@
     invocationRemainingTimeInMillis(): number;
     installationAri: InstallationAri;
     moduleKey: string;
     license?: License;
+    installation?: Installation;
 };
 export declare function __getRuntime(): ForgeRuntime;
 export declare function getAppContext(): AppContext;
 export declare function wrapInMetrics<Args extends unknown[], Ret>(name: string, fn: (...args: Args) => Promise<Ret>, { tags }?: {