-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [0.4.0](v0.3.0...v0.4.0) (2025-01-19) ### Bug Fixes * Add missing error class and type exports ([6d828ca](6d828ca)) * Update copyright year in LICENSE file ([3ce85d1](3ce85d1)) ### Features * **PlaylistManager:** Support `playlists.update` endpoint ([8d67df9](8d67df9))
- Loading branch information
1 parent
4351cb7
commit e2d0893
Showing
31 changed files
with
727 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [youtubes.js](./youtubes.js.md) > [LikelyBugError](./youtubes.js.likelybugerror.md) > [(constructor)](./youtubes.js.likelybugerror._constructor_.md) | ||
|
||
## LikelyBugError.(constructor) | ||
|
||
Constructs a new instance of the `LikelyBugError` class | ||
|
||
**Signature:** | ||
|
||
```typescript | ||
constructor(message: string); | ||
``` | ||
|
||
## Parameters | ||
|
||
<table><thead><tr><th> | ||
|
||
Parameter | ||
|
||
|
||
</th><th> | ||
|
||
Type | ||
|
||
|
||
</th><th> | ||
|
||
Description | ||
|
||
|
||
</th></tr></thead> | ||
<tbody><tr><td> | ||
|
||
message | ||
|
||
|
||
</td><td> | ||
|
||
string | ||
|
||
|
||
</td><td> | ||
|
||
|
||
</td></tr> | ||
</tbody></table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [youtubes.js](./youtubes.js.md) > [LikelyBugError](./youtubes.js.likelybugerror.md) | ||
|
||
## LikelyBugError class | ||
|
||
Represents an error that is likely a bug in the library. | ||
|
||
If you encounter this error, please report the issue on \[GitHub Issue\](https://github.com/suzuki3jp/youtubes.js/issues/new). | ||
|
||
**Signature:** | ||
|
||
```typescript | ||
export declare class LikelyBugError implements BaseError | ||
``` | ||
**Implements:** BaseError | ||
## Constructors | ||
<table><thead><tr><th> | ||
Constructor | ||
</th><th> | ||
Modifiers | ||
</th><th> | ||
Description | ||
</th></tr></thead> | ||
<tbody><tr><td> | ||
[(constructor)(message)](./youtubes.js.likelybugerror._constructor_.md) | ||
</td><td> | ||
</td><td> | ||
Constructs a new instance of the `LikelyBugError` class | ||
</td></tr> | ||
</tbody></table> | ||
## Properties | ||
<table><thead><tr><th> | ||
Property | ||
</th><th> | ||
Modifiers | ||
</th><th> | ||
Type | ||
</th><th> | ||
Description | ||
</th></tr></thead> | ||
<tbody><tr><td> | ||
[message](./youtubes.js.likelybugerror.message.md) | ||
</td><td> | ||
</td><td> | ||
string | ||
</td><td> | ||
</td></tr> | ||
<tr><td> | ||
[type](./youtubes.js.likelybugerror.type.md) | ||
</td><td> | ||
</td><td> | ||
string | ||
</td><td> | ||
</td></tr> | ||
</tbody></table> | ||
## Methods | ||
<table><thead><tr><th> | ||
Method | ||
</th><th> | ||
Modifiers | ||
</th><th> | ||
Description | ||
</th></tr></thead> | ||
<tbody><tr><td> | ||
[throw()](./youtubes.js.likelybugerror.throw.md) | ||
</td><td> | ||
</td><td> | ||
Throws the error. | ||
</td></tr> | ||
<tr><td> | ||
[toError()](./youtubes.js.likelybugerror.toerror.md) | ||
</td><td> | ||
</td><td> | ||
Converts the error to an `Error` object. | ||
</td></tr> | ||
</tbody></table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [youtubes.js](./youtubes.js.md) > [LikelyBugError](./youtubes.js.likelybugerror.md) > [message](./youtubes.js.likelybugerror.message.md) | ||
|
||
## LikelyBugError.message property | ||
|
||
**Signature:** | ||
|
||
```typescript | ||
message: string; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [youtubes.js](./youtubes.js.md) > [LikelyBugError](./youtubes.js.likelybugerror.md) > [throw](./youtubes.js.likelybugerror.throw.md) | ||
|
||
## LikelyBugError.throw() method | ||
|
||
Throws the error. | ||
|
||
**Signature:** | ||
|
||
```typescript | ||
throw(): never; | ||
``` | ||
**Returns:** | ||
never | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [youtubes.js](./youtubes.js.md) > [LikelyBugError](./youtubes.js.likelybugerror.md) > [toError](./youtubes.js.likelybugerror.toerror.md) | ||
|
||
## LikelyBugError.toError() method | ||
|
||
Converts the error to an `Error` object. | ||
|
||
**Signature:** | ||
|
||
```typescript | ||
toError(): Error; | ||
``` | ||
**Returns:** | ||
|
||
Error | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [youtubes.js](./youtubes.js.md) > [LikelyBugError](./youtubes.js.likelybugerror.md) > [type](./youtubes.js.likelybugerror.type.md) | ||
|
||
## LikelyBugError.type property | ||
|
||
**Signature:** | ||
|
||
```typescript | ||
type: string; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.