@recordreplay/recordings-cli
Advanced tools
Comparing version 0.10.2 to 0.10.3
{ | ||
"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 @@ /** |
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
40245
1089