Skip to content

Commit

Permalink
chore: generated code for commit 629ef2c8. [skip ci]
Browse files Browse the repository at this point in the history
algolia/api-clients-automation@629ef2c

Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com>
Co-authored-by: Mouaad Aallam <mouaad.aallam@algolia.com>
  • Loading branch information
algolia-bot and aallam committed Oct 9, 2023
1 parent 4c1cfe8 commit 9931a90
Show file tree
Hide file tree
Showing 40 changed files with 160 additions and 80 deletions.
4 changes: 2 additions & 2 deletions packages/algoliasearch/lib/src/model/base_search_params.dart
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ final class BaseSearchParams {

/// Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insideBoundingBox')
final List<double>? insideBoundingBox;
final List<List<double>>? insideBoundingBox;

/// Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insidePolygon')
final List<double>? insidePolygon;
final List<List<double>>? insidePolygon;

/// Changes the default values of parameters that work best for a natural language query, such as `ignorePlurals`, `removeStopWords`, `removeWordsIfNoResults`, `analyticsTags`, and `ruleContexts`. These parameters work well together when the query consists of fuller natural language strings instead of keywords, for example when processing voice search queries.
@JsonKey(name: r'naturalLanguages')
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ final class BaseSearchParamsWithoutQuery {

/// Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insideBoundingBox')
final List<double>? insideBoundingBox;
final List<List<double>>? insideBoundingBox;

/// Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insidePolygon')
final List<double>? insidePolygon;
final List<List<double>>? insidePolygon;

/// Changes the default values of parameters that work best for a natural language query, such as `ignorePlurals`, `removeStopWords`, `removeWordsIfNoResults`, `analyticsTags`, and `ruleContexts`. These parameters work well together when the query consists of fuller natural language strings instead of keywords, for example when processing voice search queries.
@JsonKey(name: r'naturalLanguages')
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,11 @@ final class BrowseParamsObject {

/// Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insideBoundingBox')
final List<double>? insideBoundingBox;
final List<List<double>>? insideBoundingBox;

/// Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insidePolygon')
final List<double>? insidePolygon;
final List<List<double>>? insidePolygon;

/// Changes the default values of parameters that work best for a natural language query, such as `ignorePlurals`, `removeStopWords`, `removeWordsIfNoResults`, `analyticsTags`, and `ruleContexts`. These parameters work well together when the query consists of fuller natural language strings instead of keywords, for example when processing voice search queries.
@JsonKey(name: r'naturalLanguages')
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/algoliasearch/lib/src/model/consequence_params.dart
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,11 @@ final class ConsequenceParams {

/// Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insideBoundingBox')
final List<double>? insideBoundingBox;
final List<List<double>>? insideBoundingBox;

/// Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insidePolygon')
final List<double>? insidePolygon;
final List<List<double>>? insidePolygon;

/// Changes the default values of parameters that work best for a natural language query, such as `ignorePlurals`, `removeStopWords`, `removeWordsIfNoResults`, `analyticsTags`, and `ruleContexts`. These parameters work well together when the query consists of fuller natural language strings instead of keywords, for example when processing voice search queries.
@JsonKey(name: r'naturalLanguages')
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/algoliasearch/lib/src/model/delete_by_params.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ final class DeleteByParams {

/// Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insideBoundingBox')
final List<double>? insideBoundingBox;
final List<List<double>>? insideBoundingBox;

/// Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insidePolygon')
final List<double>? insidePolygon;
final List<List<double>>? insidePolygon;

@override
bool operator ==(Object other) =>
Expand Down
8 changes: 6 additions & 2 deletions packages/algoliasearch/lib/src/model/delete_by_params.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/algoliasearch/lib/src/model/search_for_facets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,11 @@ final class SearchForFacets {

/// Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insideBoundingBox')
final List<double>? insideBoundingBox;
final List<List<double>>? insideBoundingBox;

/// Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insidePolygon')
final List<double>? insidePolygon;
final List<List<double>>? insidePolygon;

/// Changes the default values of parameters that work best for a natural language query, such as `ignorePlurals`, `removeStopWords`, `removeWordsIfNoResults`, `analyticsTags`, and `ruleContexts`. These parameters work well together when the query consists of fuller natural language strings instead of keywords, for example when processing voice search queries.
@JsonKey(name: r'naturalLanguages')
Expand Down
8 changes: 6 additions & 2 deletions packages/algoliasearch/lib/src/model/search_for_facets.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/algoliasearch/lib/src/model/search_for_hits.dart
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,11 @@ final class SearchForHits {

/// Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insideBoundingBox')
final List<double>? insideBoundingBox;
final List<List<double>>? insideBoundingBox;

/// Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insidePolygon')
final List<double>? insidePolygon;
final List<List<double>>? insidePolygon;

/// Changes the default values of parameters that work best for a natural language query, such as `ignorePlurals`, `removeStopWords`, `removeWordsIfNoResults`, `analyticsTags`, and `ruleContexts`. These parameters work well together when the query consists of fuller natural language strings instead of keywords, for example when processing voice search queries.
@JsonKey(name: r'naturalLanguages')
Expand Down
8 changes: 6 additions & 2 deletions packages/algoliasearch/lib/src/model/search_for_hits.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,11 @@ final class SearchParamsObject {

/// Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insideBoundingBox')
final List<double>? insideBoundingBox;
final List<List<double>>? insideBoundingBox;

/// Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insidePolygon')
final List<double>? insidePolygon;
final List<List<double>>? insidePolygon;

/// Changes the default values of parameters that work best for a natural language query, such as `ignorePlurals`, `removeStopWords`, `removeWordsIfNoResults`, `analyticsTags`, and `ruleContexts`. These parameters work well together when the query consists of fuller natural language strings instead of keywords, for example when processing voice search queries.
@JsonKey(name: r'naturalLanguages')
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ final class BaseSearchParams {

/// Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insideBoundingBox')
final List<double>? insideBoundingBox;
final List<List<double>>? insideBoundingBox;

/// Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insidePolygon')
final List<double>? insidePolygon;
final List<List<double>>? insidePolygon;

/// Changes the default values of parameters that work best for a natural language query, such as `ignorePlurals`, `removeStopWords`, `removeWordsIfNoResults`, `analyticsTags`, and `ruleContexts`. These parameters work well together when the query consists of fuller natural language strings instead of keywords, for example when processing voice search queries.
@JsonKey(name: r'naturalLanguages')
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ final class BaseSearchParamsWithoutQuery {

/// Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insideBoundingBox')
final List<double>? insideBoundingBox;
final List<List<double>>? insideBoundingBox;

/// Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
@JsonKey(name: r'insidePolygon')
final List<double>? insidePolygon;
final List<List<double>>? insidePolygon;

/// Changes the default values of parameters that work best for a natural language query, such as `ignorePlurals`, `removeStopWords`, `removeWordsIfNoResults`, `analyticsTags`, and `ruleContexts`. These parameters work well together when the query consists of fuller natural language strings instead of keywords, for example when processing voice search queries.
@JsonKey(name: r'naturalLanguages')
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9931a90

Please sign in to comment.