Skip to content

Commit

Permalink
fix(specs): remove SFCC source type [skip-bc] (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4190

Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com>
Co-authored-by: Pierre Millot <pierre.millot@algolia.com>
  • Loading branch information
algolia-bot and millotp committed Dec 2, 2024
1 parent d2c4186 commit a3eed8c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/scala/algoliasearch/ingestion/SourceType.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,11 @@ object SourceType {
case object Shopify extends SourceType {
override def toString = "shopify"
}
case object Sfcc extends SourceType {
override def toString = "sfcc"
}
case object Push extends SourceType {
override def toString = "push"
}
val values: Seq[SourceType] =
Seq(Bigcommerce, Bigquery, Commercetools, Csv, Docker, Ga4BigqueryExport, Json, Shopify, Sfcc, Push)
Seq(Bigcommerce, Bigquery, Commercetools, Csv, Docker, Ga4BigqueryExport, Json, Shopify, Push)

def withName(name: String): SourceType = SourceType.values
.find(_.toString == name)
Expand Down

0 comments on commit a3eed8c

Please sign in to comment.