mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-30 09:55:18 +00:00
* feat(Player.ts): append `cver` to deciphered URLs * refactor(Actions.ts): remove redundant `getVideoInfo` function This is leftover code from previous versions. It had many problems and it is no longer required. * fix(Kids.ts): remove unneeded `await` keywords * dev: add more endpoints * chore: update deps * refactor: separate endpoints into files * dev: improve types * dev: add more endpoints * refactor: put clients in a separate directory inside `core` * chore: lint * refactor: move mixins and managers to separate folders * chore: fix tests * dev: add `CreateVideoEndpoint` * chore: clean up * chore: lint * chore: add some comments * chore: remove unnecessary test * dev: add `playlist/CreateEndpoint` * dev: add `playlist/DeleteEndpoint` * dev: add `browse/EditPlaylistEndpoint` * fix(parser): add a few checks to avoid parsing errors
18 lines
891 B
TypeScript
18 lines
891 B
TypeScript
export * as BrowseEndpoint from './BrowseEndpoint.js';
|
|
export * as GetNotificationMenuEndpoint from './GetNotificationMenuEndpoint.js';
|
|
export * as GuideEndpoint from './GuideEndpoint.js';
|
|
export * as NextEndpoint from './NextEndpoint.js';
|
|
export * as PlayerEndpoint from './PlayerEndpoint.js';
|
|
export * as ResolveURLEndpoint from './ResolveURLEndpoint.js';
|
|
export * as SearchEndpoint from './SearchEndpoint.js';
|
|
|
|
export * as Account from './account/index.js';
|
|
export * as Browse from './browse/index.js';
|
|
export * as Channel from './channel/index.js';
|
|
export * as Comment from './comment/index.js';
|
|
export * as Like from './like/index.js';
|
|
export * as Music from './music/index.js';
|
|
export * as Notification from './notification/index.js';
|
|
export * as Playlist from './playlist/index.js';
|
|
export * as Subscription from './subscription/index.js';
|
|
export * as Upload from './upload/index.js'; |