camunda-bpmn-js 4.13.0 → 4.14.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.
@@ -25367,6 +25367,93 @@
25367
25367
  isAttr: true
25368
25368
  }
25369
25369
  ]
25370
+ },
25371
+ {
25372
+ name: "ExecutionListeners",
25373
+ superClass: [
25374
+ "Element"
25375
+ ],
25376
+ meta: {
25377
+ allowedIn: [
25378
+ "bpmn:Event",
25379
+ "bpmn:Activity",
25380
+ "bpmn:Process",
25381
+ "bpmn:ExclusiveGateway",
25382
+ "bpmn:InclusiveGateway",
25383
+ "bpmn:ParallelGateway",
25384
+ "bpmn:EventBasedGateway"
25385
+ ]
25386
+ },
25387
+ properties: [
25388
+ {
25389
+ name: "listeners",
25390
+ type: "ExecutionListener",
25391
+ isMany: true
25392
+ }
25393
+ ]
25394
+ },
25395
+ {
25396
+ name: "ExecutionListener",
25397
+ superClass: [
25398
+ "Element"
25399
+ ],
25400
+ meta: {
25401
+ allowedIn: [
25402
+ "zeebe:ExecutionListeners"
25403
+ ]
25404
+ },
25405
+ properties: [
25406
+ {
25407
+ name: "eventType",
25408
+ type: "String",
25409
+ isAttr: true
25410
+ },
25411
+ {
25412
+ name: "retries",
25413
+ type: "String",
25414
+ isAttr: true
25415
+ },
25416
+ {
25417
+ name: "type",
25418
+ type: "String",
25419
+ isAttr: true
25420
+ }
25421
+ ]
25422
+ },
25423
+ {
25424
+ name: "VersionTag",
25425
+ superClass: [
25426
+ "Element"
25427
+ ],
25428
+ meta: {
25429
+ allowedIn: [
25430
+ "bpmn:Process"
25431
+ ]
25432
+ },
25433
+ properties: [
25434
+ {
25435
+ name: "value",
25436
+ type: "String",
25437
+ isAttr: true
25438
+ }
25439
+ ]
25440
+ },
25441
+ {
25442
+ name: "BindingTypeSupported",
25443
+ isAbstract: true,
25444
+ "extends": [
25445
+ "zeebe:CalledDecision",
25446
+ "zeebe:CalledElement",
25447
+ "zeebe:FormDefinition"
25448
+ ],
25449
+ properties: [
25450
+ {
25451
+ name: "bindingType",
25452
+ isAttr: true,
25453
+ type: "String",
25454
+ "default": "latest"
25455
+ }
25456
+ ]
25370
25457
  }
25371
25458
  ];
25372
25459
  var zeebeModdle = {