npm package diff

Package: @forge/manifest

Versions: 10.2.0-next.4 - 10.2.0-next.5

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
@@ -27075,21 +27075,47 @@
                                     "minLength": 1,
                                     "maxLength": 255
                                 }
                             },
+                            "validateConnection": {
+                                "type": "object",
+                                "properties": {
+                                    "function": {
+                                        "$ref": "#/definitions/ExtensionKey",
+                                        "description": "The key of the function that should be invoked on connection creation to validate configuration.",
+                                        "title": "validateConnection"
+                                    }
+                                },
+                                "required": [
+                                    "function"
+                                ]
+                            },
                             "onConnectionChange": {
                                 "type": "object",
                                 "properties": {
                                     "function": {
                                         "$ref": "#/definitions/ExtensionKey",
-                                        "description": "The key of the function that should be invoked on connection change.",
-                                        "title": "function"
+                                        "description": "The key of the function that should be invoked on connection change (Created, updated, deleted).",
+                                        "title": "onConnectionChange"
                                     }
                                 },
                                 "required": [
                                     "function"
                                 ]
                             },
+                            "taskRunner": {
+                                "type": "object",
+                                "properties": {
+                                    "function": {
+                                        "$ref": "#/definitions/ExtensionKey",
+                                        "description": "The key of the function that the Orchestrator will invoke to execute a Task. When using Task Management.",
+                                        "title": "taskRunner"
+                                    }
+                                },
+                                "required": [
+                                    "function"
+                                ]
+                            },
                             "key": {
                                 "$ref": "#/definitions/ModuleKeySchema"
                             }
                         },