npm package diff
Package: @forge/manifest
Versions: 11.0.0-next.5 - 11.0.0-next.6
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
@@ -2470,8 +2470,50 @@
"required": [
"resource"
]
},
+ "ai-context": {
+ "type": "object",
+ "properties": {
+ "data": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "type": "object",
+ "properties": {
+ "function": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 255,
+ "pattern": "^[a-zA-Z0-9-_]+$"
+ }
+ },
+ "required": [
+ "function"
+ ]
+ },
+ {
+ "additionalProperties": false,
+ "type": "object",
+ "properties": {
+ "endpoint": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 255,
+ "pattern": "^[a-zA-Z0-9-_]+$"
+ }
+ },
+ "required": [
+ "endpoint"
+ ]
+ }
+ ]
+ }
+ },
+ "required": [
+ "data"
+ ]
+ },
"resolver": {
"anyOf": [
{
"additionalProperties": false,
@@ -2529,8 +2571,77 @@
}
},
"minItems": 1
},
+ "dashboards:backgroundScript": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "resource": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 23,
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
+ },
+ "resolver": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "type": "object",
+ "properties": {
+ "function": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 255,
+ "pattern": "^[a-zA-Z0-9-_]+$"
+ }
+ },
+ "required": [
+ "function"
+ ]
+ },
+ {
+ "additionalProperties": false,
+ "type": "object",
+ "properties": {
+ "endpoint": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 255,
+ "pattern": "^[a-zA-Z0-9-_]+$"
+ }
+ },
+ "required": [
+ "endpoint"
+ ]
+ }
+ ]
+ },
+ "render": {
+ "default": "default",
+ "enum": [
+ "default",
+ "native"
+ ],
+ "type": "string"
+ },
+ "key": {
+ "$ref": "#/definitions/ModuleKeySchema"
+ }
+ },
+ "required": [
+ "resource",
+ "key"
+ ],
+ "not": {
+ "required": [
+ "unlicensedAccess"
+ ]
+ }
+ },
+ "minItems": 1
+ },
"confluence:contextMenu": {
"type": "array",
"items": {
"oneOf": [