From 9b4775f5aba615e5856779d789023237af464f2e Mon Sep 17 00:00:00 2001 From: Joe Ayoub Date: Wed, 1 Oct 2025 14:26:54 +0100 Subject: [PATCH] adding preset for Vibe Audience DestinatioDDn --- .../src/destinations/vibe-audience/index.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/packages/destination-actions/src/destinations/vibe-audience/index.ts b/packages/destination-actions/src/destinations/vibe-audience/index.ts index 1479b3c05b..5ce712187d 100644 --- a/packages/destination-actions/src/destinations/vibe-audience/index.ts +++ b/packages/destination-actions/src/destinations/vibe-audience/index.ts @@ -1,4 +1,4 @@ -import { DestinationDefinition } from '@segment/actions-core' +import { DestinationDefinition, defaultValues } from '@segment/actions-core' import type { Settings } from './generated-types' import sync from './sync' import { BASE_URL, API_VERSION } from './constants' @@ -43,7 +43,16 @@ const destination: DestinationDefinition = { }, actions: { sync - } + }, + presets: [ + { + name: 'Sync Engage Audience', + subscribe: 'type = "identify" or type = "track"', + partnerAction: 'sync', + mapping: defaultValues(sync.fields), + type: 'automatic' + } + ] } export default destination