You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/event-catalog-client/src/openapi.json
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -406,7 +406,13 @@
406
406
},
407
407
"enabled": {
408
408
"type": "boolean",
409
-
"description": "Whether this event is enabled for the organization.\nWhen disabled, the event will not be triggered.\nDefaults to true if not specified.\n",
409
+
"description": "Whether this event is enabled for the organization.\nWhen disabled, the event will not be triggered by any means\n(automatic, API, or automation).\nDefaults to true if not specified.\n",
410
+
"default": true,
411
+
"example": true
412
+
},
413
+
"auto_trigger": {
414
+
"type": "boolean",
415
+
"description": "Whether the event should be triggered automatically by built-in logic\n(e.g., portal submissions, entity mutations, EventBridge rules).\nWhen false, the event can still be triggered manually via API or automations.\nOnly meaningful for builtin events that have automatic trigger sources.\nDefaults to true if not specified.\n",
410
416
"default": true,
411
417
"example": true
412
418
},
@@ -435,7 +441,7 @@
435
441
]
436
442
},
437
443
"UpdateEventPayload": {
438
-
"description": "Payload for updating an event configuration.\nAccepts the same fields as EventConfig (all optional for PATCH).\nCurrently only the `enabled` field is processed, other fields are ignored.\n",
444
+
"description": "Payload for updating an event configuration.\nAccepts the same fields as EventConfig (all optional for PATCH).\nCurrently only `enabled` and `auto_trigger` fields are processed, other fields are ignored.\n",
0 commit comments