Skip to content

Commit 7b741fd

Browse files
algolia-botraed667
andcommitted
fix(specs): update Recommend maxRecommendations to 30 max [RECO-2361] (generated)
algolia/api-clients-automation#4483 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Raed <[email protected]>
1 parent 3a7bd14 commit 7b741fd

12 files changed

+12
-12
lines changed

packages/algoliasearch/lib/src/model/base_recommend_request.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class BaseRecommendRequest {
2828

2929
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3030
// minimum: 1
31-
// maximum: 1000
31+
// maximum: 30
3232
@JsonKey(name: r'maxRecommendations')
3333
final int? maxRecommendations;
3434

packages/algoliasearch/lib/src/model/bought_together_query.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ final class BoughtTogetherQuery {
3131

3232
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3333
// minimum: 1
34-
// maximum: 1000
34+
// maximum: 30
3535
@JsonKey(name: r'maxRecommendations')
3636
final int? maxRecommendations;
3737

packages/algoliasearch/lib/src/model/looking_similar_query.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ final class LookingSimilarQuery {
3333

3434
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3535
// minimum: 1
36-
// maximum: 1000
36+
// maximum: 30
3737
@JsonKey(name: r'maxRecommendations')
3838
final int? maxRecommendations;
3939

packages/algoliasearch/lib/src/model/related_query.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ final class RelatedQuery {
3333

3434
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3535
// minimum: 1
36-
// maximum: 1000
36+
// maximum: 30
3737
@JsonKey(name: r'maxRecommendations')
3838
final int? maxRecommendations;
3939

packages/algoliasearch/lib/src/model/trending_facets_query.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ final class TrendingFacetsQuery {
3333

3434
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3535
// minimum: 1
36-
// maximum: 1000
36+
// maximum: 30
3737
@JsonKey(name: r'maxRecommendations')
3838
final int? maxRecommendations;
3939

packages/algoliasearch/lib/src/model/trending_items_query.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ final class TrendingItemsQuery {
3434

3535
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3636
// minimum: 1
37-
// maximum: 1000
37+
// maximum: 30
3838
@JsonKey(name: r'maxRecommendations')
3939
final int? maxRecommendations;
4040

packages/client_recommend/lib/src/model/base_recommend_request.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class BaseRecommendRequest {
2828

2929
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3030
// minimum: 1
31-
// maximum: 1000
31+
// maximum: 30
3232
@JsonKey(name: r'maxRecommendations')
3333
final int? maxRecommendations;
3434

packages/client_recommend/lib/src/model/bought_together_query.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ final class BoughtTogetherQuery {
3131

3232
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3333
// minimum: 1
34-
// maximum: 1000
34+
// maximum: 30
3535
@JsonKey(name: r'maxRecommendations')
3636
final int? maxRecommendations;
3737

packages/client_recommend/lib/src/model/looking_similar_query.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ final class LookingSimilarQuery {
3333

3434
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3535
// minimum: 1
36-
// maximum: 1000
36+
// maximum: 30
3737
@JsonKey(name: r'maxRecommendations')
3838
final int? maxRecommendations;
3939

packages/client_recommend/lib/src/model/related_query.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ final class RelatedQuery {
3333

3434
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3535
// minimum: 1
36-
// maximum: 1000
36+
// maximum: 30
3737
@JsonKey(name: r'maxRecommendations')
3838
final int? maxRecommendations;
3939

packages/client_recommend/lib/src/model/trending_facets_query.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ final class TrendingFacetsQuery {
3333

3434
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3535
// minimum: 1
36-
// maximum: 1000
36+
// maximum: 30
3737
@JsonKey(name: r'maxRecommendations')
3838
final int? maxRecommendations;
3939

packages/client_recommend/lib/src/model/trending_items_query.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ final class TrendingItemsQuery {
3434

3535
/// Maximum number of recommendations to retrieve. By default, all recommendations are returned and no fallback request is made. Depending on the available recommendations and the other request parameters, the actual number of recommendations may be lower than this value.
3636
// minimum: 1
37-
// maximum: 1000
37+
// maximum: 30
3838
@JsonKey(name: r'maxRecommendations')
3939
final int? maxRecommendations;
4040

0 commit comments

Comments
 (0)