Skip to content

v4.16.0

Compare
Choose a tag to compare
@github-actions github-actions released this 17 May 15:19
· 2 commits to master since this release
4087024

4.16.0 (2024-05-17)

Features

  • New API endpoint query_message_history (#168) (f3f4c9f)
response = client.query_message_history(
    filter={"message_id": {"$eq": msg_id}},
    sort=[{"message_updated_at": -1}],
    **{"limit": 1},
)

response_next = client.query_message_history(
    filter={"message_id": {"$eq": msg_id}},
    sort=[{"message_updated_at": -1}],
    **{"limit": 1, "next": response["next"]},
)