Skip to content

Commit a3c5b18

Browse files
feat(specs): add partialNoCreate action to ingestion specs (generated)
algolia/api-clients-automation#5389 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 9eb8831 commit a3c5b18

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/scala/algoliasearch/ingestion/ActionType.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,13 @@ object ActionType {
3535
case object Partial extends ActionType {
3636
override def toString = "partial"
3737
}
38+
case object PartialNoCreate extends ActionType {
39+
override def toString = "partialNoCreate"
40+
}
3841
case object Append extends ActionType {
3942
override def toString = "append"
4043
}
41-
val values: Seq[ActionType] = Seq(Replace, Save, Partial, Append)
44+
val values: Seq[ActionType] = Seq(Replace, Save, Partial, PartialNoCreate, Append)
4245

4346
def withName(name: String): ActionType = ActionType.values
4447
.find(_.toString == name)

0 commit comments

Comments
 (0)