Skip to content

Commit 05ef8a9

Browse files
algolia-botSamuel Bodin
and
Samuel Bodin
committed
chore: generated code for commit 3d8c1b9. [skip ci]
Co-authored-by: Samuel Bodin <[email protected]>
1 parent 3d8c1b9 commit 05ef8a9

File tree

6 files changed

+330
-238
lines changed

6 files changed

+330
-238
lines changed

clients/algoliasearch-client-java-2/algoliasearch-core/src/com/algolia/api/SearchClient.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2604,7 +2604,8 @@ private Call getDictionarySettingsValidateBeforeCall(
26042604
}
26052605

26062606
/**
2607-
* Retrieve dictionaries settings.
2607+
* Retrieve dictionaries settings. The API stores languages whose standard entries are disabled.
2608+
* Fetch settings does not return false values.
26082609
*
26092610
* @return GetDictionarySettingsResponse
26102611
* @throws AlgoliaRuntimeException If fail to call the API, e.g. server error or cannot
@@ -2627,7 +2628,8 @@ public GetDictionarySettingsResponse getDictionarySettings()
26272628
}
26282629

26292630
/**
2630-
* (asynchronously) Retrieve dictionaries settings.
2631+
* (asynchronously) Retrieve dictionaries settings. The API stores languages whose standard
2632+
* entries are disabled. Fetch settings does not return false values.
26312633
*
26322634
* @param callback The callback to be executed when the API call finishes
26332635
* @return The request call
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
GROUP=com.algolia
2-
VERSION_NAME=0.0.1-SNAPSHOT
2+
VERSION_NAME=0.1.0-SNAPSHOT

clients/algoliasearch-client-javascript/packages/client-search/src/searchClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1161,9 +1161,9 @@ export function createSearchClient(options: CreateClientOptions) {
11611161
},
11621162

11631163
/**
1164-
* Retrieve dictionaries settings.
1164+
* Retrieve dictionaries settings. The API stores languages whose standard entries are disabled. Fetch settings does not return false values.
11651165
*
1166-
* @summary Retrieve dictionaries settings. The API stores languages whose standard entries are disabled. Fetch settings does not return false values.
1166+
* @summary Retrieve dictionaries settings.
11671167
*/
11681168
getDictionarySettings(
11691169
requestOptions?: RequestOptions

clients/algoliasearch-client-php/lib/Api/SearchClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ public function clearAllSynonyms($indexName, $forwardToReplicas = null)
669669
}
670670

671671
/**
672-
* clear all objects from an index.
672+
* Clear all objects from an index.
673673
*
674674
* @param string $indexName The index in which to perform the request. (required)
675675
*
@@ -1276,7 +1276,7 @@ public function getDictionaryLanguages()
12761276
}
12771277

12781278
/**
1279-
* Retrieve dictionaries settings. The API stores languages whose standard entries are disabled. Fetch settings does not return false values.
1279+
* Retrieve dictionaries settings.
12801280
*
12811281
*
12821282
* @return array<string, mixed>|\Algolia\AlgoliaSearch\Model\Search\GetDictionarySettingsResponse

specs/bundled/algoliasearch-lite.yml

Lines changed: 51 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1948,6 +1948,51 @@ servers:
19481948
security:
19491949
- appId: []
19501950
apiKey: []
1951+
tags:
1952+
- name: Advanced
1953+
description: Advanced operations.
1954+
- name: Api Keys
1955+
description: Manage your Api Keys.
1956+
- name: Clusters
1957+
description: Clusters operations.
1958+
- name: Dictionnaries
1959+
description: Dictionnaries operations.
1960+
- name: Indices
1961+
description: Manage indices.
1962+
- name: Records
1963+
description: Records operations.
1964+
- name: Rules
1965+
description: Rules operations.
1966+
- name: Search
1967+
description: Perform search operations.
1968+
- name: Synonyms
1969+
description: Synonyms operations.
1970+
- name: Vaults
1971+
description: Vault operations.
1972+
- name: _model_index_settings
1973+
x-displayName: Index Settings
1974+
description: |
1975+
<SchemaDefinition schemaRef="#/components/schemas/indexSettings" />.
1976+
x-tagGroups:
1977+
- name: Search and Indexing
1978+
tags:
1979+
- Indices
1980+
- Records
1981+
- Search
1982+
- name: Relevance
1983+
tags:
1984+
- Rules
1985+
- Synonyms
1986+
- Dictionnaries
1987+
- name: Other
1988+
tags:
1989+
- Api Keys
1990+
- Clusters
1991+
- Vaults
1992+
- Advanced
1993+
- name: Models
1994+
tags:
1995+
- _model_index_settings
19511996
paths:
19521997
/1{path}:
19531998
post:
@@ -1982,6 +2027,8 @@ paths:
19822027
- algoliasearch-lite
19832028
/1/indexes/{indexName}/query:
19842029
post:
2030+
tags:
2031+
- algoliasearch-lite
19852032
operationId: search
19862033
description: Get search results.
19872034
summary: Get search results.
@@ -2008,10 +2055,10 @@ paths:
20082055
$ref: '#/components/responses/MethodNotAllowed'
20092056
'404':
20102057
$ref: '#/components/responses/IndexNotFound'
2011-
tags:
2012-
- algoliasearch-lite
20132058
/1/indexes/*/queries:
20142059
post:
2060+
tags:
2061+
- algoliasearch-lite
20152062
operationId: multipleQueries
20162063
description: Get search results for the given requests.
20172064
summary: Get search results for the given requests.
@@ -2072,10 +2119,10 @@ paths:
20722119
$ref: '#/components/responses/MethodNotAllowed'
20732120
'404':
20742121
$ref: '#/components/responses/IndexNotFound'
2075-
tags:
2076-
- algoliasearch-lite
20772122
/1/indexes/{indexName}/facets/{facetName}/query:
20782123
post:
2124+
tags:
2125+
- algoliasearch-lite
20792126
operationId: searchForFacetValues
20802127
summary: Search for values of a given facet
20812128
description: >-
@@ -2147,5 +2194,3 @@ paths:
21472194
$ref: '#/components/responses/MethodNotAllowed'
21482195
'404':
21492196
$ref: '#/components/responses/IndexNotFound'
2150-
tags:
2151-
- algoliasearch-lite

0 commit comments

Comments
 (0)