npm package diff

Package: @forge/api

Versions: 3.8.1-experimental-10722bc - 3.9.2-next.1

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
@@ -19,8 +19,21 @@
         key: string;
     }[];
     accounts: ExternalAuthMetaDataAccount[];
 };
+export declare type CapabilitySet = 'capabilityStandard' | 'capabilityAdvanced';
+export declare type License = {
+    isActive?: boolean;
+    billingPeriod?: string;
+    capabilitySet?: CapabilitySet;
+    ccpEntitlementId?: string;
+    ccpEntitlementSlug?: string;
+    isEvaluation?: boolean;
+    subscriptionEndDate?: string;
+    supportEntitlementNumber?: string;
+    trialEndDate?: string;
+    type?: string;
+};
 export declare type ForgeRuntime = {
     proxy: ProxyInfo;
     contextAri: string;
     container: {
@@ -37,8 +50,9 @@
         installationId: string;
         functionKey: string;
         moduleType: string;
         moduleKey: string;
+        license?: License;
     };
     aaid?: string;
     allowedEgress: string[];
     lambdaContext: {
@@ -63,8 +77,9 @@
     environmentType: string;
     invocationId: string;
     installationAri: InstallationAri;
     moduleKey: string;
+    license?: License;
 };
 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 }?: {