Skip to content

Commit ea8646b

Browse files
algolia-botmillotp
andcommitted
fix(clients): upgrade linter (generated)
algolia/api-clients-automation#5476 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent 7b4993f commit ea8646b

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

packages/algoliasearch/builds/browser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export type Algoliasearch = SearchClient & {
8181
* @param partialUpdateObjects - The `partialUpdateObjects` object.
8282
* @param partialUpdateObjects.indexName - The `indexName` to update `objects` in.
8383
* @param partialUpdateObjects.objects - The array of `objects` to update in the given Algolia `indexName`.
84-
* @param partialUpdateObjects.createIfNotExists - To be provided if non-existing objects are passed, otherwise, the call will fail..
84+
* @param partialUpdateObjects.createIfNotExists - To be provided if non-existing objects are passed, otherwise, the call will fail.
8585
* @param partialUpdateObjects.batchSize - The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
8686
* @param partialUpdateObjects.waitForTasks - Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable.
8787
* @param requestOptions - The requestOptions to send along with the query, they will be forwarded to the `push` method and merged with the transporter requestOptions.

packages/algoliasearch/builds/fetch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export type Algoliasearch = SearchClient & {
8181
* @param partialUpdateObjects - The `partialUpdateObjects` object.
8282
* @param partialUpdateObjects.indexName - The `indexName` to update `objects` in.
8383
* @param partialUpdateObjects.objects - The array of `objects` to update in the given Algolia `indexName`.
84-
* @param partialUpdateObjects.createIfNotExists - To be provided if non-existing objects are passed, otherwise, the call will fail..
84+
* @param partialUpdateObjects.createIfNotExists - To be provided if non-existing objects are passed, otherwise, the call will fail.
8585
* @param partialUpdateObjects.batchSize - The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
8686
* @param partialUpdateObjects.waitForTasks - Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable.
8787
* @param requestOptions - The requestOptions to send along with the query, they will be forwarded to the `push` method and merged with the transporter requestOptions.

packages/algoliasearch/builds/node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export type Algoliasearch = SearchClient & {
8181
* @param partialUpdateObjects - The `partialUpdateObjects` object.
8282
* @param partialUpdateObjects.indexName - The `indexName` to update `objects` in.
8383
* @param partialUpdateObjects.objects - The array of `objects` to update in the given Algolia `indexName`.
84-
* @param partialUpdateObjects.createIfNotExists - To be provided if non-existing objects are passed, otherwise, the call will fail..
84+
* @param partialUpdateObjects.createIfNotExists - To be provided if non-existing objects are passed, otherwise, the call will fail.
8585
* @param partialUpdateObjects.batchSize - The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
8686
* @param partialUpdateObjects.waitForTasks - Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable.
8787
* @param requestOptions - The requestOptions to send along with the query, they will be forwarded to the `push` method and merged with the transporter requestOptions.

packages/algoliasearch/builds/worker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export type Algoliasearch = SearchClient & {
8181
* @param partialUpdateObjects - The `partialUpdateObjects` object.
8282
* @param partialUpdateObjects.indexName - The `indexName` to update `objects` in.
8383
* @param partialUpdateObjects.objects - The array of `objects` to update in the given Algolia `indexName`.
84-
* @param partialUpdateObjects.createIfNotExists - To be provided if non-existing objects are passed, otherwise, the call will fail..
84+
* @param partialUpdateObjects.createIfNotExists - To be provided if non-existing objects are passed, otherwise, the call will fail.
8585
* @param partialUpdateObjects.batchSize - The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
8686
* @param partialUpdateObjects.waitForTasks - Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable.
8787
* @param requestOptions - The requestOptions to send along with the query, they will be forwarded to the `push` method and merged with the transporter requestOptions.

packages/algoliasearch/lite/model/automaticFacetFilter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type AutomaticFacetFilter = {
1515
score?: number | undefined;
1616

1717
/**
18-
* Whether the filter is disjunctive or conjunctive. If true the filter has multiple matches, multiple occurences are combined with the logical `OR` operation. If false, multiple occurences are combined with the logical `AND` operation.
18+
* Whether the filter is disjunctive or conjunctive. If true the filter has multiple matches, multiple occurrences are combined with the logical `OR` operation. If false, multiple occurrences are combined with the logical `AND` operation.
1919
*/
2020
disjunctive?: boolean | undefined;
2121
};

packages/client-search/model/automaticFacetFilter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type AutomaticFacetFilter = {
1515
score?: number | undefined;
1616

1717
/**
18-
* Whether the filter is disjunctive or conjunctive. If true the filter has multiple matches, multiple occurences are combined with the logical `OR` operation. If false, multiple occurences are combined with the logical `AND` operation.
18+
* Whether the filter is disjunctive or conjunctive. If true the filter has multiple matches, multiple occurrences are combined with the logical `OR` operation. If false, multiple occurrences are combined with the logical `AND` operation.
1919
*/
2020
disjunctive?: boolean | undefined;
2121
};

packages/client-search/model/event.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { EventStatus } from './eventStatus';
44
import type { EventType } from './eventType';
55

66
/**
7-
* An event describe a step of the task execution flow..
7+
* An event describe a step of the task execution flow.
88
*/
99
export type Event = {
1010
/**

packages/client-search/src/searchClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ export function createSearchClient({
604604
* @param partialUpdateObjects - The `partialUpdateObjects` object.
605605
* @param partialUpdateObjects.indexName - The `indexName` to update `objects` in.
606606
* @param partialUpdateObjects.objects - The array of `objects` to update in the given Algolia `indexName`.
607-
* @param partialUpdateObjects.createIfNotExists - To be provided if non-existing objects are passed, otherwise, the call will fail..
607+
* @param partialUpdateObjects.createIfNotExists - To be provided if non-existing objects are passed, otherwise, the call will fail.
608608
* @param partialUpdateObjects.batchSize - The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
609609
* @param partialUpdateObjects.waitForTasks - Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable.
610610
* @param requestOptions - The requestOptions to send along with the query, they will be forwarded to the `getTask` method and merged with the transporter requestOptions.

packages/ingestion/model/event.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { EventStatus } from './eventStatus';
44
import type { EventType } from './eventType';
55

66
/**
7-
* An event describe a step of the task execution flow..
7+
* An event describe a step of the task execution flow.
88
*/
99
export type Event = {
1010
/**

0 commit comments

Comments
 (0)