You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @property {Event} event - one certain event that represents all of the repetitions this day
38
38
*/
39
39
40
+
/**
41
+
* @typedef {Object} DailyEventsCursor
42
+
* @property {Number} groupingTimestampBound - boundary value of groupingTimestamp field of the last event in the portion
43
+
* @property {Number} sortValueBound - boundary value of the field by which events are sorted (count/affectedUsers/lastRepetitionTime) of the last event in the portion
44
+
* @property {String} idBound - boundary value of _id field of the last event in the portion
45
+
*/
46
+
40
47
/**
41
48
* @typedef {Object} DaylyEventsPortionSchema
42
49
* @property {DailyEventSchema[]} dailyEvents - original event of the daily one
43
-
* @property {String | null} nextCursor - pointer to the first dailyEvent of the next portion, null if there are no dailyEvents left
50
+
* @property {DailyEventsCursor | null} nextCursor - object with boundary values of the first event in the next portion
44
51
*/
45
52
46
53
/**
@@ -171,7 +178,7 @@ class EventsFactory extends Factory {
0 commit comments