wolf_core 1.0.24 → 1.0.25
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: 5a5ede7bc065bbd9cc72bad56f2fac051ee146106252b790cc87354cd6ed5903
|
4
|
+
data.tar.gz: e152596322115a6026bc7811a533c324e82f37578abd2c6c814706aed04d86c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c41cd83cdf6c69ae6b56045b8b4a9d820ddea66e5f9798a4a9519bf0326585e301c5c73d9ff0fbe2c2bac37d40abdff828fac8528ef9c7d585d27beb4156a1f
|
7
|
+
data.tar.gz: 4af861cc31cac9eb0ddc8effb60821ff02c84f7f2f0644d7d14121ffdacb4d28bbe1030991aee35e2f72c259315ea9cc1a395a1e1ce50865910091b2424b4deb
|
@@ -14,7 +14,7 @@ module WolfCore # rubocop:disable Style/FrozenStringLiteralComment
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def create_match(erecruit_token:, erecruit_platform_url:, position_id:, candidate_id:)
|
17
|
-
|
17
|
+
parsed_http_post(
|
18
18
|
headers: { "Authorization" => "Bearer #{erecruit_token}" },
|
19
19
|
url: "#{erecruit_platform_url}/",
|
20
20
|
query: { tenant: tenant }
|
@@ -22,7 +22,7 @@ module WolfCore # rubocop:disable Style/FrozenStringLiteralComment
|
|
22
22
|
end
|
23
23
|
|
24
24
|
def update_match!(erecruit_token:, erecruit_platform_url:, position_id:, candidate_id:, error_message:)
|
25
|
-
response =
|
25
|
+
response = safe_http_put(
|
26
26
|
headers: { "Authorization" => "Bearer #{erecruit_token}" },
|
27
27
|
url: "#{erecruit_platform_url}/",
|
28
28
|
query: { tenant: tenant },
|
@@ -32,7 +32,7 @@ module WolfCore # rubocop:disable Style/FrozenStringLiteralComment
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def update_match(erecruit_token:, erecruit_platform_url:, position_id:, candidate_id:)
|
35
|
-
response =
|
35
|
+
response = parsed_http_put(
|
36
36
|
headers: { "Authorization" => "Bearer #{erecruit_token}" },
|
37
37
|
url: "#{erecruit_platform_url}/",
|
38
38
|
query: { tenant: tenant }
|
@@ -3,42 +3,40 @@ module WolfCore
|
|
3
3
|
module PositionsOperations
|
4
4
|
include WolfCore::HttpOperations
|
5
5
|
|
6
|
-
def create_position!(erecruit_token:, erecruit_platform_url:,
|
6
|
+
def create_position!(erecruit_token:, erecruit_platform_url:, position:, error_message:)
|
7
7
|
response = safe_http_post(
|
8
8
|
headers: { "Authorization" => "Bearer #{erecruit_token}" },
|
9
|
-
url: "#{erecruit_platform_url}/",
|
10
|
-
|
9
|
+
url: "#{erecruit_platform_url}/Position",
|
10
|
+
body: position,
|
11
11
|
error_message: error_message
|
12
12
|
)
|
13
|
-
|
13
|
+
response.body
|
14
14
|
end
|
15
15
|
|
16
|
-
def create_position(erecruit_token:, erecruit_platform_url:,
|
17
|
-
|
16
|
+
def create_position(erecruit_token:, erecruit_platform_url:, position:)
|
17
|
+
parsed_http_post(
|
18
18
|
headers: { "Authorization" => "Bearer #{erecruit_token}" },
|
19
|
-
url: "#{erecruit_platform_url}/",
|
20
|
-
|
19
|
+
url: "#{erecruit_platform_url}/Position",
|
20
|
+
body: position
|
21
21
|
)
|
22
|
-
nil if response.code == 200
|
23
22
|
end
|
24
23
|
|
25
|
-
def update_position!(erecruit_token:, erecruit_platform_url:, position_id:,
|
26
|
-
response =
|
24
|
+
def update_position!(erecruit_token:, erecruit_platform_url:, position_id:, position:, error_message:)
|
25
|
+
response = safe_http_put(
|
27
26
|
headers: { "Authorization" => "Bearer #{erecruit_token}" },
|
28
|
-
url: "#{erecruit_platform_url}/",
|
29
|
-
|
27
|
+
url: "#{erecruit_platform_url}/Position/#{position_id}",
|
28
|
+
body: position,
|
30
29
|
error_message: error_message
|
31
30
|
)
|
32
|
-
|
31
|
+
response.body
|
33
32
|
end
|
34
33
|
|
35
|
-
def update_position(erecruit_token:, erecruit_platform_url:, position_id:,
|
36
|
-
|
34
|
+
def update_position(erecruit_token:, erecruit_platform_url:, position_id:, position:)
|
35
|
+
parsed_http_put(
|
37
36
|
headers: { "Authorization" => "Bearer #{erecruit_token}" },
|
38
|
-
url: "#{erecruit_platform_url}/",
|
39
|
-
|
37
|
+
url: "#{erecruit_platform_url}/Position/#{position_id}",
|
38
|
+
body: position
|
40
39
|
)
|
41
|
-
nil if response.code == 200
|
42
40
|
end
|
43
41
|
end
|
44
42
|
end
|
data/lib/wolf_core/version.rb
CHANGED