npm package diff
Package: @forge/api
Versions: 3.9.2-next.0-experimental-c7a7d36 - 3.8.1-experimental-204139e
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,21 +19,8 @@
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: {
@@ -50,9 +37,8 @@
installationId: string;
functionKey: string;
moduleType: string;
moduleKey: string;
- license?: License;
};
aaid?: string;
allowedEgress: string[];
lambdaContext: {
@@ -77,9 +63,8 @@
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 }?: {