Skip to content

Commit 0a5b7ec

Browse files
fix(specs): drop singer from ingestion specs [skip-bc] (generated)
algolia/api-clients-automation#4281 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent a95afe1 commit 0a5b7ec

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/main/scala/algoliasearch/api/IngestionClient.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ class IngestionClient(
14291429
}
14301430

14311431
/** Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with
1432-
* `type: docker` and `imageType: singer`.
1432+
* `type: docker` and `imageType: airbyte`.
14331433
*
14341434
* Required API Key ACLs:
14351435
* - addObject

src/main/scala/algoliasearch/ingestion/DockerImageType.scala

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,13 @@ sealed trait DockerImageType
2626
/** Image type.
2727
*/
2828
object DockerImageType {
29-
case object Singer extends DockerImageType {
30-
override def toString = "singer"
31-
}
3229
case object Custom extends DockerImageType {
3330
override def toString = "custom"
3431
}
3532
case object Airbyte extends DockerImageType {
3633
override def toString = "airbyte"
3734
}
38-
val values: Seq[DockerImageType] = Seq(Singer, Custom, Airbyte)
35+
val values: Seq[DockerImageType] = Seq(Custom, Airbyte)
3936

4037
def withName(name: String): DockerImageType = DockerImageType.values
4138
.find(_.toString == name)

src/main/scala/algoliasearch/ingestion/DockerStreamsInput.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
package algoliasearch.ingestion
2121

22-
/** The selected streams of a singer or airbyte connector.
22+
/** The selected streams of an airbyte connector.
2323
*/
2424
case class DockerStreamsInput(
2525
streams: Seq[DockerStreams]

0 commit comments

Comments
 (0)