cb-api 19.0.0 → 19.1.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 +1 -0
- data/lib/cb/models/implementations/resume_listing.rb +2 -1
- data/lib/cb/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 927a9d1a43c2176e0dd0c3aa988bcd163db096df
|
|
4
|
+
data.tar.gz: 7864a5d02f3b91111f04c26f95510a4d2ee60e6a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12913a9f89a35c8b93e1f4c97138d6633ab8e3f00cf74a836adf70bfeff675457083e7e033f605f51174c1d85cfa661785a2b7970a152e5581d46c1e0ea26528
|
|
7
|
+
data.tar.gz: 9c104862e8f2013fa341b18a820a1ffb75adda95619de49fdcfcd2b8bc801d1b12e363d71ee0e71a76400feb981d7774c0c95f95f9bda4fa22dfbb3b6b254921
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,7 @@ Version History
|
|
|
3
3
|
* All Version bumps are required to update this file as well!!
|
|
4
4
|
----
|
|
5
5
|
|
|
6
|
+
* 19.1.0 Add Migration ID field to resume listing model.
|
|
6
7
|
* 19.0.0 Removed job search version(s) prior to version 3. Breaks existing consumers of the API in the following ways. JobResultsV3 renamed to JobResults. The old JobResults path no longer works. Users of the JobSearch API will now need to use OAuth and not Developer Keys to use the JobSearch API>
|
|
7
8
|
* 18.5.6 Adding an additional field to application form
|
|
8
9
|
* 18.5.5 Turn company recs response into an array if its not.
|
|
@@ -11,11 +11,12 @@
|
|
|
11
11
|
module Cb
|
|
12
12
|
module Models
|
|
13
13
|
class ResumeListing < ApiResponseModel
|
|
14
|
-
attr_accessor :title, :external_id, :host_site, :modified_dt, :visibility
|
|
14
|
+
attr_accessor :title, :external_id, :migration_id, :host_site, :modified_dt, :visibility
|
|
15
15
|
|
|
16
16
|
def set_model_properties
|
|
17
17
|
@title = api_response['Title']
|
|
18
18
|
@external_id = api_response['ExternalID']
|
|
19
|
+
@migration_id = api_response['MigrationID'] unless api_response['MigrationID'].nil?
|
|
19
20
|
@host_site = api_response['HostSite']
|
|
20
21
|
@modified_dt = api_response['ModifiedDT']
|
|
21
22
|
@visibility = api_response['Visibility']
|
data/lib/cb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cb-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 19.
|
|
4
|
+
version: 19.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The CareerBuilder.com Niche and Consumer Development teams
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-02-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|