multiwoven-integrations 0.1.20 → 0.1.22

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97435b81707f9ccad9b5240681e74028d231fd235fbd9ec6c4b6a24f52b1361e
4
- data.tar.gz: 686d26cc447f1876009c520262cdd3846cfc0410a4ce1cdbbc3e3ec446ddc966
3
+ metadata.gz: 69e39456bc2712b926a0820d18b4ee308210795e7d51ea5147f33e3ce346135e
4
+ data.tar.gz: 8e2e70fdd20242af5bd1c7c70d4343dae474122fbc5649ea0d6fc95ec1575fb9
5
5
  SHA512:
6
- metadata.gz: acaeea9547c243fd5d9901d1247d046807a600f69cc461df0462b718fb759e10d767faa8b2e9dd44f7d64740137a8a9148084e3e66101f6383458a54bf99576d
7
- data.tar.gz: 650b6a32b16d3b8dd50bb88a4df44aebf49071539b6dfa57f82cb38ad1539d4ea154ace486afbf9e863b37301cd836c3503cd897f06e3a2b31a515ba2e1f8c09
6
+ metadata.gz: 0f65a4256df370fc646101d97ef4b6df335cf1e33bac817bddff64f3ef143859db900bd995597144cbb9256dd6d62bc5623bf2b162c0cbeee91fe8e3af7f6200
7
+ data.tar.gz: 960284f07c9e4810938e745ae2e21da1e9c8f11a6e5b0160780575d31e63793a81c22158d44618e88a3b53230aceb00c50e39e692861427a57449a84588cfb80
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
 
@@ -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.22"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
metadata CHANGED
@@ -1,7 +1,7 @@
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.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P