Fix self host application (#18292)
- Fixes self host application - add new telemetry information - add serverId to identify a server instance - remove .twenty from git tracking - tree-shake "twenty-sdk" usage in built logic functions and front components - fix "twenty-sdk" version usage - fix twenty-zapier cli --------- Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
This commit is contained in:
+2
-5
@@ -1,9 +1,6 @@
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
import type {
|
||||
DatabaseEventPayload,
|
||||
ObjectRecordEvent,
|
||||
} from 'twenty-shared/database-events';
|
||||
import type { ObjectRecordEvent } from 'twenty-shared/database-events';
|
||||
|
||||
import { type LogicFunctionTriggerJobData } from 'src/engine/core-modules/logic-function/logic-function-trigger/jobs/logic-function-trigger.job';
|
||||
import { type LogicFunctionEntity } from 'src/engine/metadata-modules/logic-function/logic-function.entity';
|
||||
@@ -34,7 +31,7 @@ export const transformEventBatchToEventPayloads = ({
|
||||
});
|
||||
|
||||
for (const event of filteredEvents) {
|
||||
const payload: DatabaseEventPayload = { ...batchEventInfo, ...event };
|
||||
const payload = { ...batchEventInfo, ...event };
|
||||
|
||||
result.push({
|
||||
logicFunctionId: logicFunction.id,
|
||||
|
||||
Reference in New Issue
Block a user