Application.CommandUpdated{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "ApplicationCommandEvent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "format": "guid"
    },
    "name": {
      "type": [
        "null",
        "string"
      ]
    },
    "group": {
      "type": [
        "null",
        "string"
      ]
    },
    "enabled": {
      "type": "boolean"
    }
  }
}
{
  "enabled": false,
  "group": "anim nulla elit",
  "id": "d7dee6ae-6c04-47ca-81a1-6e4cdf2e3f3a",
  "name": null
}
// Initialize the Streamer.bot WebSocket Client
const client = new StreamerbotClient();
// Subscribe to "Application.CommandUpdated" events and register a callback
client.on('Application.CommandUpdated', ({ event, data }) => {
  // Code here will run every time the event is received!
  console.log('Received event:', event.source, event.type);
  console.log('Event data:', data);
});