Skip to content

Commit

Permalink
fix(specs): update time range number types [skip-bc] (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4023

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Thomas Raffray <[email protected]>
Co-authored-by: Pierre Millot <[email protected]>
  • Loading branch information
3 people committed Oct 24, 2024
1 parent a94f0ae commit 0169cc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/algoliasearch/recommend/TimeRange.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ package algoliasearch.recommend
* When the rule should stop to be active, in Unix epoch time.
*/
case class TimeRange(
from: Int,
until: Int
from: Long,
until: Long
)
4 changes: 2 additions & 2 deletions src/main/scala/algoliasearch/search/TimeRange.scala
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ package algoliasearch.search
* When the rule should stop to be active, in Unix epoch time.
*/
case class TimeRange(
from: Int,
until: Int
from: Long,
until: Long
)

0 comments on commit 0169cc8

Please sign in to comment.