Skip to content

Commit 05b217e

Browse files
fix(specs): drop singer from ingestion specs [skip-bc] (generated)
algolia/api-clients-automation#4281 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 5c16c10 commit 05b217e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

lib/algolia/api/ingestion_client.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2616,7 +2616,7 @@ def search_transformations(transformation_search, request_options = {})
26162616
@api_client.deserialize(response.body, request_options[:debug_return_type] || "Array<Ingestion::Transformation>")
26172617
end
26182618

2619-
# Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
2619+
# Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
26202620
#
26212621
# Required API Key ACLs:
26222622
# - addObject
@@ -2651,7 +2651,7 @@ def trigger_docker_source_discover_with_http_info(source_id, request_options = {
26512651
@api_client.call_api(:POST, path, new_options)
26522652
end
26532653

2654-
# Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: singer`.
2654+
# Triggers a stream-listing request for a source. Triggering stream-listing requests only works with sources with `type: docker` and `imageType: airbyte`.
26552655
#
26562656
# Required API Key ACLs:
26572657
# - addObject

lib/algolia/models/ingestion/docker_image_type.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
module Algolia
77
module Ingestion
88
class DockerImageType
9-
SINGER = "singer".freeze
109
CUSTOM = "custom".freeze
1110
AIRBYTE = "airbyte".freeze
1211

1312
def self.all_vars
14-
@all_vars ||= [SINGER, CUSTOM, AIRBYTE].freeze
13+
@all_vars ||= [CUSTOM, AIRBYTE].freeze
1514
end
1615

1716
# Builds the enum from string

lib/algolia/models/ingestion/docker_streams_input.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
module Algolia
77
module Ingestion
8-
# The selected streams of a singer or airbyte connector.
8+
# The selected streams of an airbyte connector.
99
class DockerStreamsInput
1010
attr_accessor :streams
1111

0 commit comments

Comments
 (0)