From 12b40f5f1c017dbc44d53df411acbcec5364de4b Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Mon, 23 Dec 2024 16:10:52 +0000 Subject: [PATCH] fix(specs): drop singer from ingestion specs [skip-bc] (generated) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/algolia/api-clients-automation/pull/4281 Co-authored-by: algolia-bot Co-authored-by: Clément Vannicatte --- Sources/Ingestion/IngestionClient.swift | 2 +- Sources/Ingestion/Models/DockerImageType.swift | 1 - Sources/Ingestion/Models/DockerStreamsInput.swift | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Sources/Ingestion/IngestionClient.swift b/Sources/Ingestion/IngestionClient.swift index af3d36bff..ba4c39f18 100644 --- a/Sources/Ingestion/IngestionClient.swift +++ b/Sources/Ingestion/IngestionClient.swift @@ -2988,7 +2988,7 @@ open class IngestionClient { } // Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with - // `type: docker` and `imageType: singer`. + // `type: docker` and `imageType: airbyte`. // Required API Key ACLs: // - addObject // - deleteIndex diff --git a/Sources/Ingestion/Models/DockerImageType.swift b/Sources/Ingestion/Models/DockerImageType.swift index 3bf714c9d..5c79f1f41 100644 --- a/Sources/Ingestion/Models/DockerImageType.swift +++ b/Sources/Ingestion/Models/DockerImageType.swift @@ -8,7 +8,6 @@ import Foundation /// Image type. public enum DockerImageType: String, Codable, CaseIterable { - case singer case custom case airbyte } diff --git a/Sources/Ingestion/Models/DockerStreamsInput.swift b/Sources/Ingestion/Models/DockerStreamsInput.swift index f47a95029..07dd16db4 100644 --- a/Sources/Ingestion/Models/DockerStreamsInput.swift +++ b/Sources/Ingestion/Models/DockerStreamsInput.swift @@ -6,7 +6,7 @@ import Foundation import Core #endif -/// The selected streams of a singer or airbyte connector. +/// The selected streams of an airbyte connector. public struct DockerStreamsInput: Codable, JSONEncodable { public var streams: [DockerStreams]