@algolia/composition 1.22.4 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/browser.d.ts +43 -15
- package/dist/builds/browser.js +3 -6
- package/dist/builds/browser.js.map +1 -1
- package/dist/builds/browser.min.js +1 -1
- package/dist/builds/browser.min.js.map +1 -1
- package/dist/builds/browser.umd.js +2 -2
- package/dist/builds/fetch.js +2 -5
- package/dist/builds/fetch.js.map +1 -1
- package/dist/builds/node.cjs +3 -6
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +3 -6
- package/dist/builds/node.js.map +1 -1
- package/dist/builds/worker.js +2 -5
- package/dist/builds/worker.js.map +1 -1
- package/dist/fetch.d.ts +43 -15
- package/dist/node.d.cts +43 -15
- package/dist/node.d.ts +43 -15
- package/dist/src/compositionClient.cjs +2 -5
- package/dist/src/compositionClient.cjs.map +1 -1
- package/dist/src/compositionClient.js +2 -5
- package/dist/src/compositionClient.js.map +1 -1
- package/dist/worker.d.ts +43 -15
- package/package.json +9 -9
package/dist/worker.d.ts
CHANGED
|
@@ -68,7 +68,7 @@ type BooleanString = 'true' | 'false';
|
|
|
68
68
|
type SupportedLanguage = 'af' | 'ar' | 'az' | 'bg' | 'bn' | 'ca' | 'cs' | 'cy' | 'da' | 'de' | 'el' | 'en' | 'eo' | 'es' | 'et' | 'eu' | 'fa' | 'fi' | 'fo' | 'fr' | 'ga' | 'gl' | 'he' | 'hi' | 'hu' | 'hy' | 'id' | 'is' | 'it' | 'ja' | 'ka' | 'kk' | 'ko' | 'ku' | 'ky' | 'lt' | 'lv' | 'mi' | 'mn' | 'mr' | 'ms' | 'mt' | 'nb' | 'nl' | 'no' | 'ns' | 'pl' | 'ps' | 'pt' | 'pt-br' | 'qu' | 'ro' | 'ru' | 'sk' | 'sq' | 'sv' | 'sw' | 'ta' | 'te' | 'th' | 'tl' | 'tn' | 'tr' | 'tt' | 'uk' | 'ur' | 'uz' | 'zh';
|
|
69
69
|
|
|
70
70
|
/**
|
|
71
|
-
* Treat singular, plurals, and other forms of declensions as equivalent.
|
|
71
|
+
* Treat singular, plurals, and other forms of declensions as equivalent. Only use this feature for the languages used in your index.
|
|
72
72
|
*/
|
|
73
73
|
type IgnorePlurals = Array<SupportedLanguage> | BooleanString | boolean;
|
|
74
74
|
|
|
@@ -78,12 +78,12 @@ type IgnorePlurals = Array<SupportedLanguage> | BooleanString | boolean;
|
|
|
78
78
|
type NumericFilters = Array<NumericFilters> | string;
|
|
79
79
|
|
|
80
80
|
/**
|
|
81
|
-
* Filters to promote or demote records in the search results. Optional filters work like facet filters, but they don\'t exclude records from the search results. Records that match the optional filter rank before records that don\'t match. If you\'re using a negative filter `facet:-value`, matching records rank after records that don\'t match. - Optional filters
|
|
81
|
+
* Filters to promote or demote records in the search results. Optional filters work like facet filters, but they don\'t exclude records from the search results. Records that match the optional filter rank before records that don\'t match. If you\'re using a negative filter `facet:-value`, matching records rank after records that don\'t match. - Optional filters are applied _after_ sort-by attributes. - Optional filters are applied _before_ custom ranking attributes (in the default [ranking](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria)). - Optional filters don\'t work with numeric attributes. - On virtual replicas, optional filters are applied _after_ the replica\'s [relevant sort](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/in-depth/relevant-sort).
|
|
82
82
|
*/
|
|
83
83
|
type OptionalFilters = Array<OptionalFilters> | string;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
* 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
|
|
86
|
+
* 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 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 optional, 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 fewer 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 2,000 need 2 matched words. - If `optionalWords` has 10 or more words, the required number of matched words increases by the number of optional words divided by 5 (rounded down). Example: with 18 optional words, results 1 to 1,000 require 1 matched word; results 1,001 to 2,000 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).
|
|
87
87
|
*/
|
|
88
88
|
type OptionalWords = string | Array<string>;
|
|
89
89
|
|
|
@@ -93,7 +93,7 @@ type OptionalWords = string | Array<string>;
|
|
|
93
93
|
type QueryType = 'prefixLast' | 'prefixAll' | 'prefixNone';
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
|
-
* Removes stop words from the search query. Stop words are common words like articles, conjunctions, prepositions, or pronouns that have little or no meaning on their own. In English, \"the\", \"a\", or \"and\" are stop words.
|
|
96
|
+
* Removes stop words from the search query. Stop words are common words like articles, conjunctions, prepositions, or pronouns that have little or no meaning on their own. In English, \"the\", \"a\", or \"and\" are stop words. Only use this feature for the languages used in your index.
|
|
97
97
|
*/
|
|
98
98
|
type RemoveStopWords = Array<SupportedLanguage> | boolean;
|
|
99
99
|
|
|
@@ -185,7 +185,7 @@ type BaseInjectionQueryParameters = {
|
|
|
185
185
|
exactOnSingleWordQuery?: ExactOnSingleWordQuery | undefined;
|
|
186
186
|
facetFilters?: FacetFilters | undefined;
|
|
187
187
|
/**
|
|
188
|
-
* Filter expression to only include items that match the filter criteria in the response. You can use these filter expressions: - **Numeric filters.** `<facet> <op> <number>`, where `<op>` is one of `<`, `<=`, `=`, `!=`, `>`, `>=`. - **Ranges.** `<facet>:<lower> TO <upper
|
|
188
|
+
* Filter expression to only include items that match the filter criteria in the response. You can use these filter expressions: - **Numeric filters.** `<facet> <op> <number>`, where `<op>` is one of `<`, `<=`, `=`, `!=`, `>`, `>=`. - **Ranges.** `<facet>:<lower> TO <upper>`, where `<lower>` and `<upper>` are the lower and upper limits of the range (inclusive). - **Facet filters.** `<facet>:<value>`, where `<facet>` is a facet attribute (case-sensitive) and `<value>` a facet value. - **Tag filters.** `_tags:<value>` or just `<value>` (case-sensitive). - **Boolean filters.** `<facet>: 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 if the facet attribute name or facet value contains 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).
|
|
189
189
|
*/
|
|
190
190
|
filters?: string | undefined;
|
|
191
191
|
/**
|
|
@@ -233,7 +233,7 @@ type BaseInjectionQueryParameters = {
|
|
|
233
233
|
*/
|
|
234
234
|
personalizationImpact?: number | undefined;
|
|
235
235
|
/**
|
|
236
|
-
* Languages for language-specific query processing steps such as plurals, stop-word removal, and word-detection dictionaries
|
|
236
|
+
* 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, place the CJK language **first**. **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).
|
|
237
237
|
*/
|
|
238
238
|
queryLanguages?: Array<SupportedLanguage> | undefined;
|
|
239
239
|
queryType?: QueryType | undefined;
|
|
@@ -343,10 +343,38 @@ type Injection = {
|
|
|
343
343
|
deduplication?: Deduplication | undefined;
|
|
344
344
|
};
|
|
345
345
|
|
|
346
|
-
|
|
346
|
+
/**
|
|
347
|
+
* An object containing an `injection` behavior.
|
|
348
|
+
*/
|
|
349
|
+
type CompositionInjectionBehavior = {
|
|
347
350
|
injection: Injection;
|
|
348
351
|
};
|
|
349
352
|
|
|
353
|
+
type Multifeed = {
|
|
354
|
+
/**
|
|
355
|
+
* A key-value store of Feed ID to Feed. Currently, the only supported Feed type is an Injection.
|
|
356
|
+
*/
|
|
357
|
+
feeds: {
|
|
358
|
+
[key: string]: Injection;
|
|
359
|
+
};
|
|
360
|
+
/**
|
|
361
|
+
* A list of Feed IDs that specifies the order in which to order the results in the response. The IDs should be a subset of those in the Feeds object, and only those specified will be processed. When this field is not set, all Feeds are processed and returned with a default ordering.
|
|
362
|
+
*/
|
|
363
|
+
feedsOrder?: Array<string> | undefined;
|
|
364
|
+
};
|
|
365
|
+
|
|
366
|
+
/**
|
|
367
|
+
* An object containing a `multifeed` behavior.
|
|
368
|
+
*/
|
|
369
|
+
type CompositionMultifeedBehavior = {
|
|
370
|
+
multifeed: Multifeed;
|
|
371
|
+
};
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* An object containing either an `injection` or `multifeed` behavior schema, but not both.
|
|
375
|
+
*/
|
|
376
|
+
type CompositionBehavior = CompositionInjectionBehavior | CompositionMultifeedBehavior;
|
|
377
|
+
|
|
350
378
|
type Composition = {
|
|
351
379
|
/**
|
|
352
380
|
* Composition unique identifier.
|
|
@@ -427,11 +455,11 @@ type Condition = {
|
|
|
427
455
|
|
|
428
456
|
type TimeRange = {
|
|
429
457
|
/**
|
|
430
|
-
*
|
|
458
|
+
* Timestamp when the rule should start to be active, measured in seconds since the Unix epoch.
|
|
431
459
|
*/
|
|
432
460
|
from?: number | undefined;
|
|
433
461
|
/**
|
|
434
|
-
*
|
|
462
|
+
* Timestamp when the rule should stop to be active, measured in seconds since the Unix epoch.
|
|
435
463
|
*/
|
|
436
464
|
until?: number | undefined;
|
|
437
465
|
};
|
|
@@ -444,7 +472,7 @@ type CompositionRule = {
|
|
|
444
472
|
/**
|
|
445
473
|
* Conditions that trigger a composition rule.
|
|
446
474
|
*/
|
|
447
|
-
conditions
|
|
475
|
+
conditions?: Array<Condition> | undefined;
|
|
448
476
|
consequence: CompositionRuleConsequence;
|
|
449
477
|
/**
|
|
450
478
|
* Description of the rule\'s purpose to help you distinguish between different rules.
|
|
@@ -1235,7 +1263,7 @@ type Params = {
|
|
|
1235
1263
|
*/
|
|
1236
1264
|
facets?: Array<string> | undefined;
|
|
1237
1265
|
/**
|
|
1238
|
-
* Filter expression to only include items that match the filter criteria in the response. You can use these filter expressions: - **Numeric filters.** `<facet> <op> <number>`, where `<op>` is one of `<`, `<=`, `=`, `!=`, `>`, `>=`. - **Ranges.** `<facet>:<lower> TO <upper
|
|
1266
|
+
* Filter expression to only include items that match the filter criteria in the response. You can use these filter expressions: - **Numeric filters.** `<facet> <op> <number>`, where `<op>` is one of `<`, `<=`, `=`, `!=`, `>`, `>=`. - **Ranges.** `<facet>:<lower> TO <upper>`, where `<lower>` and `<upper>` are the lower and upper limits of the range (inclusive). - **Facet filters.** `<facet>:<value>`, where `<facet>` is a facet attribute (case-sensitive) and `<value>` a facet value. - **Tag filters.** `_tags:<value>` or just `<value>` (case-sensitive). - **Boolean filters.** `<facet>: 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 if the facet attribute name or facet value contains 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).
|
|
1239
1267
|
*/
|
|
1240
1268
|
filters?: string | undefined;
|
|
1241
1269
|
/**
|
|
@@ -1276,7 +1304,7 @@ type Params = {
|
|
|
1276
1304
|
*/
|
|
1277
1305
|
query?: string | undefined;
|
|
1278
1306
|
/**
|
|
1279
|
-
* Languages for language-specific query processing steps such as plurals, stop-word removal, and word-detection dictionaries
|
|
1307
|
+
* 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, place the CJK language **first**. **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).
|
|
1280
1308
|
*/
|
|
1281
1309
|
queryLanguages?: Array<SupportedLanguage> | undefined;
|
|
1282
1310
|
/**
|
|
@@ -1581,7 +1609,7 @@ type WaitForCompositionTaskOptions = {
|
|
|
1581
1609
|
compositionID: string;
|
|
1582
1610
|
};
|
|
1583
1611
|
|
|
1584
|
-
declare const apiClientVersion = "1.
|
|
1612
|
+
declare const apiClientVersion = "1.23.0";
|
|
1585
1613
|
declare function createCompositionClient({ appId: appIdOption, apiKey: apiKeyOption, authMode, algoliaAgents, ...options }: CreateClientOptions): {
|
|
1586
1614
|
transporter: _algolia_client_common.Transporter;
|
|
1587
1615
|
/**
|
|
@@ -1811,7 +1839,7 @@ declare function createCompositionClient({ appId: appIdOption, apiKey: apiKeyOpt
|
|
|
1811
1839
|
*/
|
|
1812
1840
|
searchForFacetValues({ compositionID, facetName, searchForFacetValuesRequest }: SearchForFacetValuesProps, requestOptions?: RequestOptions): Promise<SearchForFacetValuesResponse>;
|
|
1813
1841
|
/**
|
|
1814
|
-
* Updates the \"sortingStrategy\" field of an existing composition. This endpoint
|
|
1842
|
+
* Updates the \"sortingStrategy\" field of an existing composition. This endpoint lets you create a new sorting strategy mapping or replace the configured one. The provided sorting indices must be associated indices or replicas of the main targeted index. This endpoint can\'t validate whether the sort index is related to the composition\'s main index. Validation fails at runtime if the index you updated isn\'t related. The update is applied to the specified composition within the current Algolia application and returns a taskID that can be used to track the operation’s completion.
|
|
1815
1843
|
*
|
|
1816
1844
|
* Required API Key ACLs:
|
|
1817
1845
|
* - editSettings
|
|
@@ -1834,4 +1862,4 @@ type CompositionClient = ReturnType<typeof createCompositionClient>;
|
|
|
1834
1862
|
|
|
1835
1863
|
declare function compositionClient(appId: string, apiKey: string, options?: ClientOptions | undefined): CompositionClient;
|
|
1836
1864
|
|
|
1837
|
-
export { type Action, type AdvancedSyntaxFeatures, type AlternativesAsExact, type Anchoring, type AroundPrecision, type AroundRadius, type AroundRadiusAll, type Banner, type BannerImage, type BannerImageUrl, type BannerLink, type BaseInjectionQueryParameters, type BaseSearchResponse, type BatchCompositionAction, type BatchParams, type BooleanString, type Composition, type CompositionBaseSearchResponse, type CompositionBehavior, type CompositionClient, type CompositionIdRankingInfo, type CompositionRankingInfo, type CompositionRule, type CompositionRuleConsequence, type CompositionRulesBatchParams, type CompositionRunAppliedRules, type CompositionRunSearchResponse, type CompositionSource, type CompositionSourceSearch, type CompositionsSearchResponse, type Condition, type CustomDeleteProps, type CustomGetProps, type CustomPostProps, type CustomPutProps, type DedupPositioning, type Deduplication, type DeleteCompositionAction, type DeleteCompositionProps, type DeleteCompositionRuleAction, type DeleteCompositionRuleProps, type Distinct, type ErrorBase, type ExactOnSingleWordQuery, type Exhaustive, type External, type ExternalInjectedItem, type ExternalInjection, type ExternalOrdering, type ExternalSource, type FacetFilters, type FacetHits, type FacetOrdering, type FacetStats, type GetCompositionProps, type GetRuleProps, type GetTaskProps, type GetTaskResponse, type HighlightResult, type HighlightResultOption, type Hit, type HitMetadata, type HitRankingInfo, type IgnorePlurals, type IndexSettingsFacets, type InjectedItem, type InjectedItemHitsMetadata, type InjectedItemMetadata, type InjectedItemSource, type Injection, type InsideBoundingBox, type ListCompositionsProps, type ListCompositionsResponse, type Main, type MainInjectionQueryParameters, type MatchLevel, type MatchedGeoLocation, type MultipleBatchRequest, type MultipleBatchResponse, type NumericFilters, type OptionalFilters, type OptionalWords, type Params, type Personalization, type PutCompositionProps, type PutCompositionRuleProps, type QueryType, type Range, type RankingInfo, type Redirect, type RedirectRuleIndexData, type RedirectRuleIndexMetadata, type RedirectURL, type RemoveStopWords, type RemoveWordsIfNoResults, type RenderingContent, type RequestBody, type ResultsCompositionInfoResponse, type ResultsCompositionsResponse, type ResultsInjectedItemAppliedRulesInfoResponse, type ResultsInjectedItemInfoResponse, type RulesBatchCompositionAction, type RulesMultipleBatchRequest, type RulesMultipleBatchResponse, type SaveRulesProps, type Search, type SearchCompositionRulesParams, type SearchCompositionRulesProps, type SearchCompositionRulesResponse, type SearchFields, type SearchForFacetValuesParams, type SearchForFacetValuesProps, type SearchForFacetValuesRequest, type SearchForFacetValuesResponse, type SearchForFacetValuesResults, type SearchProps, type SearchResponse, type SearchResults, type SearchResultsItem, type SearchSource, type SnippetResult, type SnippetResultOption, type SortRemainingBy, type SupportedLanguage, type TaskIDResponse, type TaskStatus, type TimeRange, type TypoTolerance, type TypoToleranceEnum, type UpdateSortingStrategyCompositionProps, type Value, type WaitForCompositionTaskOptions, type Widgets, apiClientVersion, compositionClient };
|
|
1865
|
+
export { type Action, type AdvancedSyntaxFeatures, type AlternativesAsExact, type Anchoring, type AroundPrecision, type AroundRadius, type AroundRadiusAll, type Banner, type BannerImage, type BannerImageUrl, type BannerLink, type BaseInjectionQueryParameters, type BaseSearchResponse, type BatchCompositionAction, type BatchParams, type BooleanString, type Composition, type CompositionBaseSearchResponse, type CompositionBehavior, type CompositionClient, type CompositionIdRankingInfo, type CompositionInjectionBehavior, type CompositionMultifeedBehavior, type CompositionRankingInfo, type CompositionRule, type CompositionRuleConsequence, type CompositionRulesBatchParams, type CompositionRunAppliedRules, type CompositionRunSearchResponse, type CompositionSource, type CompositionSourceSearch, type CompositionsSearchResponse, type Condition, type CustomDeleteProps, type CustomGetProps, type CustomPostProps, type CustomPutProps, type DedupPositioning, type Deduplication, type DeleteCompositionAction, type DeleteCompositionProps, type DeleteCompositionRuleAction, type DeleteCompositionRuleProps, type Distinct, type ErrorBase, type ExactOnSingleWordQuery, type Exhaustive, type External, type ExternalInjectedItem, type ExternalInjection, type ExternalOrdering, type ExternalSource, type FacetFilters, type FacetHits, type FacetOrdering, type FacetStats, type GetCompositionProps, type GetRuleProps, type GetTaskProps, type GetTaskResponse, type HighlightResult, type HighlightResultOption, type Hit, type HitMetadata, type HitRankingInfo, type IgnorePlurals, type IndexSettingsFacets, type InjectedItem, type InjectedItemHitsMetadata, type InjectedItemMetadata, type InjectedItemSource, type Injection, type InsideBoundingBox, type ListCompositionsProps, type ListCompositionsResponse, type Main, type MainInjectionQueryParameters, type MatchLevel, type MatchedGeoLocation, type Multifeed, type MultipleBatchRequest, type MultipleBatchResponse, type NumericFilters, type OptionalFilters, type OptionalWords, type Params, type Personalization, type PutCompositionProps, type PutCompositionRuleProps, type QueryType, type Range, type RankingInfo, type Redirect, type RedirectRuleIndexData, type RedirectRuleIndexMetadata, type RedirectURL, type RemoveStopWords, type RemoveWordsIfNoResults, type RenderingContent, type RequestBody, type ResultsCompositionInfoResponse, type ResultsCompositionsResponse, type ResultsInjectedItemAppliedRulesInfoResponse, type ResultsInjectedItemInfoResponse, type RulesBatchCompositionAction, type RulesMultipleBatchRequest, type RulesMultipleBatchResponse, type SaveRulesProps, type Search, type SearchCompositionRulesParams, type SearchCompositionRulesProps, type SearchCompositionRulesResponse, type SearchFields, type SearchForFacetValuesParams, type SearchForFacetValuesProps, type SearchForFacetValuesRequest, type SearchForFacetValuesResponse, type SearchForFacetValuesResults, type SearchProps, type SearchResponse, type SearchResults, type SearchResultsItem, type SearchSource, type SnippetResult, type SnippetResultOption, type SortRemainingBy, type SupportedLanguage, type TaskIDResponse, type TaskStatus, type TimeRange, type TypoTolerance, type TypoToleranceEnum, type UpdateSortingStrategyCompositionProps, type Value, type WaitForCompositionTaskOptions, type Widgets, apiClientVersion, compositionClient };
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.23.0",
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
|
|
@@ -49,21 +49,21 @@
|
|
|
49
49
|
"index.d.ts"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@algolia/client-common": "5.
|
|
53
|
-
"@algolia/requester-browser-xhr": "5.
|
|
54
|
-
"@algolia/requester-fetch": "5.
|
|
55
|
-
"@algolia/requester-node-http": "5.
|
|
52
|
+
"@algolia/client-common": "5.48.1",
|
|
53
|
+
"@algolia/requester-browser-xhr": "5.48.1",
|
|
54
|
+
"@algolia/requester-fetch": "5.48.1",
|
|
55
|
+
"@algolia/requester-node-http": "5.48.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@arethetypeswrong/cli": "0.18.2",
|
|
59
|
-
"@types/node": "25.0
|
|
60
|
-
"publint": "0.3.
|
|
61
|
-
"rollup": "4.
|
|
59
|
+
"@types/node": "25.1.0",
|
|
60
|
+
"publint": "0.3.17",
|
|
61
|
+
"rollup": "4.57.1",
|
|
62
62
|
"tsup": "8.5.1",
|
|
63
63
|
"typescript": "5.9.3"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
66
|
"node": ">= 14.0.0"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "4bbb3ce8d4cb7b7ad454352d4835cffead91ee30"
|
|
69
69
|
}
|