Skip to content

Commit

Permalink
chore: resolve conflicts again (#3867)
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsSudip authored Nov 11, 2024
1 parent 10d4cc0 commit c1626ab
Showing 1 changed file with 71 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,41 @@ const events = [
},
},
},
{
metadata: {
secret: {
access_token: 'abcd1234',
refresh_token: 'efgh5678',
developer_token: 'ijkl91011',
},
jobId: 8,
userId: 'u1',
},
destination: {
Config: {
customerId: '1234567890',
subAccount: true,
listOfConversions: [{ conversions: 'Page View' }, { conversions: 'Product Added' }],
authStatus: 'active',
},
},
message: {
event: 'Page View',
type: 'track',
userId: '12345',
context: {
traits: {
email: '[email protected]',
},
},
properties: {
gclid: 'gclid1234',
conversionDateTime: '2022-01-01 12:32:45-08:00',
order_id: 10000,
total: 1000,
},
},
},
];

const invalidRtTfCases = [
Expand Down Expand Up @@ -967,6 +1002,7 @@ export const data = [
userId: 'u1',
},
],
statusCode: 400,
statTags: {
destType: 'GOOGLE_ADWORDS_ENHANCED_CONVERSIONS',
errorCategory: 'dataValidation',
Expand All @@ -975,7 +1011,6 @@ export const data = [
implementation: 'native',
module: 'destination',
},
statusCode: 400,
},
{
batched: false,
Expand Down Expand Up @@ -1112,6 +1147,41 @@ export const data = [
},
statusCode: 400,
},
{
batched: false,
statusCode: 400,
error: 'loginCustomerId is required as subAccount is true.',
statTags: {
destType: 'GOOGLE_ADWORDS_ENHANCED_CONVERSIONS',
errorCategory: 'dataValidation',
errorType: 'configuration',
feature: 'router',
implementation: 'native',
module: 'destination',
},
metadata: [
{
secret: {
access_token: 'abcd1234',
refresh_token: 'efgh5678',
developer_token: 'ijkl91011',
},
jobId: 8,
userId: 'u1',
},
],
destination: {
Config: {
customerId: '1234567890',
subAccount: true,
listOfConversions: [
{ conversions: 'Page View' },
{ conversions: 'Product Added' },
],
authStatus: 'active',
},
},
},
],
},
},
Expand Down

0 comments on commit c1626ab

Please sign in to comment.