npm package diff
Package: @forge/manifest
Versions: 8.0.0-next.9 - 8.0.0-next.10
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
@@ -12243,8 +12243,17 @@
"type": "string",
"minLength": 1,
"maxLength": 255
},
+ "actionType": {
+ "minLength": 1,
+ "maxLength": 255,
+ "enum": [
+ "dynamic",
+ "modal"
+ ],
+ "type": "string"
+ },
"viewportSize": {
"minLength": 1,
"maxLength": 255,
"enum": [
@@ -12267,8 +12276,29 @@
"minLength": 1,
"maxLength": 23,
"pattern": "^[a-zA-Z0-9_\\-]+$"
},
+ "actionType": {
+ "minLength": 1,
+ "maxLength": 255,
+ "enum": [
+ "dynamic",
+ "modal"
+ ],
+ "type": "string"
+ },
+ "viewPortSize": {
+ "minLength": 1,
+ "maxLength": 255,
+ "enum": [
+ "large",
+ "max",
+ "medium",
+ "small",
+ "xlarge"
+ ],
+ "type": "string"
+ },
"title": {
"anyOf": [
{
"type": "string",
@@ -12747,8 +12777,17 @@
"type": "string",
"minLength": 1,
"maxLength": 255
},
+ "actionType": {
+ "minLength": 1,
+ "maxLength": 255,
+ "enum": [
+ "dynamic",
+ "modal"
+ ],
+ "type": "string"
+ },
"viewportSize": {
"minLength": 1,
"maxLength": 255,
"enum": [
@@ -12771,8 +12810,29 @@
"minLength": 1,
"maxLength": 23,
"pattern": "^[a-zA-Z0-9_\\-]+$"
},
+ "actionType": {
+ "minLength": 1,
+ "maxLength": 255,
+ "enum": [
+ "dynamic",
+ "modal"
+ ],
+ "type": "string"
+ },
+ "viewPortSize": {
+ "minLength": 1,
+ "maxLength": 255,
+ "enum": [
+ "large",
+ "max",
+ "medium",
+ "small",
+ "xlarge"
+ ],
+ "type": "string"
+ },
"title": {
"anyOf": [
{
"type": "string",
@@ -12983,8 +13043,17 @@
"type": "string",
"minLength": 1,
"maxLength": 255
},
+ "actionType": {
+ "minLength": 1,
+ "maxLength": 255,
+ "enum": [
+ "dynamic",
+ "modal"
+ ],
+ "type": "string"
+ },
"viewportSize": {
"minLength": 1,
"maxLength": 255,
"enum": [
@@ -13007,8 +13076,29 @@
"minLength": 1,
"maxLength": 23,
"pattern": "^[a-zA-Z0-9_\\-]+$"
},
+ "actionType": {
+ "minLength": 1,
+ "maxLength": 255,
+ "enum": [
+ "dynamic",
+ "modal"
+ ],
+ "type": "string"
+ },
+ "viewPortSize": {
+ "minLength": 1,
+ "maxLength": 255,
+ "enum": [
+ "large",
+ "max",
+ "medium",
+ "small",
+ "xlarge"
+ ],
+ "type": "string"
+ },
"title": {
"anyOf": [
{
"type": "string",
@@ -25642,8 +25732,20 @@
"expression": {
"title": "expression",
"description": "The app will ignore events filtered out by expression",
"type": "string"
+ },
+ "onError": {
+ "title": "onError",
+ "description": "The default behavior when an error during event filtering occurs",
+ "type": "string",
+ "default": "IGNORE_AND_LOG",
+ "enum": [
+ "IGNORE",
+ "IGNORE_AND_LOG",
+ "RECEIVE",
+ "RECEIVE_AND_LOG"
+ ]
}
},
"anyOf": [
{
@@ -25654,8 +25756,14 @@
{
"required": [
"expression"
]
+ },
+ {
+ "required": [
+ "expression",
+ "onError"
+ ]
}
]
},
"FilteredProductEvents": {