cb-api 14.3.0 → 14.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +1 -0
- data/lib/cb/utils/response_map.rb +2 -0
- data/lib/cb/version.rb +1 -1
- metadata +1 -1
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
|
+
* 14.3.1 Fixed missing response mapping
|
5
6
|
* 14.3.0 Added country codes api call
|
6
7
|
* 14.2.0 Added resume language codes api call
|
7
8
|
* 14.1.2 Added count limit to resume recommendations call
|
@@ -47,6 +47,8 @@ module Cb
|
|
47
47
|
Cb::Requests::Resumes::List => Cb::Responses::ResumeList,
|
48
48
|
Cb::Requests::Resumes::LanguageCodes => Cb::Responses::LanguageCodes,
|
49
49
|
|
50
|
+
Cb::Requests::DataLists::CountryCodes => Cb::Responses::CountryCodes,
|
51
|
+
|
50
52
|
Cb::Requests::User::ChangePassword => Cb::Responses::User::ChangePassword,
|
51
53
|
Cb::Requests::User::CheckExisting => Cb::Responses::User::CheckExisting,
|
52
54
|
Cb::Requests::User::Delete => Cb::Responses::User::Delete,
|
data/lib/cb/version.rb
CHANGED