npm package diff
Package: @forge/manifest
Versions: 8.1.0 - 8.2.0-next.0
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
@@ -12974,8 +12974,117 @@
}
},
"minItems": 1
},
+ "jira:command": {
+ "type": "array",
+ "items": {
+ "additionalProperties": false,
+ "type": "object",
+ "properties": {
+ "title": {
+ "anyOf": [
+ {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 255
+ },
+ {
+ "additionalProperties": false,
+ "type": "object",
+ "properties": {
+ "i18n": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 300,
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
+ }
+ },
+ "required": [
+ "i18n"
+ ]
+ }
+ ]
+ },
+ "title__i18n": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 300,
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
+ },
+ "icon": {
+ "minLength": 1,
+ "maxLength": 255,
+ "type": "string"
+ },
+ "shortcut": {
+ "type": "string"
+ },
+ "keywords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "target": {
+ "anyOf": [
+ {
+ "type": "object",
+ "properties": {
+ "page": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "page"
+ ]
+ },
+ {
+ "type": "object",
+ "properties": {
+ "resource": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 23,
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
+ },
+ "render": {
+ "default": "default",
+ "enum": [
+ "default",
+ "native"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ "resourceUploadId": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 255
+ },
+ "key": {
+ "$ref": "#/definitions/ModuleKeySchema"
+ }
+ },
+ "required": [
+ "target",
+ "title",
+ "key"
+ ],
+ "not": {
+ "required": [
+ "unlicensedAccess"
+ ]
+ }
+ },
+ "minItems": 1
+ },
"jira:boardAction": {
"type": "array",
"items": {
"additionalProperties": false,