cb-api 19.1.0 → 19.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -0
- data/lib/cb/config.rb +37 -37
- data/lib/cb/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e1ad51af191a99572a406269d6c2651a8fa5ff7
|
4
|
+
data.tar.gz: b64a995401eb9222ad3081084e2ea1198e3c1b49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8c76d539e0823fefecb876a5d94869e2d862e13574838f01839e33c8556b3def6341cb8c24ad06cf9740a3a6410e98d2857c45a8b7c48bcaadae68bb7bbec63
|
7
|
+
data.tar.gz: 4894150692ad214101a51c26e2528d97aaf0c16e2772c6d8e95423f225efc35e1faf097631509b3d2a561ddf004004048af03954703a820ff7240b56aabe371a
|
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.1 No functional differences, some code cleanup
|
6
7
|
* 19.1.0 Add Migration ID field to resume listing model.
|
7
8
|
* 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>
|
8
9
|
* 18.5.6 Adding an additional field to application form
|
data/lib/cb/config.rb
CHANGED
@@ -53,61 +53,61 @@ module Cb
|
|
53
53
|
#################################################################
|
54
54
|
|
55
55
|
def set_default_api_uris
|
56
|
-
@
|
57
|
-
@
|
58
|
-
@uri_employee_types ||= '/v1/employeetypes'
|
59
|
-
@uri_company_find ||= '/Employer/CompanyDetails'
|
60
|
-
@uri_job_search ||= '/consumer/jobs/search/'
|
61
|
-
@uri_job_find ||= '/v3/Job'
|
62
|
-
@uri_education_code ||= '/v1/EducationCodes'
|
63
|
-
@uri_recommendation_for_job ||= '/v1/Recommendations/ForJob'
|
64
|
-
@uri_recommendation_for_user ||= '/v1/Recommendations/ForUser'
|
65
|
-
@uri_recommendation_for_company ||= '/Employer/JobRecommendation'
|
66
|
-
@uri_recommendation_for_resume ||= '/jobsearch/recommendations/:resume_hash'
|
56
|
+
@uri_anon_saved_search_create ||= '/v1/anonymoussavedjobsearch/create'
|
57
|
+
@uri_anon_saved_search_delete ||= '/v1/anonymoussavedjobsearch/delete'
|
67
58
|
@uri_application ||= '/cbapi/application/:did'
|
68
59
|
@uri_application_create ||= '/cbapi/application/'
|
69
60
|
@uri_application_submit ||= '/v1/Application/submit'
|
70
61
|
@uri_application_registered ||= '/v3/application/registered'
|
71
62
|
@uri_application_external ||= '/v1/application/external'
|
72
63
|
@uri_application_form ||= '/cbapi/job/:did/applicationform'
|
73
|
-
@
|
74
|
-
@
|
75
|
-
@
|
76
|
-
@
|
77
|
-
@
|
64
|
+
@uri_company_find ||= '/Employer/CompanyDetails'
|
65
|
+
@uri_countries ||= '/consumer/datalist/countries'
|
66
|
+
@uri_cover_letter_list ||= '/v1/coverletter/list'
|
67
|
+
@uri_cover_letter_retrieve ||= '/coverletter/retrieve'
|
68
|
+
@uri_cover_letter_update ||= '/coverletter/edit'
|
69
|
+
@uri_cover_letter_delete ||= '/coverletter/delete'
|
70
|
+
@uri_desired_job_type ||= '/consumer/datalist/desiredjobtype'
|
71
|
+
@uri_education_code ||= '/v1/EducationCodes'
|
72
|
+
@uri_employee_types ||= '/v1/employeetypes'
|
78
73
|
@uri_job_branding ||= '/branding'
|
74
|
+
@uri_job_category_search ||= '/v1/categories'
|
75
|
+
@uri_job_find ||= '/v3/Job'
|
76
|
+
@uri_job_industry_search ||= '/v1/industrycodes'
|
77
|
+
@uri_job_search ||= '/consumer/jobs/search/'
|
78
|
+
@uri_languages ||= '/consumer/datalist/languages'
|
79
|
+
@uri_recommendation_for_job ||= '/v1/Recommendations/ForJob'
|
80
|
+
@uri_recommendation_for_user ||= '/v1/Recommendations/ForUser'
|
81
|
+
@uri_recommendation_for_company ||= '/Employer/JobRecommendation'
|
82
|
+
@uri_recommendation_for_resume ||= '/jobsearch/recommendations/:resume_hash'
|
83
|
+
@uri_report_job ||= '/v1/job/report'
|
84
|
+
@uri_resume_get ||= '/cbapi/resumes/:resume_hash'
|
85
|
+
@uri_resume_put ||= '/cbapi/resumes/:resume_hash'
|
86
|
+
@uri_resume_delete ||= '/cbapi/resumes/:resume_hash'
|
87
|
+
@uri_resume_post ||= '/consumer/resumedocuments'
|
88
|
+
@uri_resume_list ||= '/v3/resume/list'
|
89
|
+
@uri_resume_language_codes ||= '/v1/languagecodes'
|
90
|
+
@uri_resume_education ||= '/consumer/datalist/ResumeEducation'
|
79
91
|
@uri_saved_search_retrieve ||= '/cbapi/savedsearches/:did'
|
80
92
|
@uri_saved_search_create ||= '/v2/savedsearch/create'
|
81
93
|
@uri_saved_search_update ||= '/cbapi/SavedSearches'
|
82
94
|
@uri_saved_search_delete ||= '/cbapi/savedsearches/:did'
|
83
95
|
@uri_saved_search_list ||= '/cbapi/savedsearches'
|
84
|
-
@
|
85
|
-
@
|
96
|
+
@uri_subscription_retrieve ||= '/v2/user/subscription/retrieve'
|
97
|
+
@uri_subscription_modify ||= '/v2/user/subscription'
|
98
|
+
@uri_saved_job_search_create ||= '/v2/savedsearch/create'
|
99
|
+
@uri_state_list ||= '/ajax/citysuggest.aspx'
|
86
100
|
@uri_tn_join_questions ||= '/talentnetwork/config/join/questions'
|
87
101
|
@uri_tn_job_info ||= '/talentnetwork/internal/job'
|
88
102
|
@uri_tn_join_form_geo ||= '/tn/JoinForm/Geo'
|
89
103
|
@uri_tn_join_form_branding ||= '/talentnetwork/config/layout/branding'
|
90
104
|
@uri_tn_member_create ||= '/talentnetwork/member/create'
|
91
|
-
@
|
92
|
-
@
|
93
|
-
@
|
105
|
+
@uri_user_change_password ||= '/v2/User/ChangePW'
|
106
|
+
@uri_user_delete ||= '/v2/User/delete'
|
107
|
+
@uri_user_retrieve ||= '/v2/user/retrieve'
|
108
|
+
@uri_user_check_existing ||= '/v2/user/checkexisting'
|
109
|
+
@uri_user_temp_password ||= '/v1/user/temporarypassword'
|
94
110
|
@uri_work_status_list ||= '/v1/resume/workstatuslist'
|
95
|
-
@uri_resume_get ||= '/cbapi/resumes/:resume_hash'
|
96
|
-
@uri_resume_put ||= '/cbapi/resumes/:resume_hash'
|
97
|
-
@uri_resume_delete ||= '/cbapi/resumes/:resume_hash'
|
98
|
-
@uri_resume_post ||= '/consumer/resumedocuments'
|
99
|
-
@uri_resume_list ||= '/v3/resume/list'
|
100
|
-
@uri_resume_language_codes ||= '/v1/languagecodes'
|
101
|
-
@uri_countries ||= '/consumer/datalist/countries'
|
102
|
-
@uri_resume_education ||= '/consumer/datalist/ResumeEducation'
|
103
|
-
@uri_languages ||= '/consumer/datalist/languages'
|
104
|
-
@uri_desired_job_type ||= '/consumer/datalist/desiredjobtype'
|
105
|
-
@uri_state_list ||= '/ajax/citysuggest.aspx'
|
106
|
-
@uri_report_job ||= '/v1/job/report'
|
107
|
-
@uri_cover_letter_list ||= '/v1/coverletter/list'
|
108
|
-
@uri_cover_letter_retrieve ||= '/coverletter/retrieve'
|
109
|
-
@uri_cover_letter_update ||= '/coverletter/edit'
|
110
|
-
@uri_cover_letter_delete ||= '/coverletter/delete'
|
111
111
|
end
|
112
112
|
|
113
113
|
def set_attr_accessors
|
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.1.
|
4
|
+
version: 19.1.1
|
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: 2016-02-
|
11
|
+
date: 2016-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -120,14 +120,14 @@ dependencies:
|
|
120
120
|
requirements:
|
121
121
|
- - ~>
|
122
122
|
- !ruby/object:Gem::Version
|
123
|
-
version: '3.
|
123
|
+
version: '3.4'
|
124
124
|
type: :development
|
125
125
|
prerelease: false
|
126
126
|
version_requirements: !ruby/object:Gem::Requirement
|
127
127
|
requirements:
|
128
128
|
- - ~>
|
129
129
|
- !ruby/object:Gem::Version
|
130
|
-
version: '3.
|
130
|
+
version: '3.4'
|
131
131
|
- !ruby/object:Gem::Dependency
|
132
132
|
name: rdoc
|
133
133
|
requirement: !ruby/object:Gem::Requirement
|