-
Notifications
You must be signed in to change notification settings - Fork 0
/
Scenario-Debug.js
32 lines (31 loc) · 1.61 KB
/
Scenario-Debug.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
scenarios.push({
id: 'Debug',
title: 'Debugging',
consolidationMode: 'PickAWinner',
irMatchKey: 'Email',
Group: 'Debug',
GroupOrder: 100,
consolidationSortKeys:
[
{ key: '_object_type', direction: 'asc'},
{ key: '_created_date', direction: 'asc'}
],
steps:
[
{
title: 'Initial Data',
description: '',
data:
[
{ color: 'fffead', _object_type: 'Lead', id: 'L1', Email: '[email protected]', _created_date: '2022-01-05', _last_updated: '2022-10-01'},
{ color: 'ffcccc', _object_type: 'Lead', id: 'L3', Email: '[email protected]', _created_date: '2022-01-03', _last_updated: '2022-10-01'},
{ color: 'cccfff', _object_type: 'Lead', id: 'L2', Email: '[email protected]', _created_date: '2022-01-01', _last_updated: '2022-10-01'},
{ color: 'ffcb94', _object_type: 'Lead', id: 'L4', Email: '[email protected]', _created_date: '2022-01-04', _last_updated: '2022-10-01'},
{ color: 'fffead', _object_type: 'Contact', id: 'C1', Email: '[email protected]', _created_date: '2022-01-05', _last_updated: '2022-10-01'},
{ color: 'ffcccc', _object_type: 'Contact', id: 'C3', Email: '[email protected]', _created_date: '2022-01-03', _last_updated: '2022-10-01'},
{ color: 'cccfff', _object_type: 'Contact', id: 'C2', Email: '[email protected]', _created_date: '2022-01-01', _last_updated: '2022-10-01'},
{ color: 'ffcb94', _object_type: 'Contact', id: 'C4', Email: '[email protected]', _created_date: '2022-01-04', _last_updated: '2022-10-01'},
]
}
]
});