@camunda/zeebe-element-templates-json-schema 0.33.0 → 0.34.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/zeebe-element-templates-json-schema",
3
- "version": "0.33.0",
3
+ "version": "0.34.0",
4
4
  "description": "JSON Schema for (Zeebe) Element Templates",
5
5
  "files": [
6
6
  "resources"
@@ -26,5 +26,5 @@
26
26
  "camunda"
27
27
  ],
28
28
  "license": "MIT",
29
- "gitHead": "cd9cfc95d8c981797f1e419c703c40468e549406"
29
+ "gitHead": "c0c565b30fa34074256c2bf1912757ebd1cb2472"
30
30
  }
@@ -785,5 +785,18 @@
785
785
  "properties"
786
786
  ],
787
787
  "errorMessage": "Binding with `type`=`bpmn:Signal#property` is required, when using `elementType.eventDefinition`=`bpmn:SignalEventDefinition`"
788
+ },
789
+ {
790
+ "path": [
791
+ "definitions",
792
+ "properties",
793
+ "allOf",
794
+ 1,
795
+ "items",
796
+ "allOf",
797
+ 26,
798
+ "then"
799
+ ],
800
+ "errorMessage": "FEEL is not supported for `zeebe:calledElement` variable propagation properties"
788
801
  }
789
802
  ]
@@ -1583,6 +1583,53 @@
1583
1583
  }
1584
1584
  }
1585
1585
  }
1586
+ },
1587
+ {
1588
+ "if": {
1589
+ "properties": {
1590
+ "binding": {
1591
+ "properties": {
1592
+ "type": {
1593
+ "const": "zeebe:calledElement"
1594
+ },
1595
+ "property": {
1596
+ "enum": [
1597
+ "propagateAllParentVariables",
1598
+ "propagateAllChildVariables"
1599
+ ]
1600
+ }
1601
+ },
1602
+ "required": [
1603
+ "type",
1604
+ "property"
1605
+ ]
1606
+ }
1607
+ },
1608
+ "required": [
1609
+ "binding"
1610
+ ]
1611
+ },
1612
+ "then": {
1613
+ "required": [
1614
+ "type"
1615
+ ],
1616
+ "properties": {
1617
+ "type": {
1618
+ "enum": [
1619
+ "Hidden",
1620
+ "Boolean"
1621
+ ]
1622
+ },
1623
+ "value": {
1624
+ "type": "boolean"
1625
+ }
1626
+ },
1627
+ "not": {
1628
+ "required": [
1629
+ "feel"
1630
+ ]
1631
+ }
1632
+ }
1586
1633
  }
1587
1634
  ],
1588
1635
  "properties": {
@@ -1709,7 +1756,9 @@
1709
1756
  "enum": [
1710
1757
  "processId",
1711
1758
  "bindingType",
1712
- "versionTag"
1759
+ "versionTag",
1760
+ "propagateAllParentVariables",
1761
+ "propagateAllChildVariables"
1713
1762
  ]
1714
1763
  }
1715
1764
  },
@@ -2029,7 +2078,7 @@
2029
2078
  "generatedValue": {
2030
2079
  "$id": "#/properties/property/generatedValue",
2031
2080
  "type": "object",
2032
- "description": "Sets property to a generated value according to given scheme.",
2081
+ "description": "Object that defines how a default value should be generated.",
2033
2082
  "required": [
2034
2083
  "type"
2035
2084
  ],
@@ -1,17 +0,0 @@
1
- {
2
- "name": "Ad hoc",
3
- "id": "com.camunda.example.completionCondition",
4
- "appliesTo": [
5
- "bpmn:AdHocSubProcess"
6
- ],
7
- "properties": [
8
- {
9
- "type": "String",
10
- "feel": "required",
11
- "binding": {
12
- "type": "zeebe:taskDefinition",
13
- "property": "type"
14
- }
15
- }
16
- ]
17
- }