File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ pub enum TaskType {
15
15
DocumentPartial { details : Option < DocumentAddition > } ,
16
16
DocumentDeletion { details : Option < DocumentDeletion > } ,
17
17
IndexCreation { details : Option < IndexCreation > } ,
18
+ IndexUpdate { details : Option < IndexUpdate > } ,
18
19
IndexDeletion { details : Option < IndexDeletion > } ,
19
20
SettingsUpdate { details : Option < Settings > } ,
20
21
}
@@ -38,6 +39,12 @@ pub struct IndexCreation {
38
39
pub primary_key : Option < String > ,
39
40
}
40
41
42
+ #[ derive( Debug , Clone , Deserialize ) ]
43
+ #[ serde( rename_all = "camelCase" ) ]
44
+ pub struct IndexUpdate {
45
+ pub primary_key : Option < String > ,
46
+ }
47
+
41
48
#[ derive( Debug , Clone , Deserialize ) ]
42
49
#[ serde( rename_all = "camelCase" ) ]
43
50
pub struct IndexDeletion {
You can’t perform that action at this time.
0 commit comments