Update flow names for Advoware and VMH steps to improve clarity and organization
This commit is contained in:
@@ -23,7 +23,7 @@ import os
|
||||
config = {
|
||||
"name": "VMH Bankverbindungen Sync Handler",
|
||||
"description": "Zentraler Sync-Handler für Bankverbindungen (Webhooks + Cron Events)",
|
||||
"flows": ["vmh"],
|
||||
"flows": ["vmh-bankverbindungen"],
|
||||
"triggers": [
|
||||
{"type": "queue", "topic": "vmh.bankverbindungen.create"},
|
||||
{"type": "queue", "topic": "vmh.bankverbindungen.update"},
|
||||
|
||||
@@ -17,7 +17,7 @@ import datetime
|
||||
config = {
|
||||
"name": "VMH Beteiligte Sync Cron",
|
||||
"description": "Prüft alle 15 Minuten welche Beteiligte synchronisiert werden müssen",
|
||||
"flows": ["vmh"],
|
||||
"flows": ["vmh-beteiligte"],
|
||||
"triggers": [
|
||||
cron("0 */15 * * * *") # Alle 15 Minuten (6-field format!)
|
||||
],
|
||||
|
||||
@@ -24,7 +24,7 @@ import os
|
||||
config = {
|
||||
"name": "VMH Beteiligte Sync Handler",
|
||||
"description": "Zentraler Sync-Handler für Beteiligte (Webhooks + Cron Events)",
|
||||
"flows": ["vmh"],
|
||||
"flows": ["vmh-beteiligte"],
|
||||
"triggers": [
|
||||
{"type": "queue", "topic": "vmh.beteiligte.create"},
|
||||
{"type": "queue", "topic": "vmh.beteiligte.update"},
|
||||
|
||||
@@ -8,7 +8,7 @@ from motia import FlowContext, http, ApiRequest, ApiResponse
|
||||
config = {
|
||||
"name": "VMH Webhook Bankverbindungen Create",
|
||||
"description": "Empfängt Create-Webhooks von EspoCRM für Bankverbindungen",
|
||||
"flows": ["vmh"],
|
||||
"flows": ["vmh-bankverbindungen"],
|
||||
"triggers": [
|
||||
http("POST", "/vmh/webhook/bankverbindungen/create")
|
||||
],
|
||||
|
||||
@@ -8,7 +8,7 @@ from motia import FlowContext, http, ApiRequest, ApiResponse
|
||||
config = {
|
||||
"name": "VMH Webhook Bankverbindungen Delete",
|
||||
"description": "Empfängt Delete-Webhooks von EspoCRM für Bankverbindungen",
|
||||
"flows": ["vmh"],
|
||||
"flows": ["vmh-bankverbindungen"],
|
||||
"triggers": [
|
||||
http("POST", "/vmh/webhook/bankverbindungen/delete")
|
||||
],
|
||||
|
||||
@@ -8,7 +8,7 @@ from motia import FlowContext, http, ApiRequest, ApiResponse
|
||||
config = {
|
||||
"name": "VMH Webhook Bankverbindungen Update",
|
||||
"description": "Empfängt Update-Webhooks von EspoCRM für Bankverbindungen",
|
||||
"flows": ["vmh"],
|
||||
"flows": ["vmh-bankverbindungen"],
|
||||
"triggers": [
|
||||
http("POST", "/vmh/webhook/bankverbindungen/update")
|
||||
],
|
||||
|
||||
@@ -8,7 +8,7 @@ from motia import FlowContext, http, ApiRequest, ApiResponse
|
||||
config = {
|
||||
"name": "VMH Webhook Beteiligte Create",
|
||||
"description": "Empfängt Create-Webhooks von EspoCRM für Beteiligte",
|
||||
"flows": ["vmh"],
|
||||
"flows": ["vmh-beteiligte"],
|
||||
"triggers": [
|
||||
http("POST", "/vmh/webhook/beteiligte/create")
|
||||
],
|
||||
|
||||
@@ -8,7 +8,7 @@ from motia import FlowContext, http, ApiRequest, ApiResponse
|
||||
config = {
|
||||
"name": "VMH Webhook Beteiligte Delete",
|
||||
"description": "Empfängt Delete-Webhooks von EspoCRM für Beteiligte",
|
||||
"flows": ["vmh"],
|
||||
"flows": ["vmh-beteiligte"],
|
||||
"triggers": [
|
||||
http("POST", "/vmh/webhook/beteiligte/delete")
|
||||
],
|
||||
|
||||
@@ -8,7 +8,7 @@ from motia import FlowContext, http, ApiRequest, ApiResponse
|
||||
config = {
|
||||
"name": "VMH Webhook Beteiligte Update",
|
||||
"description": "Empfängt Update-Webhooks von EspoCRM für Beteiligte",
|
||||
"flows": ["vmh"],
|
||||
"flows": ["vmh-beteiligte"],
|
||||
"triggers": [
|
||||
http("POST", "/vmh/webhook/beteiligte/update")
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user