wolf_core 1.0.25 → 1.0.27

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: 5a5ede7bc065bbd9cc72bad56f2fac051ee146106252b790cc87354cd6ed5903
4
- data.tar.gz: e152596322115a6026bc7811a533c324e82f37578abd2c6c814706aed04d86c3
3
+ metadata.gz: d4c428973c5098713c6a39e243dad49df7449d1225fb428543e8a8fa5497ed71
4
+ data.tar.gz: 6e5c65a6af6968c8c4f1f5c5c38112e32b5e8d95158164c566d35c7db4e35e53
5
5
  SHA512:
6
- metadata.gz: 3c41cd83cdf6c69ae6b56045b8b4a9d820ddea66e5f9798a4a9519bf0326585e301c5c73d9ff0fbe2c2bac37d40abdff828fac8528ef9c7d585d27beb4156a1f
7
- data.tar.gz: 4af861cc31cac9eb0ddc8effb60821ff02c84f7f2f0644d7d14121ffdacb4d28bbe1030991aee35e2f72c259315ea9cc1a395a1e1ce50865910091b2424b4deb
6
+ metadata.gz: 94f191334129f7ad5ffaf4548a4c9e18ba82e9500593699d8e96d5c2a16e23bdf4877823ef89e6706303d8bc43887c50c3f9b0316fcbc4fa76d2e2095b41681e
7
+ data.tar.gz: 578084aa2bbe78870131a389cbe981813a3394b6ba237f4928b06d4bc5c13bef0356cf7f68fe114610963d5284a0e28dc1cc11b189f9f14e06ccd6d390d248ab
@@ -57,13 +57,13 @@ module WolfCore
57
57
  foreign_object
58
58
  end
59
59
 
60
- def salesforce_http_get(salesforce_access_token:, query: nil)
60
+ def salesforce_http_get(salesforce_access_token:, query: nil, validate_response: true)
61
61
  response = http_get(
62
62
  url: ENV['SALESFORCE_URL'],
63
63
  headers: { 'Authorization' => "Bearer #{salesforce_access_token}" },
64
64
  query: query
65
65
  )
66
- validate_salesforce_response(response)
66
+ validate_salesforce_response(response) if validate_response
67
67
  JSON.parse(response.parsed_response)
68
68
  end
69
69
 
@@ -3,12 +3,13 @@ module WolfCore
3
3
  module PositionsOperations
4
4
  include WolfCore::HttpOperations
5
5
 
6
- def create_position!(erecruit_token:, erecruit_platform_url:, position:, error_message:)
6
+ def create_position!(erecruit_token:, erecruit_platform_url:, position:, error_message:, error_data: nil)
7
7
  response = safe_http_post(
8
8
  headers: { "Authorization" => "Bearer #{erecruit_token}" },
9
9
  url: "#{erecruit_platform_url}/Position",
10
10
  body: position,
11
- error_message: error_message
11
+ error_message: error_message,
12
+ error_data: error_data
12
13
  )
13
14
  response.body
14
15
  end
@@ -48,7 +48,7 @@ module WolfCore
48
48
  end
49
49
  end
50
50
 
51
- def safe_http_post(url:, headers: {}, body: nil, query: nil, error_message: nil, title: nil)
51
+ def safe_http_post(url:, headers: {}, body: nil, query: nil, error_message: nil, title: nil, error_data: nil)
52
52
  response = http_post(url: url, headers: headers, body: body, query: query)
53
53
  response = parse_http_response(response)
54
54
 
@@ -56,7 +56,7 @@ module WolfCore
56
56
  log_object response, title: title
57
57
 
58
58
  error_message ||= "Error on safe_http_post"
59
- validate_http_response(response: response, message: error_message)
59
+ validate_http_response(response: response, message: error_message, error_data: error_data)
60
60
 
61
61
  response
62
62
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.25"
4
+ VERSION = "1.0.27"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.25
4
+ version: 1.0.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-30 00:00:00.000000000 Z
11
+ date: 2024-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty