Skip to content

Commit

Permalink
fix(nodejs) documentation links
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierapivideo authored Dec 19, 2023
1 parent e2e36b4 commit fd9f130
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All changes to this project will be documented in this file.

## [2.5.5] - 2023-12-19
- Fix documentation links

## [2.5.4] - 2023-08-21
- Set default values defined in the description

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@api.video/nodejs-client",
"version": "2.5.4",
"version": "2.5.5",
"description": "api.video nodejs API client",
"keywords": [
"api.video",
Expand Down
2 changes: 1 addition & 1 deletion src/HttpClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default class HttpClient {
this.chunkSize = params.chunkSize;
this.headers = new AxiosHeaders({
Accept: 'application/json, */*;q=0.8',
'AV-Origin-Client': 'nodejs:2.5.4',
'AV-Origin-Client': 'nodejs:2.5.5',
Authorization: this.apiKey ? `Basic ${encode(`${this.apiKey}:`)}` : '',
...(params.applicationName && params.applicationVersion
? {
Expand Down

0 comments on commit fd9f130

Please sign in to comment.