Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Added many new messages and enum values:

- `types`

+ `TimeIntervalFilter`: Message to standardize time interval filtering across APIs
+ `Interval`: Message to standardize time interval filtering across APIs

This uses `start_time` (inclusive) and `end_time` (exclusive) fields, aligning with ISO 8601 and common programming conventions.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import "google/protobuf/timestamp.proto";
// considered unbounded at the start.
// * If `end_time` is omitted, the interval is
// considered unbounded at the end.
message TimeIntervalFilter {
message Interval {
// The beginning of the time interval (inclusive).
//
// Must be a UTC timestamp.
Expand Down
Loading