multiwoven-integrations 0.1.50 → 0.1.52

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: b2ec8669076a7a0b2efcb2d782776a6ce40a225f40ae0ebe63f56c04a526c1e1
4
- data.tar.gz: 8234a7d9f7f11a5cde6c20d6ef9f954111f3757a272c89037359899c8eab5de0
3
+ metadata.gz: 48a0bc4db6363e13af5b5c1f72b35c00be6975e6b0a63d34117f40ba43cbf39c
4
+ data.tar.gz: b0cee1ab790474c3be66718220ffa07daea339226f6ff518449c354e6ce0cdc8
5
5
  SHA512:
6
- metadata.gz: 61d15b55378dffb0448080079d34665899980219f7ce7341aa74c241818298d2cb17fd261e2c33e82dd37df846a8b57ace50dd2ec3d6772bfc60ecd5fb9bb798
7
- data.tar.gz: a1a31b747928624ccbcbb34d8cac68ef75c5182b767b6f4cd3650d106f31ca723f5bb16403fa9f91936e57f3cf9e004c7769596c53ba3bd337cb2be2542a29eb
6
+ metadata.gz: fef782ddd15c42247a39e6c4db54430388587d553a4ee0a8b4325bdc938c3460c2ccef560153e7bb467763ec67f1bc8760640c722df7be5a870993c9d98229ad
7
+ data.tar.gz: 6da2703663100ff0240aefa0db8acac9382ac1c16a0445fd19bac682025b30fcd161641fefc7dc955d0519cbd3b1768462856e98a8af614b8343c38235a9b513
@@ -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
@@ -11,7 +11,7 @@ module Multiwoven::Integrations::Destination
11
11
  connection_config = connection_config.with_indifferent_access
12
12
  with_sftp_client(connection_config) do |sftp|
13
13
  stream = SecureRandom.uuid
14
- test_path = "/path/to/test/#{stream}"
14
+ test_path = "#{connection_config[:destination_path]}/#{stream}"
15
15
  test_file_operations(sftp, test_path)
16
16
  return success_status
17
17
  end
@@ -5,7 +5,7 @@
5
5
  "schema_mode": "schemaless",
6
6
  "streams": [
7
7
  {
8
- "name": "sftp",
8
+ "name": "visits",
9
9
  "batch_support": true,
10
10
  "batch_size": 100000,
11
11
  "action": "create",
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.1.50"
5
+ VERSION = "0.1.52"
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.50
4
+ version: 0.1.52
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P