Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix((INT-360): enhancement: shopify ecom fix and enhancement #2493

Closed
wants to merge 37 commits into from
Closed
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
2e02c45
refactor: shopify
anantjain45823 Aug 17, 2023
0a2dfcf
Merge branch 'develop' into refactor.shopify
anantjain45823 Aug 18, 2023
19556fa
chore: used prettier
Gauravudia Aug 23, 2023
1d5033a
basic changes
anantjain45823 Aug 24, 2023
0c5a1c5
refactor: shopify ecomm (#2510)
Gauravudia Aug 24, 2023
6a52c0a
Merge branch 'develop' into refactor.shopify
Gauravudia Aug 24, 2023
7b79ea4
refactor: update line item exlusion fields
Gauravudia Aug 24, 2023
7690f9c
chore: track events flow improvement
anantjain45823 Aug 24, 2023
94bd394
fix: mapping config
Gauravudia Aug 24, 2023
caf9113
fix: ecom mapping
Gauravudia Aug 24, 2023
5720d7c
fix: order completed mapping
Gauravudia Aug 25, 2023
8ae971a
feat: add variant name mapping in lineitem
Gauravudia Aug 25, 2023
f716e0d
chore: added test cases and some fixes
anantjain45823 Aug 25, 2023
a1d87f2
fix:sonar issue
anantjain45823 Aug 25, 2023
9e466bb
Rename shopify_source.test_v2.js to shopify_source_v2.test.js
anantjain45823 Aug 25, 2023
d9f4e1a
fix: checkout id mapping
Gauravudia Aug 25, 2023
ea61758
Merge branch 'develop' into refactor.shopify
Gauravudia Aug 25, 2023
007c885
chore: remove redudant exclusion fields
Gauravudia Aug 26, 2023
7c98b1b
chore: added test cases
anantjain45823 Aug 28, 2023
dbed2a9
Merge branch 'develop' into refactor.shopify
anantjain45823 Aug 30, 2023
9fb9dec
test: add track and enrichment layers test cases
Gauravudia Sep 3, 2023
26ab1d7
Merge branch 'develop' into refactor.shopify
Gauravudia Sep 3, 2023
c0868fb
added product added or removed configs
anantjain45823 Sep 5, 2023
3256d86
chore: test cases added for products event
anantjain45823 Sep 5, 2023
d782328
Merge branch 'develop' into refactor.shopify
anantjain45823 Sep 5, 2023
293688b
chore: test cases added for products event
anantjain45823 Sep 5, 2023
c6727f7
remove: extra file
anantjain45823 Sep 5, 2023
7db623a
chore: resolve sonar issue
anantjain45823 Sep 5, 2023
db09237
Merge branch 'develop' into refactor.shopify
anantjain45823 Sep 8, 2023
6897f52
chore: add testcase
Gauravudia Sep 10, 2023
ee364f5
Merge branch 'develop' into refactor.shopify
anantjain45823 Sep 13, 2023
e98bac4
small mapping fix
anantjain45823 Sep 14, 2023
50a66ad
chore: addressing review comments
Gauravudia Sep 25, 2023
97c562f
Merge branch 'develop' into refactor.shopify
anantjain45823 Sep 25, 2023
093825f
Merge branch 'develop' into refactor.shopify
anantjain45823 Sep 26, 2023
263c5ba
Merge branch 'develop' into refactor.shopify
anantjain45823 Oct 5, 2023
cffefdf
Merge branch 'develop' into refactor.shopify
anantjain45823 Oct 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/util/redis/redisConnector.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const path = require('path');
const version = 'v0';
const { RedisDB } = require('./redisConnector');
jest.mock('ioredis', () => require('../../../test/__mocks__/redis'));
const sourcesList = ['shopify'];
const sourcesList = ['shopify', 'shopify_v2'];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lets not keep shopify_v2. Lets create a new Shopify dir under v1 dir on the same level as v0

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

refer this please

process.env.USE_REDIS_DB = 'true';

const timeoutPromise = () =>
Expand Down
2 changes: 1 addition & 1 deletion src/util/redis/testData/shopify_source.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
}
},
{
"description": "Track Call -> anonymoudId Stitching failed due redis error ",
"description": "Track Call -> anonymousId Stitching failed due redis error ",
"input": {
"cart_token": "shopifyGetAnonymousId",
"query_parameters": {
Expand Down
Loading