Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

libmuse

Package Overview
Dependencies
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libmuse - npm Package Compare versions

Comparing version 0.0.80 to 0.0.81

17

esm/mixins/playlist.js

@@ -140,2 +140,9 @@ import { get_continuation_contents, get_continuation_params, get_continuations, } from "../continuations.js";

const actions = [];
const dedupeOption = dedupe === "check"
? "DEDUPE_OPTION_CHECK"
: dedupe === "drop_duplicate"
? "DEDUPE_OPTION_DROP_DUPLICATE"
: dedupe === "skip"
? "DEDUPE_OPTION_SKIP"
: null;
if (title) {

@@ -173,9 +180,3 @@ actions.push({

addedVideoId: video_id,
dedupeOption: dedupe === "check"
? "DEDUPE_OPTION_CHECK"
: dedupe === "drop_duplicate"
? "DEDUPE_OPTION_DROP_DUPLICATE"
: dedupe === "skip"
? "DEDUPE_OPTION_SKIP"
: null,
dedupeOption,
});

@@ -207,2 +208,3 @@ });

addedFullListId: playlist_id,
dedupeOption,
});

@@ -212,2 +214,3 @@ });

data.actions = actions;
console.log("data", data);
const json = await request_json("browse/edit_playlist", { data, signal });

@@ -214,0 +217,0 @@ const result = {

@@ -6,3 +6,3 @@ {

"name": "libmuse",
"version": "0.0.80",
"version": "0.0.81",
"description": "A library to interact with the YouTube Music (InnerTube) api.",

@@ -9,0 +9,0 @@ "tags": [

@@ -147,2 +147,9 @@ "use strict";

const actions = [];
const dedupeOption = dedupe === "check"
? "DEDUPE_OPTION_CHECK"
: dedupe === "drop_duplicate"
? "DEDUPE_OPTION_DROP_DUPLICATE"
: dedupe === "skip"
? "DEDUPE_OPTION_SKIP"
: null;
if (title) {

@@ -180,9 +187,3 @@ actions.push({

addedVideoId: video_id,
dedupeOption: dedupe === "check"
? "DEDUPE_OPTION_CHECK"
: dedupe === "drop_duplicate"
? "DEDUPE_OPTION_DROP_DUPLICATE"
: dedupe === "skip"
? "DEDUPE_OPTION_SKIP"
: null,
dedupeOption,
});

@@ -214,2 +215,3 @@ });

addedFullListId: playlist_id,
dedupeOption,
});

@@ -219,2 +221,3 @@ });

data.actions = actions;
console.log("data", data);
const json = await (0, _request_js_1.request_json)("browse/edit_playlist", { data, signal });

@@ -221,0 +224,0 @@ const result = {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc