wolf_core 1.0.30 → 1.0.31

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 16ba45df6305cc568cf3c692f1f773a3b858e798dbab211af08b132db0d25186
4
- data.tar.gz: 8477093023a6a26ac91e768a3e0607d503cb015d28379135f46c31f80c0f1917
3
+ metadata.gz: e1be0e306a525249f1b834d2bd702869cb1d06b91e4f18a491725485bff3e5df
4
+ data.tar.gz: 5cbdf166f59f3a2f5e3c5ced8ce269c0edfcbf29d31f45ae1aadcedf6c6d4f40
5
5
  SHA512:
6
- metadata.gz: 4eec62e7a0373b541550156961f6a1d0d5520e0bd2507280b77f51dc8aa761c1b0064db99eded9ba892d0586b1170ed26603278fb3a03b1bcc5c8e5c12899b75
7
- data.tar.gz: c18991fcd0dda19297813a63c93ac805a5d4f06afbae929a2b8606c3d4295b9c147b655d0072f4b21ec6b8b36c40914c9596d478cdbb2ae80c2183a465e944db
6
+ metadata.gz: a0664df28d2e22176da6a57d8a95933170b5e1c5798fc1e0f02e7c2e79a3951fadbfb7154444a97ceff3adc06da74fb11957e527ed28d8697b0e4ab6402fb83a
7
+ data.tar.gz: 92dcbcac34b41ed513f641bf5d590ba9e65f34de753249a91fad42a81013cfb60f97de29f440d264a58666172bbb4bee1d9d789785fb20bcdceebffe6bb5fa22
@@ -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.30"
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.30
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