Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(api): api update #495

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 88
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux-b018de0ba821f7870683b15c853475a86435bd65d3eaf5bb024dff79f6b7027f.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux-a1e3885fc0fe2c15dfd6a78abd580bc4d8a1ec2db4b6ee808a970e45359313c7.yml
9 changes: 7 additions & 2 deletions src/resources/video/live-streams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ export interface LiveStreamUpdateParams {

/**
* Updates the new asset settings to use to generate a new asset for this live
* stream. Only the `mp4_support` setting may be updated.
* stream. Only the `mp4_support` and `master_access` settings may be updated.
*/
new_asset_settings?: LiveStreamUpdateParams.NewAssetSettings;

Expand Down Expand Up @@ -856,9 +856,14 @@ export interface LiveStreamUpdateParams {
export namespace LiveStreamUpdateParams {
/**
* Updates the new asset settings to use to generate a new asset for this live
* stream. Only the `mp4_support` setting may be updated.
* stream. Only the `mp4_support` and `master_access` settings may be updated.
*/
export interface NewAssetSettings {
/**
* Add or remove access to the master version of the video.
*/
master_access?: 'temporary' | 'none';

/**
* Specify what level of support for mp4 playback should be added to new assets
* generated from this live stream.
Expand Down