Skip to content

Commit c71b6a7

Browse files
committed
config fixes
1 parent bea6e22 commit c71b6a7

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
22

3+
## May 1, 2025 - v1.0.1
4+
- bug fixes
5+
36
## November 13, 2024 - v1.0.0
47
- removing the requirement to publish config file

src/ResumeParserService.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@ class ResumeParserService extends SharpApiClient
2020
*/
2121
public function __construct()
2222
{
23-
parent::__construct(config('sharpapi-client.api_key'));
23+
parent::__construct(config('sharpapi-resume-parser.api_key'));
2424
$this->setApiBaseUrl(
2525
config(
26-
'sharpapi-client.base_url',
26+
'sharpapi-resume-parser.base_url',
2727
'https://sharpapi.com/api/v1'
2828
)
2929
);
3030
$this->setApiJobStatusPollingInterval(
3131
(int) config(
32-
'sharpapi-client.api_job_status_polling_interval',
32+
'sharpapi-resume-parser.api_job_status_polling_interval',
3333
5)
3434
);
3535
$this->setApiJobStatusPollingWait(
3636
(int) config(
37-
'sharpapi-client.api_job_status_polling_wait',
37+
'sharpapi-resume-parser.api_job_status_polling_wait',
3838
180)
3939
);
40-
$this->setUserAgent('SharpAPILaravelAgent/1.2.2');
40+
$this->setUserAgent('SharpAPILaravelResumeParser/1.2.3');
4141

4242
}
4343

0 commit comments

Comments
 (0)