wolf_core 1.0.29 → 1.0.31

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: 2fe77efe4ddb94615a519bb0428fc34ead16fc8606def6258231c37e71c9b7ff
4
- data.tar.gz: 779b800dff2d790da316fb2f4e5258cec31bb9d4bf1c6b8b24415c0168607542
3
+ metadata.gz: e1be0e306a525249f1b834d2bd702869cb1d06b91e4f18a491725485bff3e5df
4
+ data.tar.gz: 5cbdf166f59f3a2f5e3c5ced8ce269c0edfcbf29d31f45ae1aadcedf6c6d4f40
5
5
  SHA512:
6
- metadata.gz: ae81ae53c9bfd5c7a91902b5cae970a05f357472b7ddf4fc390c732ed082f3479ffd7522cb0c1afb898eb3ba0b91a9ec7dbbe6aff124fe40216efffae47f4c3b
7
- data.tar.gz: 07ae930ff5fc86e76952f523add9b92cf56f6b90020cacace7053c065b1b9697a1f80743b3af994c0814f5e7831ecf3717e01ebb6fd27c20224a727b3069d424
6
+ metadata.gz: a0664df28d2e22176da6a57d8a95933170b5e1c5798fc1e0f02e7c2e79a3951fadbfb7154444a97ceff3adc06da74fb11957e527ed28d8697b0e4ab6402fb83a
7
+ data.tar.gz: 92dcbcac34b41ed513f641bf5d590ba9e65f34de753249a91fad42a81013cfb60f97de29f440d264a58666172bbb4bee1d9d789785fb20bcdceebffe6bb5fa22
@@ -15,7 +15,7 @@ module WolfCore
15
15
  extension: filename.split('.').second
16
16
  }
17
17
  size = file_payload.to_json.size
18
- exceed_limit = size >= limits
18
+ exceed_limit = size >= limit
19
19
  if exceed_limit
20
20
  file_payload[:limit] = limit
21
21
  file_payload[:payloadSize] = size
@@ -0,0 +1,67 @@
1
+ module WolfCore
2
+ module Burnett
3
+ module Onboarding
4
+ module CandidateOperations
5
+ include WolfCore::HttpOperations
6
+
7
+ def create_candidate!(erecruit_token:, erecruit_platform_url:, candidate:, error_message:, error_data: nil)
8
+ response = safe_http_post(
9
+ headers: { "Authorization" => "Bearer #{erecruit_token}" },
10
+ url: "#{erecruit_platform_url}/Candidate",
11
+ body: candidate,
12
+ error_message: error_message,
13
+ error_data: error_data
14
+ )
15
+ response.body
16
+ end
17
+
18
+ def create_candidate(erecruit_token:, erecruit_platform_url:, candidate:)
19
+ parsed_http_post(
20
+ headers: { "Authorization" => "Bearer #{erecruit_token}" },
21
+ url: "#{erecruit_platform_url}/Candidate",
22
+ body: candidate
23
+ )
24
+ end
25
+
26
+ def update_candidate!(erecruit_token:, erecruit_platform_url:, candidate_id:, candidate:, error_message:, error_data: nil)
27
+ response = safe_http_put(
28
+ headers: { "Authorization" => "Bearer #{erecruit_token}" },
29
+ url: "#{erecruit_platform_url}/Candidate/#{candidate_id}",
30
+ body: candidate,
31
+ error_message: error_message,
32
+ error_data: error_data,
33
+ )
34
+ response.body
35
+ end
36
+
37
+ def update_candidate(erecruit_token:, erecruit_platform_url:, candidate_id:, candidate:)
38
+ parsed_http_put(
39
+ headers: { "Authorization" => "Bearer #{erecruit_token}" },
40
+ url: "#{erecruit_platform_url}/Candidate/#{candidate_id}",
41
+ body: candidate,
42
+ error_message: error_message,
43
+ error_data: error_data,
44
+ )
45
+ end
46
+
47
+ def submit_candidate_cv(erecruit_token:, erecruit_platform_url:, candidate_id:, cv_url:)
48
+ filename, bytes = bytes_from_url(cv_url).values_at(:filename, :bytes)
49
+ parsed_http_post(
50
+ headers: {
51
+ 'Authorization' => "Bearer #{erecruit_token}",
52
+ 'Content-Type' => "form-data"
53
+ },
54
+ url: "#{erecruit_platform_url}/Attachment",
55
+ body: {
56
+ aboutType: "Candidate",
57
+ referenceID: candidate_id,
58
+ attachmentTypeID: "Resume",
59
+ name: filename,
60
+ Resume: bytes
61
+ }
62
+ )
63
+ end
64
+ end
65
+ end
66
+ end
67
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.29"
4
+ VERSION = "1.0.31"
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.29
4
+ version: 1.0.31
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-11-07 00:00:00.000000000 Z
11
+ date: 2024-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -97,6 +97,7 @@ files:
97
97
  - lib/wolf_core/application/burnett/company_operations/company_operations.rb
98
98
  - lib/wolf_core/application/burnett/data_transformation/mappings.rb
99
99
  - lib/wolf_core/application/burnett/match_operations/match_operattions.rb
100
+ - lib/wolf_core/application/burnett/onboarding/candidate_operations.rb
100
101
  - lib/wolf_core/application/burnett/positions_operations/positions_operations.rb
101
102
  - lib/wolf_core/application/exception_operations.rb
102
103
  - lib/wolf_core/application/integrations/change_detection.rb