Skip to content

Commit

Permalink
feat(api): api update (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Oct 31, 2024
1 parent 7a5c790 commit e334267
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
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-8481a2dad8c1237653cceb4b3cb43e3c3985332834d0cf3ef6b69a4cddef25a9.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux-5bc9dec57cc47596441c1af33503b43275966e117bb43d2d6c3c5301a1644330.yml
2 changes: 1 addition & 1 deletion src/resources/data/dimensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export interface DimensionListValuesParams extends BasePageParams {
*
* Possible filterable metrics are the same as the set of metric ids, with the
* exceptions of `exits_before_video_start`, `unique_viewers`,
* `video_startup_failure_percentage`, and `views`.
* `video_startup_failure_percentage`, `view_dropped_percentage`, and `views`.
*
* Example:
*
Expand Down
2 changes: 1 addition & 1 deletion src/resources/data/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export interface ErrorListParams {
*
* Possible filterable metrics are the same as the set of metric ids, with the
* exceptions of `exits_before_video_start`, `unique_viewers`,
* `video_startup_failure_percentage`, and `views`.
* `video_startup_failure_percentage`, `view_dropped_percentage`, and `views`.
*
* Example:
*
Expand Down
26 changes: 13 additions & 13 deletions src/resources/data/metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ export interface MetricListParams {
*
* Possible filterable metrics are the same as the set of metric ids, with the
* exceptions of `exits_before_video_start`, `unique_viewers`,
* `video_startup_failure_percentage`, and `views`.
* `video_startup_failure_percentage`, `view_dropped_percentage`, and `views`.
*
* Example:
*
Expand Down Expand Up @@ -1029,8 +1029,8 @@ export interface MetricGetInsightsParams {
* `rebuffer_percentage`, `seek_latency`, `smoothness_score`, `startup_time_score`,
* `upscale_percentage`, `video_quality_score`,
* `video_startup_business_exception_percentage`,
* `video_startup_failure_percentage`, `viewer_experience_score` "count" :
* `started_views`, `unique_viewers`
* `video_startup_failure_percentage`, `view_dropped_percentage`,
* `viewer_experience_score` "count" : `started_views`, `unique_viewers`
*/
measurement?: '95th' | 'median' | 'avg' | 'count' | 'sum';

Expand All @@ -1040,7 +1040,7 @@ export interface MetricGetInsightsParams {
*
* Possible filterable metrics are the same as the set of metric ids, with the
* exceptions of `exits_before_video_start`, `unique_viewers`,
* `video_startup_failure_percentage`, and `views`.
* `video_startup_failure_percentage`, `view_dropped_percentage`, and `views`.
*
* Example:
*
Expand Down Expand Up @@ -1103,8 +1103,8 @@ export interface MetricGetOverallValuesParams {
* `rebuffer_percentage`, `seek_latency`, `smoothness_score`, `startup_time_score`,
* `upscale_percentage`, `video_quality_score`,
* `video_startup_business_exception_percentage`,
* `video_startup_failure_percentage`, `viewer_experience_score` "count" :
* `started_views`, `unique_viewers`
* `video_startup_failure_percentage`, `view_dropped_percentage`,
* `viewer_experience_score` "count" : `started_views`, `unique_viewers`
*/
measurement?: '95th' | 'median' | 'avg' | 'count' | 'sum';

Expand All @@ -1114,7 +1114,7 @@ export interface MetricGetOverallValuesParams {
*
* Possible filterable metrics are the same as the set of metric ids, with the
* exceptions of `exits_before_video_start`, `unique_viewers`,
* `video_startup_failure_percentage`, and `views`.
* `video_startup_failure_percentage`, `view_dropped_percentage`, and `views`.
*
* Example:
*
Expand Down Expand Up @@ -1185,8 +1185,8 @@ export interface MetricGetTimeseriesParams {
* `rebuffer_percentage`, `seek_latency`, `smoothness_score`, `startup_time_score`,
* `upscale_percentage`, `video_quality_score`,
* `video_startup_business_exception_percentage`,
* `video_startup_failure_percentage`, `viewer_experience_score` "count" :
* `started_views`, `unique_viewers`
* `video_startup_failure_percentage`, `view_dropped_percentage`,
* `viewer_experience_score` "count" : `started_views`, `unique_viewers`
*/
measurement?: '95th' | 'median' | 'avg' | 'count' | 'sum';

Expand All @@ -1196,7 +1196,7 @@ export interface MetricGetTimeseriesParams {
*
* Possible filterable metrics are the same as the set of metric ids, with the
* exceptions of `exits_before_video_start`, `unique_viewers`,
* `video_startup_failure_percentage`, and `views`.
* `video_startup_failure_percentage`, `view_dropped_percentage`, and `views`.
*
* Example:
*
Expand Down Expand Up @@ -1328,8 +1328,8 @@ export interface MetricListBreakdownValuesParams extends BasePageParams {
* `rebuffer_percentage`, `seek_latency`, `smoothness_score`, `startup_time_score`,
* `upscale_percentage`, `video_quality_score`,
* `video_startup_business_exception_percentage`,
* `video_startup_failure_percentage`, `viewer_experience_score` "count" :
* `started_views`, `unique_viewers`
* `video_startup_failure_percentage`, `view_dropped_percentage`,
* `viewer_experience_score` "count" : `started_views`, `unique_viewers`
*/
measurement?: '95th' | 'median' | 'avg' | 'count' | 'sum';

Expand All @@ -1339,7 +1339,7 @@ export interface MetricListBreakdownValuesParams extends BasePageParams {
*
* Possible filterable metrics are the same as the set of metric ids, with the
* exceptions of `exits_before_video_start`, `unique_viewers`,
* `video_startup_failure_percentage`, and `views`.
* `video_startup_failure_percentage`, `view_dropped_percentage`, and `views`.
*
* Example:
*
Expand Down
2 changes: 1 addition & 1 deletion src/resources/data/video-views.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ export interface VideoViewListParams extends BasePageParams {
*
* Possible filterable metrics are the same as the set of metric ids, with the
* exceptions of `exits_before_video_start`, `unique_viewers`,
* `video_startup_failure_percentage`, and `views`.
* `video_startup_failure_percentage`, `view_dropped_percentage`, and `views`.
*
* Example:
*
Expand Down

0 comments on commit e334267

Please sign in to comment.