npm package diff

Package: @forge/manifest

Versions: 9.2.0-next.1 - 9.2.0-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
@@ -668,8 +668,13 @@
                                     "function",
                                     "method"
                                 ]
                             },
+                            "crossVersion": {
+                                "title": "crossVersion",
+                                "description": "Enables consumption of events originating from previous app versions.",
+                                "type": "boolean"
+                            },
                             "key": {
                                 "$ref": "#/definitions/ModuleKeySchema"
                             }
                         },
@@ -27198,19 +27203,23 @@
             "additionalProperties": false,
             "properties": {
                 "type": {
                     "type": "string",
-                    "enum": ["http"]
+                    "enum": [
+                        "http"
+                    ]
                 },
                 "route": {
                     "type": "object",
-                    "required": ["path"],
+                    "required": [
+                        "path"
+                    ],
                     "additionalProperties": false,
                     "properties": {
                         "path": {
                             "type": "string",
                             "description": "The path to the health check endpoint",
-                            "pattern": "^((\/[a-zA-Z0-9-_]+)+|\/)$"
+                            "pattern": "^((/[a-zA-Z0-9-_]+)+|/)$"
                         }
                     }
                 }
             }