teamtailor 0.3.3 → 0.4.0
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 +4 -4
- data/CHANGELOG.md +5 -1
- data/Gemfile.lock +4 -4
- data/lib/teamtailor/client.rb +17 -0
- data/lib/teamtailor/parser/upload.rb +8 -0
- data/lib/teamtailor/parser.rb +2 -0
- data/lib/teamtailor/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9c57341c9921c00f3071776c738524eb9a117066bd62d530bf580c5ee9fb5c3d
|
|
4
|
+
data.tar.gz: 8c4272a54dceb9c87d7d3e8008a313eb1a90737035dc467bc035123e1e0d71fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '096700846b1ef8b90ac22f506d54ddfc00cbab59b083f1573b0a17967add35e9ef7fb01fc7f908e62c46379e5b431e5ee8c7c2e07a46f5e9e5dac44d3c7786a2'
|
|
7
|
+
data.tar.gz: 52e0e41220eb03eced02c1a9fc841c68ed14139ad9778de5601ebb3e5713a0400f909a9b7fc53725e41771f1a4c6241041211c17bcd031cab1bfa3c6681aceab
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
teamtailor (0.
|
|
4
|
+
teamtailor (0.4.0)
|
|
5
5
|
typhoeus (~> 1.3.1)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -14,9 +14,9 @@ GEM
|
|
|
14
14
|
safe_yaml (~> 1.0.0)
|
|
15
15
|
diff-lcs (1.3)
|
|
16
16
|
docile (1.3.2)
|
|
17
|
-
ethon (0.
|
|
18
|
-
ffi (>= 1.
|
|
19
|
-
ffi (1.
|
|
17
|
+
ethon (0.14.0)
|
|
18
|
+
ffi (>= 1.15.0)
|
|
19
|
+
ffi (1.15.4)
|
|
20
20
|
hashdiff (1.0.1)
|
|
21
21
|
parallel (1.20.1)
|
|
22
22
|
parser (3.0.0.0)
|
data/lib/teamtailor/client.rb
CHANGED
|
@@ -83,6 +83,23 @@ module Teamtailor
|
|
|
83
83
|
).call
|
|
84
84
|
end
|
|
85
85
|
|
|
86
|
+
def create_upload(attributes:, relationships:)
|
|
87
|
+
Teamtailor::Request.new(
|
|
88
|
+
base_url: base_url,
|
|
89
|
+
api_token: api_token,
|
|
90
|
+
api_version: api_version,
|
|
91
|
+
path: "/v1/uploads",
|
|
92
|
+
method: :post,
|
|
93
|
+
body: {
|
|
94
|
+
data: {
|
|
95
|
+
type: "uploads",
|
|
96
|
+
attributes: attributes.transform_keys { |k| k.to_s.gsub("_", "-") },
|
|
97
|
+
relationships: relationships,
|
|
98
|
+
},
|
|
99
|
+
}
|
|
100
|
+
).call
|
|
101
|
+
end
|
|
102
|
+
|
|
86
103
|
def create_job_application(attributes:, relationships:)
|
|
87
104
|
Teamtailor::Request.new(
|
|
88
105
|
base_url: base_url,
|
data/lib/teamtailor/parser.rb
CHANGED
|
@@ -15,6 +15,7 @@ require "teamtailor/parser/referral"
|
|
|
15
15
|
require "teamtailor/parser/partner_result"
|
|
16
16
|
require "teamtailor/parser/requisition"
|
|
17
17
|
require "teamtailor/parser/requisition_step_verdict"
|
|
18
|
+
require "teamtailor/parser/upload"
|
|
18
19
|
|
|
19
20
|
module Teamtailor
|
|
20
21
|
class Parser
|
|
@@ -41,6 +42,7 @@ module Teamtailor
|
|
|
41
42
|
when "partner-results" then Teamtailor::PartnerResult.new(record, included)
|
|
42
43
|
when "requisitions" then Teamtailor::Requisition.new(record, included)
|
|
43
44
|
when "requisition-step-verdicts" then Teamtailor::RequisitionStepVerdict.new(record, included)
|
|
45
|
+
when "uploads" then Teamtailor::Upload.new(record, included)
|
|
44
46
|
|
|
45
47
|
else
|
|
46
48
|
raise Teamtailor::UnknownResponseTypeError, record&.dig("type")
|
data/lib/teamtailor/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: teamtailor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- André Ligné
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-09-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -78,6 +78,7 @@ files:
|
|
|
78
78
|
- lib/teamtailor/parser/requisition.rb
|
|
79
79
|
- lib/teamtailor/parser/requisition_step_verdict.rb
|
|
80
80
|
- lib/teamtailor/parser/stage.rb
|
|
81
|
+
- lib/teamtailor/parser/upload.rb
|
|
81
82
|
- lib/teamtailor/parser/user.rb
|
|
82
83
|
- lib/teamtailor/record.rb
|
|
83
84
|
- lib/teamtailor/relationship.rb
|