multiwoven-integrations 0.41.8 → 0.41.9

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: cc1293c0d20713678c840280bf1cbe9cc1cfa60280897e581ce1230807e8377a
4
- data.tar.gz: a9b321a3f5eabfab1b5de744aaf2bbb5e949f6244cf757b134626047330af3d2
3
+ metadata.gz: 1b2f25b2f211e2af49f7a5e5ebb7231d6e6a697479a3aea8c9194c2e951f0b34
4
+ data.tar.gz: d7adf1c8bfd2f93a1c953ab2233feabe6c3222a3dc281e9ce651f32a74f6d5d2
5
5
  SHA512:
6
- metadata.gz: a78e53ff9f535168b2b42c0d3838b32a38d95dd06fe455c0122273ae8d40b0eea219c50a39674df41b8878b102c7489f63492b87c3d281b25a976212dd57fe41
7
- data.tar.gz: 3c7a356e35cfa48d3b7e5dacc3fcdc14dc0155a813a473d1ab4688a3524bb78e09d401c213a8a636b9592a86215d56e7b6027855a38101449d2033395bde0f9c
6
+ metadata.gz: e9b7989c7cc64fbb6080b4dbcae05d4f0fe427429d962aa8d40a6f9ca8d2ae0de0dc9cc610e2680a4b8d76e614cced6c4215fb5fb5c5ae03e3e598ee038b4614
7
+ data.tar.gz: 5295ae2e994ca6858774d2ec5f7f4b22c087c6aba64ebfb61d783263aafb44b05038e681763b32132388a6a5b95866607d2354135a2bb4da2312a0e62f2c3f5f
@@ -112,8 +112,8 @@ module Multiwoven
112
112
  end
113
113
 
114
114
  def excluded_openai_model?(model_id)
115
- @open_ai_exclude_models ||= OPEN_AI_EXCLUDE_MODELS.split(",").map(&:strip).reject(&:empty?)
116
- @open_ai_exclude_models.include?(model_id)
115
+ @openai_exclude_models ||= OPENAI_EXCLUDE_MODELS.split(",").map(&:strip).reject(&:empty?)
116
+ @openai_exclude_models.include?(model_id)
117
117
  end
118
118
 
119
119
  def excluded_anthropic_model?(model_id)
@@ -16,7 +16,7 @@ module Multiwoven
16
16
 
17
17
  JSON_SCHEMA_URL = "https://json-schema.org/draft-07/schema#"
18
18
 
19
- OPEN_AI_EXCLUDE_MODELS = ENV["OPEN_AI_EXCLUDE_MODELS"] || ""
19
+ OPENAI_EXCLUDE_MODELS = ENV["OPENAI_EXCLUDE_MODELS"] || ""
20
20
  ANTHROPIC_EXCLUDE_MODELS = ENV["ANTHROPIC_EXCLUDE_MODELS"] || ""
21
21
 
22
22
  # CONNECTORS
@@ -67,7 +67,7 @@ module Multiwoven::Integrations::Destination
67
67
  def write_compressed_data(connection_config, file_path, local_file_name, csv_content, records_size)
68
68
  write_success = 0
69
69
  Tempfile.create([local_file_name, ".zip"]) do |tempfile|
70
- Zip::File.open(tempfile.path, Zip::File::CREATE) do |zipfile|
70
+ Zip::File.open(tempfile.path, create: true) do |zipfile|
71
71
  zipfile.get_output_stream("#{local_file_name}.csv") { |f| f.write(csv_content) }
72
72
  end
73
73
  with_sftp_client(connection_config) do |sftp|
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.41.8"
5
+ VERSION = "0.41.9"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
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.41.8
4
+ version: 0.41.9
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: 2026-09-09 00:00:00.000000000 Z
11
+ date: 2026-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport