npm package diff
Package: @forge/manifest
Versions: 9.1.0-next.1 - 9.1.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
@@ -26031,8 +26031,44 @@
}
},
"minItems": 1
},
+ "automation:actionProvider": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "additionalProperties": false,
+ "required": [
+ "actions",
+ "key"
+ ],
+ "properties": {
+ "actions": {
+ "description": "A list of actions that will be exposed by the Automation platform.",
+ "type": "array",
+ "minItems": 1,
+ "uniqueItems": true,
+ "items": {
+ "description": "The key of an action extension in your manifest.",
+ "maxLength": 255,
+ "minLength": 1,
+ "pattern": "^[a-zA-Z0-9-._]+$",
+ "title": "ActionExtensionKey",
+ "type": "string"
+ }
+ },
+ "key": {
+ "$ref": "#/definitions/ModuleKeySchema"
+ }
+ },
+ "not": {
+ "required": [
+ "unlicensedAccess"
+ ]
+ }
+ },
+ "minItems": 1
+ },
"rovo:agent": {
"type": "array",
"items": {
"type": "object",