Skip to content

Commit

Permalink
chore: update util file names
Browse files Browse the repository at this point in the history
  • Loading branch information
yashasvibajpai committed Sep 20, 2024
1 parent 155024d commit c8c77f2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/v1/sources/shopify/pixelTransform.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const {
checkoutEventBuilder,
checkoutStepEventBuilder,
searchEventBuilder,
} = require('./utilV2');
} = require('./pixelUtils');
const { INTEGERATION, PIXEL_EVENT_TOPICS } = require('./config');

const NO_OPERATION_SUCCESS = {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const {
checkoutEventBuilder,
checkoutStepEventBuilder,
searchEventBuilder,
} = require('./utilV2');
} = require('./pixelUtils');
const { EventType } = require('../../../constants');
const Message = require('../../../v0/sources/message');
jest.mock('ioredis', () => require('../../../../test/__mocks__/redis'));
Expand Down
1 change: 1 addition & 0 deletions src/v1/sources/shopify/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const process = async (inputEvent) => {
if (isIdentifierEvent(event)) {
return processIdentifierEvent(event, metricMetadata);
}
// this is for default legacy tracker based server-side events processing
const response = await processEvent(event, metricMetadata, source);
return response;
};
Expand Down

0 comments on commit c8c77f2

Please sign in to comment.