Skip to content

Commit 0169cc8

Browse files
algolia-botFluf22millotp
committed
fix(specs): update time range number types [skip-bc] (generated)
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]>
1 parent a94f0ae commit 0169cc8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/scala/algoliasearch/recommend/TimeRange.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ package algoliasearch.recommend
3737
* When the rule should stop to be active, in Unix epoch time.
3838
*/
3939
case class TimeRange(
40-
from: Int,
41-
until: Int
40+
from: Long,
41+
until: Long
4242
)

src/main/scala/algoliasearch/search/TimeRange.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ package algoliasearch.search
4141
* When the rule should stop to be active, in Unix epoch time.
4242
*/
4343
case class TimeRange(
44-
from: Int,
45-
until: Int
44+
from: Long,
45+
until: Long
4646
)

0 commit comments

Comments
 (0)