multiwoven-integrations 0.1.53 → 0.1.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/multiwoven/integrations/protocol/protocol.rb +3 -1
- data/lib/multiwoven/integrations/rollout.rb +1 -1
- data/lib/multiwoven/integrations/source/bigquery/config/spec.json +1 -0
- data/lib/multiwoven/integrations/source/databricks/config/spec.json +1 -0
- data/lib/multiwoven/integrations/source/postgresql/config/spec.json +1 -0
- data/lib/multiwoven/integrations/source/redshift/config/spec.json +1 -0
- data/lib/multiwoven/integrations/source/salesforce_consumer_goods_cloud/config/spec.json +1 -0
- data/lib/multiwoven/integrations/source/snowflake/config/spec.json +1 -0
- data/multiwoven-integrations.gemspec +65 -0
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b763f6c3738761ea3eaa61aa1d594254a39b94c61f74a583128adb7191d5c9f7
|
|
4
|
+
data.tar.gz: 77c83babe07876b9d513af183135052ca855723d0dd11a512e572ebd135a0e2d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 489c7f4a39060f1722454ce262fe1258b60342ba8c81ea147297fb489c4bb03645bb3801da19f2c1fbad889b909fc1a8a140f92e51368f5915dabbfd919025f5
|
|
7
|
+
data.tar.gz: 2619705432e4bf46454334c48850472078fe085be62eb0fb712e3633d36995d1686a0f9a399a0e647adce82a916f83a4a3433029154f346918c989c3440d8ed2
|
|
@@ -10,7 +10,8 @@ module Multiwoven
|
|
|
10
10
|
SyncStatus = Types::String.enum("started", "running", "complete", "incomplete")
|
|
11
11
|
DestinationSyncMode = Types::String.enum("insert", "upsert")
|
|
12
12
|
ConnectorType = Types::String.enum("source", "destination")
|
|
13
|
-
|
|
13
|
+
ConnectorQueryType = Types::String.enum("raw_sql", "soql")
|
|
14
|
+
ModelQueryType = Types::String.enum("raw_sql", "dbt", "soql")
|
|
14
15
|
ConnectionStatusType = Types::String.enum("succeeded", "failed")
|
|
15
16
|
StreamType = Types::String.enum("static", "dynamic")
|
|
16
17
|
StreamAction = Types::String.enum("fetch", "create", "update", "delete")
|
|
@@ -56,6 +57,7 @@ module Multiwoven
|
|
|
56
57
|
attribute :supports_dbt, Types::Bool.default(false)
|
|
57
58
|
attribute :stream_type, StreamType
|
|
58
59
|
attribute? :supported_destination_sync_modes, Types::Array.of(DestinationSyncMode).optional
|
|
60
|
+
attribute? :connector_query_type, ConnectorQueryType
|
|
59
61
|
|
|
60
62
|
def to_multiwoven_message
|
|
61
63
|
MultiwovenMessage.new(
|
|
@@ -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/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",
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/multiwoven/integrations/rollout"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "multiwoven-integrations"
|
|
7
|
+
spec.version = Multiwoven::Integrations::VERSION
|
|
8
|
+
spec.authors = ["Subin T P"]
|
|
9
|
+
spec.email = ["subin@multiwoven.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "Integration suite for open source reverse ETL platform"
|
|
12
|
+
spec.description = "Multiwoven Integrations is a comprehensive Ruby gem designed to facilitate seamless connectivity between various data sources and SaaS platforms."
|
|
13
|
+
|
|
14
|
+
spec.homepage = "https://www.multiwoven.com/"
|
|
15
|
+
spec.license = "MIT"
|
|
16
|
+
spec.required_ruby_version = ">= 2.6.0"
|
|
17
|
+
|
|
18
|
+
# spec.metadata["allowed_push_host"] = nil
|
|
19
|
+
spec.metadata["github_repo"] = "https://github.com/Multiwoven/multiwoven-integrations"
|
|
20
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
21
|
+
spec.metadata["source_code_uri"] = "https://github.com/Multiwoven/multiwoven-integrations"
|
|
22
|
+
spec.metadata["changelog_uri"] = "https://github.com/Multiwoven/multiwoven-integrations/blob/master/CHANGELOG.md"
|
|
23
|
+
|
|
24
|
+
# Specify which files should be added to the gem when it is released.
|
|
25
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
26
|
+
spec.files = Dir.chdir(__dir__) do
|
|
27
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
|
28
|
+
(File.expand_path(f) == __FILE__) ||
|
|
29
|
+
f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
spec.bindir = "exe"
|
|
33
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
34
|
+
spec.require_paths = ["lib"]
|
|
35
|
+
|
|
36
|
+
spec.add_runtime_dependency "activesupport"
|
|
37
|
+
spec.add_runtime_dependency "async-websocket"
|
|
38
|
+
spec.add_runtime_dependency "csv"
|
|
39
|
+
spec.add_runtime_dependency "dry-schema"
|
|
40
|
+
spec.add_runtime_dependency "dry-struct"
|
|
41
|
+
spec.add_runtime_dependency "dry-types"
|
|
42
|
+
spec.add_runtime_dependency "git"
|
|
43
|
+
spec.add_runtime_dependency "google-apis-sheets_v4"
|
|
44
|
+
spec.add_runtime_dependency "google-cloud-bigquery"
|
|
45
|
+
spec.add_runtime_dependency "hubspot-api-client"
|
|
46
|
+
spec.add_runtime_dependency "net-sftp"
|
|
47
|
+
spec.add_runtime_dependency "pg"
|
|
48
|
+
spec.add_runtime_dependency "rake"
|
|
49
|
+
spec.add_runtime_dependency "restforce"
|
|
50
|
+
spec.add_runtime_dependency "ruby-limiter"
|
|
51
|
+
spec.add_runtime_dependency "ruby-odbc"
|
|
52
|
+
spec.add_runtime_dependency "sequel"
|
|
53
|
+
spec.add_runtime_dependency "slack-ruby-client"
|
|
54
|
+
spec.add_runtime_dependency "stripe"
|
|
55
|
+
|
|
56
|
+
spec.add_development_dependency "byebug"
|
|
57
|
+
spec.add_development_dependency "rspec"
|
|
58
|
+
spec.add_development_dependency "rubocop"
|
|
59
|
+
spec.add_development_dependency "simplecov"
|
|
60
|
+
spec.add_development_dependency "simplecov_json_formatter"
|
|
61
|
+
spec.add_development_dependency "webmock"
|
|
62
|
+
|
|
63
|
+
# For more information and examples about making a new gem, check out our
|
|
64
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
|
65
|
+
end
|
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.
|
|
4
|
+
version: 0.1.55
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Subin T P
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-04-
|
|
11
|
+
date: 2024-04-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -474,6 +474,7 @@ files:
|
|
|
474
474
|
- lib/multiwoven/integrations/source/snowflake/config/meta.json
|
|
475
475
|
- lib/multiwoven/integrations/source/snowflake/config/spec.json
|
|
476
476
|
- lib/multiwoven/integrations/source/snowflake/icon.svg
|
|
477
|
+
- multiwoven-integrations.gemspec
|
|
477
478
|
- sig/multiwoven/integrations.rbs
|
|
478
479
|
homepage: https://www.multiwoven.com/
|
|
479
480
|
licenses:
|
|
@@ -483,7 +484,7 @@ metadata:
|
|
|
483
484
|
homepage_uri: https://www.multiwoven.com/
|
|
484
485
|
source_code_uri: https://github.com/Multiwoven/multiwoven-integrations
|
|
485
486
|
changelog_uri: https://github.com/Multiwoven/multiwoven-integrations/blob/master/CHANGELOG.md
|
|
486
|
-
post_install_message:
|
|
487
|
+
post_install_message:
|
|
487
488
|
rdoc_options: []
|
|
488
489
|
require_paths:
|
|
489
490
|
- lib
|
|
@@ -498,8 +499,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
498
499
|
- !ruby/object:Gem::Version
|
|
499
500
|
version: '0'
|
|
500
501
|
requirements: []
|
|
501
|
-
rubygems_version: 3.
|
|
502
|
-
signing_key:
|
|
502
|
+
rubygems_version: 3.4.1
|
|
503
|
+
signing_key:
|
|
503
504
|
specification_version: 4
|
|
504
505
|
summary: Integration suite for open source reverse ETL platform
|
|
505
506
|
test_files: []
|