UNPKG

polyv-live-cli

Version:

CLI tool for managing PolyV live streaming services.

20 lines 772 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MonitorServiceSdk = void 0; const sdk_1 = require("../sdk"); class MonitorServiceSdk { constructor(authConfig, config) { this.authConfig = authConfig; this.config = config; } async listTencentStreamInfo(params) { const client = (0, sdk_1.createSdkClient)(this.authConfig, this.config.baseUrl); return client.other.listTencentStreamInfo(params); } async listMonitorStreamInfo(params) { const client = (0, sdk_1.createSdkClient)(this.authConfig, this.config.baseUrl); return client.v4Channel.listMonitorStreamInfo(params); } } exports.MonitorServiceSdk = MonitorServiceSdk; //# sourceMappingURL=monitor-service.js.map