diff --git a/algoliasearch/Clients/IngestionClient.cs b/algoliasearch/Clients/IngestionClient.cs index ca209161..85730217 100644 --- a/algoliasearch/Clients/IngestionClient.cs +++ b/algoliasearch/Clients/IngestionClient.cs @@ -1612,7 +1612,7 @@ public interface IIngestionClient List SearchTransformations(TransformationSearch transformationSearch, RequestOptions options = null, CancellationToken cancellationToken = default); /// - /// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`. + /// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`. /// /// /// Required API Key ACLs: @@ -1629,7 +1629,7 @@ public interface IIngestionClient Task TriggerDockerSourceDiscoverAsync(string sourceID, RequestOptions options = null, CancellationToken cancellationToken = default); /// - /// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`. (Synchronous version) + /// Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`. (Synchronous version) /// /// /// Required API Key ACLs: diff --git a/algoliasearch/Models/Ingestion/DockerImageType.cs b/algoliasearch/Models/Ingestion/DockerImageType.cs index 73bd6e7d..684eec97 100644 --- a/algoliasearch/Models/Ingestion/DockerImageType.cs +++ b/algoliasearch/Models/Ingestion/DockerImageType.cs @@ -18,22 +18,16 @@ namespace Algolia.Search.Models.Ingestion; [JsonConverter(typeof(Serializer.JsonStringEnumConverter))] public enum DockerImageType { - /// - /// Enum Singer for value: singer - /// - [JsonPropertyName("singer")] - Singer = 1, - /// /// Enum Custom for value: custom /// [JsonPropertyName("custom")] - Custom = 2, + Custom = 1, /// /// Enum Airbyte for value: airbyte /// [JsonPropertyName("airbyte")] - Airbyte = 3 + Airbyte = 2 } diff --git a/algoliasearch/Models/Ingestion/DockerStreamsInput.cs b/algoliasearch/Models/Ingestion/DockerStreamsInput.cs index 9239f9e9..57b1f181 100644 --- a/algoliasearch/Models/Ingestion/DockerStreamsInput.cs +++ b/algoliasearch/Models/Ingestion/DockerStreamsInput.cs @@ -12,7 +12,7 @@ namespace Algolia.Search.Models.Ingestion; /// -/// The selected streams of a singer or airbyte connector. +/// The selected streams of an airbyte connector. /// public partial class DockerStreamsInput {