multiwoven-integrations 0.1.58 → 0.1.60
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: c196c94e7a1a1cbd91855c1a6ecaa0759152f9c7ad07002a2dc124d4ba06f8b1
|
|
4
|
+
data.tar.gz: 84947109e0dbdc82ff22a3ea30e93b369d92edf099562b4d5026e6fbb2690f88
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28904dc824d4178096d6a5ae08477967c32854c86d727822c59956696d75d36c563f53e3300d557b3fe73256d071398eefb81efde323cecd5b704c060560051c
|
|
7
|
+
data.tar.gz: ae5c528985092ab05773752822b85bae3ea8753a42019d4cb33933f4f1fcaec6d616c7edb2dd94e541f3c1fde8d7502b201014fdfdeb8453973cd64349b034f0
|
|
@@ -115,7 +115,7 @@ module Multiwoven
|
|
|
115
115
|
attribute? :supported_sync_modes, Types::Array.of(SyncMode).optional.default(["incremental"])
|
|
116
116
|
|
|
117
117
|
# Applicable for database streams
|
|
118
|
-
attribute
|
|
118
|
+
attribute :source_defined_cursor, Types::Bool.default(false)
|
|
119
119
|
attribute? :default_cursor_field, Types::Array.of(Types::String).optional
|
|
120
120
|
attribute? :source_defined_primary_key, Types::Array.of(Types::Array.of(Types::String)).optional
|
|
121
121
|
attribute? :namespace, Types::String.optional
|
|
@@ -151,6 +151,8 @@ module Multiwoven
|
|
|
151
151
|
attribute? :request_rate_limit_unit, RequestRateLimitingUnit
|
|
152
152
|
attribute? :request_rate_concurrency, Types::Integer.default(10)
|
|
153
153
|
attribute? :schema_mode, Types::String.optional.default("schema")
|
|
154
|
+
attribute :source_defined_cursor, Types::Bool.default(false)
|
|
155
|
+
attribute? :default_cursor_field, Types::Array.of(Types::String).optional
|
|
154
156
|
|
|
155
157
|
def to_multiwoven_message
|
|
156
158
|
MultiwovenMessage.new(
|
|
@@ -118,7 +118,9 @@ module Multiwoven
|
|
|
118
118
|
"json_schema": json_schema,
|
|
119
119
|
"required": required,
|
|
120
120
|
"supported_sync_modes": %w[incremental],
|
|
121
|
-
"source_defined_primary_key": [primary_key]
|
|
121
|
+
"source_defined_primary_key": [primary_key],
|
|
122
|
+
"source_defined_cursor": false,
|
|
123
|
+
"default_cursor_field": nil
|
|
122
124
|
}
|
|
123
125
|
end
|
|
124
126
|
end
|