Skip to content

Commit 9ddf65d

Browse files
authored
Merge branch 'main' into bump-meilisearch-v0.30.0
2 parents d00f09d + ceef128 commit 9ddf65d

File tree

4 files changed

+10
-32
lines changed

4 files changed

+10
-32
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/types/types.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -283,31 +283,31 @@ export type TaskObject = Omit<EnqueuedTaskObject, 'taskUid'> & {
283283
primaryKey?: string
284284

285285
// Ranking rules on settings actions
286-
rankingRules: RankingRules
286+
rankingRules?: RankingRules
287287

288288
// Searchable attributes on settings actions
289-
searchableAttributes: SearchableAttributes
289+
searchableAttributes?: SearchableAttributes
290290

291291
// Displayed attributes on settings actions
292-
displayedAttributes: DisplayedAttributes
292+
displayedAttributes?: DisplayedAttributes
293293

294294
// Filterable attributes on settings actions
295-
filterableAttributes: FilterableAttributes
295+
filterableAttributes?: FilterableAttributes
296296

297297
// Sortable attributes on settings actions
298-
sortableAttributes: SortableAttributes
298+
sortableAttributes?: SortableAttributes
299299

300300
// Stop words on settings actions
301-
stopWords: StopWords
301+
stopWords?: StopWords
302302

303303
// Stop words on settings actions
304-
synonyms: Synonyms
304+
synonyms?: Synonyms
305305

306306
// Distinct attribute on settings actions
307-
distinctAttribute: DistinctAttribute
307+
distinctAttribute?: DistinctAttribute
308308

309309
// Object containing the payload originating the `indexSwap` task creation
310-
swaps: SwapIndexesParams
310+
swaps?: SwapIndexesParams
311311

312312
// Number of tasks that matched the originalQuery filter
313313
matchedTasks?: number

0 commit comments

Comments
 (0)