@dolbyio/dolbyio-rest-apis-client
Version:
Node.JS wrapper for the Dolby OptiView REST APIs
46 lines (45 loc) • 1.69 kB
TypeScript
export * from './types';
/** APIs for the Dolby OptiView account level settings. */
export * as account from './account';
/**
* ## Media Assets
*
* APIs to create and access the media assets.
* Read about {@link https://optiview.dolby.com/docs/millicast/distribution/stream-recordings/ | Stream Recordings} in the documentation.
*/
export * as assets from './assets';
/**
* ## Media Distributions
*
* APIs to manage the media distributions.
*/
export * as mediaDistributions from './mediaDistributions';
/** APIs to update the default and list the Dolby OptiView clusters of the account. */
export * as cluster from './cluster';
/**
* APIs for the Dolby OptiView cloud transcoders.
* @remarks Cloud transcoder usage is not currently available for general usage.
* If you would like to opt in, please contact our Sales team.
*/
export * as transcoders from './transcoders';
/** Access the Director APIs. */
export * as director from './director';
/**
* Access the Dolby OptiView live monitoring APIs.
* @remarks The live monitoring APIs are not currently available for general usage.
* If you would like to opt in, please contact our Sales team.
*/
export * as monitoring from './monitoring';
/** Access the Publish Token APIs. */
export * as publishToken from './publishToken';
/** Access the Streams APIs. */
export * as stream from './stream';
/** Access the Subscribe Token APIs. */
export * as subscribeToken from './subscribeToken';
/**
* ## Webhooks
*
* APIs to create and manage webhook endpoints on the platform.
* Read about {@link https://optiview.dolby.com/docs/millicast/webhooks/ | Webhooks} in the documentation.
*/
export * as webhooks from './webhooks';