multiwoven-integrations 0.1.20 → 0.1.24

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: 97435b81707f9ccad9b5240681e74028d231fd235fbd9ec6c4b6a24f52b1361e
4
- data.tar.gz: 686d26cc447f1876009c520262cdd3846cfc0410a4ce1cdbbc3e3ec446ddc966
3
+ metadata.gz: 7494eea71e50f51076f6b4be2ed1bbb132e92d8e4f691ae62f04749c1f31958e
4
+ data.tar.gz: 24e702b67483e16e91488b5371614d0e104b117ea813f373aad49fdc5a90fea3
5
5
  SHA512:
6
- metadata.gz: acaeea9547c243fd5d9901d1247d046807a600f69cc461df0462b718fb759e10d767faa8b2e9dd44f7d64740137a8a9148084e3e66101f6383458a54bf99576d
7
- data.tar.gz: 650b6a32b16d3b8dd50bb88a4df44aebf49071539b6dfa57f82cb38ad1539d4ea154ace486afbf9e863b37301cd836c3503cd897f06e3a2b31a515ba2e1f8c09
6
+ metadata.gz: 9930995a67f2a08a6650a300482557b5d219788ea30775c0783709d4a6bead7db531e6e463d042b206752e8e77f95e5f08c3f60f369831fcf2b7af2fecb20619
7
+ data.tar.gz: 5cd1abc69633fb7e32b0c2f5336b2be2a914350cbed7050a9beaef49e246988170babcc5941564ebac1c22ec39ec1e8b55fa2eb224bc9573075df4a3faa3e094
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.4.0](https://www.github.com/Multiwoven/multiwoven-integrations/compare/v0.3.0...v0.4.0) (2024-02-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * Bump version to 1.21 ([#62](https://www.github.com/Multiwoven/multiwoven-integrations/issues/62)) ([7b1476d](https://www.github.com/Multiwoven/multiwoven-integrations/commit/7b1476d4b04a073ab060971019095d0a13ebd153))
9
+
3
10
  ## [0.3.0](https://www.github.com/Multiwoven/multiwoven-integrations/compare/v0.2.0...v0.3.0) (2024-02-14)
4
11
 
5
12
 
@@ -32,7 +32,9 @@ module Multiwoven::Integrations::Destination
32
32
  name: stream["name"],
33
33
  json_schema: stream["json_schema"],
34
34
  request_method: stream["method"],
35
- action: stream["action"]
35
+ action: stream["action"],
36
+ batch_support: stream["batch_support"],
37
+ batch_size: stream["batch_size"]
36
38
  )
37
39
  end
38
40
 
@@ -4,6 +4,8 @@
4
4
  "name": "audience",
5
5
  "action": "create",
6
6
  "method": "POST",
7
+ "batch_support": true,
8
+ "batch_size": 10000,
7
9
  "url": "https://graph.facebook.com/v18.0/{audience_id}/users",
8
10
  "json_schema": {
9
11
  "type": "object",
@@ -108,7 +108,7 @@ module Multiwoven
108
108
  attribute? :action, StreamAction
109
109
  attribute :json_schema, Types::Hash
110
110
  attribute? :supported_sync_modes, Types::Array.of(SyncMode).optional
111
-
111
+ # Applicable for database streams
112
112
  attribute? :source_defined_cursor, Types::Bool.optional
113
113
  attribute? :default_cursor_field, Types::Array.of(Types::String).optional
114
114
  attribute? :source_defined_primary_key, Types::Array.of(Types::Array.of(Types::String)).optional
@@ -116,6 +116,8 @@ module Multiwoven
116
116
  # Applicable for API streams
117
117
  attribute? :url, Types::String.optional
118
118
  attribute? :request_method, Types::String.optional
119
+ attribute :batch_support, Types::Bool.default(false)
120
+ attribute :batch_size, Types::Integer.default(1)
119
121
  end
120
122
 
121
123
  class Catalog < ProtocolModel
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.1.20"
5
+ VERSION = "0.1.24"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  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.20
4
+ version: 0.1.24
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-02-14 00:00:00.000000000 Z
11
+ date: 2024-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -337,7 +337,6 @@ files:
337
337
  - lib/multiwoven/integrations/source/snowflake/client.rb
338
338
  - lib/multiwoven/integrations/source/snowflake/config/meta.json
339
339
  - lib/multiwoven/integrations/source/snowflake/config/spec.json
340
- - multiwoven-integrations.gemspec
341
340
  - sig/multiwoven/integrations.rbs
342
341
  homepage: https://www.multiwoven.com/
343
342
  licenses:
@@ -362,7 +361,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
362
361
  - !ruby/object:Gem::Version
363
362
  version: '0'
364
363
  requirements: []
365
- rubygems_version: 3.4.1
364
+ rubygems_version: 3.5.3
366
365
  signing_key:
367
366
  specification_version: 4
368
367
  summary: Integration suite for open source reverse ETL platform
@@ -1,59 +0,0 @@
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 "dry-schema"
39
- spec.add_runtime_dependency "dry-struct"
40
- spec.add_runtime_dependency "dry-types"
41
- spec.add_runtime_dependency "git"
42
- spec.add_runtime_dependency "google-cloud-bigquery"
43
- spec.add_runtime_dependency "pg"
44
- spec.add_runtime_dependency "rake"
45
- spec.add_runtime_dependency "restforce"
46
- spec.add_runtime_dependency "ruby-odbc"
47
- spec.add_runtime_dependency "sequel"
48
- spec.add_runtime_dependency "slack-ruby-client"
49
-
50
- spec.add_development_dependency "byebug"
51
- spec.add_development_dependency "rspec"
52
- spec.add_development_dependency "rubocop"
53
- spec.add_development_dependency "simplecov"
54
- spec.add_development_dependency "simplecov_json_formatter"
55
- spec.add_development_dependency "webmock"
56
-
57
- # For more information and examples about making a new gem, check out our
58
- # guide at: https://bundler.io/guides/creating_gem.html
59
- end