2021-09-06 18:53:02 +02:00
|
|
|
const app = require("./app")
|
|
|
|
const cron = require("./cron")
|
|
|
|
const rowDeleted = require("./rowDeleted")
|
|
|
|
const rowSaved = require("./rowSaved")
|
|
|
|
const rowUpdated = require("./rowUpdated")
|
|
|
|
const webhook = require("./webhook")
|
|
|
|
|
|
|
|
exports.definitions = {
|
|
|
|
ROW_SAVED: rowSaved.definition,
|
|
|
|
ROW_UPDATED: rowUpdated.definition,
|
|
|
|
ROW_DELETED: rowDeleted.definition,
|
|
|
|
WEBHOOK: webhook.definition,
|
|
|
|
APP: app.definition,
|
2021-09-14 17:43:06 +02:00
|
|
|
CRON: cron.definition,
|
2021-09-06 18:53:02 +02:00
|
|
|
}
|