@mediahub-bg/ott-objects 0.4.93 → 0.4.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/web/types.ts +23 -0
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -361,6 +361,23 @@ export interface ChannelUpdateRequest {
|
|
|
361
361
|
transcoding?: any /* bson.M */[];
|
|
362
362
|
muxer?: any /* bson.M */[];
|
|
363
363
|
active?: boolean;
|
|
364
|
+
name?: string;
|
|
365
|
+
profiles?: M3U8Profile[];
|
|
366
|
+
transcoder?: string;
|
|
367
|
+
dbType?: string;
|
|
368
|
+
dbhost?: string;
|
|
369
|
+
dbport?: number /* uint */;
|
|
370
|
+
dbname?: string;
|
|
371
|
+
dbuser?: string;
|
|
372
|
+
dbpass?: string;
|
|
373
|
+
dbReplicaSet?: string;
|
|
374
|
+
chunkpath?: string;
|
|
375
|
+
tumblrpath?: string;
|
|
376
|
+
dbchunkprefix?: string;
|
|
377
|
+
dbtumblrprefix?: string;
|
|
378
|
+
adult?: boolean;
|
|
379
|
+
liveOnly?: boolean;
|
|
380
|
+
age?: number /* uint */;
|
|
364
381
|
}
|
|
365
382
|
export interface ChannelStat {
|
|
366
383
|
id: string;
|
|
@@ -379,6 +396,12 @@ export interface ChannelStatsResponse {
|
|
|
379
396
|
all: { [key: string]: number /* int64 */};
|
|
380
397
|
chanStats: ChannelStat[];
|
|
381
398
|
}
|
|
399
|
+
/**
|
|
400
|
+
* ChannelCloneRequest is the body for the channel-clone webhook endpoint.
|
|
401
|
+
*/
|
|
402
|
+
export interface ChannelCloneRequest {
|
|
403
|
+
newId?: string;
|
|
404
|
+
}
|
|
382
405
|
export interface ChannelRPCRequest {
|
|
383
406
|
cmd: string;
|
|
384
407
|
args: string[];
|