Skip to content

v1.12.0

Compare
Choose a tag to compare
@sf-nathan-park sf-nathan-park released this 08 Aug 08:17
· 3 commits to master since this release

1.12.0 (Aug 8, 2024)

  • Added DirectCallLogListQuery.Params.setStartedAt and DirectCallLogListQuery.Params.setEndedAt, 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