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

@recordreplay/recordings-cli

Package Overview
Dependencies
Maintainers
7
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@recordreplay/recordings-cli - npm Package Compare versions

Comparing version 0.10.2 to 0.10.3

2

package.json
{
"name": "@recordreplay/recordings-cli",
"version": "0.10.2",
"version": "0.10.3",
"description": "CLI tool for uploading and managing recordings",

@@ -5,0 +5,0 @@ "bin": {

@@ -11,2 +11,13 @@ export interface BaseOptions {

export type Recording = {
id: number;
createTime: string;
metadata: Record<string, unknown>;
status: string;
runtime: string;
path: string;
server?: string;
recordingId?: string;
}
/**

@@ -17,3 +28,3 @@ * Lists all locally-stored recordings

*/
export function listAllRecordings(opts?: BaseOptions): void;
export function listAllRecordings(opts?: BaseOptions): Recording[];

@@ -29,3 +40,3 @@ /**

*/
export function uploadRecording(recordingId: string, opts?: ConnectOptions): Promise<string | null>;
export function uploadRecording(recordingId: number, opts?: ConnectOptions): Promise<string | null>;

@@ -42,3 +53,3 @@ /**

*/
export function processRecording(recordingId: string, opts?: ConnectOptions): Promise<string | null>;
export function processRecording(recordingId: number, opts?: ConnectOptions): Promise<string | null>;

@@ -64,3 +75,3 @@ /**

*/
export function viewRecording(recordingId: string, opts?: ConnectOptions): Promise<boolean>;
export function viewRecording(recordingId: number, opts?: ConnectOptions): Promise<boolean>;

@@ -87,3 +98,3 @@ /**

*/
export function removeRecording(recordingId: string, opts?: BaseOptions): boolean;
export function removeRecording(recordingId: number, opts?: BaseOptions): boolean;

@@ -90,0 +101,0 @@ /**

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