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

rt-sdk

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rt-sdk - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

2

package.json
{
"name": "rt-sdk",
"description": "",
"version": "0.0.6",
"version": "0.0.7",
"main": "index.js",

@@ -6,0 +6,0 @@ "scripts": {

@@ -23,7 +23,7 @@ # rt-sdk

### Get all seasons of a specific show
rt.seasons() takes a show uuid or season slug
rt.seasons() takes a show slug
```js
rt.seasons('rt-podcast')
.then(seasons => {
for (let season in seasons) {
for (let season of seasons) {
console.log(season.attributes.title);

@@ -35,7 +35,7 @@ }

### Get all episodes of a specific season
rt.season() takes a season uuid or season slug
rt.season() takes a season slug
```js
rt.season('always-open-2018')
.then(episodes => {
for (let episode in episodes) {
for (let episode of episodes) {
console.log(episode.attributes.title);

@@ -42,0 +42,0 @@ console.log(episode.attributes.description);

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