multiwoven-integrations 0.34.9 → 0.34.10

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: 5c72a9da0aeb56e15b4ba607cb2aaa835c0bd82fc35f21acbfa00fd31aa7d0f9
4
- data.tar.gz: 66a6b214675cd30fb9e7480c17e507f743030240b76fad18f7e87b180ced54ad
3
+ metadata.gz: a3146b56f87f49f572cc5c4ae740846e708137eb55881d87ba7982baa9f89768
4
+ data.tar.gz: 0474f983113e4e5b58af75c41c041a2d90f50d448872d23a6435a9711bbd7bca
5
5
  SHA512:
6
- metadata.gz: b1085ca81e3b5701580426bc7046b8d4b8c4d5460ca38f59ca5ff7ec6eb929fa2a60e302aefb2ccc17163e00aaab4d220c591c9a156689fb9391dc4cf9f65c1d
7
- data.tar.gz: e10ccc0be176977c96a1fbf9c6cda6e0baab3ee9050b6401250f619ed2f72314663ff271e1c78cbdc6be73bd1eedf72891437732d44a5b3e97fcc7e20687bbdf
6
+ metadata.gz: f62121314c055fa88538b0ecbb7c03837d83d6ed1d6a11571e0fece48066739590aab30b8f6d3b301f8cf07dc0c3a681b687b90d4744eb1d5603050291725165
7
+ data.tar.gz: 8bbc5c2e576eda8cfaa35241bd2b7edc2cc62eb05c0f7e6edd9947db5bef96946637b5ff5aec5b2c74961c87fc8f13858c7062529ad6194618e0991b2c7c075f
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.34.9"
5
+ VERSION = "0.34.10"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
@@ -14,6 +14,8 @@ module Multiwoven::Integrations::Source
14
14
 
15
15
  if unstructured_data?(connection_config) || semistructured_data?(connection_config)
16
16
  create_drive_connection(connection_config)
17
+ folder_name = connection_config[:folder_name]
18
+ build_query(folder_name)
17
19
  else
18
20
  create_connection(connection_config)
19
21
  end
@@ -82,6 +84,7 @@ module Multiwoven::Integrations::Source
82
84
  when /^#{DOWNLOAD_FILE_CMD}\s+(.+)$/
83
85
  file_name = ::Regexp.last_match(1).strip
84
86
  file_name = file_name.gsub(/^["']|["']$/, "") # Remove leading/trailing quotes
87
+ file_name = file_name.gsub("\\", "\\\\\\") # Escape backslashes
85
88
  download_file_to_local(file_name, sync_config.sync_id)
86
89
  else
87
90
  raise ArgumentError, "Invalid command. Supported commands: #{LIST_FILES_CMD}, #{DOWNLOAD_FILE_CMD} <file_path>"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multiwoven-integrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.9
4
+ version: 0.34.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-11-18 00:00:00.000000000 Z
11
+ date: 2025-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport