Skip to content

Commit cad77bb

Browse files
algolia-botmillotp
andcommittedApr 14, 2025·
fix(specs): add missing recordType collection (generated)
algolia/api-clients-automation#4728 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Pierre Millot <pierre.millot@algolia.com>
1 parent d34727d commit cad77bb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/main/scala/algoliasearch/ingestion/RecordType.scala

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ object RecordType {
3232
case object Variant extends RecordType {
3333
override def toString = "variant"
3434
}
35-
val values: Seq[RecordType] = Seq(Product, Variant)
35+
case object Collection extends RecordType {
36+
override def toString = "collection"
37+
}
38+
val values: Seq[RecordType] = Seq(Product, Variant, Collection)
3639

3740
def withName(name: String): RecordType = RecordType.values
3841
.find(_.toString == name)

0 commit comments

Comments
 (0)
Please sign in to comment.