multiwoven-integrations 0.1.54 → 0.1.55

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e4b51e39426dfe4192cfdf80398977a56b8df6cc7b1a3bef50364baba0186513
4
- data.tar.gz: 3546ba77679508fdcbda75ed4d73cd248994312e7a2e67241dacff009a3f8b61
3
+ metadata.gz: b763f6c3738761ea3eaa61aa1d594254a39b94c61f74a583128adb7191d5c9f7
4
+ data.tar.gz: 77c83babe07876b9d513af183135052ca855723d0dd11a512e572ebd135a0e2d
5
5
  SHA512:
6
- metadata.gz: 9df99e773d406ac6e535d1d9572bc76df7dbafb22b3da237ee7257f52db509d2700301186bf656059fe11fc42bd2393a5553f4da59005556ed223eafe75f8a64
7
- data.tar.gz: 1e8ca52d6b5afef62e80a36c36b3351f47e2e321910bdfbefbfeb43f73a7558dffe1d3ebb1f1eba836cdfe682278786214c6a1eb20bea5385dcf9401fd956d25
6
+ metadata.gz: 489c7f4a39060f1722454ce262fe1258b60342ba8c81ea147297fb489c4bb03645bb3801da19f2c1fbad889b909fc1a8a140f92e51368f5915dabbfd919025f5
7
+ data.tar.gz: 2619705432e4bf46454334c48850472078fe085be62eb0fb712e3633d36995d1686a0f9a399a0e647adce82a916f83a4a3433029154f346918c989c3440d8ed2
@@ -57,6 +57,7 @@ module Multiwoven
57
57
  attribute :supports_dbt, Types::Bool.default(false)
58
58
  attribute :stream_type, StreamType
59
59
  attribute? :supported_destination_sync_modes, Types::Array.of(DestinationSyncMode).optional
60
+ attribute? :connector_query_type, ConnectorQueryType
60
61
 
61
62
  def to_multiwoven_message
62
63
  MultiwovenMessage.new(
@@ -70,7 +71,6 @@ module Multiwoven
70
71
  attribute :name, Types::String
71
72
  attribute :type, ConnectorType
72
73
  attribute :connection_specification, Types::Hash
73
- attribute :query_type, ConnectorQueryType.optional.default("raw_sql")
74
74
  end
75
75
 
76
76
  class LogMessage < ProtocolModel
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.1.54"
5
+ VERSION = "0.1.55"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "documentation_url": "https://docs.multiwoven.com/integrations/sources/bigquery",
3
3
  "stream_type": "dynamic",
4
+ "connector_query_type": "raw_sql",
4
5
  "connection_specification": {
5
6
  "$schema": "http://json-schema.org/draft-07/schema#",
6
7
  "title": "Google BigQuery",
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "documentation_url": "https://docs.multiwoven.com/integrations/sources/databricks",
3
3
  "stream_type": "dynamic",
4
+ "connector_query_type": "raw_sql",
4
5
  "connection_specification": {
5
6
  "$schema": "http://json-schema.org/draft-07/schema#",
6
7
  "title": "Databricks",
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "documentation_url": "https://docs.multiwoven.com/integrations/sources/postgresql",
3
3
  "stream_type": "dynamic",
4
+ "connector_query_type": "raw_sql",
4
5
  "connection_specification": {
5
6
  "$schema": "http://json-schema.org/draft-07/schema#",
6
7
  "title": "Postgresql",
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "documentation_url": "https://docs.multiwoven.com/integrations/sources/redshift",
3
3
  "stream_type": "dynamic",
4
+ "connector_query_type": "raw_sql",
4
5
  "connection_specification": {
5
6
  "$schema": "http://json-schema.org/draft-07/schema#",
6
7
  "title": "Amazon Redshift",
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "documentation_url": "https://docs.multiwoven.com/destinations/retail/salesforce_consumer_goods_cloud",
3
3
  "stream_type": "static",
4
+ "connector_query_type": "soql",
4
5
  "connection_specification": {
5
6
  "$schema": "http://json-schema.org/draft-07/schema#",
6
7
  "title": "Salesforce Consumer Goods Cloud",
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "documentation_url": "https://docs.multiwoven.com/integrations/sources/snowflake",
3
3
  "stream_type": "dynamic",
4
+ "connector_query_type": "raw_sql",
4
5
  "connection_specification": {
5
6
  "$schema": "http://json-schema.org/draft-07/schema#",
6
7
  "title": "Snowflake",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multiwoven-integrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.54
4
+ version: 0.1.55
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-08 00:00:00.000000000 Z
11
+ date: 2024-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport