wolf_core 1.0.30 → 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1be0e306a525249f1b834d2bd702869cb1d06b91e4f18a491725485bff3e5df
|
4
|
+
data.tar.gz: 5cbdf166f59f3a2f5e3c5ced8ce269c0edfcbf29d31f45ae1aadcedf6c6d4f40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/wolf_core/version.rb
CHANGED
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.
|
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-
|
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
|