Application.ActionDeleted{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "ApplicationActionEvent",
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"format": "guid"
},
"name": {
"type": [
"null",
"string"
]
},
"group": {
"type": [
"null",
"string"
]
},
"enabled": {
"type": "boolean"
},
"random": {
"type": "boolean"
},
"concurrent": {
"type": "boolean"
},
"alwaysRun": {
"type": "boolean"
},
"excludeFromHistory": {
"type": "boolean"
},
"excludeFromPending": {
"type": "boolean"
}
}
}
{
"alwaysRun": false,
"concurrent": true,
"enabled": false,
"excludeFromHistory": false,
"excludeFromPending": false,
"group": null,
"id": "54943c32-5f47-4d56-9f05-c8642b6f0cbe",
"name": "do sit",
"random": false
}
// Initialize the Streamer.bot WebSocket Client
const client = new StreamerbotClient();
// Subscribe to "Application.ActionDeleted" events and register a callback
client.on('Application.ActionDeleted', ({ 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);
});