UNPKG

polyv-live-cli

Version:

CLI tool for managing PolyV live streaming services.

106 lines 3.53 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UserSettingsServiceSdk = void 0; const sdk_1 = require("../sdk"); class UserSettingsServiceSdk { constructor(authConfig, config) { this.authConfig = authConfig; this.config = config; this.client = (0, sdk_1.createSdkClient)(this.authConfig, this.config.baseUrl); } listChildAccounts(params) { return this.client.v4User.listChildAccounts(params); } listChildAccountRoles() { return this.client.v4User.listChildAccountRoles(); } createChildAccount(params) { return this.client.v4User.createChildAccount(params); } updateChildAccount(params) { return this.client.v4User.updateChildAccount(params); } deleteChildAccount(params) { return this.client.v4User.deleteChildAccounts(params); } getChildBySale(params) { return this.client.v4User.getBySale(params); } listOrganizations() { return this.client.v4User.listOrganizations(); } createOrganization(params) { return this.client.v4User.createOrganization(params); } deleteOrganization(params) { return this.client.v4User.deleteOrganization(params); } getDonateTemplate() { return this.client.v4User.getDonateTemplate(); } updateDonateTemplate(params) { return this.client.v4User.updateDonateTemplate(params); } getMarqueeTemplate() { return this.client.v4User.getMarqueeTemplate(); } updateMarqueeTemplate(params) { return this.client.v4User.updateMarqueeTemplate(params); } getRoleConfigTemplate() { return this.client.v4User.getRoleConfigTemplate(); } updateRoleConfigTemplate(params) { return this.client.v4User.updateRoleConfigTemplate(params); } getPlaybackSetting() { return this.client.v4User.getPlaybackSetting(); } updatePlaybackSetting(params) { return this.client.v4User.updatePlaybackSetting(params); } getAudioModerationSetting() { return this.client.v4User.getAudioModerationSetting(); } updateAudioModerationSetting(params) { return this.client.v4User.updateAudioModerationSetting(params); } getVideoModerationSetting() { return this.client.v4User.getVideoModerationSetting(); } updateVideoModerationSetting(params) { return this.client.v4User.updateVideoModerationSetting(params); } getGlobalFooter() { return this.client.v4User.getGlobalFooter(); } updateGlobalFooter(params) { return this.client.v4User.updateGlobalFooter(params); } getPvShowEnable() { return this.client.v4User.getPvShowEnable(); } updatePvShowEnable(params) { return this.client.v4User.updatePvShowEnable(params); } sendSms(params) { return this.client.v4User.sendSms(params); } getMicDuration(params) { return this.client.v4User.getMicDuration(params); } getMrConcurrencyDetail() { return this.client.v4User.getMrConcurrencyDetail(); } getBillUseDetailList(params) { return this.client.v4User.getBillUseDetailList(params); } getWatchLogList(params) { return this.client.v4User.getWatchLogList(params); } getWatchLogDetail(params) { return this.client.v4User.getWatchLogDetail(params); } } exports.UserSettingsServiceSdk = UserSettingsServiceSdk; //# sourceMappingURL=user.service.js.map