-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RTC-409] Switch openapi generator (#21)
* Migrate to python-generator * Fix ruff * Ruff * Add enum template * Fix ServerMessage docs * Add custom http errors * Update comment * Fix docs warning
- Loading branch information
Showing
95 changed files
with
5,291 additions
and
7,384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,7 @@ | ||
# coding: utf-8 | ||
""" A client library for accessing Jellyfish Media Server """ | ||
from .client import AuthenticatedClient, Client | ||
|
||
# flake8: noqa | ||
|
||
""" | ||
Python API wrapper for Jellyfish Media Server | ||
The version of the OpenAPI document: 0.2.0 | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" # noqa: E501 | ||
|
||
|
||
__version__ = "1.0.0" | ||
|
||
# import apis into sdk package | ||
from jellyfish._openapi_client.api.hls_api import HlsApi | ||
from jellyfish._openapi_client.api.recording_api import RecordingApi | ||
from jellyfish._openapi_client.api.room_api import RoomApi | ||
|
||
# import ApiClient | ||
from jellyfish._openapi_client.api_response import ApiResponse | ||
from jellyfish._openapi_client.api_client import ApiClient | ||
from jellyfish._openapi_client.configuration import Configuration | ||
from jellyfish._openapi_client.exceptions import OpenApiException | ||
from jellyfish._openapi_client.exceptions import ApiTypeError | ||
from jellyfish._openapi_client.exceptions import ApiValueError | ||
from jellyfish._openapi_client.exceptions import ApiKeyError | ||
from jellyfish._openapi_client.exceptions import ApiAttributeError | ||
from jellyfish._openapi_client.exceptions import ApiException | ||
|
||
# import models into sdk package | ||
from jellyfish._openapi_client.models.add_component_request import AddComponentRequest | ||
from jellyfish._openapi_client.models.add_peer_request import AddPeerRequest | ||
from jellyfish._openapi_client.models.component import Component | ||
from jellyfish._openapi_client.models.component_details_response import ( | ||
ComponentDetailsResponse, | ||
) | ||
from jellyfish._openapi_client.models.component_hls import ComponentHLS | ||
from jellyfish._openapi_client.models.component_metadata_hls import ComponentMetadataHLS | ||
from jellyfish._openapi_client.models.component_options import ComponentOptions | ||
from jellyfish._openapi_client.models.component_options_hls import ComponentOptionsHLS | ||
from jellyfish._openapi_client.models.component_options_hlss3 import ( | ||
ComponentOptionsHLSS3, | ||
) | ||
from jellyfish._openapi_client.models.component_options_rtsp import ComponentOptionsRTSP | ||
from jellyfish._openapi_client.models.component_rtsp import ComponentRTSP | ||
from jellyfish._openapi_client.models.error import Error | ||
from jellyfish._openapi_client.models.hls_skip import HlsSkip | ||
from jellyfish._openapi_client.models.peer import Peer | ||
from jellyfish._openapi_client.models.peer_details_response import PeerDetailsResponse | ||
from jellyfish._openapi_client.models.peer_details_response_data import ( | ||
PeerDetailsResponseData, | ||
) | ||
from jellyfish._openapi_client.models.peer_options import PeerOptions | ||
from jellyfish._openapi_client.models.peer_options_web_rtc import PeerOptionsWebRTC | ||
from jellyfish._openapi_client.models.peer_status import PeerStatus | ||
from jellyfish._openapi_client.models.recording_list_response import ( | ||
RecordingListResponse, | ||
) | ||
from jellyfish._openapi_client.models.room import Room | ||
from jellyfish._openapi_client.models.room_config import RoomConfig | ||
from jellyfish._openapi_client.models.room_create_details_response import ( | ||
RoomCreateDetailsResponse, | ||
) | ||
from jellyfish._openapi_client.models.room_create_details_response_data import ( | ||
RoomCreateDetailsResponseData, | ||
__all__ = ( | ||
"AuthenticatedClient", | ||
"Client", | ||
) | ||
from jellyfish._openapi_client.models.room_details_response import RoomDetailsResponse | ||
from jellyfish._openapi_client.models.rooms_listing_response import RoomsListingResponse | ||
from jellyfish._openapi_client.models.s3_credentials import S3Credentials | ||
from jellyfish._openapi_client.models.subscription_config import SubscriptionConfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
# flake8: noqa | ||
|
||
# import apis into api package | ||
from jellyfish._openapi_client.api.hls_api import HlsApi | ||
from jellyfish._openapi_client.api.recording_api import RecordingApi | ||
from jellyfish._openapi_client.api.room_api import RoomApi | ||
""" Contains methods for accessing the API """ |
Empty file.
Oops, something went wrong.