Skip to content

Commit b5c6a67

Browse files
authored
Merge branch 'main' into update_version_for_v0.30.0
2 parents efd2a9f + ceef128 commit b5c6a67

File tree

5 files changed

+11
-31
lines changed

5 files changed

+11
-31
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ updates:
55
schedule:
66
interval: "monthly"
77
labels:
8-
- 'skip changelog'
8+
- 'skip-changelog'
99
- 'dependencies'
1010
rebase-strategy: disabled
1111

CONTRIBUTING.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ First of all, thank you for contributing to Meilisearch! The goal of this docume
44

55
<!-- MarkdownTOC autolink="true" style="ordered" indent=" " -->
66

7-
- [Hacktoberfest](#hacktoberfest-2022)
87
- [Assumptions](#assumptions)
98
- [How to Contribute](#how-to-contribute)
109
- [Development Workflow](#development-workflow)
@@ -13,18 +12,6 @@ First of all, thank you for contributing to Meilisearch! The goal of this docume
1312

1413
<!-- /MarkdownTOC -->
1514

16-
## Hacktoberfest 2022
17-
18-
It's [Hacktoberfest month](https://hacktoberfest.com)! 🥳
19-
20-
Thanks so much for participating with Meilisearch this year!
21-
22-
1. We will follow the quality standards set by the organizers of Hacktoberfest (see detail on their [website](https://hacktoberfest.com/participation/#spam)). Our reviewers will not consider any PR that doesn’t match that standard.
23-
2. PRs reviews will take place from Monday to Thursday, during usual working hours, CEST time. If you submit outside of these hours, there’s no need to panic; we will get around to your contribution.
24-
3. There will be no issue assignment as we don’t want people to ask to be assigned specific issues and never return, discouraging the volunteer contributors from opening a PR to fix this issue. We take the liberty to choose the PR that best fixes the issue, so we encourage you to get to it as soon as possible and do your best!
25-
26-
You can check out the longer, more complete guideline documentation [here](https://github.com/meilisearch/.github/blob/main/Hacktoberfest_2022_contributors_guidelines.md).
27-
2815
## Assumptions
2916

3017
1. **You're familiar with [GitHub](https://github.com) and the [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests) (PR) workflow.**

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929

3030
## Table of Contents <!-- omit in toc -->
3131

32-
- [🎃 Hacktoberfest](#-hacktoberfest)
3332
- [📖 Documentation](#-documentation)
3433
- [🔧 Installation](#-installation)
3534
- [🎬 Getting started](#-getting-started)
@@ -38,14 +37,6 @@
3837
- [⚙️ Contributing](#️-contributing)
3938
- [📜 API resources](#-api-resources)
4039

41-
## 🎃 Hacktoberfest
42-
43-
It’s Hacktoberfest 2022 @Meilisearch
44-
45-
[Hacktoberfest](https://hacktoberfest.com/) is a celebration of the open-source community. This year, and for the third time in a row, Meilisearch is participating in this fantastic event.
46-
47-
You’d like to contribute? Don’t hesitate to check out our [contributing guidelines](./CONTRIBUTING.md).
48-
4940
## 📖 Documentation
5041

5142
This readme contains all the documentation you need to start using this Meilisearch SDK.

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
export * from './types'
22
export * from './errors'
33
export * from './indexes'
4+
export * from './enqueued-task'
5+
export * from './task'
46
import { MeiliSearch } from './clients/node-client'
57

68
export { MeiliSearch }

src/types/types.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -260,28 +260,28 @@ export type TaskObject = Omit<EnqueuedTaskObject, 'taskUid'> & {
260260
primaryKey?: string
261261

262262
// Ranking rules on settings actions
263-
rankingRules: RankingRules
263+
rankingRules?: RankingRules
264264

265265
// Searchable attributes on settings actions
266-
searchableAttributes: SearchableAttributes
266+
searchableAttributes?: SearchableAttributes
267267

268268
// Displayed attributes on settings actions
269-
displayedAttributes: DisplayedAttributes
269+
displayedAttributes?: DisplayedAttributes
270270

271271
// Filterable attributes on settings actions
272-
filterableAttributes: FilterableAttributes
272+
filterableAttributes?: FilterableAttributes
273273

274274
// Sortable attributes on settings actions
275-
sortableAttributes: SortableAttributes
275+
sortableAttributes?: SortableAttributes
276276

277277
// Stop words on settings actions
278-
stopWords: StopWords
278+
stopWords?: StopWords
279279

280280
// Stop words on settings actions
281-
synonyms: Synonyms
281+
synonyms?: Synonyms
282282

283283
// Distinct attribute on settings actions
284-
distinctAttribute: DistinctAttribute
284+
distinctAttribute?: DistinctAttribute
285285
}
286286
error?: MeiliSearchErrorInfo
287287
duration: string

0 commit comments

Comments
 (0)