# [2025-05-12] Scheduler group events & UI components

Source: https://developer.nylas.com/docs/new/v3-changelogs/2025-05-12-scheduler-group-events/

We've got a few updates to group events in Scheduler, and changes to the UI components.

## Breaking changes

- Added the `enableEventTypes` property to the Scheduler Editor Component, with all event types enabled by default.

  ```html [create-HTML/Vanilla JS]
  <html>
    <body>
      <nylas-scheduler-editor />

      <script type="module">
        // ...Scheduler Editor Configuration
        schedulerEditor.enableEventTypes= {
          one_on_one: true,
          collective: true,
          max_fairness: true,
          max_availability: true,
          group: true
        },
        ...
      </script>
    </body>
  </html>
  ```

  ```tsx [create-React]
  
  ```

- Scheduler no longer supports hardcoding a single scheduling method using the `availability_method` property (for example, `availability_method: 'max-availability'`). You must use `enableEventTypes` instead.
- If your Configuration supports multiple event types, Nylas now opens a type selection dialog when a user creates an event.
- The height of the Scheduler Editor has been increased from 610px to 900px to accommodate the calendar view for group events.

## Added

The Scheduler components now generate the following events:

- `groupEventCreateTriggered`
- `groupEventUpdateTriggered`
- `groupEventDeleteTriggered`
- `groupEventImportTriggered`
- `saveGroupEventChangesError`