mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-28 00:56:23 +00:00
* refactor: rewrite YouTube Music search suggestions The search suggestions method can be found under `Innertube#music.getSearchSuggestions(query)` * feat: allow `execute(..)` to return parsed data This simplifies how response data is handled and also makes it easier for end users to write custom functionality. * style: lint code * chore: change a few things * refactor: rewrite YouTube search suggestions * chore(package): build * chore: update type declarations * chore: fix tests
20 lines
500 B
JavaScript
20 lines
500 B
JavaScript
'use strict';
|
|
|
|
const Text = require('./Text');
|
|
const NavigationEndpoint = require('./NavigationEndpoint');
|
|
|
|
class SearchSuggestion {
|
|
type = 'SearchSuggestion';
|
|
|
|
constructor(data) {
|
|
this.suggestion = new Text(data.suggestion);
|
|
this.endpoint = new NavigationEndpoint(data.navigationEndpoint);
|
|
this.icon_type = data.icon.iconType;
|
|
|
|
if (data.serviceEndpoint) {
|
|
this.service_endpoint = new NavigationEndpoint(data.serviceEndpoint);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = SearchSuggestion; |