Skip to content

Commit 0ee2dc0

Browse files
authored
Merge branch 'main' into feat/javascript-replaceAllObjectsWithTransformation
2 parents 6183ec2 + 9db03ee commit 0ee2dc0

File tree

276 files changed

+724
-565
lines changed

Some content is hidden

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

276 files changed

+724
-565
lines changed

clients/algoliasearch-client-csharp/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [7.20.0](https://github.com/algolia/algoliasearch-client-csharp/compare/7.19.0...7.20.0)
2+
3+
- [6031284e24](https://github.com/algolia/api-clients-automation/commit/6031284e24) feat(specs): update try transformation specs for no-code ([#4974](https://github.com/algolia/api-clients-automation/pull/4974)) by [@mehmetaligok](https://github.com/mehmetaligok/)
4+
- [60ade79465](https://github.com/algolia/api-clients-automation/commit/60ade79465) chore(deps): dependencies 2025-06-16 ([#4977](https://github.com/algolia/api-clients-automation/pull/4977)) by [@algolia-bot](https://github.com/algolia-bot/)
5+
- [2561c945f7](https://github.com/algolia/api-clients-automation/commit/2561c945f7) fix(clients): processingTimeMS should be optional ([#5004](https://github.com/algolia/api-clients-automation/pull/5004)) by [@Fluf22](https://github.com/Fluf22/)
6+
- [973cc0c07e](https://github.com/algolia/api-clients-automation/commit/973cc0c07e) feat(specs): add new ingestion property for push ([#5007](https://github.com/algolia/api-clients-automation/pull/5007)) by [@shortcuts](https://github.com/shortcuts/)
7+
18
## [7.19.0](https://github.com/algolia/algoliasearch-client-csharp/compare/7.18.0...7.19.0)
29

310
- [835daccb48](https://github.com/algolia/api-clients-automation/commit/835daccb48) feat(specs): add with transformation helpers ([#4931](https://github.com/algolia/api-clients-automation/pull/4931)) by [@shortcuts](https://github.com/shortcuts/)

clients/algoliasearch-client-csharp/algoliasearch/Algolia.Search.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<RepositoryUrl>https://github.com/algolia/algoliasearch-client-csharp</RepositoryUrl>
2020
<RepositoryType>git</RepositoryType>
2121
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
22-
<Version>7.19.0</Version>
22+
<Version>7.20.0</Version>
2323
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2424
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
2525
<IncludeSymbols>true</IncludeSymbols>

clients/algoliasearch-client-csharp/algoliasearch/Clients/AbtestingConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class AbtestingConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region (optional)</param>
3030
public AbtestingConfig(string appId, string apiKey, string region = null)
31-
: base(appId, apiKey, "Abtesting", "7.19.0")
31+
: base(appId, apiKey, "Abtesting", "7.20.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

clients/algoliasearch-client-csharp/algoliasearch/Clients/AnalyticsConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class AnalyticsConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region (optional)</param>
3030
public AnalyticsConfig(string appId, string apiKey, string region = null)
31-
: base(appId, apiKey, "Analytics", "7.19.0")
31+
: base(appId, apiKey, "Analytics", "7.20.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

clients/algoliasearch-client-csharp/algoliasearch/Clients/CompositionConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public sealed class CompositionConfig : AlgoliaConfig
2727
/// <param name="appId">Your application ID</param>
2828
/// <param name="apiKey">Your API Key</param>
2929
public CompositionConfig(string appId, string apiKey)
30-
: base(appId, apiKey, "Composition", "7.19.0")
30+
: base(appId, apiKey, "Composition", "7.20.0")
3131
{
3232
DefaultHosts = GetDefaultHosts(appId);
3333
Compression = CompressionType.None;

clients/algoliasearch-client-csharp/algoliasearch/Clients/IngestionConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class IngestionConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region </param>
3030
public IngestionConfig(string appId, string apiKey, string region)
31-
: base(appId, apiKey, "Ingestion", "7.19.0")
31+
: base(appId, apiKey, "Ingestion", "7.20.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

clients/algoliasearch-client-csharp/algoliasearch/Clients/InsightsConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class InsightsConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region (optional)</param>
3030
public InsightsConfig(string appId, string apiKey, string region = null)
31-
: base(appId, apiKey, "Insights", "7.19.0")
31+
: base(appId, apiKey, "Insights", "7.20.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

clients/algoliasearch-client-csharp/algoliasearch/Clients/MonitoringConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public sealed class MonitoringConfig : AlgoliaConfig
2727
/// <param name="appId">Your application ID</param>
2828
/// <param name="apiKey">Your API Key</param>
2929
public MonitoringConfig(string appId, string apiKey)
30-
: base(appId, apiKey, "Monitoring", "7.19.0")
30+
: base(appId, apiKey, "Monitoring", "7.20.0")
3131
{
3232
DefaultHosts = GetDefaultHosts();
3333
Compression = CompressionType.None;

clients/algoliasearch-client-csharp/algoliasearch/Clients/PersonalizationConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class PersonalizationConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region </param>
3030
public PersonalizationConfig(string appId, string apiKey, string region)
31-
: base(appId, apiKey, "Personalization", "7.19.0")
31+
: base(appId, apiKey, "Personalization", "7.20.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

clients/algoliasearch-client-csharp/algoliasearch/Clients/QuerySuggestionsConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed class QuerySuggestionsConfig : AlgoliaConfig
2828
/// <param name="apiKey">Your API Key</param>
2929
/// <param name="region">Targeted region </param>
3030
public QuerySuggestionsConfig(string appId, string apiKey, string region)
31-
: base(appId, apiKey, "QuerySuggestions", "7.19.0")
31+
: base(appId, apiKey, "QuerySuggestions", "7.20.0")
3232
{
3333
DefaultHosts = GetDefaultHosts(region);
3434
Compression = CompressionType.None;

clients/algoliasearch-client-csharp/algoliasearch/Clients/RecommendConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public sealed class RecommendConfig : AlgoliaConfig
2727
/// <param name="appId">Your application ID</param>
2828
/// <param name="apiKey">Your API Key</param>
2929
public RecommendConfig(string appId, string apiKey)
30-
: base(appId, apiKey, "Recommend", "7.19.0")
30+
: base(appId, apiKey, "Recommend", "7.20.0")
3131
{
3232
DefaultHosts = GetDefaultHosts(appId);
3333
Compression = CompressionType.None;

clients/algoliasearch-client-csharp/algoliasearch/Clients/SearchConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public sealed class SearchConfig : AlgoliaConfig
2727
/// <param name="appId">Your application ID</param>
2828
/// <param name="apiKey">Your API Key</param>
2929
public SearchConfig(string appId, string apiKey)
30-
: base(appId, apiKey, "Search", "7.19.0")
30+
: base(appId, apiKey, "Search", "7.20.0")
3131
{
3232
DefaultHosts = GetDefaultHosts(appId);
3333
Compression = CompressionType.None;

clients/algoliasearch-client-dart/packages/algoliasearch/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.33.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.33.0...1.33.1)
2+
3+
- [60ade79465](https://github.com/algolia/api-clients-automation/commit/60ade79465) chore(deps): dependencies 2025-06-16 ([#4977](https://github.com/algolia/api-clients-automation/pull/4977)) by [@algolia-bot](https://github.com/algolia-bot/)
4+
- [2561c945f7](https://github.com/algolia/api-clients-automation/commit/2561c945f7) fix(clients): processingTimeMS should be optional ([#5004](https://github.com/algolia/api-clients-automation/pull/5004)) by [@Fluf22](https://github.com/Fluf22/)
5+
16
## [1.33.0](https://github.com/algolia/algoliasearch-client-dart/compare/1.32.1...1.33.0)
27

38
- [835daccb48](https://github.com/algolia/api-clients-automation/commit/835daccb48) feat(specs): add with transformation helpers ([#4931](https://github.com/algolia/api-clients-automation/pull/4931)) by [@shortcuts](https://github.com/shortcuts/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/// Current package version
2-
const packageVersion = '1.33.0';
2+
const packageVersion = '1.33.1';

clients/algoliasearch-client-dart/packages/algoliasearch/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: algoliasearch
2-
version: 1.33.0
2+
version: 1.33.1
33
description: A Dart package for Algolia. Enables seamless integration for instant search, typo tolerance & user insights, and more, in Dart/Flutter apps.
44
homepage: https://www.algolia.com/doc/
55
repository: https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/algoliasearch
@@ -11,9 +11,9 @@ environment:
1111
sdk: '>=3.0.0 <4.0.0'
1212

1313
dependencies:
14-
algolia_client_core: ^1.33.0
15-
algolia_client_search: ^1.33.0
16-
algolia_client_insights: ^1.33.0
14+
algolia_client_core: ^1.33.1
15+
algolia_client_search: ^1.33.1
16+
algolia_client_insights: ^1.33.1
1717
json_annotation: ^4.8.1
1818
collection: ^1.17.1
1919

clients/algoliasearch-client-dart/packages/client_composition/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.33.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.33.0...1.33.1)
2+
3+
- [60ade79465](https://github.com/algolia/api-clients-automation/commit/60ade79465) chore(deps): dependencies 2025-06-16 ([#4977](https://github.com/algolia/api-clients-automation/pull/4977)) by [@algolia-bot](https://github.com/algolia-bot/)
4+
- [2561c945f7](https://github.com/algolia/api-clients-automation/commit/2561c945f7) fix(clients): processingTimeMS should be optional ([#5004](https://github.com/algolia/api-clients-automation/pull/5004)) by [@Fluf22](https://github.com/Fluf22/)
5+
16
## [1.33.0](https://github.com/algolia/algoliasearch-client-dart/compare/1.32.1...1.33.0)
27

38
- [835daccb48](https://github.com/algolia/api-clients-automation/commit/835daccb48) feat(specs): add with transformation helpers ([#4931](https://github.com/algolia/api-clients-automation/pull/4931)) by [@shortcuts](https://github.com/shortcuts/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/// Current package version
2-
const packageVersion = '1.33.0';
2+
const packageVersion = '1.33.1';

clients/algoliasearch-client-dart/packages/client_composition/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: algolia_client_composition
2-
version: 1.33.0
2+
version: 1.33.1
33
description: A sub-package of the AlgoliaSearch library, offering composition-specific functionalities for enhanced search and discovery in Dart/Flutter apps.
44
homepage: https://www.algolia.com/doc/
55
repository: https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/client_composition
@@ -11,7 +11,7 @@ environment:
1111
sdk: '>=3.0.0 <4.0.0'
1212

1313
dependencies:
14-
algolia_client_core: ^1.33.0
14+
algolia_client_core: ^1.33.1
1515
json_annotation: ^4.8.1
1616
collection: ^1.17.1
1717

clients/algoliasearch-client-dart/packages/client_core/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.33.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.33.0...1.33.1)
2+
3+
- [60ade79465](https://github.com/algolia/api-clients-automation/commit/60ade79465) chore(deps): dependencies 2025-06-16 ([#4977](https://github.com/algolia/api-clients-automation/pull/4977)) by [@algolia-bot](https://github.com/algolia-bot/)
4+
- [2561c945f7](https://github.com/algolia/api-clients-automation/commit/2561c945f7) fix(clients): processingTimeMS should be optional ([#5004](https://github.com/algolia/api-clients-automation/pull/5004)) by [@Fluf22](https://github.com/Fluf22/)
5+
16
## [1.33.0](https://github.com/algolia/algoliasearch-client-dart/compare/1.32.1...1.33.0)
27

38
- [835daccb48](https://github.com/algolia/api-clients-automation/commit/835daccb48) feat(specs): add with transformation helpers ([#4931](https://github.com/algolia/api-clients-automation/pull/4931)) by [@shortcuts](https://github.com/shortcuts/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/// Current package version
2-
const packageVersion = '1.33.0';
2+
const packageVersion = '1.33.1';

clients/algoliasearch-client-dart/packages/client_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >-
33
Algolia Client Core is a Dart package for seamless Algolia API integration,
44
offering HTTP request handling, retry strategy, and robust exception
55
management.
6-
version: 1.33.0
6+
version: 1.33.1
77
homepage: https://www.algolia.com/doc/
88
repository: >-
99
https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/client_core

clients/algoliasearch-client-dart/packages/client_insights/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.33.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.33.0...1.33.1)
2+
3+
- [60ade79465](https://github.com/algolia/api-clients-automation/commit/60ade79465) chore(deps): dependencies 2025-06-16 ([#4977](https://github.com/algolia/api-clients-automation/pull/4977)) by [@algolia-bot](https://github.com/algolia-bot/)
4+
- [2561c945f7](https://github.com/algolia/api-clients-automation/commit/2561c945f7) fix(clients): processingTimeMS should be optional ([#5004](https://github.com/algolia/api-clients-automation/pull/5004)) by [@Fluf22](https://github.com/Fluf22/)
5+
16
## [1.33.0](https://github.com/algolia/algoliasearch-client-dart/compare/1.32.1...1.33.0)
27

38
- [835daccb48](https://github.com/algolia/api-clients-automation/commit/835daccb48) feat(specs): add with transformation helpers ([#4931](https://github.com/algolia/api-clients-automation/pull/4931)) by [@shortcuts](https://github.com/shortcuts/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/// Current package version
2-
const packageVersion = '1.33.0';
2+
const packageVersion = '1.33.1';

clients/algoliasearch-client-dart/packages/client_insights/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: algolia_client_insights
2-
version: 1.33.0
2+
version: 1.33.1
33
description: A sub-package of the AlgoliaSearch library, offering insights-specific functionalities for enhanced search and discovery in Dart/Flutter apps.
44
homepage: https://www.algolia.com/doc/
55
repository: https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/client_insights
@@ -11,7 +11,7 @@ environment:
1111
sdk: '>=3.0.0 <4.0.0'
1212

1313
dependencies:
14-
algolia_client_core: ^1.33.0
14+
algolia_client_core: ^1.33.1
1515
json_annotation: ^4.8.1
1616
collection: ^1.17.1
1717

clients/algoliasearch-client-dart/packages/client_recommend/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.33.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.33.0...1.33.1)
2+
3+
- [60ade79465](https://github.com/algolia/api-clients-automation/commit/60ade79465) chore(deps): dependencies 2025-06-16 ([#4977](https://github.com/algolia/api-clients-automation/pull/4977)) by [@algolia-bot](https://github.com/algolia-bot/)
4+
- [2561c945f7](https://github.com/algolia/api-clients-automation/commit/2561c945f7) fix(clients): processingTimeMS should be optional ([#5004](https://github.com/algolia/api-clients-automation/pull/5004)) by [@Fluf22](https://github.com/Fluf22/)
5+
16
## [1.33.0](https://github.com/algolia/algoliasearch-client-dart/compare/1.32.1...1.33.0)
27

38
- [835daccb48](https://github.com/algolia/api-clients-automation/commit/835daccb48) feat(specs): add with transformation helpers ([#4931](https://github.com/algolia/api-clients-automation/pull/4931)) by [@shortcuts](https://github.com/shortcuts/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/// Current package version
2-
const packageVersion = '1.33.0';
2+
const packageVersion = '1.33.1';

clients/algoliasearch-client-dart/packages/client_recommend/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: algolia_client_recommend
2-
version: 1.33.0
2+
version: 1.33.1
33
description: A sub-package of the AlgoliaSearch library, offering recommend-specific functionalities for enhanced search and discovery in Dart/Flutter apps.
44
homepage: https://www.algolia.com/doc/
55
repository: https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/client_recommend
@@ -11,7 +11,7 @@ environment:
1111
sdk: '>=3.0.0 <4.0.0'
1212

1313
dependencies:
14-
algolia_client_core: ^1.33.0
14+
algolia_client_core: ^1.33.1
1515
json_annotation: ^4.8.1
1616
collection: ^1.17.1
1717

clients/algoliasearch-client-dart/packages/client_search/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.33.1](https://github.com/algolia/algoliasearch-client-dart/compare/1.33.0...1.33.1)
2+
3+
- [60ade79465](https://github.com/algolia/api-clients-automation/commit/60ade79465) chore(deps): dependencies 2025-06-16 ([#4977](https://github.com/algolia/api-clients-automation/pull/4977)) by [@algolia-bot](https://github.com/algolia-bot/)
4+
- [2561c945f7](https://github.com/algolia/api-clients-automation/commit/2561c945f7) fix(clients): processingTimeMS should be optional ([#5004](https://github.com/algolia/api-clients-automation/pull/5004)) by [@Fluf22](https://github.com/Fluf22/)
5+
16
## [1.33.0](https://github.com/algolia/algoliasearch-client-dart/compare/1.32.1...1.33.0)
27

38
- [835daccb48](https://github.com/algolia/api-clients-automation/commit/835daccb48) feat(specs): add with transformation helpers ([#4931](https://github.com/algolia/api-clients-automation/pull/4931)) by [@shortcuts](https://github.com/shortcuts/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/// Current package version
2-
const packageVersion = '1.33.0';
2+
const packageVersion = '1.33.1';

clients/algoliasearch-client-dart/packages/client_search/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: algolia_client_search
2-
version: 1.33.0
2+
version: 1.33.1
33
description: A sub-package of the AlgoliaSearch library, offering search-specific functionalities for enhanced search and discovery in Dart/Flutter apps.
44
homepage: https://www.algolia.com/doc/
55
repository: https://github.com/algolia/algoliasearch-client-dart/tree/main/packages/client_search
@@ -11,7 +11,7 @@ environment:
1111
sdk: '>=3.0.0 <4.0.0'
1212

1313
dependencies:
14-
algolia_client_core: ^1.33.0
14+
algolia_client_core: ^1.33.1
1515
json_annotation: ^4.8.1
1616
collection: ^1.17.1
1717

clients/algoliasearch-client-go/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [4.19.0](https://github.com/algolia/algoliasearch-client-go/compare/4.18.0...4.19.0)
2+
3+
- [6031284e24](https://github.com/algolia/api-clients-automation/commit/6031284e24) feat(specs): update try transformation specs for no-code ([#4974](https://github.com/algolia/api-clients-automation/pull/4974)) by [@mehmetaligok](https://github.com/mehmetaligok/)
4+
- [2561c945f7](https://github.com/algolia/api-clients-automation/commit/2561c945f7) fix(clients): processingTimeMS should be optional ([#5004](https://github.com/algolia/api-clients-automation/pull/5004)) by [@Fluf22](https://github.com/Fluf22/)
5+
- [973cc0c07e](https://github.com/algolia/api-clients-automation/commit/973cc0c07e) feat(specs): add new ingestion property for push ([#5007](https://github.com/algolia/api-clients-automation/pull/5007)) by [@shortcuts](https://github.com/shortcuts/)
6+
17
## [4.18.0](https://github.com/algolia/algoliasearch-client-go/compare/4.17.0...4.18.0)
28

39
- [835daccb48](https://github.com/algolia/api-clients-automation/commit/835daccb48) feat(specs): add with transformation helpers ([#4931](https://github.com/algolia/api-clients-automation/pull/4931)) by [@shortcuts](https://github.com/shortcuts/)

clients/algoliasearch-client-go/algolia/abtesting/client.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-go/algolia/analytics/client.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-go/algolia/composition/client.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-go/algolia/ingestion/client.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-go/algolia/insights/client.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-go/algolia/monitoring/client.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-go/algolia/personalization/client.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-go/algolia/query-suggestions/client.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)