Skip to content

Commit 45c86af

Browse files
authored
5.1.0 (#93)
* 5.1.0 * the rest of the files * update
1 parent b0f7343 commit 45c86af

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+3224
-72
lines changed

.openapi-generator/FILES

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
.gitlab-ci.yml
33
README.md
44
docs/AbridgedVideoView.md
5+
docs/Annotation.md
6+
docs/AnnotationInput.md
7+
docs/AnnotationResponse.md
8+
docs/AnnotationsApi.md
59
docs/Asset.md
610
docs/AssetErrors.md
711
docs/AssetGeneratedSubtitleSettings.md
812
docs/AssetMaster.md
913
docs/AssetMetadata.md
1014
docs/AssetNonStandardInputReasons.md
15+
docs/AssetProgress.md
1116
docs/AssetRecordingTimes.md
1217
docs/AssetResponse.md
1318
docs/AssetStaticRenditions.md
@@ -77,6 +82,7 @@ docs/InputTrack.md
7782
docs/Insight.md
7883
docs/LaunchWebInputResponse.md
7984
docs/ListAllMetricValuesResponse.md
85+
docs/ListAnnotationsResponse.md
8086
docs/ListAssetsResponse.md
8187
docs/ListBreakdownValuesResponse.md
8288
docs/ListBreakdownValuesResponseMeta.md
@@ -108,6 +114,7 @@ docs/ListWebInputsResponse.md
108114
docs/LiveStream.md
109115
docs/LiveStreamEmbeddedSubtitleSettings.md
110116
docs/LiveStreamGeneratedSubtitleSettings.md
117+
docs/LiveStreamMetadata.md
111118
docs/LiveStreamResponse.md
112119
docs/LiveStreamStatus.md
113120
docs/LiveStreamsApi.md
@@ -177,6 +184,7 @@ docs/WebInputResponse.md
177184
docs/WebInputsApi.md
178185
mux_python/__init__.py
179186
mux_python/api/__init__.py
187+
mux_python/api/annotations_api.py
180188
mux_python/api/assets_api.py
181189
mux_python/api/delivery_usage_api.py
182190
mux_python/api/dimensions_api.py
@@ -202,12 +210,16 @@ mux_python/configuration.py
202210
mux_python/exceptions.py
203211
mux_python/models/__init__.py
204212
mux_python/models/abridged_video_view.py
213+
mux_python/models/annotation.py
214+
mux_python/models/annotation_input.py
215+
mux_python/models/annotation_response.py
205216
mux_python/models/asset.py
206217
mux_python/models/asset_errors.py
207218
mux_python/models/asset_generated_subtitle_settings.py
208219
mux_python/models/asset_master.py
209220
mux_python/models/asset_metadata.py
210221
mux_python/models/asset_non_standard_input_reasons.py
222+
mux_python/models/asset_progress.py
211223
mux_python/models/asset_recording_times.py
212224
mux_python/models/asset_response.py
213225
mux_python/models/asset_static_renditions.py
@@ -268,6 +280,7 @@ mux_python/models/input_track.py
268280
mux_python/models/insight.py
269281
mux_python/models/launch_web_input_response.py
270282
mux_python/models/list_all_metric_values_response.py
283+
mux_python/models/list_annotations_response.py
271284
mux_python/models/list_assets_response.py
272285
mux_python/models/list_breakdown_values_response.py
273286
mux_python/models/list_breakdown_values_response_meta.py
@@ -299,6 +312,7 @@ mux_python/models/list_web_inputs_response.py
299312
mux_python/models/live_stream.py
300313
mux_python/models/live_stream_embedded_subtitle_settings.py
301314
mux_python/models/live_stream_generated_subtitle_settings.py
315+
mux_python/models/live_stream_metadata.py
302316
mux_python/models/live_stream_response.py
303317
mux_python/models/live_stream_status.py
304318
mux_python/models/metric.py

docs/Annotation.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Annotation
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **str** | Unique identifier for the annotation | [optional]
7+
**note** | **str** | The annotation note content | [optional]
8+
**date** | **datetime** | Datetime when the annotation applies | [optional]
9+
**sub_property_id** | **str** | Customer-defined sub-property identifier | [optional]
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+

docs/AnnotationInput.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# AnnotationInput
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**note** | **str** | The annotation note content | [optional]
7+
**date** | **int** | Datetime when the annotation applies (Unix timestamp) | [optional]
8+
**sub_property_id** | **str** | Customer-defined sub-property identifier | [optional]
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
12+

docs/AnnotationResponse.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# AnnotationResponse
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**data** | [**Annotation**](Annotation.md) | | [optional]
7+
8+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
9+
10+

0 commit comments

Comments
 (0)