Skip to content

Commit 92abf7a

Browse files
algolia-botmillotp
andcommitted
fix(specs): proper title with linter (generated)
algolia/api-clients-automation#3444 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent 46ab973 commit 92abf7a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+157
-119
lines changed

packages/algoliasearch/builds/models.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
AlternativesAsExact,
77
Anchoring,
88
AroundPrecision,
9-
AroundPrecisionFromValueInner,
109
AroundRadius,
1110
AroundRadiusAll,
1211
AutomaticFacetFilter,
@@ -50,11 +49,12 @@ import {
5049
PromoteObjectID,
5150
PromoteObjectIDs,
5251
QueryType,
52+
Range,
5353
RankingInfo,
5454
ReRankingApplyFilter,
5555
Redirect,
5656
RedirectRuleIndexMetadata,
57-
RedirectRuleIndexMetadataData,
57+
RedirectRuleIndexData,
5858
RedirectURL,
5959
RemoveStopWords,
6060
RemoveWordsIfNoResults,
@@ -92,7 +92,6 @@ export {
9292
AlternativesAsExact,
9393
Anchoring,
9494
AroundPrecision,
95-
AroundPrecisionFromValueInner,
9695
AroundRadius,
9796
AroundRadiusAll,
9897
AutomaticFacetFilter,
@@ -136,11 +135,12 @@ export {
136135
PromoteObjectID,
137136
PromoteObjectIDs,
138137
QueryType,
138+
Range,
139139
RankingInfo,
140140
ReRankingApplyFilter,
141141
Redirect,
142142
RedirectRuleIndexMetadata,
143-
RedirectRuleIndexMetadataData,
143+
RedirectRuleIndexData,
144144
RedirectURL,
145145
RemoveStopWords,
146146
RemoveWordsIfNoResults,
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// 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.
22

3-
import type { AroundPrecisionFromValueInner } from './aroundPrecisionFromValueInner';
3+
import type { Range } from './range';
44

55
/**
66
* Precision of a coordinate-based search in meters to group results with similar distances. The Geo ranking criterion considers all matches within the same range of distances to be equal.
77
*/
8-
export type AroundPrecision = AroundPrecisionFromValueInner[] | number;
8+
export type AroundPrecision = Range[] | number;

packages/algoliasearch/lite/model/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export * from './advancedSyntaxFeatures';
55
export * from './alternativesAsExact';
66
export * from './apiKey';
77
export * from './aroundPrecision';
8-
export * from './aroundPrecisionFromValueInner';
98
export * from './aroundRadius';
109
export * from './aroundRadiusAll';
1110
export * from './automaticFacetFilter';
@@ -58,6 +57,7 @@ export * from './optionalFilters';
5857
export * from './params';
5958
export * from './personalization';
6059
export * from './queryType';
60+
export * from './range';
6161
export * from './rankingInfo';
6262
export * from './reRankingApplyFilter';
6363
export * from './recommendHit';
@@ -69,8 +69,8 @@ export * from './recommendedForYou';
6969
export * from './recommendedForYouModel';
7070
export * from './recommendedForYouQuery';
7171
export * from './redirect';
72+
export * from './redirectRuleIndexData';
7273
export * from './redirectRuleIndexMetadata';
73-
export * from './redirectRuleIndexMetadataData';
7474
export * from './redirectURL';
7575
export * from './relatedModel';
7676
export * from './relatedProducts';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Range object with lower and upper values in meters to define custom ranges.
55
*/
6-
export type AroundPrecisionFromValueInner = {
6+
export type Range = {
77
/**
88
* Lower boundary of a range in meters. The Geo ranking criterion considers all records within the range to be equal.
99
*/

packages/client-search/model/redirectRuleIndexMetadataData.ts renamed to packages/algoliasearch/lite/model/redirectRuleIndexData.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
/**
44
* Redirect rule data.
55
*/
6-
export type RedirectRuleIndexMetadataData = {
6+
export type RedirectRuleIndexData = {
77
ruleObjectID: string;
88
};

packages/algoliasearch/lite/model/redirectRuleIndexMetadata.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// 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.
22

3-
import type { RedirectRuleIndexMetadataData } from './redirectRuleIndexMetadataData';
3+
import type { RedirectRuleIndexData } from './redirectRuleIndexData';
44

55
export type RedirectRuleIndexMetadata = {
66
/**
@@ -23,5 +23,5 @@ export type RedirectRuleIndexMetadata = {
2323
*/
2424
succeed: boolean;
2525

26-
data: RedirectRuleIndexMetadataData;
26+
data: RedirectRuleIndexData;
2727
};

packages/client-abtesting/model/filterEffectsEmptySearch.ts renamed to packages/client-abtesting/model/emptySearchFilter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Empty searches removed from the A/B test as a result of configuration settings.
55
*/
6-
export type FilterEffectsEmptySearch = {
6+
export type EmptySearchFilter = {
77
/**
88
* Number of users removed from the A/B test.
99
*/
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// 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.
22

3-
import type { FilterEffectsEmptySearch } from './filterEffectsEmptySearch';
4-
import type { FilterEffectsOutliers } from './filterEffectsOutliers';
3+
import type { EmptySearchFilter } from './emptySearchFilter';
4+
import type { OutliersFilter } from './outliersFilter';
55

66
/**
77
* A/B test filter effects resulting from configuration settings.
88
*/
99
export type FilterEffects = {
10-
outliers?: FilterEffectsOutliers;
10+
outliers?: OutliersFilter;
1111

12-
emptySearch?: FilterEffectsEmptySearch;
12+
emptySearch?: EmptySearchFilter;
1313
};

packages/client-abtesting/model/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ export * from './currency';
1111
export * from './customSearchParams';
1212
export * from './effect';
1313
export * from './emptySearch';
14+
export * from './emptySearchFilter';
1415
export * from './errorBase';
1516
export * from './filterEffects';
16-
export * from './filterEffectsEmptySearch';
17-
export * from './filterEffectsOutliers';
1817
export * from './listABTestsResponse';
1918
export * from './minimumDetectableEffect';
2019
export * from './outliers';
20+
export * from './outliersFilter';
2121
export * from './status';
2222
export * from './variant';
2323
export * from './clientMethodProps';

packages/client-abtesting/model/filterEffectsOutliers.ts renamed to packages/client-abtesting/model/outliersFilter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Outliers removed from the A/B test as a result of configuration settings.
55
*/
6-
export type FilterEffectsOutliers = {
6+
export type OutliersFilter = {
77
/**
88
* Number of users removed from the A/B test.
99
*/

0 commit comments

Comments
 (0)