cb-api 19.0.0 → 19.1.0

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
  SHA1:
3
- metadata.gz: ee3ffb53f8b2c77159417a8e0f454826efb3cea8
4
- data.tar.gz: a1a61ee78495e8cd0bb837e0e900cab531eb2beb
3
+ metadata.gz: 927a9d1a43c2176e0dd0c3aa988bcd163db096df
4
+ data.tar.gz: 7864a5d02f3b91111f04c26f95510a4d2ee60e6a
5
5
  SHA512:
6
- metadata.gz: b7d8166fbf9a190faea2c323583da6ad0cf71f6ce6ec9a02af49cd354f9ff1640a2406561bfa7c3b1d8c6316eb20a3ee411cb659fb6a784d8d1ff462eb8472c1
7
- data.tar.gz: 406a4f578a1d320fa547e20f51a6ce0d3163ecc3e244908ab721ea7a5d47b849bf0b0de78525c86965ff2eceeb5983fe0c5bf2fdb72bc12663a813563a9a5036
6
+ metadata.gz: 12913a9f89a35c8b93e1f4c97138d6633ab8e3f00cf74a836adf70bfeff675457083e7e033f605f51174c1d85cfa661785a2b7970a152e5581d46c1e0ea26528
7
+ data.tar.gz: 9c104862e8f2013fa341b18a820a1ffb75adda95619de49fdcfcd2b8bc801d1b12e363d71ee0e71a76400feb981d7774c0c95f95f9bda4fa22dfbb3b6b254921
@@ -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']
@@ -9,5 +9,5 @@
9
9
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
10
  # See the License for the specific language governing permissions and limitations under the License.
11
11
  module Cb
12
- VERSION = '19.0.0'
12
+ VERSION = '19.1.0'
13
13
  end
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.0.0
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: 2015-11-30 00:00:00.000000000 Z
11
+ date: 2016-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty