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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
1.10.21 (Aug 13, 2024)
Added DirectCallLogListQuery.Params.startedAt and DirectCallLogListQuery.Params.endedAt, which filter the list of direct call logs by the start and end date of the call.
If startedAt is set and endedAt is not set, the range of the query will be start_ts <= callLog.startedAt <= min(now, start_ts + 90 days).
If startedAt is not set and endedAt is set, the range of the query will be end_ts - 90 days <= callLog.startedAt <= end_ts.
If both startedAt and endedAt are set, the range of the query will be start_ts <= callLog.startedAt <= end_ts.
If both are not set, the range is 90 days ago <= callLog.startedAt <= now.