npm package diff
Package: @forge/manifest
Versions: 8.9.0-next.9 - 8.9.0-next.10
File: package/out/schema/basic-manifest.d.ts
Index: package/out/schema/basic-manifest.d.ts
===================================================================
--- package/out/schema/basic-manifest.d.ts
+++ package/out/schema/basic-manifest.d.ts
@@ -25,8 +25,12 @@
* Lambda architecture, its value can be either 'x86_64' or 'arm64'. Default value is 'x86_64'.
*/
export type Architecture = 'x86_64' | 'arm64';
/**
+ * The default amount of memory available to all functions at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 512 MB in 1-MB increments. The default value is 512 MB.
+ */
+export type MemoryMB = number;
+/**
* This property is deprecated.
*/
export type RequiredProduct = 'confluence' | 'jira' | 'compass';
/**
@@ -210,8 +214,9 @@
export interface Runtime {
snapshots?: Snapshots;
name: Name;
architecture?: Architecture;
+ memoryMB?: MemoryMB;
}
/**
* Options related to paid app licensing
*/