cb-api 16.1.0 → 16.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -2,6 +2,7 @@ Version History
2
2
  ====
3
3
  * All Version bumps are required to update this file as well!!
4
4
  ----
5
+ * 16.2.0 Added support for work experience ID in resume put
5
6
  * 16.1.0 Added support for handling a 401 unauthorized response. We should now raise specific UnauthorizedErrors.
6
7
  * 16.0.0 Modifying the Resume model to reflect the changes made in the API (Removal of job title from salary and
7
8
  addition of id to work experience and work Experience Id to salary
@@ -46,7 +46,8 @@ module Cb
46
46
  employmentType: experience[:employment_type],
47
47
  startDate: experience[:start_date],
48
48
  endDate: experience[:end_date],
49
- currentlyEmployedHere: experience[:currently_employed_here]
49
+ currentlyEmployedHere: experience[:currently_employed_here],
50
+ id: experience[:id]
50
51
  }
51
52
  end
52
53
  end
@@ -58,7 +59,7 @@ module Cb
58
59
  mostRecentPayAmount: salary[:most_recent_pay_amount],
59
60
  perHourOrPerYear: salary[:per_hour_or_per_year],
60
61
  currencyCode: salary[:currency_code],
61
- jobTitle: salary[:job_title],
62
+ workExperienceId: salary[:work_experience_id],
62
63
  annualBonus: salary[:annual_bonus],
63
64
  annualCommission: salary[:annual_commission],
64
65
  }
data/lib/cb/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Cb
2
- VERSION = '16.1.0'
2
+ VERSION = '16.2.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cb-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 16.1.0
4
+ version: 16.2.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-01-30 00:00:00.000000000 Z
12
+ date: 2015-02-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty