diff --git a/skipruntime-ts/helpers/src/rest.ts b/skipruntime-ts/helpers/src/rest.ts index 6f541b5d9..c298a47ea 100644 --- a/skipruntime-ts/helpers/src/rest.ts +++ b/skipruntime-ts/helpers/src/rest.ts @@ -114,6 +114,10 @@ export class RESTWrapperOfSkipService { }).then((res) => res.text()); } + async deleteUUID(uuid: string): Promise { + await fetchJSON(`${this.controlUrl}/v1/streams/${uuid}`, "DELETE"); + } + streamURL(uuid: string): string { const host = this.entrypoint.host; const port = this.entrypoint.streaming_port;