From 89f16c7432959026bae3cee340dc568d12b85344 Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Thu, 14 Nov 2024 11:19:51 +0000 Subject: [PATCH] fix(specs): rename composition run endpoint [skip-bc] (generated) https://github.com/algolia/api-clients-automation/pull/4099 Co-authored-by: algolia-bot Co-authored-by: Emmanuel Krebs Co-authored-by: shortcuts --- .../model/baseSearchParams.ts | 6 - .../model/baseSearchParamsWithoutQuery.ts | 148 ------------- .../model/clientMethodProps.ts | 16 +- packages/client-composition/model/index.ts | 14 +- .../model/indexSettingsAsSearchParams.ts | 205 ------------------ packages/client-composition/model/mode.ts | 6 - ...{searchParamsSearchParams.ts => params.ts} | 2 +- .../model/reRankingApplyFilter.ts | 6 - .../{searchParamsQuery.ts => requestBody.ts} | 9 +- .../model/searchForFacetValuesParams.ts | 4 +- .../client-composition/model/searchParams.ts | 6 - .../model/searchParamsObject.ts | 9 - .../model/searchParamsString.ts | 11 - .../model/semanticSearch.ts | 11 - .../client-composition/model/tagFilters.ts | 6 - .../src/compositionClient.ts | 60 ++--- 16 files changed, 49 insertions(+), 470 deletions(-) delete mode 100644 packages/client-composition/model/baseSearchParams.ts delete mode 100644 packages/client-composition/model/baseSearchParamsWithoutQuery.ts delete mode 100644 packages/client-composition/model/indexSettingsAsSearchParams.ts delete mode 100644 packages/client-composition/model/mode.ts rename packages/client-composition/model/{searchParamsSearchParams.ts => params.ts} (99%) delete mode 100644 packages/client-composition/model/reRankingApplyFilter.ts rename packages/client-composition/model/{searchParamsQuery.ts => requestBody.ts} (67%) delete mode 100644 packages/client-composition/model/searchParams.ts delete mode 100644 packages/client-composition/model/searchParamsObject.ts delete mode 100644 packages/client-composition/model/searchParamsString.ts delete mode 100644 packages/client-composition/model/semanticSearch.ts delete mode 100644 packages/client-composition/model/tagFilters.ts diff --git a/packages/client-composition/model/baseSearchParams.ts b/packages/client-composition/model/baseSearchParams.ts deleted file mode 100644 index 030809e05..000000000 --- a/packages/client-composition/model/baseSearchParams.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. - -import type { BaseSearchParamsWithoutQuery } from './baseSearchParamsWithoutQuery'; -import type { SearchParamsQuery } from './searchParamsQuery'; - -export type BaseSearchParams = SearchParamsQuery & BaseSearchParamsWithoutQuery; diff --git a/packages/client-composition/model/baseSearchParamsWithoutQuery.ts b/packages/client-composition/model/baseSearchParamsWithoutQuery.ts deleted file mode 100644 index 577120301..000000000 --- a/packages/client-composition/model/baseSearchParamsWithoutQuery.ts +++ /dev/null @@ -1,148 +0,0 @@ -// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. - -import type { AroundPrecision } from './aroundPrecision'; -import type { AroundRadius } from './aroundRadius'; -import type { FacetFilters } from './facetFilters'; -import type { NumericFilters } from './numericFilters'; -import type { OptionalFilters } from './optionalFilters'; -import type { SupportedLanguage } from './supportedLanguage'; -import type { TagFilters } from './tagFilters'; - -export type BaseSearchParamsWithoutQuery = { - /** - * Keywords to be used instead of the search query to conduct a more broader search. Using the `similarQuery` parameter changes other settings: - `queryType` is set to `prefixNone`. - `removeStopWords` is set to true. - `words` is set as the first ranking criterion. - All remaining words are treated as `optionalWords`. Since the `similarQuery` is supposed to do a broad search, they usually return many results. Combine it with `filters` to narrow down the list of results. - */ - similarQuery?: string; - - /** - * Filter expression to only include items that match the filter criteria in the response. You can use these filter expressions: - **Numeric filters.** ` `, where `` is one of `<`, `<=`, `=`, `!=`, `>`, `>=`. - **Ranges.** `: TO ` where `` and `` are the lower and upper limits of the range (inclusive). - **Facet filters.** `:` where `` is a facet attribute (case-sensitive) and `` a facet value. - **Tag filters.** `_tags:` or just `` (case-sensitive). - **Boolean filters.** `: true | false`. You can combine filters with `AND`, `OR`, and `NOT` operators with the following restrictions: - You can only combine filters of the same type with `OR`. **Not supported:** `facet:value OR num > 3`. - You can\'t use `NOT` with combinations of filters. **Not supported:** `NOT(facet:value OR facet:value)` - You can\'t combine conjunctions (`AND`) with `OR`. **Not supported:** `facet:value OR (facet:value AND facet:value)` Use quotes around your filters, if the facet attribute name or facet value has spaces, keywords (`OR`, `AND`, `NOT`), or quotes. If a facet attribute is an array, the filter matches if it matches at least one element of the array. For more information, see [Filters](https://www.algolia.com/doc/guides/managing-results/refine-results/filtering/). - */ - filters?: string; - - facetFilters?: FacetFilters; - - optionalFilters?: OptionalFilters; - - numericFilters?: NumericFilters; - - tagFilters?: TagFilters; - - /** - * Whether to sum all filter scores. If true, all filter scores are summed. Otherwise, the maximum filter score is kept. For more information, see [filter scores](https://www.algolia.com/doc/guides/managing-results/refine-results/filtering/in-depth/filter-scoring/#accumulating-scores-with-sumorfiltersscores). - */ - sumOrFiltersScores?: boolean; - - /** - * Restricts a search to a subset of your searchable attributes. Attribute names are case-sensitive. - */ - restrictSearchableAttributes?: Array; - - /** - * Facets for which to retrieve facet values that match the search criteria and the number of matching facet values. To retrieve all facets, use the wildcard character `*`. For more information, see [facets](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#contextual-facet-values-and-counts). - */ - facets?: Array; - - /** - * Whether faceting should be applied after deduplication with `distinct`. This leads to accurate facet counts when using faceting in combination with `distinct`. It\'s usually better to use `afterDistinct` modifiers in the `attributesForFaceting` setting, as `facetingAfterDistinct` only computes correct facet counts if all records have the same facet values for the `attributeForDistinct`. - */ - facetingAfterDistinct?: boolean; - - /** - * Page of search results to retrieve. - */ - page?: number; - - /** - * Position of the first hit to retrieve. - */ - offset?: number; - - /** - * Number of hits to retrieve (used in combination with `offset`). - */ - length?: number; - - /** - * Coordinates for the center of a circle, expressed as a comma-separated string of latitude and longitude. Only records included within a circle around this central location are included in the results. The radius of the circle is determined by the `aroundRadius` and `minimumAroundRadius` settings. This parameter is ignored if you also specify `insidePolygon` or `insideBoundingBox`. - */ - aroundLatLng?: string; - - /** - * Whether to obtain the coordinates from the request\'s IP address. - */ - aroundLatLngViaIP?: boolean; - - aroundRadius?: AroundRadius; - - aroundPrecision?: AroundPrecision; - - /** - * Minimum radius (in meters) for a search around a location when `aroundRadius` isn\'t set. - */ - minimumAroundRadius?: number; - - /** - * Coordinates for a rectangular area in which to search. Each bounding box is defined by the two opposite points of its diagonal, and expressed as latitude and longitude pair: `[p1 lat, p1 long, p2 lat, p2 long]`. Provide multiple bounding boxes as nested arrays. For more information, see [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas). - */ - insideBoundingBox?: Array>; - - /** - * Coordinates of a polygon in which to search. Polygons are defined by 3 to 10,000 points. Each point is represented by its latitude and longitude. Provide multiple polygons as nested arrays. For more information, see [filtering inside polygons](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas). This parameter is ignored if you also specify `insideBoundingBox`. - */ - insidePolygon?: Array>; - - /** - * ISO language codes that adjust settings that are useful for processing natural language queries (as opposed to keyword searches): - Sets `removeStopWords` and `ignorePlurals` to the list of provided languages. - Sets `removeWordsIfNoResults` to `allOptional`. - Adds a `natural_language` attribute to `ruleContexts` and `analyticsTags`. - */ - naturalLanguages?: Array; - - /** - * Assigns a rule context to the search query. [Rule contexts](https://www.algolia.com/doc/guides/managing-results/rules/rules-overview/how-to/customize-search-results-by-platform/#whats-a-context) are strings that you can use to trigger matching rules. - */ - ruleContexts?: Array; - - /** - * Impact that Personalization should have on this search. The higher this value is, the more Personalization determines the ranking compared to other factors. For more information, see [Understanding Personalization impact](https://www.algolia.com/doc/guides/personalization/personalizing-results/in-depth/configuring-personalization/#understanding-personalization-impact). - */ - personalizationImpact?: number; - - /** - * Unique pseudonymous or anonymous user identifier. This helps with analytics and click and conversion events. For more information, see [user token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/). - */ - userToken?: string; - - /** - * Whether the search response should include detailed ranking information. - */ - getRankingInfo?: boolean; - - /** - * Whether to take into account an index\'s synonyms for this search. - */ - synonyms?: boolean; - - /** - * Whether to include a `queryID` attribute in the response. The query ID is a unique identifier for a search query and is required for tracking [click and conversion events](https://www.algolia.com/guides/sending-events/getting-started/). - */ - clickAnalytics?: boolean; - - /** - * Whether this search will be included in Analytics. - */ - analytics?: boolean; - - /** - * Tags to apply to the query for [segmenting analytics data](https://www.algolia.com/doc/guides/search-analytics/guides/segments/). - */ - analyticsTags?: Array; - - /** - * Whether to include this search when calculating processing-time percentiles. - */ - percentileComputation?: boolean; - - /** - * Whether to enable A/B testing for this search. - */ - enableABTest?: boolean; -}; diff --git a/packages/client-composition/model/clientMethodProps.ts b/packages/client-composition/model/clientMethodProps.ts index 0be6e2177..05f28c4f1 100644 --- a/packages/client-composition/model/clientMethodProps.ts +++ b/packages/client-composition/model/clientMethodProps.ts @@ -2,12 +2,12 @@ import type { CompositionRulesBatchParams } from '../model/compositionRulesBatchParams'; +import type { RequestBody } from '../model/requestBody'; + import type { SearchCompositionRulesParams } from '../model/searchCompositionRulesParams'; import type { SearchForFacetValuesRequest } from '../model/searchForFacetValuesRequest'; -import type { SearchParams } from '../model/searchParams'; - /** * Properties for the `customDelete` method. */ @@ -125,25 +125,25 @@ export type ListCompositionsProps = { }; /** - * Properties for the `runSingleComposition` method. + * Properties for the `saveRules` method. */ -export type RunSingleCompositionProps = { +export type SaveRulesProps = { /** * Unique Composition ObjectID. */ compositionID: string; - searchParams?: SearchParams; + rules: CompositionRulesBatchParams; }; /** - * Properties for the `saveRules` method. + * Properties for the `search` method. */ -export type SaveRulesProps = { +export type SearchProps = { /** * Unique Composition ObjectID. */ compositionID: string; - rules: CompositionRulesBatchParams; + requestBody: RequestBody; }; /** diff --git a/packages/client-composition/model/index.ts b/packages/client-composition/model/index.ts index e04185aa8..d04cde911 100644 --- a/packages/client-composition/model/index.ts +++ b/packages/client-composition/model/index.ts @@ -11,8 +11,6 @@ export * from './banner'; export * from './bannerImage'; export * from './bannerImageUrl'; export * from './bannerLink'; -export * from './baseSearchParams'; -export * from './baseSearchParamsWithoutQuery'; export * from './baseSearchResponse'; export * from './batchCompositionAction'; export * from './batchParams'; @@ -48,7 +46,6 @@ export * from './highlightResultOption'; export * from './hit'; export * from './hitRankingInfo'; export * from './ignorePlurals'; -export * from './indexSettingsAsSearchParams'; export * from './injection'; export * from './insetsQueryParameters'; export * from './listCompositionsResponse'; @@ -56,11 +53,11 @@ export * from './main'; export * from './mainInjectionQueryParameters'; export * from './matchedGeoLocation'; export * from './matchLevel'; -export * from './mode'; export * from './multipleBatchRequest'; export * from './multipleBatchResponse'; export * from './numericFilters'; export * from './optionalFilters'; +export * from './params'; export * from './personalization'; export * from './queryType'; export * from './range'; @@ -72,7 +69,7 @@ export * from './redirectURL'; export * from './removeStopWords'; export * from './removeWordsIfNoResults'; export * from './renderingContent'; -export * from './reRankingApplyFilter'; +export * from './requestBody'; export * from './rulesBatchCompositionAction'; export * from './rulesMultipleBatchRequest'; export * from './rulesMultipleBatchResponse'; @@ -84,20 +81,13 @@ export * from './searchForFacetValuesResponse'; export * from './searchForFacetValuesResults'; export * from './searchHits'; export * from './searchPagination'; -export * from './searchParams'; -export * from './searchParamsObject'; -export * from './searchParamsQuery'; -export * from './searchParamsSearchParams'; -export * from './searchParamsString'; export * from './searchResponse'; export * from './searchResults'; export * from './searchResultsItem'; -export * from './semanticSearch'; export * from './snippetResult'; export * from './snippetResultOption'; export * from './sortRemainingBy'; export * from './supportedLanguage'; -export * from './tagFilters'; export * from './taskStatus'; export * from './timeRange'; export * from './typoTolerance'; diff --git a/packages/client-composition/model/indexSettingsAsSearchParams.ts b/packages/client-composition/model/indexSettingsAsSearchParams.ts deleted file mode 100644 index 99d1ddd57..000000000 --- a/packages/client-composition/model/indexSettingsAsSearchParams.ts +++ /dev/null @@ -1,205 +0,0 @@ -// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. - -import type { AdvancedSyntaxFeatures } from './advancedSyntaxFeatures'; -import type { AlternativesAsExact } from './alternativesAsExact'; -import type { Distinct } from './distinct'; -import type { ExactOnSingleWordQuery } from './exactOnSingleWordQuery'; -import type { IgnorePlurals } from './ignorePlurals'; -import type { Mode } from './mode'; -import type { QueryType } from './queryType'; -import type { ReRankingApplyFilter } from './reRankingApplyFilter'; -import type { RemoveStopWords } from './removeStopWords'; -import type { RemoveWordsIfNoResults } from './removeWordsIfNoResults'; -import type { RenderingContent } from './renderingContent'; -import type { SemanticSearch } from './semanticSearch'; -import type { SupportedLanguage } from './supportedLanguage'; -import type { TypoTolerance } from './typoTolerance'; - -export type IndexSettingsAsSearchParams = { - /** - * Attributes to include in the API response. To reduce the size of your response, you can retrieve only some of the attributes. Attribute names are case-sensitive. - `*` retrieves all attributes, except attributes included in the `customRanking` and `unretrievableAttributes` settings. - To retrieve all attributes except a specific one, prefix the attribute with a dash and combine it with the `*`: `[\"*\", \"-ATTRIBUTE\"]`. - The `objectID` attribute is always included. - */ - attributesToRetrieve?: Array; - - /** - * Determines the order in which Algolia returns your results. By default, each entry corresponds to a [ranking criteria](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/). The tie-breaking algorithm sequentially applies each criterion in the order they\'re specified. If you configure a replica index for [sorting by an attribute](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/how-to/sort-by-attribute/), you put the sorting attribute at the top of the list. **Modifiers** - `asc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in ascending order. - `desc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in descending order. Before you modify the default setting, you should test your changes in the dashboard, and by [A/B testing](https://www.algolia.com/doc/guides/ab-testing/what-is-ab-testing/). - */ - ranking?: Array; - - /** - * Attributes to use as [custom ranking](https://www.algolia.com/doc/guides/managing-results/must-do/custom-ranking/). Attribute names are case-sensitive. The custom ranking attributes decide which items are shown first if the other ranking criteria are equal. Records with missing values for your selected custom ranking attributes are always sorted last. Boolean attributes are sorted based on their alphabetical order. **Modifiers** - `asc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in ascending order. - `desc(\"ATTRIBUTE\")`. Sort the index by the values of an attribute, in descending order. If you use two or more custom ranking attributes, [reduce the precision](https://www.algolia.com/doc/guides/managing-results/must-do/custom-ranking/how-to/controlling-custom-ranking-metrics-precision/) of your first attributes, or the other attributes will never be applied. - */ - customRanking?: Array; - - /** - * Relevancy threshold below which less relevant results aren\'t included in the results. You can only set `relevancyStrictness` on [virtual replica indices](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/in-depth/replicas/#what-are-virtual-replicas). Use this setting to strike a balance between the relevance and number of returned results. - */ - relevancyStrictness?: number; - - /** - * Attributes to highlight. By default, all searchable attributes are highlighted. Use `*` to highlight all attributes or use an empty array `[]` to turn off highlighting. Attribute names are case-sensitive. With highlighting, strings that match the search query are surrounded by HTML tags defined by `highlightPreTag` and `highlightPostTag`. You can use this to visually highlight matching parts of a search query in your UI. For more information, see [Highlighting and snippeting](https://www.algolia.com/doc/guides/building-search-ui/ui-and-ux-patterns/highlighting-snippeting/js/). - */ - attributesToHighlight?: Array; - - /** - * Attributes for which to enable snippets. Attribute names are case-sensitive. Snippets provide additional context to matched words. If you enable snippets, they include 10 words, including the matched word. The matched word will also be wrapped by HTML tags for highlighting. You can adjust the number of words with the following notation: `ATTRIBUTE:NUMBER`, where `NUMBER` is the number of words to be extracted. - */ - attributesToSnippet?: Array; - - /** - * HTML tag to insert before the highlighted parts in all highlighted results and snippets. - */ - highlightPreTag?: string; - - /** - * HTML tag to insert after the highlighted parts in all highlighted results and snippets. - */ - highlightPostTag?: string; - - /** - * String used as an ellipsis indicator when a snippet is truncated. - */ - snippetEllipsisText?: string; - - /** - * Whether to restrict highlighting and snippeting to items that at least partially matched the search query. By default, all items are highlighted and snippeted. - */ - restrictHighlightAndSnippetArrays?: boolean; - - /** - * Number of hits per page. - */ - hitsPerPage?: number; - - /** - * Minimum number of characters a word in the search query must contain to accept matches with [one typo](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/in-depth/configuring-typo-tolerance/#configuring-word-length-for-typos). - */ - minWordSizefor1Typo?: number; - - /** - * Minimum number of characters a word in the search query must contain to accept matches with [two typos](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/in-depth/configuring-typo-tolerance/#configuring-word-length-for-typos). - */ - minWordSizefor2Typos?: number; - - typoTolerance?: TypoTolerance; - - /** - * Whether to allow typos on numbers in the search query. Turn off this setting to reduce the number of irrelevant matches when searching in large sets of similar numbers. - */ - allowTyposOnNumericTokens?: boolean; - - /** - * Attributes for which you want to turn off [typo tolerance](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/). Attribute names are case-sensitive. Returning only exact matches can help when: - [Searching in hyphenated attributes](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/how-to/how-to-search-in-hyphenated-attributes/). - Reducing the number of matches when you have too many. This can happen with attributes that are long blocks of text, such as product descriptions. Consider alternatives such as `disableTypoToleranceOnWords` or adding synonyms if your attributes have intentional unusual spellings that might look like typos. - */ - disableTypoToleranceOnAttributes?: Array; - - ignorePlurals?: IgnorePlurals; - - removeStopWords?: RemoveStopWords; - - /** - * Characters for which diacritics should be preserved. By default, Algolia removes diacritics from letters. For example, `é` becomes `e`. If this causes issues in your search, you can specify characters that should keep their diacritics. - */ - keepDiacriticsOnCharacters?: string; - - /** - * Languages for language-specific query processing steps such as plurals, stop-word removal, and word-detection dictionaries. This setting sets a default list of languages used by the `removeStopWords` and `ignorePlurals` settings. This setting also sets a dictionary for word detection in the logogram-based [CJK](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/#normalization-for-logogram-based-languages-cjk) languages. To support this, you must place the CJK language **first**. **You should always specify a query language.** If you don\'t specify an indexing language, the search engine uses all [supported languages](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/supported-languages/), or the languages you specified with the `ignorePlurals` or `removeStopWords` parameters. This can lead to unexpected search results. For more information, see [Language-specific configuration](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/). - */ - queryLanguages?: Array; - - /** - * Whether to split compound words in the query into their building blocks. For more information, see [Word segmentation](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words). Word segmentation is supported for these languages: German, Dutch, Finnish, Swedish, and Norwegian. Decompounding doesn\'t work for words with [non-spacing mark Unicode characters](https://www.charactercodes.net/category/non-spacing_mark). For example, `Gartenstühle` won\'t be decompounded if the `ü` consists of `u` (U+0075) and `◌̈` (U+0308). - */ - decompoundQuery?: boolean; - - /** - * Whether to enable rules. - */ - enableRules?: boolean; - - /** - * Whether to enable Personalization. - */ - enablePersonalization?: boolean; - - queryType?: QueryType; - - removeWordsIfNoResults?: RemoveWordsIfNoResults; - - mode?: Mode; - - semanticSearch?: SemanticSearch; - - /** - * Whether to support phrase matching and excluding words from search queries. Use the `advancedSyntaxFeatures` parameter to control which feature is supported. - */ - advancedSyntax?: boolean; - - /** - * Words that should be considered optional when found in the query. By default, records must match all words in the search query to be included in the search results. Adding optional words can help to increase the number of search results by running an additional search query that doesn\'t include the optional words. For example, if the search query is \"action video\" and \"video\" is an optional word, the search engine runs two queries. One for \"action video\" and one for \"action\". Records that match all words are ranked higher. For a search query with 4 or more words **and** all its words are optional, the number of matched words required for a record to be included in the search results increases for every 1,000 records: - If `optionalWords` has less than 10 words, the required number of matched words increases by 1: results 1 to 1,000 require 1 matched word, results 1,001 to 2000 need 2 matched words. - If `optionalWords` has 10 or more words, the number of required matched words increases by the number of optional words divided by 5 (rounded down). For example, with 18 optional words: results 1 to 1,000 require 1 matched word, results 1,001 to 2000 need 4 matched words. For more information, see [Optional words](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/empty-or-insufficient-results/#creating-a-list-of-optional-words). - */ - optionalWords?: Array; - - /** - * Searchable attributes for which you want to [turn off the Exact ranking criterion](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/override-search-engine-defaults/in-depth/adjust-exact-settings/#turn-off-exact-for-some-attributes). Attribute names are case-sensitive. This can be useful for attributes with long values, where the likelihood of an exact match is high, such as product descriptions. Turning off the Exact ranking criterion for these attributes favors exact matching on other attributes. This reduces the impact of individual attributes with a lot of content on ranking. - */ - disableExactOnAttributes?: Array; - - exactOnSingleWordQuery?: ExactOnSingleWordQuery; - - /** - * Determine which plurals and synonyms should be considered an exact matches. By default, Algolia treats singular and plural forms of a word, and single-word synonyms, as [exact](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#exact) matches when searching. For example: - \"swimsuit\" and \"swimsuits\" are treated the same - \"swimsuit\" and \"swimwear\" are treated the same (if they are [synonyms](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/adding-synonyms/#regular-synonyms)). - `ignorePlurals`. Plurals and similar declensions added by the `ignorePlurals` setting are considered exact matches. - `singleWordSynonym`. Single-word synonyms, such as \"NY\" = \"NYC\", are considered exact matches. - `multiWordsSynonym`. Multi-word synonyms, such as \"NY\" = \"New York\", are considered exact matches. - */ - alternativesAsExact?: Array; - - /** - * Advanced search syntax features you want to support. - `exactPhrase`. Phrases in quotes must match exactly. For example, `sparkly blue \"iPhone case\"` only returns records with the exact string \"iPhone case\". - `excludeWords`. Query words prefixed with a `-` must not occur in a record. For example, `search -engine` matches records that contain \"search\" but not \"engine\". This setting only has an effect if `advancedSyntax` is true. - */ - advancedSyntaxFeatures?: Array; - - distinct?: Distinct; - - /** - * Whether to replace a highlighted word with the matched synonym. By default, the original words are highlighted even if a synonym matches. For example, with `home` as a synonym for `house` and a search for `home`, records matching either \"home\" or \"house\" are included in the search results, and either \"home\" or \"house\" are highlighted. With `replaceSynonymsInHighlight` set to `true`, a search for `home` still matches the same records, but all occurrences of \"house\" are replaced by \"home\" in the highlighted response. - */ - replaceSynonymsInHighlight?: boolean; - - /** - * Minimum proximity score for two matching words. This adjusts the [Proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity) by equally scoring matches that are farther apart. For example, if `minProximity` is 2, neighboring matches and matches with one word between them would have the same score. - */ - minProximity?: number; - - /** - * Properties to include in the API response of `search` and `browse` requests. By default, all response properties are included. To reduce the response size, you can select, which attributes should be included. You can\'t exclude these properties: `message`, `warning`, `cursor`, `serverUsed`, `indexUsed`, `abTestVariantID`, `parsedQuery`, or any property triggered by the `getRankingInfo` parameter. Don\'t exclude properties that you might need in your search UI. - */ - responseFields?: Array; - - /** - * Maximum number of facet values to return when [searching for facet values](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#search-for-facet-values). - */ - maxFacetHits?: number; - - /** - * Maximum number of facet values to return for each facet. - */ - maxValuesPerFacet?: number; - - /** - * Order in which to retrieve facet values. - `count`. Facet values are retrieved by decreasing count. The count is the number of matching records containing this facet value. - `alpha`. Retrieve facet values alphabetically. This setting doesn\'t influence how facet values are displayed in your UI (see `renderingContent`). For more information, see [facet value display](https://www.algolia.com/doc/guides/building-search-ui/ui-and-ux-patterns/facet-display/js/). - */ - sortFacetValuesBy?: string; - - /** - * Whether the best matching attribute should be determined by minimum proximity. This setting only affects ranking if the Attribute ranking criterion comes before Proximity in the `ranking` setting. If true, the best matching attribute is selected based on the minimum proximity of multiple matches. Otherwise, the best matching attribute is determined by the order in the `searchableAttributes` setting. - */ - attributeCriteriaComputedByMinProximity?: boolean; - - renderingContent?: RenderingContent; - - /** - * Whether this search will use [Dynamic Re-Ranking](https://www.algolia.com/doc/guides/algolia-ai/re-ranking/). This setting only has an effect if you activated Dynamic Re-Ranking for this index in the Algolia dashboard. - */ - enableReRanking?: boolean; - - reRankingApplyFilter?: ReRankingApplyFilter | null; -}; diff --git a/packages/client-composition/model/mode.ts b/packages/client-composition/model/mode.ts deleted file mode 100644 index 36561b89e..000000000 --- a/packages/client-composition/model/mode.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. - -/** - * Search mode the index will use to query for results. This setting only applies to indices, for which Algolia enabled NeuralSearch for you. - */ -export type Mode = 'neuralSearch' | 'keywordSearch'; diff --git a/packages/client-composition/model/searchParamsSearchParams.ts b/packages/client-composition/model/params.ts similarity index 99% rename from packages/client-composition/model/searchParamsSearchParams.ts rename to packages/client-composition/model/params.ts index 5029ff478..3b75d5bd3 100644 --- a/packages/client-composition/model/searchParamsSearchParams.ts +++ b/packages/client-composition/model/params.ts @@ -7,7 +7,7 @@ import type { NumericFilters } from './numericFilters'; import type { OptionalFilters } from './optionalFilters'; import type { SupportedLanguage } from './supportedLanguage'; -export type SearchParamsSearchParams = { +export type Params = { /** * Search query. */ diff --git a/packages/client-composition/model/reRankingApplyFilter.ts b/packages/client-composition/model/reRankingApplyFilter.ts deleted file mode 100644 index 6d4bd8b9f..000000000 --- a/packages/client-composition/model/reRankingApplyFilter.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. - -/** - * Restrict [Dynamic Re-Ranking](https://www.algolia.com/doc/guides/algolia-ai/re-ranking/) to records that match these filters. - */ -export type ReRankingApplyFilter = Array | string; diff --git a/packages/client-composition/model/searchParamsQuery.ts b/packages/client-composition/model/requestBody.ts similarity index 67% rename from packages/client-composition/model/searchParamsQuery.ts rename to packages/client-composition/model/requestBody.ts index 9f1926f6c..3e936f9eb 100644 --- a/packages/client-composition/model/searchParamsQuery.ts +++ b/packages/client-composition/model/requestBody.ts @@ -1,8 +1,7 @@ // Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. -export type SearchParamsQuery = { - /** - * Search query. - */ - query?: string; +import type { Params } from './params'; + +export type RequestBody = { + params?: Params; }; diff --git a/packages/client-composition/model/searchForFacetValuesParams.ts b/packages/client-composition/model/searchForFacetValuesParams.ts index 9d398717f..8b57a2e7e 100644 --- a/packages/client-composition/model/searchForFacetValuesParams.ts +++ b/packages/client-composition/model/searchForFacetValuesParams.ts @@ -1,6 +1,6 @@ // Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. -import type { SearchParamsSearchParams } from './searchParamsSearchParams'; +import type { Params } from './params'; export type SearchForFacetValuesParams = { /** @@ -13,5 +13,5 @@ export type SearchForFacetValuesParams = { */ maxFacetHits?: number; - searchQuery?: SearchParamsSearchParams; + searchQuery?: Params; }; diff --git a/packages/client-composition/model/searchParams.ts b/packages/client-composition/model/searchParams.ts deleted file mode 100644 index 38bf1b3bd..000000000 --- a/packages/client-composition/model/searchParams.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. - -import type { SearchParamsObject } from './searchParamsObject'; -import type { SearchParamsString } from './searchParamsString'; - -export type SearchParams = SearchParamsString | SearchParamsObject; diff --git a/packages/client-composition/model/searchParamsObject.ts b/packages/client-composition/model/searchParamsObject.ts deleted file mode 100644 index b79d4f8f3..000000000 --- a/packages/client-composition/model/searchParamsObject.ts +++ /dev/null @@ -1,9 +0,0 @@ -// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. - -import type { BaseSearchParams } from './baseSearchParams'; -import type { IndexSettingsAsSearchParams } from './indexSettingsAsSearchParams'; - -/** - * Each parameter value, including the `query` must not be larger than 512 bytes. - */ -export type SearchParamsObject = BaseSearchParams & IndexSettingsAsSearchParams; diff --git a/packages/client-composition/model/searchParamsString.ts b/packages/client-composition/model/searchParamsString.ts deleted file mode 100644 index 78e0b5950..000000000 --- a/packages/client-composition/model/searchParamsString.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. - -/** - * Search parameters as query string. - */ -export type SearchParamsString = { - /** - * Search parameters as a URL-encoded query string. - */ - params?: string; -}; diff --git a/packages/client-composition/model/semanticSearch.ts b/packages/client-composition/model/semanticSearch.ts deleted file mode 100644 index 851ce7838..000000000 --- a/packages/client-composition/model/semanticSearch.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. - -/** - * Settings for the semantic search part of NeuralSearch. Only used when `mode` is `neuralSearch`. - */ -export type SemanticSearch = { - /** - * Indices from which to collect click and conversion events. If null, the current index and all its replicas are used. - */ - eventSources?: Array | null; -}; diff --git a/packages/client-composition/model/tagFilters.ts b/packages/client-composition/model/tagFilters.ts deleted file mode 100644 index b13f801cf..000000000 --- a/packages/client-composition/model/tagFilters.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. - -/** - * Filter the search by values of the special `_tags` attribute. **Prefer using the `filters` parameter, which supports all filter types and combinations with boolean operators.** Different from regular facets, `_tags` can only be used for filtering (including or excluding records). You won\'t get a facet count. The same combination and escaping rules apply as for `facetFilters`. - */ -export type TagFilters = Array | string; diff --git a/packages/client-composition/src/compositionClient.ts b/packages/client-composition/src/compositionClient.ts index dc300a9e9..f19c34dfe 100644 --- a/packages/client-composition/src/compositionClient.ts +++ b/packages/client-composition/src/compositionClient.ts @@ -17,12 +17,12 @@ import type { CompositionRule } from '../model/compositionRule'; import type { GetTaskResponse } from '../model/getTaskResponse'; import type { ListCompositionsResponse } from '../model/listCompositionsResponse'; import type { MultipleBatchResponse } from '../model/multipleBatchResponse'; + import type { RulesMultipleBatchResponse } from '../model/rulesMultipleBatchResponse'; import type { SearchCompositionRulesResponse } from '../model/searchCompositionRulesResponse'; import type { SearchForFacetValuesResponse } from '../model/searchForFacetValuesResponse'; - import type { SearchResponse } from '../model/searchResponse'; import type { @@ -34,10 +34,10 @@ import type { GetRuleProps, GetTaskProps, ListCompositionsProps, - RunSingleCompositionProps, SaveRulesProps, SearchCompositionRulesProps, SearchForFacetValuesProps, + SearchProps, WaitForCompositionTaskOptions, } from '../model/clientMethodProps'; @@ -478,24 +478,28 @@ export function createCompositionClient({ }, /** - * Runs a query on a single composition and returns matching results. + * Create or update or delete multiple composition rules. * * Required API Key ACLs: - * - search - * @param runSingleComposition - The runSingleComposition object. - * @param runSingleComposition.compositionID - Unique Composition ObjectID. - * @param runSingleComposition.searchParams - The searchParams object. + * - editSettings + * @param saveRules - The saveRules object. + * @param saveRules.compositionID - Unique Composition ObjectID. + * @param saveRules.rules - The rules object. * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions. */ - runSingleComposition( - { compositionID, searchParams }: RunSingleCompositionProps, + saveRules( + { compositionID, rules }: SaveRulesProps, requestOptions?: RequestOptions, - ): Promise> { + ): Promise { if (!compositionID) { - throw new Error('Parameter `compositionID` is required when calling `runSingleComposition`.'); + throw new Error('Parameter `compositionID` is required when calling `saveRules`.'); } - const requestPath = '/1/compositions/{compositionID}/run'.replace( + if (!rules) { + throw new Error('Parameter `rules` is required when calling `saveRules`.'); + } + + const requestPath = '/1/compositions/{compositionID}/rules/batch'.replace( '{compositionID}', encodeURIComponent(compositionID), ); @@ -507,37 +511,35 @@ export function createCompositionClient({ path: requestPath, queryParameters, headers, - data: searchParams ? searchParams : {}, - useReadTransporter: true, - cacheable: true, + data: rules, }; return transporter.request(request, requestOptions); }, /** - * Create or update or delete multiple composition rules. + * Runs a query on a single composition and returns matching results. * * Required API Key ACLs: - * - editSettings - * @param saveRules - The saveRules object. - * @param saveRules.compositionID - Unique Composition ObjectID. - * @param saveRules.rules - The rules object. + * - search + * @param search - The search object. + * @param search.compositionID - Unique Composition ObjectID. + * @param search.requestBody - The requestBody object. * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions. */ - saveRules( - { compositionID, rules }: SaveRulesProps, + search( + { compositionID, requestBody }: SearchProps, requestOptions?: RequestOptions, - ): Promise { + ): Promise> { if (!compositionID) { - throw new Error('Parameter `compositionID` is required when calling `saveRules`.'); + throw new Error('Parameter `compositionID` is required when calling `search`.'); } - if (!rules) { - throw new Error('Parameter `rules` is required when calling `saveRules`.'); + if (!requestBody) { + throw new Error('Parameter `requestBody` is required when calling `search`.'); } - const requestPath = '/1/compositions/{compositionID}/rules/batch'.replace( + const requestPath = '/1/compositions/{compositionID}/run'.replace( '{compositionID}', encodeURIComponent(compositionID), ); @@ -549,7 +551,9 @@ export function createCompositionClient({ path: requestPath, queryParameters, headers, - data: rules, + data: requestBody, + useReadTransporter: true, + cacheable: true, }; return transporter.request(request, requestOptions);