Skip to content

Commit

Permalink
chore: resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Utsab Chowdhury authored and Utsab Chowdhury committed Feb 19, 2024
1 parent 3a8f67b commit b29d624
Showing 1 changed file with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
import { Destination } from '../../../../src/types';

const destType = 'the_trade_desk_real_time_conversions';
const destTypeInUpperCase = 'THE_TRADE_DESK_REAL_TIME_CONVERSIONS';
const advertiserId = 'test-advertiser-id';
const trackerId = 'test-trackerId';
const sampleDestination = {
const sampleDestination: Destination = {
Config: {
advertiserId,
trackerId,
},
DestinationDefinition: { Config: { cdkV2Enabled: true } },
Enabled: true,
ID: '123',
Name: 'TRADE_DESK_REAL_TIME_CONVERSIONS',
WorkspaceID: 'test-workspace-id',
Transformations: [],
DestinationDefinition: {
ID: '123',
DisplayName: 'Trade Desk',
Name: 'TRADE_DESK',
Config: { cdkV2Enabled: true },
},
};

const sampleContextForConversion = {
Expand Down

0 comments on commit b29d624

Please sign in to comment.