Skip to content

Commit 100a073

Browse files
chore: replace encoding tiers with video quality levels (#475)
1 parent ed3e34b commit 100a073

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 88
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux-603174c84ed6d06302f3843b95c5281fa79df1e7428eb8d475525fb27fa48b38.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux-b018de0ba821f7870683b15c853475a86435bd65d3eaf5bb024dff79f6b7027f.yml

src/resources/video/assets.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ export interface Asset {
229229
* @deprecated: This field is deprecated. Please use `video_quality` instead. The
230230
* encoding tier informs the cost, quality, and available platform features for the
231231
* asset. By default the `smart` encoding tier is used.
232-
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
232+
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-video-quality-levels)
233233
*/
234234
encoding_tier: 'smart' | 'baseline';
235235

@@ -390,7 +390,7 @@ export interface Asset {
390390
* The video quality controls the cost, quality, and available platform features
391391
* for the asset. By default the `plus` video quality is used. This field replaces
392392
* the deprecated `encoding_tier` value.
393-
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
393+
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-video-quality-levels)
394394
*/
395395
video_quality?: 'basic' | 'plus';
396396
}
@@ -585,7 +585,7 @@ export interface AssetOptions {
585585
* @deprecated: This field is deprecated. Please use `video_quality` instead. The
586586
* encoding tier informs the cost, quality, and available platform features for the
587587
* asset. By default the `smart` encoding tier is used.
588-
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
588+
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-video-quality-levels)
589589
*/
590590
encoding_tier?: 'smart' | 'baseline';
591591

@@ -682,7 +682,7 @@ export interface AssetOptions {
682682
* The video quality controls the cost, quality, and available platform features
683683
* for the asset. By default the `plus` video quality is used. This field replaces
684684
* the deprecated `encoding_tier` value.
685-
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
685+
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-video-quality-levels)
686686
*/
687687
video_quality?: 'basic' | 'plus';
688688
}
@@ -1324,7 +1324,7 @@ export interface AssetCreateParams {
13241324
* This field is deprecated. Please use `video_quality` instead. The encoding tier
13251325
* informs the cost, quality, and available platform features for the asset. By
13261326
* default the `smart` encoding tier is used.
1327-
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
1327+
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-video-quality-levels)
13281328
*/
13291329
encoding_tier?: 'smart' | 'baseline';
13301330

@@ -1411,7 +1411,7 @@ export interface AssetCreateParams {
14111411
* The video quality controls the cost, quality, and available platform features
14121412
* for the asset. By default the `plus` video quality is used. This field replaces
14131413
* the deprecated `encoding_tier` value.
1414-
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
1414+
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-video-quality-levels)
14151415
*/
14161416
video_quality?: 'basic' | 'plus';
14171417
}

src/resources/video/delivery-usage.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export interface DeliveryReport {
4141
/**
4242
* @deprecated: This field is deprecated. Please use `asset_video_quality` instead.
4343
* The encoding tier that the asset was ingested at.
44-
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
44+
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-video-quality-levels)
4545
*/
4646
asset_encoding_tier: 'smart' | 'baseline';
4747

@@ -80,7 +80,7 @@ export interface DeliveryReport {
8080
/**
8181
* The video quality that the asset was ingested at. This field replaces
8282
* `asset_encoding_tier`.
83-
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
83+
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-video-quality-levels)
8484
*/
8585
asset_video_quality?: 'basic' | 'plus';
8686

src/resources/webhooks.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ export namespace VideoDeliveryHighTrafficWebhookEvent {
389389
/**
390390
* @deprecated: This field is deprecated. Please use `asset_video_quality` instead.
391391
* The encoding tier that the asset was ingested at.
392-
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
392+
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-video-quality-levels)
393393
*/
394394
asset_encoding_tier?: 'smart' | 'baseline';
395395

@@ -412,7 +412,7 @@ export namespace VideoDeliveryHighTrafficWebhookEvent {
412412
/**
413413
* The video quality that the asset was ingested at. This field replaces
414414
* `asset_encoding_tier`.
415-
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
415+
* [See the video quality guide for more details.](https://docs.mux.com/guides/use-video-quality-levels)
416416
*/
417417
asset_video_quality?: 'basic' | 'plus';
418418

0 commit comments

Comments
 (0)