File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## May 1, 2025 - v1.0.1
4
+ - bug fixes
5
+
3
6
## November 13, 2024 - v1.0.0
4
7
- removing the requirement to publish config file
Original file line number Diff line number Diff line change @@ -20,24 +20,24 @@ class ResumeParserService extends SharpApiClient
20
20
*/
21
21
public function __construct ()
22
22
{
23
- parent ::__construct (config ('sharpapi-client .api_key ' ));
23
+ parent ::__construct (config ('sharpapi-resume-parser .api_key ' ));
24
24
$ this ->setApiBaseUrl (
25
25
config (
26
- 'sharpapi-client .base_url ' ,
26
+ 'sharpapi-resume-parser .base_url ' ,
27
27
'https://sharpapi.com/api/v1 '
28
28
)
29
29
);
30
30
$ this ->setApiJobStatusPollingInterval (
31
31
(int ) config (
32
- 'sharpapi-client .api_job_status_polling_interval ' ,
32
+ 'sharpapi-resume-parser .api_job_status_polling_interval ' ,
33
33
5 )
34
34
);
35
35
$ this ->setApiJobStatusPollingWait (
36
36
(int ) config (
37
- 'sharpapi-client .api_job_status_polling_wait ' ,
37
+ 'sharpapi-resume-parser .api_job_status_polling_wait ' ,
38
38
180 )
39
39
);
40
- $ this ->setUserAgent ('SharpAPILaravelAgent /1.2.2 ' );
40
+ $ this ->setUserAgent ('SharpAPILaravelResumeParser /1.2.3 ' );
41
41
42
42
}
43
43
You can’t perform that action at this time.
0 commit comments