Compare commits

..

5 Commits

Author SHA1 Message Date
github-actions[bot]
4fb9dff0f2 chore(main): release 9.0.1 (#588)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-01-25 21:32:45 -03:00
LuanRT
81dd5d3288 fix(build): Circular imports causing issues with webpack 2024-01-25 21:30:14 -03:00
LuanRT
c7f42220db chore: revert unneeded import type changes & lint
Yes. Again.
2024-01-25 21:17:59 -03:00
LuanRT
5204b29e81 chore: Lint 2024-01-25 20:47:19 -03:00
LuanRT
cbaa838cee chore: Revert some unneeded import changes 2024-01-25 20:43:19 -03:00
9 changed files with 21 additions and 11 deletions

View File

@@ -1,5 +1,12 @@
# Changelog
## [9.0.1](https://github.com/LuanRT/YouTube.js/compare/v9.0.0...v9.0.1) (2024-01-26)
### Bug Fixes
* **build:** Circular imports causing issues with webpack ([81dd5d3](https://github.com/LuanRT/YouTube.js/commit/81dd5d3288771132e7fb904b620e58277f639ccc))
## [9.0.0](https://github.com/LuanRT/YouTube.js/compare/v8.2.0...v9.0.0) (2024-01-25)

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "youtubei.js",
"version": "9.0.0",
"version": "9.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "youtubei.js",
"version": "9.0.0",
"version": "9.0.1",
"funding": [
"https://github.com/sponsors/LuanRT"
],

View File

@@ -1,6 +1,6 @@
{
"name": "youtubei.js",
"version": "9.0.0",
"version": "9.0.1",
"description": "A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).",
"type": "module",
"types": "./dist/src/platform/lib.d.ts",

View File

@@ -1,7 +1,9 @@
import { Player, OAuth, Actions } from './index.js';
import OAuth from './OAuth.js';
import { Log, EventEmitter, HTTPClient } from '../utils/index.js';
import * as Constants from '../utils/Constants.js';
import * as Proto from '../proto/index.js';
import Actions from './Actions.js';
import Player from './Player.js';
import {
generateRandomString, getRandomUserAgent,

View File

@@ -4,7 +4,6 @@ import { getStreamingInfo } from '../../utils/StreamingInfo.js';
import { Parser } from '../../parser/index.js';
import { TranscriptInfo } from '../../parser/youtube/index.js';
import PlayerStoryboardSpec from '../../parser/classes/PlayerStoryboardSpec.js';
import ContinuationItem from '../../parser/classes/ContinuationItem.js';
import type { ApiResponse, Actions } from '../index.js';

View File

@@ -1,6 +1,6 @@
/* eslint-disable no-cond-assign */
import { YTNode } from './helpers.js';
import { Parser } from './index.js';
import * as Parser from './parser.js';
import { InnertubeError } from '../utils/Utils.js';
import Author from './classes/misc/Author.js';

View File

@@ -1,4 +1,4 @@
import { YTNodes } from './index.js';
import * as YTNodes from './nodes.js';
import { InnertubeError, ParsingError, Platform } from '../utils/Utils.js';
import { Memo, observe, SuperParsedResult } from './helpers.js';
import { camelToSnake, generateRuntimeClass, generateTypescriptClass } from './generator.js';

View File

@@ -1,4 +1,4 @@
import { Constants } from './index.js';
import * as Constants from './Constants.js';
import { InnertubeError, Platform, streamToIterable } from './Utils.js';
import type Player from '../core/Player.js';

View File

@@ -1,3 +1,8 @@
import PlayerStoryboardSpec from '../parser/classes/PlayerStoryboardSpec.js';
import { InnertubeError, Platform, getStringBetweenStrings } from './Utils.js';
import * as Constants from './Constants.js';
import Log from './Log.js';
import type Actions from '../core/Actions.js';
import type Player from '../core/Player.js';
import type { LiveStoryboardData } from '../parser/classes/PlayerLiveStoryboardSpec.js';
@@ -6,9 +11,6 @@ import type { IStreamingData } from '../parser/index.js';
import type { Format } from '../parser/misc.js';
import type { PlayerLiveStoryboardSpec } from '../parser/nodes.js';
import type { FormatFilter, URLTransformer } from '../types/FormatUtils.js';
import PlayerStoryboardSpec from '../parser/classes/PlayerStoryboardSpec.js';
import { InnertubeError, Platform, getStringBetweenStrings } from './Utils.js';
import { Constants, Log } from './index.js';
const TAG_ = 'StreamingInfo';