Comparing version 0.2.2 to 0.2.3
{ | ||
"name": "yt-api", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "A light weight, easy, and super fast way of interacting with the YouTube Data API v3.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -19,3 +19,3 @@ const snekfetch = require("snekfetch"); | ||
if(data.snippet.liveBroadcastContent === "upcoming") livestream = "Upcoming live stream!"; | ||
return res(JSON.stringify({ | ||
return res({ | ||
videoID: data.id, | ||
@@ -47,3 +47,3 @@ url: `https://www.youtube.com/watch?v=${data.id}`, | ||
} | ||
})); | ||
}); | ||
}); | ||
@@ -50,0 +50,0 @@ } |
@@ -27,6 +27,6 @@ import { Client } from "../src"; | ||
duration: { | ||
days: number; | ||
hours: number; | ||
minutes: number; | ||
seconds: number; | ||
days: string; | ||
hours: string; | ||
minutes: string; | ||
seconds: string; | ||
}; | ||
@@ -33,0 +33,0 @@ statistics: { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8576