diff --git a/features.go b/features.go index 90e51a5..fef4b1e 100644 --- a/features.go +++ b/features.go @@ -64,7 +64,6 @@ func (ef *ExperimentalFeatures) Update() (*ExperimentalFeaturesResult, error) { func (ef *ExperimentalFeatures) UpdateWithContext(ctx context.Context) (*ExperimentalFeaturesResult, error) { request := ExperimentalFeaturesBase{ - VectorStore: ef.VectorStore, LogsRoute: ef.LogsRoute, Metrics: ef.Metrics, EditDocumentsByFunction: ef.EditDocumentsByFunction, diff --git a/index_task_test.go b/index_task_test.go index da0151b..0b5ed24 100644 --- a/index_task_test.go +++ b/index_task_test.go @@ -150,7 +150,7 @@ func TestIndex_GetTasks(t *testing.T) { query: &TasksQuery{ IndexUIDS: []string{"indexUID"}, Limit: 10, - From: 1, + From: 0, Statuses: []TaskStatus{TaskStatusSucceeded}, Types: []TaskType{TaskTypeDocumentAdditionOrUpdate}, }, diff --git a/types_easyjson.go b/types_easyjson.go index ada340f..f881d52 100644 --- a/types_easyjson.go +++ b/types_easyjson.go @@ -5985,8 +5985,6 @@ func easyjson6601e8cdDecodeGithubComMeilisearchMeilisearchGo40(in *jlexer.Lexer, continue } switch key { - case "vectorStore": - out.VectorStore = bool(in.Bool()) case "logsRoute": out.LogsRoute = bool(in.Bool()) case "metrics": @@ -6009,14 +6007,9 @@ func easyjson6601e8cdEncodeGithubComMeilisearchMeilisearchGo40(out *jwriter.Writ out.RawByte('{') first := true _ = first - { - const prefix string = ",\"vectorStore\":" - out.RawString(prefix[1:]) - out.Bool(bool(in.VectorStore)) - } { const prefix string = ",\"logsRoute\":" - out.RawString(prefix) + out.RawString(prefix[1:]) out.Bool(bool(in.LogsRoute)) } { @@ -6079,16 +6072,6 @@ func easyjson6601e8cdDecodeGithubComMeilisearchMeilisearchGo41(in *jlexer.Lexer, continue } switch key { - case "vectorStore": - if in.IsNull() { - in.Skip() - out.VectorStore = nil - } else { - if out.VectorStore == nil { - out.VectorStore = new(bool) - } - *out.VectorStore = bool(in.Bool()) - } case "logsRoute": if in.IsNull() { in.Skip() @@ -6143,20 +6126,10 @@ func easyjson6601e8cdEncodeGithubComMeilisearchMeilisearchGo41(out *jwriter.Writ out.RawByte('{') first := true _ = first - if in.VectorStore != nil { - const prefix string = ",\"vectorStore\":" - first = false - out.RawString(prefix[1:]) - out.Bool(bool(*in.VectorStore)) - } if in.LogsRoute != nil { const prefix string = ",\"logsRoute\":" - if first { - first = false - out.RawString(prefix[1:]) - } else { - out.RawString(prefix) - } + first = false + out.RawString(prefix[1:]) out.Bool(bool(*in.LogsRoute)) } if in.Metrics != nil {