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

@heapstream/heapstream

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@heapstream/heapstream

Explore the API documentation for [Heapstream.com](//heapstream.com)! ## Authentication API authentication is done using Basic Authentication [wikipedia](https://en.wikipedia.org/wiki/Basic_access_authentication) [RFC7617](https://datatracker.ietf.org/

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
0
Weekly downloads
 
Created
Source

Heapstream TypeScript SDK 1.0.0

Welcome to the Heapstream SDK documentation. This guide will help you get started with integrating and using the Heapstream SDK in your project.

Versions

  • API version: 1.0
  • SDK version: 1.0.0

About the API

Explore the API documentation for Heapstream.com! ## Authentication API authentication is done using Basic Authentication wikipedia RFC7617. For username you should use the id of the ApiKey. For password you should use the password of the ApiKey.

Table of Contents

Setup & Configuration

Supported Language Versions

This SDK is compatible with the following versions: TypeScript >= 4.8.4

Installation

To get started with the SDK, we recommend installing using npm:

npm install @heapstream/heapstream

Authentication

Basic Authentication

The Heapstream API uses Basic Authentication.

You need to provide your username and password when initializing the SDK.

Setting the Username and Password

When you initialize the SDK, you can set the username and password as follows:

const sdk = new Heapstream({ username: 'YOUR_USERNAME', password: 'YOUR_PASSWORD' });

If you need to set or update the username and password after initializing the SDK, you can use:

const sdk = new Heapstream();
sdk.username = 'YOUR_USERNAME';
sdk.password = 'YOUR_PASSWORD';

Setting a Custom Timeout

You can set a custom timeout for the SDK's HTTP requests as follows:

const heapstream = new Heapstream({ timeout: 10000 });

Sample Usage

Below is a comprehensive example demonstrating how to authenticate and call a simple endpoint:

import { Heapstream } from '@heapstream/heapstream';

(async () => {
  const heapstream = new Heapstream({
    username: 'YOUR_USERNAME',
    password: 'YOUR_PASSWORD',
  });

  const { data } = await heapstream.project.listProjects();

  console.log(data);
})();

Services

The SDK provides various services to interact with the API.

Below is a list of all available services with links to their detailed documentation:
Name
ProjectService
DirectUploadService
PlayerService
StatsService
VideoService
AudioTrackService
PosterService
TextTrackService
WatermarkService
WebhookService

Models

The SDK includes several models that represent the data structures used in API requests and responses. These models help in organizing and managing the data efficiently.

Below is a list of all available models with links to their detailed documentation:
NameDescription
ProjectList
ProjectCreate
Project
ProjectEdit
DirectUploadStart
DirectUploadResponse
DirectUploadListResponse
DirectUploadCompleteArgs
PartIdResponse
PlayerList
PlayerCreate
Player
PlayerEdit
EngagementStats
PerformanceStatsResponse
VideoList
ListVideosStatus
VideoFetch
Video
VideoEdit
PresetList
AudioTrackList
AudioTrackCreate
AudioTrack
AudioTrackEdit
PosterList
MultipartFile
Poster
PosterEdit
TextTrackList
TextTrackCreate
TextTrack
TextTrackGenerate
TextTrackEdit
WatermarkList
WatermarkCreate
Watermark
WebhookList
WebhookCreate
Webhook
UploadMetadata
Asset
AssetError
DirectUploadPart
EngagementStatsRow
PerformanceStatsRow
Pagination
Preset
AutoCaption

License

This SDK is licensed under the MIT License.

See the LICENSE file for more details.

Keywords

FAQs

Package last updated on 11 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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