multiwoven-integrations 0.8.4 → 0.8.5

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: cdbc8318433dfa2cce91c25e1f32719508862392853bf55bc53d6ae8e69053d9
4
- data.tar.gz: a1015a21ff091fe9ad21dd1fb6fb4812b3e14de5a7ac8a3dcac85d6af87717aa
3
+ metadata.gz: 045c92b3521693d13d19cf6646e6fad4527333170b7fcaf3c2c482166286aec6
4
+ data.tar.gz: 4fde17b8f55efce0d34f4ddbdbca03677b898cfa5ab65648e7b57e0a7c189f5f
5
5
  SHA512:
6
- metadata.gz: ac89988c3b671ba1c537ea4adb21fa44b479a6a13b68a7d83f1250bd60e7552a95054af7acdcff5c9c1b3f1e55247df217b1a440b71449b3f4b1fd69afa8eaac
7
- data.tar.gz: 2fc03b10bb99d452939a4ddc3f60af052ba0e2fa5e95461b9bb4af9a60544535068ff220423a6e538f21f01f3754f752dc56039735e2787fae604dd14c87baae
6
+ metadata.gz: 8164ba08bf4b32d78409eebf2af7f10709061f711578a84a66e7a60e86ff18f4216e9b89dad38aa070f185c4a644ba1ee377f0a26ca0927bc74c641613ac63c3
7
+ data.tar.gz: 13753610f3b8f26e7f5ad72cddc193f016fb1e7a172df5d18d1310e862224dd75b95e66bfb7ee0553e1155763669c7b8ef7141c90ef84f6afc4e423b9d2d3aef
@@ -52,14 +52,17 @@ module Multiwoven
52
52
  end
53
53
 
54
54
  def process_records(records, stream)
55
+ log_message_array = []
55
56
  write_success = 0
56
57
  write_failure = 0
57
58
  properties = stream.json_schema[:properties]
58
59
  records.each do |record_object|
59
60
  record = extract_data(record_object, properties)
60
- klass = @client.const_get(stream.name)
61
- klass.send(@action, record)
61
+ args = [stream.name, "Id", record]
62
+ klass = @client.const_get(stream.name)
63
+ response = klass.send(@action, record)
62
64
  write_success += 1
65
+ log_message_array << log_request_response("info", args, response)
63
66
  rescue StandardError => e
64
67
  handle_exception(e, {
65
68
  context: "STRIPE:CRM:WRITE:EXCEPTION",
@@ -68,8 +71,9 @@ module Multiwoven
68
71
  sync_run_id: @sync_config.sync_run_id
69
72
  })
70
73
  write_failure += 1
74
+ log_message_array << log_request_response("error", args, e.message)
71
75
  end
72
- tracking_message(write_success, write_failure)
76
+ tracking_message(write_success, write_failure, log_message_array)
73
77
  end
74
78
 
75
79
  def authenticate_client
@@ -80,12 +84,6 @@ module Multiwoven
80
84
  read_json(CATALOG_SPEC_PATH)
81
85
  end
82
86
 
83
- def tracking_message(success, failure)
84
- Multiwoven::Integrations::Protocol::TrackingMessage.new(
85
- success: success, failed: failure
86
- ).to_multiwoven_message
87
- end
88
-
89
87
  def log_debug(message)
90
88
  Multiwoven::Integrations::Service.logger.debug(message)
91
89
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.8.4"
5
+ VERSION = "0.8.5"
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.8.4
4
+ version: 0.8.5
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: 2024-08-19 00:00:00.000000000 Z
11
+ date: 2024-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport