npm package diff

Package: @forge/manifest

Versions: 8.7.1-next.1 - 8.7.1-next.2

File: package/out/schema/manifest-schema.json

Index: package/out/schema/manifest-schema.json
===================================================================
--- package/out/schema/manifest-schema.json
+++ package/out/schema/manifest-schema.json
@@ -705,8 +705,23 @@
                                 "minimum": 1,
                                 "title": "timeoutSeconds",
                                 "type": "number"
                             },
+                            "runtime": {
+                                "type": "object",
+                                "additionalProperties": false,
+                                "description": "Function Runtime configuration",
+                                "title": "runtime",
+                                "properties": {
+                                    "memoryMB": {
+                                        "type": "number",
+                                        "title": "memoryMB",
+                                        "description": "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.",
+                                        "minimum": 128,
+                                        "maximum": 1769
+                                    }
+                                }
+                            },
                             "key": {
                                 "$ref": "#/definitions/ModuleKeySchema"
                             }
                         },