npm package diff
Package: @forge/manifest
Versions: 8.9.0-next.9 - 8.9.0-next.10
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
@@ -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';
/**
@@ -174,9 +178,9 @@
export type TimeoutSeconds = number;
/**
* The amount of memory available to this function 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;
+export type MemoryMB1 = number;
/**
* Name of the key of the function that will handle this action.
*/
export type Function3 = string;
@@ -864,8 +868,9 @@
export interface Runtime {
snapshots?: Snapshots;
name: Name;
architecture?: Architecture;
+ memoryMB?: MemoryMB;
}
/**
* Options related to paid app licensing
*/
@@ -12199,9 +12204,9 @@
/**
* Function Runtime configuration
*/
export interface Runtime1 {
- memoryMB?: MemoryMB;
+ memoryMB?: MemoryMB1;
}
export interface ActionInput {
title: string;
/**