Skip to content

Commit f42e30d

Browse files
Merge pull request #12 from apivideo/fix-hsl-typo
typo: hsl instead of hls in VideoUploadResponse
2 parents 016a9a7 + 03cbbb3 commit f42e30d

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Create draft release if needed
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
update-documentation:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Create draft release if needed
12+
uses: apivideo/[email protected]
13+
with:
14+
github-auth-token: ${{ secrets.GITHUB_TOKEN }}
15+
prefix: v
16+

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22
All changes to this project will be documented in this file.
33

4+
## [1.0.3] - 2022-01-25
5+
- Fix typo in `VideoUploadResponse`type: `hsl` instead of `hls`
6+
47
## [1.0.2] - 2021-11-24
58
- Fix: prevent concurrent requests
69

dist/src/common.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export declare type VideoUploadResponse = {
2525
readonly assets: {
2626
readonly iframe: string;
2727
readonly player: string;
28-
readonly hsl: string;
28+
readonly hls: string;
2929
readonly thumbnail: string;
3030
};
3131
};

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@api.video/video-uploader",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "api.video video uploader",
55
"repository": {
66
"type": "git",

src/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export type VideoUploadResponse = {
2626
readonly assets: {
2727
readonly iframe: string;
2828
readonly player: string;
29-
readonly hsl: string;
29+
readonly hls: string;
3030
readonly thumbnail: string;
3131
};
3232
};

0 commit comments

Comments
 (0)