multiwoven-integrations 0.1.50 → 0.1.51
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: 2efbfb751cda41f3cbb72c7c2b24dccd8cdae50dad3a63522ab90e0f4f8002e6
|
|
4
|
+
data.tar.gz: 8b504b553afaadf3c2fa8d9606b600938aa79feb7cdece1d67546d7046e2fef3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 922da5a0cec3cdc4262e468cf0118644cb3cd75a3c156899e5b9a72bb80d357f5afc8b02d4dbd0b831ee8d44a2dde063dcbc4ae5c02f4d227c61cbc89b9a37f9
|
|
7
|
+
data.tar.gz: c4203099ea76b017c8d9f03e252185e01a9aa36e23a8b9cb3a0b82ee07f80401b47bffe7e1b1db5d316aba8e0bc6273f7b1190f5aeb71ebfd4f730ef6ee4ad45
|
data/lib/multiwoven/integrations/destination/salesforce_consumer_goods_cloud/schema_helper.rb
CHANGED
|
@@ -100,7 +100,6 @@ module Multiwoven
|
|
|
100
100
|
json_schema = {
|
|
101
101
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
102
102
|
"title": metadata["name"],
|
|
103
|
-
"batch_support": false,
|
|
104
103
|
"type": "object",
|
|
105
104
|
"additionalProperties": true,
|
|
106
105
|
"properties": fields_schema
|
|
@@ -121,7 +120,9 @@ module Multiwoven
|
|
|
121
120
|
"supported_sync_modes": %w[incremental],
|
|
122
121
|
"source_defined_cursor": true,
|
|
123
122
|
"default_cursor_field": ["updated"],
|
|
124
|
-
"source_defined_primary_key": [primary_key]
|
|
123
|
+
"source_defined_primary_key": [primary_key],
|
|
124
|
+
"batch_support": false,
|
|
125
|
+
"batch_size": 0
|
|
125
126
|
}
|
|
126
127
|
end
|
|
127
128
|
end
|