socialblade
Advanced tools
Comparing version 1.0.5 to 1.0.6
@@ -9,3 +9,3 @@ export interface Data<Id, General, Statistics, Ranks> { | ||
id: string; | ||
username: string; | ||
username?: string; | ||
} | ||
@@ -30,3 +30,3 @@ export interface ExtendedId extends Id { | ||
export interface Branding extends SmallBranding { | ||
banner: string; | ||
banner?: string; | ||
} | ||
@@ -33,0 +33,0 @@ export interface UserGeneral<T = Branding> { |
import { ExtendedId } from '../matrix.shared'; | ||
export interface YouTubeId extends ExtendedId { | ||
cusername: string; | ||
cusername?: string; | ||
handle?: string; | ||
} | ||
export interface YouTubeGeneral { | ||
created_at: Date; | ||
channel_type: string; | ||
geo: YouTubeGeo; | ||
channel_type: string | null; | ||
geo: YouTubeGeo | null; | ||
} | ||
@@ -20,7 +21,7 @@ export interface YouTubeGeo { | ||
export interface YouTubeRanks { | ||
sbrank: number; | ||
subscribers: number; | ||
views: number; | ||
country: number; | ||
channel_type: number; | ||
sbrank: number | null; | ||
subscribers: number | null; | ||
views: number | null; | ||
country: number | null; | ||
channel_type: number | null; | ||
} |
@@ -19,2 +19,3 @@ import { Data, Daily, Misc, Statistics, Branding, UserGeneral, GrowthNumbers } from '../matrix.shared'; | ||
discord: string | null; | ||
tiktok: string | null; | ||
} | ||
@@ -27,3 +28,3 @@ export interface YouTubeDaily extends Daily { | ||
made_for_kids: boolean; | ||
tags: string[]; | ||
tags?: string[]; | ||
} | ||
@@ -30,0 +31,0 @@ export interface YouTubeGrowth { |
{ | ||
"name": "socialblade", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "Library for Social Blade's Official API in JavaScript (TypeScript)", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
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
53191
979