@reltio/components 1.4.2179 → 1.4.2180
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/constants/segmantation.d.ts +14 -0
- package/cjs/constants/segmantation.js +17 -1
- package/cjs/features/activity-log/ActivitiesFactory/ActivitiesFactory.js +8 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SegmentActivity/SegmentActivity.d.ts +8 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SegmentActivity/SegmentActivity.js +20 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SegmentActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/SegmentActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivityFilterEditor/helpers.test.js +3 -2
- package/cjs/features/activity-log/ActivityLog/ActivityLog.test.js +240 -5
- package/cjs/features/activity-log/ActivityLogFilter/ActivityLogFilter.d.ts +2 -1
- package/cjs/features/activity-log/ActivityLogFilter/ActivityLogFilter.js +2 -2
- package/cjs/features/activity-log/RecordUpdates/RecordUpdates.d.ts +2 -1
- package/cjs/features/activity-log/RecordUpdates/RecordUpdates.js +5 -2
- package/cjs/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentDeltaField.d.ts +7 -0
- package/cjs/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentDeltaField.js +46 -0
- package/cjs/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentDeltaField.module.css.js +9 -0
- package/cjs/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentQueryDeltaValue.d.ts +4 -0
- package/cjs/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentQueryDeltaValue.js +19 -0
- package/cjs/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentRefreshScheduleDeltaValue.d.ts +5 -0
- package/cjs/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentRefreshScheduleDeltaValue.js +57 -0
- package/cjs/features/activity-log/RecordUpdates/components/SegmentDeltaField/index.d.ts +1 -0
- package/cjs/features/activity-log/RecordUpdates/components/SegmentDeltaField/index.js +5 -0
- package/cjs/features/activity-log/SegmentObject/SegmentObject.d.ts +7 -0
- package/cjs/features/activity-log/SegmentObject/SegmentObject.js +21 -0
- package/cjs/features/activity-log/SegmentObject/SegmentObject.module.css.js +9 -0
- package/cjs/features/activity-log/SegmentObject/index.d.ts +1 -0
- package/cjs/features/activity-log/SegmentObject/index.js +5 -0
- package/cjs/features/activity-log/SegmentRecord/SegmentRecord.d.ts +7 -0
- package/cjs/features/activity-log/SegmentRecord/SegmentRecord.js +22 -0
- package/cjs/features/activity-log/SegmentRecord/index.d.ts +1 -0
- package/cjs/features/activity-log/SegmentRecord/index.js +5 -0
- package/cjs/features/activity-log/hooks/useSegmentReadableQuery.d.ts +2 -0
- package/cjs/features/activity-log/hooks/useSegmentReadableQuery.js +13 -0
- package/cjs/features/activity-log/index.d.ts +1 -0
- package/cjs/features/activity-log/index.js +3 -1
- package/cjs/features/activity-log/types.d.ts +5 -1
- package/cjs/features/activity-log/types.js +3 -0
- package/cjs/features/activity-log/utils/activities.js +3 -0
- package/cjs/features/activity-log/utils/filters.js +4 -0
- package/cjs/features/history/types.d.ts +3 -0
- package/constants/segmantation.d.ts +14 -0
- package/constants/segmantation.js +16 -0
- package/features/activity-log/ActivitiesFactory/ActivitiesFactory.js +8 -0
- package/features/activity-log/ActivitiesFactory/components/SegmentActivity/SegmentActivity.d.ts +8 -0
- package/features/activity-log/ActivitiesFactory/components/SegmentActivity/SegmentActivity.js +13 -0
- package/features/activity-log/ActivitiesFactory/components/SegmentActivity/index.d.ts +1 -0
- package/features/activity-log/ActivitiesFactory/components/SegmentActivity/index.js +1 -0
- package/features/activity-log/ActivityFilterEditor/helpers.test.js +3 -2
- package/features/activity-log/ActivityLog/ActivityLog.test.js +240 -5
- package/features/activity-log/ActivityLogFilter/ActivityLogFilter.d.ts +2 -1
- package/features/activity-log/ActivityLogFilter/ActivityLogFilter.js +2 -2
- package/features/activity-log/RecordUpdates/RecordUpdates.d.ts +2 -1
- package/features/activity-log/RecordUpdates/RecordUpdates.js +5 -2
- package/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentDeltaField.d.ts +7 -0
- package/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentDeltaField.js +39 -0
- package/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentDeltaField.module.css.js +9 -0
- package/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentQueryDeltaValue.d.ts +4 -0
- package/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentQueryDeltaValue.js +12 -0
- package/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentRefreshScheduleDeltaValue.d.ts +5 -0
- package/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentRefreshScheduleDeltaValue.js +27 -0
- package/features/activity-log/RecordUpdates/components/SegmentDeltaField/index.d.ts +1 -0
- package/features/activity-log/RecordUpdates/components/SegmentDeltaField/index.js +1 -0
- package/features/activity-log/SegmentObject/SegmentObject.d.ts +7 -0
- package/features/activity-log/SegmentObject/SegmentObject.js +14 -0
- package/features/activity-log/SegmentObject/SegmentObject.module.css.js +9 -0
- package/features/activity-log/SegmentObject/index.d.ts +1 -0
- package/features/activity-log/SegmentObject/index.js +1 -0
- package/features/activity-log/SegmentRecord/SegmentRecord.d.ts +7 -0
- package/features/activity-log/SegmentRecord/SegmentRecord.js +15 -0
- package/features/activity-log/SegmentRecord/index.d.ts +1 -0
- package/features/activity-log/SegmentRecord/index.js +1 -0
- package/features/activity-log/hooks/useSegmentReadableQuery.d.ts +2 -0
- package/features/activity-log/hooks/useSegmentReadableQuery.js +9 -0
- package/features/activity-log/index.d.ts +1 -0
- package/features/activity-log/index.js +1 -0
- package/features/activity-log/types.d.ts +5 -1
- package/features/activity-log/types.js +3 -0
- package/features/activity-log/utils/activities.js +3 -0
- package/features/activity-log/utils/filters.js +4 -0
- package/features/history/types.d.ts +3 -0
- package/package.json +2 -2
|
@@ -13,3 +13,17 @@ export declare enum SegmentationColumnId {
|
|
|
13
13
|
Destinations = "destinations",
|
|
14
14
|
Actions = "actions"
|
|
15
15
|
}
|
|
16
|
+
export declare enum SegmentActivityLogAttributes {
|
|
17
|
+
label = "configuration/segments/attributes/label",
|
|
18
|
+
description = "configuration/segments/attributes/description",
|
|
19
|
+
sharing = "configuration/segments/attributes/sharing",
|
|
20
|
+
schedule = "configuration/segments/attributes/schedule",
|
|
21
|
+
rule = "configuration/segments/attributes/rule"
|
|
22
|
+
}
|
|
23
|
+
export declare const SEGMENT_ACTIVITY_LOG_ATTRIBUTES: {
|
|
24
|
+
"configuration/segments/attributes/label": string;
|
|
25
|
+
"configuration/segments/attributes/description": string;
|
|
26
|
+
"configuration/segments/attributes/sharing": string;
|
|
27
|
+
"configuration/segments/attributes/schedule": string;
|
|
28
|
+
"configuration/segments/attributes/rule": string;
|
|
29
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var _a;
|
|
2
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SegmentationColumnId = void 0;
|
|
4
|
+
exports.SEGMENT_ACTIVITY_LOG_ATTRIBUTES = exports.SegmentActivityLogAttributes = exports.SegmentationColumnId = void 0;
|
|
4
5
|
var SegmentationColumnId;
|
|
5
6
|
(function (SegmentationColumnId) {
|
|
6
7
|
SegmentationColumnId["Label"] = "label";
|
|
@@ -17,3 +18,18 @@ var SegmentationColumnId;
|
|
|
17
18
|
SegmentationColumnId["Destinations"] = "destinations";
|
|
18
19
|
SegmentationColumnId["Actions"] = "actions";
|
|
19
20
|
})(SegmentationColumnId || (exports.SegmentationColumnId = SegmentationColumnId = {}));
|
|
21
|
+
var SegmentActivityLogAttributes;
|
|
22
|
+
(function (SegmentActivityLogAttributes) {
|
|
23
|
+
SegmentActivityLogAttributes["label"] = "configuration/segments/attributes/label";
|
|
24
|
+
SegmentActivityLogAttributes["description"] = "configuration/segments/attributes/description";
|
|
25
|
+
SegmentActivityLogAttributes["sharing"] = "configuration/segments/attributes/sharing";
|
|
26
|
+
SegmentActivityLogAttributes["schedule"] = "configuration/segments/attributes/schedule";
|
|
27
|
+
SegmentActivityLogAttributes["rule"] = "configuration/segments/attributes/rule";
|
|
28
|
+
})(SegmentActivityLogAttributes || (exports.SegmentActivityLogAttributes = SegmentActivityLogAttributes = {}));
|
|
29
|
+
exports.SEGMENT_ACTIVITY_LOG_ATTRIBUTES = (_a = {},
|
|
30
|
+
_a[SegmentActivityLogAttributes.label] = 'Name',
|
|
31
|
+
_a[SegmentActivityLogAttributes.description] = 'Description',
|
|
32
|
+
_a[SegmentActivityLogAttributes.sharing] = 'Shared with',
|
|
33
|
+
_a[SegmentActivityLogAttributes.schedule] = 'Refresh frequency',
|
|
34
|
+
_a[SegmentActivityLogAttributes.rule] = 'Query',
|
|
35
|
+
_a);
|
|
@@ -15,6 +15,7 @@ var RelationActivity_1 = require("./components/RelationActivity");
|
|
|
15
15
|
var SearchActivity_1 = require("./components/SearchActivity");
|
|
16
16
|
var SimpleActivity_1 = require("./components/SimpleActivity");
|
|
17
17
|
var SynchronizationIssuesActivity_1 = require("./components/SynchronizationIssuesActivity");
|
|
18
|
+
var SegmentActivity_1 = require("./components/SegmentActivity");
|
|
18
19
|
var Add_1 = __importDefault(require("../../../icons/Add"));
|
|
19
20
|
var CalendarToday_1 = __importDefault(require("@mui/icons-material/CalendarToday"));
|
|
20
21
|
var Comment_1 = __importDefault(require("../../../icons/Comment"));
|
|
@@ -64,6 +65,10 @@ var ActivitiesFactory = /** @class */ (function () {
|
|
|
64
65
|
case types_1.ActivityTypes.GROUP_CREATED:
|
|
65
66
|
case types_1.ActivityTypes.GROUP_REMOVED:
|
|
66
67
|
return react_1.default.createElement(GroupActivity_1.GroupActivity, { data: data, type: type });
|
|
68
|
+
case types_1.ActivityTypes.SEGMENT_CREATE:
|
|
69
|
+
case types_1.ActivityTypes.SEGMENT_DELETE:
|
|
70
|
+
case types_1.ActivityTypes.SEGMENT_UPDATE:
|
|
71
|
+
return react_1.default.createElement(SegmentActivity_1.SegmentActivity, { data: data, type: type });
|
|
67
72
|
case types_1.ActivityTypes.USER_LOGIN:
|
|
68
73
|
case types_1.ActivityTypes.USER_LOGOUT:
|
|
69
74
|
case types_1.ActivityTypes.MODEL_UPDATED:
|
|
@@ -99,11 +104,13 @@ var ActivitiesFactory = /** @class */ (function () {
|
|
|
99
104
|
case types_1.ActivityTypes.ENTITY_CREATED:
|
|
100
105
|
case types_1.ActivityTypes.RELATIONSHIP_CREATED:
|
|
101
106
|
case types_1.ActivityTypes.GROUP_CREATED:
|
|
107
|
+
case types_1.ActivityTypes.SEGMENT_CREATE:
|
|
102
108
|
return react_1.default.createElement(Add_1.default, null);
|
|
103
109
|
case types_1.ActivityTypes.ENTITY_REMOVED:
|
|
104
110
|
case types_1.ActivityTypes.RELATIONSHIP_REMOVED:
|
|
105
111
|
case types_1.ActivityTypes.POTENTIAL_MATCHES_REMOVED:
|
|
106
112
|
case types_1.ActivityTypes.GROUP_REMOVED:
|
|
113
|
+
case types_1.ActivityTypes.SEGMENT_DELETE:
|
|
107
114
|
return react_1.default.createElement(Remove_1.default, null);
|
|
108
115
|
case types_1.ActivityTypes.USER_SEARCH:
|
|
109
116
|
return react_1.default.createElement(Search_1.default, null);
|
|
@@ -120,6 +127,7 @@ var ActivitiesFactory = /** @class */ (function () {
|
|
|
120
127
|
case types_1.ActivityTypes.MODEL_UPDATED:
|
|
121
128
|
case types_1.ActivityTypes.RELATIONSHIP_CHANGED:
|
|
122
129
|
case types_1.ActivityTypes.GROUP_CHANGED:
|
|
130
|
+
case types_1.ActivityTypes.SEGMENT_UPDATE:
|
|
123
131
|
default:
|
|
124
132
|
return react_1.default.createElement(Create_1.default, null);
|
|
125
133
|
}
|
package/cjs/features/activity-log/ActivitiesFactory/components/SegmentActivity/SegmentActivity.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.SegmentActivity = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
var ActivityTitle_1 = require("../../../ActivityTitle");
|
|
9
|
+
var CollapsibleActivityRecords_1 = require("../../../CollapsibleActivityRecords");
|
|
10
|
+
var SegmentObject_1 = require("../../../SegmentObject");
|
|
11
|
+
var SegmentRecord_1 = require("../../../SegmentRecord");
|
|
12
|
+
var SegmentActivity = function (_a) {
|
|
13
|
+
var _b;
|
|
14
|
+
var type = _a.type, data = _a.data;
|
|
15
|
+
var isMinimized = data.itemsTotal === 1 && !((_b = data.items[0].deltaCollection) === null || _b === void 0 ? void 0 : _b.delta);
|
|
16
|
+
return (react_1.default.createElement("div", { "data-reltio-id": "segment-activity" },
|
|
17
|
+
react_1.default.createElement(ActivityTitle_1.ActivityTitle, { type: type, "data-reltio-id": "segment-activity-title" }, isMinimized && react_1.default.createElement(SegmentObject_1.SegmentObject, { item: data.items[0] })),
|
|
18
|
+
!isMinimized && (react_1.default.createElement(CollapsibleActivityRecords_1.CollapsibleActivityRecords, { activityUri: data.uri, items: data.items, RecordComponent: SegmentRecord_1.SegmentRecord }))));
|
|
19
|
+
};
|
|
20
|
+
exports.SegmentActivity = SegmentActivity;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SegmentActivity } from './SegmentActivity';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SegmentActivity = void 0;
|
|
4
|
+
var SegmentActivity_1 = require("./SegmentActivity");
|
|
5
|
+
Object.defineProperty(exports, "SegmentActivity", { enumerable: true, get: function () { return SegmentActivity_1.SegmentActivity; } });
|
|
@@ -40,6 +40,7 @@ var otherTypes = [
|
|
|
40
40
|
'ATTRIBUTE_UNMASKED',
|
|
41
41
|
'SFDC_CONNECTOR_SYNCHRONIZATION_ISSUE'
|
|
42
42
|
];
|
|
43
|
+
var segmentTypes = ['SEGMENT_CREATE', 'SEGMENT_DELETE', 'SEGMENT_UPDATE'];
|
|
43
44
|
var profileTypes = [
|
|
44
45
|
'ENTITY_CREATED',
|
|
45
46
|
'ENTITY_CHANGED',
|
|
@@ -63,7 +64,7 @@ describe('helpers tests', function () {
|
|
|
63
64
|
var metadata = {
|
|
64
65
|
entityTypes: []
|
|
65
66
|
};
|
|
66
|
-
expect((0, helpers_1.getSelectorActivityTypes)(metadata)).toEqual(otherTypes);
|
|
67
|
+
expect((0, helpers_1.getSelectorActivityTypes)(metadata)).toEqual(__spreadArray(__spreadArray([], otherTypes, true), segmentTypes, true));
|
|
67
68
|
});
|
|
68
69
|
it('should return ActivityTypes with groupRelated when groupTypes is not empty', function () {
|
|
69
70
|
var metadata = {
|
|
@@ -87,7 +88,7 @@ describe('helpers tests', function () {
|
|
|
87
88
|
}
|
|
88
89
|
]
|
|
89
90
|
};
|
|
90
|
-
expect((0, helpers_1.getSelectorActivityTypes)(metadata)).toEqual(__spreadArray(__spreadArray([], otherTypes, true), groupTypes, true));
|
|
91
|
+
expect((0, helpers_1.getSelectorActivityTypes)(metadata)).toEqual(__spreadArray(__spreadArray(__spreadArray([], otherTypes, true), groupTypes, true), segmentTypes, true));
|
|
91
92
|
});
|
|
92
93
|
it('should return profile related ActivityTypes when entityType passed', function () {
|
|
93
94
|
var metadata = {
|
|
@@ -182,6 +182,172 @@ describe('Activity log tests', function () {
|
|
|
182
182
|
}
|
|
183
183
|
],
|
|
184
184
|
itemsTotal: 1
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
uri: 'activities/545aadab-31e2-4d74-9e70-9154c55e6b62',
|
|
188
|
+
user: 'test@reltio.com',
|
|
189
|
+
timestamp: 1750062462522,
|
|
190
|
+
items: [
|
|
191
|
+
{
|
|
192
|
+
id: '00000-00011DH',
|
|
193
|
+
user: 'test@reltio.com',
|
|
194
|
+
method: 'POST',
|
|
195
|
+
url: '/reltio/api/LocalTest/segments',
|
|
196
|
+
clientType: 'UNKNOWN',
|
|
197
|
+
timestamp: 1750062462522,
|
|
198
|
+
objectUri: 'segments/07byrT0',
|
|
199
|
+
objectLabel: 'Boolean test',
|
|
200
|
+
data: {
|
|
201
|
+
type: 'SEGMENT_UPDATE'
|
|
202
|
+
},
|
|
203
|
+
deltaCollection: {
|
|
204
|
+
delta: [
|
|
205
|
+
{
|
|
206
|
+
type: 'ATTRIBUTE_CHANGED',
|
|
207
|
+
attributeType: 'configuration/segments/attributes/rule',
|
|
208
|
+
newValue: {
|
|
209
|
+
value: "(equals(entity.type,'configuration/entityTypes/Company') and equals(entity.attributes.Name,'New company name')) or (equals(entity.type,'configuration/entityTypes/Location') and (equals(interaction.type,'configuration/interactionTypes/Prescriptions') and equals(interaction.attributes.Medication,'New medication')))"
|
|
210
|
+
},
|
|
211
|
+
oldValue: {
|
|
212
|
+
value: "(equals(entity.type,'configuration/entityTypes/Company') and equals(entity.attributes.Name,'Old company name')) or (equals(entity.type,'configuration/entityTypes/Location') and (equals(interaction.type,'configuration/interactionTypes/Prescriptions') and equals(interaction.attributes.Medication,'Old medication')))"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
type: 'ATTRIBUTE_CHANGED',
|
|
217
|
+
attributeType: 'configuration/segments/attributes/status',
|
|
218
|
+
newValue: {
|
|
219
|
+
value: 'submitted'
|
|
220
|
+
},
|
|
221
|
+
oldValue: {
|
|
222
|
+
value: 'live'
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
type: 'ATTRIBUTE_CHANGED',
|
|
227
|
+
attributeType: 'configuration/segments/attributes/sharing',
|
|
228
|
+
newValue: {
|
|
229
|
+
value: 'public'
|
|
230
|
+
},
|
|
231
|
+
oldValue: {
|
|
232
|
+
value: 'private'
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
type: 'ATTRIBUTE_CHANGED',
|
|
237
|
+
attributeType: 'configuration/segments/attributes/schedule',
|
|
238
|
+
newValue: {
|
|
239
|
+
value: {
|
|
240
|
+
startTime: '2025-08-05T18:30:00Z',
|
|
241
|
+
repeat: 'RRULE:INTERVAL=1;FREQ=DAILY;BYHOUR=8;BYMINUTE=35'
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
oldValue: {
|
|
245
|
+
value: {
|
|
246
|
+
startTime: '2025-10-05T18:30:00Z',
|
|
247
|
+
repeat: 'RRULE:INTERVAL=1;FREQ=DAILY;BYHOUR=8;BYMINUTE=35'
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
type: 'ATTRIBUTE_CHANGED',
|
|
253
|
+
attributeType: 'configuration/segments/attributes/label',
|
|
254
|
+
newValue: {
|
|
255
|
+
value: 'New name'
|
|
256
|
+
},
|
|
257
|
+
oldValue: {
|
|
258
|
+
value: 'Old name'
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
type: 'ATTRIBUTE_ADDED',
|
|
263
|
+
attributeType: 'configuration/segments/attributes/description',
|
|
264
|
+
newValue: {
|
|
265
|
+
value: 'Added description'
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
]
|
|
269
|
+
},
|
|
270
|
+
eventId: '1750062462522_02DTzOy'
|
|
271
|
+
}
|
|
272
|
+
],
|
|
273
|
+
itemsTotal: 1
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
uri: 'activities/545aadab-31e2-4d74-9e70-9154c55e6b63',
|
|
277
|
+
user: 'test@reltio.com',
|
|
278
|
+
timestamp: 1750062462522,
|
|
279
|
+
items: [
|
|
280
|
+
{
|
|
281
|
+
id: '00000-00011DH',
|
|
282
|
+
user: 'test@reltio.com',
|
|
283
|
+
method: 'POST',
|
|
284
|
+
url: '/reltio/api/LocalTest/segments',
|
|
285
|
+
clientType: 'UNKNOWN',
|
|
286
|
+
timestamp: 1750062462522,
|
|
287
|
+
objectUri: 'segments/07byrT0',
|
|
288
|
+
objectLabel: 'Boolean test',
|
|
289
|
+
data: {
|
|
290
|
+
type: 'SEGMENT_UPDATE'
|
|
291
|
+
},
|
|
292
|
+
deltaCollection: {
|
|
293
|
+
delta: [
|
|
294
|
+
{
|
|
295
|
+
type: 'ATTRIBUTE_REMOVED',
|
|
296
|
+
attributeType: 'configuration/segments/attributes/description',
|
|
297
|
+
oldValue: {
|
|
298
|
+
value: 'Old removed description'
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
]
|
|
302
|
+
},
|
|
303
|
+
eventId: '1750062462522_02DTzOy'
|
|
304
|
+
}
|
|
305
|
+
],
|
|
306
|
+
itemsTotal: 1
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
uri: 'activities/545aadab-31e2-4d74-9e70-9154c55e6b61',
|
|
310
|
+
user: 'test@reltio.com',
|
|
311
|
+
timestamp: 1750062462522,
|
|
312
|
+
items: [
|
|
313
|
+
{
|
|
314
|
+
id: '00000-00011DH',
|
|
315
|
+
user: 'test@reltio.com',
|
|
316
|
+
method: 'POST',
|
|
317
|
+
url: '/reltio/api/LocalTest/segments',
|
|
318
|
+
clientType: 'UNKNOWN',
|
|
319
|
+
timestamp: 1750062462522,
|
|
320
|
+
objectUri: 'segments/07byrT0',
|
|
321
|
+
objectLabel: 'Boolean test',
|
|
322
|
+
data: {
|
|
323
|
+
type: 'SEGMENT_CREATE'
|
|
324
|
+
},
|
|
325
|
+
eventId: '1750062462522_02DTzOy'
|
|
326
|
+
}
|
|
327
|
+
],
|
|
328
|
+
itemsTotal: 1
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
uri: 'activities/545aadab-31e2-4d74-9e70-9154c55e6b60',
|
|
332
|
+
user: 'test@reltio.com',
|
|
333
|
+
timestamp: 1750062462522,
|
|
334
|
+
items: [
|
|
335
|
+
{
|
|
336
|
+
id: '00000-00011DH',
|
|
337
|
+
user: 'test@reltio.com',
|
|
338
|
+
method: 'POST',
|
|
339
|
+
url: '/reltio/api/LocalTest/segments',
|
|
340
|
+
clientType: 'UNKNOWN',
|
|
341
|
+
timestamp: 1750062462522,
|
|
342
|
+
objectUri: 'segments/07byrT0',
|
|
343
|
+
objectLabel: 'Boolean test',
|
|
344
|
+
data: {
|
|
345
|
+
type: 'SEGMENT_DELETE'
|
|
346
|
+
},
|
|
347
|
+
eventId: '1750062462522_02DTzOy'
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
itemsTotal: 1
|
|
185
351
|
}
|
|
186
352
|
];
|
|
187
353
|
var defaultProps = {
|
|
@@ -216,8 +382,8 @@ describe('Activity log tests', function () {
|
|
|
216
382
|
setUp();
|
|
217
383
|
var activityItems = react_2.screen.getAllByTestId('activity-log-item');
|
|
218
384
|
var activityGroupItems = react_2.screen.getAllByTestId('activity-log-group-item');
|
|
219
|
-
expect(activityItems).toHaveLength(
|
|
220
|
-
expect(activityGroupItems).toHaveLength(
|
|
385
|
+
expect(activityItems).toHaveLength(8);
|
|
386
|
+
expect(activityGroupItems).toHaveLength(4);
|
|
221
387
|
(0, react_2.within)(activityGroupItems[0]).getByText('Today');
|
|
222
388
|
(0, react_2.within)(activityItems[0]).getByText(activities[0].user);
|
|
223
389
|
(0, react_2.within)(activityItems[0]).getByText(ui_i18n_1.default.date(activities[0].timestamp, 'LT'));
|
|
@@ -238,6 +404,29 @@ describe('Activity log tests', function () {
|
|
|
238
404
|
(0, react_2.within)(activityItems[3]).getByText(ui_i18n_1.default.date(activities[4].timestamp, 'LT'));
|
|
239
405
|
(0, react_2.within)(activityItems[3]).getByText('Profile merged manually');
|
|
240
406
|
(0, react_2.within)(activityItems[3]).getByText('entity 3');
|
|
407
|
+
(0, react_2.within)(activityItems[4]).getByText(activities[5].user);
|
|
408
|
+
(0, react_2.within)(activityItems[4]).getByText(ui_i18n_1.default.date(activities[5].timestamp, 'LT'));
|
|
409
|
+
(0, react_2.within)(activityItems[4]).getByText('Segment updated');
|
|
410
|
+
(0, react_2.within)(activityItems[4]).getByText('Boolean test');
|
|
411
|
+
(0, react_2.within)(activityItems[4]).getByText('Query:');
|
|
412
|
+
(0, react_2.within)(activityItems[4]).getByText('Shared with:');
|
|
413
|
+
(0, react_2.within)(activityItems[4]).getByText('private');
|
|
414
|
+
(0, react_2.within)(activityItems[4]).getByText('public');
|
|
415
|
+
(0, react_2.within)(activityItems[4]).getByText('3 more updates');
|
|
416
|
+
(0, react_2.within)(activityItems[5]).getByText(activities[6].user);
|
|
417
|
+
(0, react_2.within)(activityItems[5]).getByText(ui_i18n_1.default.date(activities[6].timestamp, 'LT'));
|
|
418
|
+
(0, react_2.within)(activityItems[5]).getByText('Segment updated');
|
|
419
|
+
(0, react_2.within)(activityItems[5]).getByText('Boolean test');
|
|
420
|
+
(0, react_2.within)(activityItems[5]).getByText('Description:');
|
|
421
|
+
(0, react_2.within)(activityItems[5]).getByText('Old removed description');
|
|
422
|
+
(0, react_2.within)(activityItems[6]).getByText(activities[7].user);
|
|
423
|
+
(0, react_2.within)(activityItems[6]).getByText(ui_i18n_1.default.date(activities[7].timestamp, 'LT'));
|
|
424
|
+
(0, react_2.within)(activityItems[6]).getByText('Segment created');
|
|
425
|
+
(0, react_2.within)(activityItems[6]).getByText('Boolean test');
|
|
426
|
+
(0, react_2.within)(activityItems[7]).getByText(activities[8].user);
|
|
427
|
+
(0, react_2.within)(activityItems[7]).getByText(ui_i18n_1.default.date(activities[8].timestamp, 'LT'));
|
|
428
|
+
(0, react_2.within)(activityItems[7]).getByText('Segment deleted');
|
|
429
|
+
(0, react_2.within)(activityItems[7]).getByText('Boolean test');
|
|
241
430
|
expect(console.warn).toHaveBeenCalledWith('Activities not implemented:', activities[2].items);
|
|
242
431
|
expect(console.warn).toHaveBeenCalledWith('Activities not implemented:', [activities[3].items[1]]);
|
|
243
432
|
});
|
|
@@ -248,15 +437,15 @@ describe('Activity log tests', function () {
|
|
|
248
437
|
case 0:
|
|
249
438
|
user = setUp().user;
|
|
250
439
|
react_2.screen.getAllByTestId('collapse-button');
|
|
251
|
-
expect(react_2.screen.getAllByTestId('activity-log-item')).toHaveLength(
|
|
440
|
+
expect(react_2.screen.getAllByTestId('activity-log-item')).toHaveLength(8);
|
|
252
441
|
return [4 /*yield*/, user.click(react_2.screen.getAllByTestId('collapse-button')[0])];
|
|
253
442
|
case 1:
|
|
254
443
|
_a.sent();
|
|
255
|
-
expect(react_2.screen.getAllByTestId('activity-log-item')).toHaveLength(
|
|
444
|
+
expect(react_2.screen.getAllByTestId('activity-log-item')).toHaveLength(7);
|
|
256
445
|
return [4 /*yield*/, user.click(react_2.screen.getAllByTestId('collapse-button')[0])];
|
|
257
446
|
case 2:
|
|
258
447
|
_a.sent();
|
|
259
|
-
expect(react_2.screen.getAllByTestId('activity-log-item')).toHaveLength(
|
|
448
|
+
expect(react_2.screen.getAllByTestId('activity-log-item')).toHaveLength(8);
|
|
260
449
|
return [2 /*return*/];
|
|
261
450
|
}
|
|
262
451
|
});
|
|
@@ -275,4 +464,50 @@ describe('Activity log tests', function () {
|
|
|
275
464
|
setUp({ activities: activitiesWithoutItems });
|
|
276
465
|
expect(react_2.screen.queryByTestId('activity-log-item')).not.toBeInTheDocument();
|
|
277
466
|
});
|
|
467
|
+
it('should not render value for schedule attribute when value is null', function () {
|
|
468
|
+
var activitiesWithNullSchedule = [
|
|
469
|
+
{
|
|
470
|
+
uri: 'activities/1234-5678-91011',
|
|
471
|
+
user: 'test@reltio.com',
|
|
472
|
+
label: 'SEGMENT_UPDATE',
|
|
473
|
+
description: 'Segment schedule updated',
|
|
474
|
+
timestamp: 1750062462522,
|
|
475
|
+
items: [
|
|
476
|
+
{
|
|
477
|
+
id: '00000-00011DH',
|
|
478
|
+
user: 'test@reltio.com',
|
|
479
|
+
method: 'POST',
|
|
480
|
+
url: '/reltio/api/LocalTest/segments',
|
|
481
|
+
clientType: 'UNKNOWN',
|
|
482
|
+
timestamp: 1750062462522,
|
|
483
|
+
objectUri: 'segments/07byrT0',
|
|
484
|
+
objectLabel: 'Boolean test',
|
|
485
|
+
data: {
|
|
486
|
+
type: 'SEGMENT_UPDATE'
|
|
487
|
+
},
|
|
488
|
+
deltaCollection: {
|
|
489
|
+
delta: [
|
|
490
|
+
{
|
|
491
|
+
type: 'ATTRIBUTE_CHANGED',
|
|
492
|
+
attributeType: 'configuration/segments/attributes/schedule',
|
|
493
|
+
newValue: {
|
|
494
|
+
value: null
|
|
495
|
+
},
|
|
496
|
+
oldValue: {
|
|
497
|
+
value: null
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
]
|
|
501
|
+
},
|
|
502
|
+
eventId: '1750062462522_02DTzOy'
|
|
503
|
+
}
|
|
504
|
+
],
|
|
505
|
+
itemsTotal: 1
|
|
506
|
+
}
|
|
507
|
+
];
|
|
508
|
+
setUp({ activities: activitiesWithNullSchedule });
|
|
509
|
+
var activityItems = react_2.screen.getAllByTestId('activity-log-item');
|
|
510
|
+
expect(activityItems).toHaveLength(1);
|
|
511
|
+
expect(activityItems[0].querySelector('.firstLetterCapitalized')).not.toBeInTheDocument();
|
|
512
|
+
});
|
|
278
513
|
});
|
|
@@ -7,6 +7,7 @@ type Props = {
|
|
|
7
7
|
entityType?: TEntityType;
|
|
8
8
|
entityUri?: string;
|
|
9
9
|
exportTypes?: string[];
|
|
10
|
+
segmentId?: string;
|
|
10
11
|
};
|
|
11
|
-
export declare const ActivityLogFilter: ({ value, entityType, entityUri, onChange, exportTypes }: Props) => React.JSX.Element;
|
|
12
|
+
export declare const ActivityLogFilter: ({ value, entityType, entityUri, onChange, exportTypes, segmentId }: Props) => React.JSX.Element;
|
|
12
13
|
export {};
|
|
@@ -26,7 +26,7 @@ var MdmModuleContext_1 = require("../../../contexts/MdmModuleContext");
|
|
|
26
26
|
var helpers_1 = require("./helpers");
|
|
27
27
|
var styles_1 = require("./styles");
|
|
28
28
|
var ActivityLogFilter = function (_a) {
|
|
29
|
-
var value = _a.value, entityType = _a.entityType, entityUri = _a.entityUri, onChange = _a.onChange, exportTypes = _a.exportTypes;
|
|
29
|
+
var value = _a.value, entityType = _a.entityType, entityUri = _a.entityUri, onChange = _a.onChange, exportTypes = _a.exportTypes, segmentId = _a.segmentId;
|
|
30
30
|
var styles = (0, styles_1.useStyles)();
|
|
31
31
|
var user = (0, MdmModuleContext_1.useMdmUser)();
|
|
32
32
|
var tenant = (0, MdmModuleContext_1.useMdmTenant)();
|
|
@@ -37,7 +37,7 @@ var ActivityLogFilter = function (_a) {
|
|
|
37
37
|
react_1.default.createElement(Tooltip_1.default, { title: filterLabel },
|
|
38
38
|
react_1.default.createElement(Typography_1.default, { variant: "body2", className: styles.label, color: "textSecondary", display: "block", noWrap: true }, filterLabel)),
|
|
39
39
|
react_1.default.createElement("div", { className: styles.buttonsWrapper },
|
|
40
|
-
canExport && react_1.default.createElement(ActivityExportButton_1.ActivityExportButton, { filters: __assign(__assign({}, value), { entityUri: entityUri }), exportTypes: exportTypes }),
|
|
40
|
+
canExport && (react_1.default.createElement(ActivityExportButton_1.ActivityExportButton, { filters: __assign(__assign({}, value), { entityUri: entityUri, segmentId: segmentId }), exportTypes: exportTypes })),
|
|
41
41
|
react_1.default.createElement(ActivityFilterButton_1.ActivityFilterButton, { filter: value, entityType: entityType, onChange: onChange }))));
|
|
42
42
|
};
|
|
43
43
|
exports.ActivityLogFilter = ActivityLogFilter;
|
|
@@ -3,6 +3,7 @@ import { ActivityDelta } from '../types';
|
|
|
3
3
|
type Props = {
|
|
4
4
|
updates: ActivityDelta[];
|
|
5
5
|
recordId: string;
|
|
6
|
+
isSegment?: boolean;
|
|
6
7
|
};
|
|
7
|
-
export declare const RecordUpdates: ({ updates, recordId }: Props) => React.JSX.Element;
|
|
8
|
+
export declare const RecordUpdates: ({ updates, recordId, isSegment }: Props) => React.JSX.Element;
|
|
8
9
|
export {};
|
|
@@ -7,18 +7,21 @@ exports.RecordUpdates = void 0;
|
|
|
7
7
|
var react_1 = __importDefault(require("react"));
|
|
8
8
|
var ui_i18n_1 = __importDefault(require("ui-i18n"));
|
|
9
9
|
var DeltaField_1 = require("./components/DeltaField");
|
|
10
|
+
var SegmentDeltaField_1 = require("./components/SegmentDeltaField");
|
|
10
11
|
var CollapsibleItemsContext_1 = require("../contexts/CollapsibleItemsContext");
|
|
11
12
|
var MoreItemsLink_1 = require("../MoreItemsLink");
|
|
12
13
|
var styles_1 = require("./styles");
|
|
13
14
|
var RecordUpdates = function (_a) {
|
|
14
|
-
var updates = _a.updates, recordId = _a.recordId;
|
|
15
|
+
var updates = _a.updates, recordId = _a.recordId, isSegment = _a.isSegment;
|
|
15
16
|
var styles = (0, styles_1.useStyles)();
|
|
16
17
|
var _b = (0, CollapsibleItemsContext_1.useCollapsibleItems)({
|
|
17
18
|
itemsId: recordId,
|
|
18
19
|
items: updates
|
|
19
20
|
}), onExpand = _b.onExpand, collapsedItemsCount = _b.collapsedItemsCount, itemsToShow = _b.itemsToShow;
|
|
20
21
|
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
21
|
-
itemsToShow.map(function (update, index) {
|
|
22
|
+
itemsToShow.map(function (update, index) {
|
|
23
|
+
return isSegment ? react_1.default.createElement(SegmentDeltaField_1.SegmentDeltaField, { key: index, delta: update }) : react_1.default.createElement(DeltaField_1.DeltaField, { key: index, delta: update });
|
|
24
|
+
}),
|
|
22
25
|
collapsedItemsCount ? (react_1.default.createElement(MoreItemsLink_1.MoreItemsLink, { itemsCount: collapsedItemsCount, itemsLabel: collapsedItemsCount === 1 ? ui_i18n_1.default.text('update') : ui_i18n_1.default.text('updates'), onClick: onExpand, className: styles.moreLabel })) : null));
|
|
23
26
|
};
|
|
24
27
|
exports.RecordUpdates = RecordUpdates;
|
package/cjs/features/activity-log/RecordUpdates/components/SegmentDeltaField/SegmentDeltaField.js
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.SegmentDeltaField = void 0;
|
|
7
|
+
var classnames_1 = __importDefault(require("classnames"));
|
|
8
|
+
var react_1 = __importDefault(require("react"));
|
|
9
|
+
var ArrowForward_1 = __importDefault(require("@mui/icons-material/ArrowForward"));
|
|
10
|
+
var Chip_1 = __importDefault(require("@mui/material/Chip"));
|
|
11
|
+
var types_1 = require("../../../types");
|
|
12
|
+
var segmantation_1 = require("../../../../../constants/segmantation");
|
|
13
|
+
var Field_1 = require("../../../Field");
|
|
14
|
+
var SegmentQueryDeltaValue_1 = require("./SegmentQueryDeltaValue");
|
|
15
|
+
var SegmentRefreshScheduleDeltaValue_1 = require("./SegmentRefreshScheduleDeltaValue");
|
|
16
|
+
var SegmentDeltaField_module_css_1 = __importDefault(require("./SegmentDeltaField.module.css"));
|
|
17
|
+
var SegmentDeltaField = function (_a) {
|
|
18
|
+
var _b, _c;
|
|
19
|
+
var delta = _a.delta;
|
|
20
|
+
var newValue = (_b = delta.newValue) === null || _b === void 0 ? void 0 : _b.value;
|
|
21
|
+
var oldValue = (_c = delta.oldValue) === null || _c === void 0 ? void 0 : _c.value;
|
|
22
|
+
var value = oldValue || newValue;
|
|
23
|
+
var deltaLabel = types_1.DeltaTypes[delta.type];
|
|
24
|
+
var attribute = segmantation_1.SEGMENT_ACTIVITY_LOG_ATTRIBUTES[delta.attributeType];
|
|
25
|
+
var renderValue = function (value) {
|
|
26
|
+
if (!value)
|
|
27
|
+
return null;
|
|
28
|
+
if (delta.attributeType === segmantation_1.SegmentActivityLogAttributes.rule) {
|
|
29
|
+
return typeof value === 'string' ? react_1.default.createElement(SegmentQueryDeltaValue_1.SegmentQueryDeltaValue, { value: value }) : null;
|
|
30
|
+
}
|
|
31
|
+
if (delta.attributeType === segmantation_1.SegmentActivityLogAttributes.schedule) {
|
|
32
|
+
return react_1.default.createElement(SegmentRefreshScheduleDeltaValue_1.SegmentRefreshScheduleDeltaValue, { value: value });
|
|
33
|
+
}
|
|
34
|
+
if (delta.attributeType === segmantation_1.SegmentActivityLogAttributes.sharing) {
|
|
35
|
+
return react_1.default.createElement("p", { className: SegmentDeltaField_module_css_1.default.firstLetterCapitalized }, String(value));
|
|
36
|
+
}
|
|
37
|
+
return react_1.default.createElement(react_1.default.Fragment, null, String(value));
|
|
38
|
+
};
|
|
39
|
+
return attribute ? (react_1.default.createElement(Field_1.Field, { fieldName: attribute, "data-reltio-id": "segment-delta-field" },
|
|
40
|
+
value && renderValue(value),
|
|
41
|
+
newValue && oldValue && (react_1.default.createElement(react_1.default.Fragment, null,
|
|
42
|
+
react_1.default.createElement(ArrowForward_1.default, { className: SegmentDeltaField_module_css_1.default.arrow }),
|
|
43
|
+
renderValue(newValue))),
|
|
44
|
+
deltaLabel && (react_1.default.createElement(Chip_1.default, { variant: "outlined", label: deltaLabel, className: (0, classnames_1.default)(SegmentDeltaField_module_css_1.default.chip, SegmentDeltaField_module_css_1.default[deltaLabel]) })))) : null;
|
|
45
|
+
};
|
|
46
|
+
exports.SegmentDeltaField = SegmentDeltaField;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const styles = {"arrow":"SegmentDeltaField-arrow--hgMCT","chip":"SegmentDeltaField-chip--2msw7","edited":"SegmentDeltaField-edited--7vNXD","added":"SegmentDeltaField-added--wVdZT","deleted":"SegmentDeltaField-deleted--gtV3H","firstLetterCapitalized":"SegmentDeltaField-firstLetterCapitalized--x-YYp"};
|
|
2
|
+
if (typeof document !== 'undefined') {
|
|
3
|
+
const head = document.head || document.getElementsByTagName('head')[0]
|
|
4
|
+
const style = document.createElement('style');
|
|
5
|
+
style.type = 'text/css'
|
|
6
|
+
style.innerHTML = `.SegmentDeltaField-arrow--hgMCT{color:var(--mui-palette-text-primary);font-size:12px;margin:0 8px -1px}.SegmentDeltaField-chip--2msw7{flex-shrink:0;font-size:10px;font-weight:500;height:20px;line-height:16px;margin-left:9px;text-transform:capitalize;width:53px}.SegmentDeltaField-chip--2msw7 span{padding:0}.SegmentDeltaField-chip--2msw7.SegmentDeltaField-edited--7vNXD{border-color:#6973c2;color:#6973c2}.SegmentDeltaField-chip--2msw7.SegmentDeltaField-added--wVdZT{border-color:#75c378;color:#75c378}.SegmentDeltaField-chip--2msw7.SegmentDeltaField-deleted--gtV3H{border-color:#f97061;color:#f97061}.SegmentDeltaField-firstLetterCapitalized--x-YYp{display:inline-block;margin:0}.SegmentDeltaField-firstLetterCapitalized--x-YYp:first-letter{text-transform:capitalize}`;
|
|
7
|
+
head.appendChild(style);
|
|
8
|
+
}
|
|
9
|
+
module.exports = styles;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.SegmentQueryDeltaValue = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
9
|
+
var MdmModuleContext_1 = require("../../../../../contexts/MdmModuleContext");
|
|
10
|
+
var useSegmentReadableQuery_1 = require("../../../hooks/useSegmentReadableQuery");
|
|
11
|
+
var SegmentQueryDeltaValue = function (_a) {
|
|
12
|
+
var value = _a.value;
|
|
13
|
+
var metadata = (0, MdmModuleContext_1.useMdmMetadata)();
|
|
14
|
+
var builderState = (0, mdm_sdk_1.convertRuleToBuilderState)(value, metadata);
|
|
15
|
+
var readableQuery = (0, useSegmentReadableQuery_1.useSegmentReadableQuery)(builderState);
|
|
16
|
+
var readableQueryString = (0, mdm_sdk_1.readableQueryToString)(readableQuery);
|
|
17
|
+
return react_1.default.createElement(react_1.default.Fragment, null, readableQueryString);
|
|
18
|
+
};
|
|
19
|
+
exports.SegmentQueryDeltaValue = SegmentQueryDeltaValue;
|