-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make a StreamingStacClient to make G is independent from F; finish se…
…arch pagination
- Loading branch information
Showing
11 changed files
with
45 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
modules/client/js/src/main/scala/com/azavea/stac4s/api/client/StacClient.scala
This file was deleted.
Oops, something went wrong.
4 changes: 3 additions & 1 deletion
4
modules/client/js/src/main/scala/com/azavea/stac4s/api/client/package.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
package com.azavea.stac4s.api | ||
|
||
package object client { | ||
type SttpStacClient[F[_]] = SttpStacClientF[F, SearchFilters] | ||
type SttpStacClient[F[_]] = SttpStacClientF[F, SearchFilters] | ||
type StacClient[F[_]] = StacClientF[F, SearchFilters] | ||
type StreamingStacClient[F[_], G[_]] = StreamingStacClientF[F, G, SearchFilters] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
modules/client/jvm/src/main/scala/com/azavea/stac4s/api/client/StacClient.scala
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
modules/client/jvm/src/main/scala/com/azavea/stac4s/api/client/client.scala
This file was deleted.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
modules/client/jvm/src/main/scala/com/azavea/stac4s/api/client/package.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.azavea.stac4s.api | ||
|
||
package object client { | ||
type SttpStacClient[F[_]] = SttpStacClientF[F, SearchFilters] | ||
type StacClient[F[_]] = StacClientF[F, SearchFilters] | ||
type StreamingStacClient[F[_], G[_]] = StreamingStacClientF[F, G, SearchFilters] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
modules/core-test/js/src/test/scala/com/azavea/stac4s/JsFPLawsSpec.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package com.azavea.stac4s | ||
|
||
import com.azavea.stac4s.testing.TestInstances | ||
|
||
import cats.kernel.laws.discipline.SemigroupTests | ||
import org.scalatest.funsuite.AnyFunSuite | ||
import org.scalatest.matchers.must.Matchers | ||
import org.scalatestplus.scalacheck.Checkers | ||
import org.typelevel.discipline.scalatest.FunSuiteDiscipline | ||
|
||
import cats.kernel.laws.discipline.SemigroupTests | ||
import com.azavea.stac4s.testing.TestInstances | ||
|
||
class JsFPLawsSpec extends AnyFunSuite with FunSuiteDiscipline with Checkers with Matchers with TestInstances { | ||
checkAll("Semigroup.Bbox", SemigroupTests[Bbox].semigroup) | ||
} |
6 changes: 3 additions & 3 deletions
6
modules/core-test/jvm/src/test/scala/com/azavea/stac4s/JvmFPLawsSpec.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package com.azavea.stac4s | ||
|
||
import com.azavea.stac4s.testing.TestInstances | ||
|
||
import cats.kernel.laws.discipline.SemigroupTests | ||
import org.scalatest.funsuite.AnyFunSuite | ||
import org.scalatest.matchers.must.Matchers | ||
import org.scalatestplus.scalacheck.Checkers | ||
import org.typelevel.discipline.scalatest.FunSuiteDiscipline | ||
|
||
import cats.kernel.laws.discipline.SemigroupTests | ||
import com.azavea.stac4s.testing.TestInstances | ||
|
||
class JvmFPLawsSpec extends AnyFunSuite with FunSuiteDiscipline with Checkers with Matchers with TestInstances { | ||
checkAll("Semigroup.Bbox", SemigroupTests[Bbox].semigroup) | ||
} |