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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69e39456bc2712b926a0820d18b4ee308210795e7d51ea5147f33e3ce346135e
|
|
4
|
+
data.tar.gz: 8e2e70fdd20242af5bd1c7c70d4343dae474122fbc5649ea0d6fc95ec1575fb9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
|
@@ -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
|