onelive-vgst 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. onelive_vgst-0.1.0/PKG-INFO +174 -0
  2. onelive_vgst-0.1.0/README.md +156 -0
  3. onelive_vgst-0.1.0/onelive-vgst/__init__.py +92 -0
  4. onelive_vgst-0.1.0/onelive-vgst/api/__init__.py +9 -0
  5. onelive_vgst-0.1.0/onelive-vgst/api/customers_api.py +2129 -0
  6. onelive_vgst-0.1.0/onelive-vgst/api/health_api.py +278 -0
  7. onelive_vgst-0.1.0/onelive-vgst/api/provider_matches_api.py +331 -0
  8. onelive_vgst-0.1.0/onelive-vgst/api/providers_api.py +1368 -0
  9. onelive_vgst-0.1.0/onelive-vgst/api/sports_api.py +1368 -0
  10. onelive_vgst-0.1.0/onelive-vgst/api_client.py +807 -0
  11. onelive_vgst-0.1.0/onelive-vgst/api_response.py +21 -0
  12. onelive_vgst-0.1.0/onelive-vgst/configuration.py +582 -0
  13. onelive_vgst-0.1.0/onelive-vgst/exceptions.py +219 -0
  14. onelive_vgst-0.1.0/onelive-vgst/models/__init__.py +34 -0
  15. onelive_vgst-0.1.0/onelive-vgst/models/auth_entity_read.py +96 -0
  16. onelive_vgst-0.1.0/onelive-vgst/models/customer_create.py +102 -0
  17. onelive_vgst-0.1.0/onelive-vgst/models/customer_password_update.py +88 -0
  18. onelive_vgst-0.1.0/onelive-vgst/models/customer_read.py +107 -0
  19. onelive_vgst-0.1.0/onelive-vgst/models/customer_state_enum.py +37 -0
  20. onelive_vgst-0.1.0/onelive-vgst/models/customer_update.py +112 -0
  21. onelive_vgst-0.1.0/onelive-vgst/models/health_status.py +87 -0
  22. onelive_vgst-0.1.0/onelive-vgst/models/http_validation_error.py +95 -0
  23. onelive_vgst-0.1.0/onelive-vgst/models/location_inner.py +138 -0
  24. onelive_vgst-0.1.0/onelive-vgst/models/provider_create.py +88 -0
  25. onelive_vgst-0.1.0/onelive-vgst/models/provider_match_bulk_item.py +104 -0
  26. onelive_vgst-0.1.0/onelive-vgst/models/provider_match_read.py +93 -0
  27. onelive_vgst-0.1.0/onelive-vgst/models/provider_read.py +95 -0
  28. onelive_vgst-0.1.0/onelive-vgst/models/provider_update.py +88 -0
  29. onelive_vgst-0.1.0/onelive-vgst/models/sport_create.py +88 -0
  30. onelive_vgst-0.1.0/onelive-vgst/models/sport_read.py +95 -0
  31. onelive_vgst-0.1.0/onelive-vgst/models/sport_update.py +88 -0
  32. onelive_vgst-0.1.0/onelive-vgst/models/validation_error.py +99 -0
  33. onelive_vgst-0.1.0/onelive-vgst/py.typed +0 -0
  34. onelive_vgst-0.1.0/onelive-vgst/rest.py +218 -0
  35. onelive_vgst-0.1.0/onelive_vgst.egg-info/PKG-INFO +174 -0
  36. onelive_vgst-0.1.0/onelive_vgst.egg-info/SOURCES.txt +64 -0
  37. onelive_vgst-0.1.0/onelive_vgst.egg-info/dependency_links.txt +1 -0
  38. onelive_vgst-0.1.0/onelive_vgst.egg-info/requires.txt +5 -0
  39. onelive_vgst-0.1.0/onelive_vgst.egg-info/top_level.txt +1 -0
  40. onelive_vgst-0.1.0/pyproject.toml +95 -0
  41. onelive_vgst-0.1.0/setup.cfg +7 -0
  42. onelive_vgst-0.1.0/setup.py +50 -0
  43. onelive_vgst-0.1.0/test/test_auth_entity_read.py +56 -0
  44. onelive_vgst-0.1.0/test/test_customer_create.py +59 -0
  45. onelive_vgst-0.1.0/test/test_customer_password_update.py +52 -0
  46. onelive_vgst-0.1.0/test/test_customer_read.py +72 -0
  47. onelive_vgst-0.1.0/test/test_customer_state_enum.py +33 -0
  48. onelive_vgst-0.1.0/test/test_customer_update.py +57 -0
  49. onelive_vgst-0.1.0/test/test_customers_api.py +87 -0
  50. onelive_vgst-0.1.0/test/test_health_api.py +38 -0
  51. onelive_vgst-0.1.0/test/test_health_status.py +51 -0
  52. onelive_vgst-0.1.0/test/test_http_validation_error.py +58 -0
  53. onelive_vgst-0.1.0/test/test_location_inner.py +50 -0
  54. onelive_vgst-0.1.0/test/test_provider_create.py +52 -0
  55. onelive_vgst-0.1.0/test/test_provider_match_bulk_item.py +63 -0
  56. onelive_vgst-0.1.0/test/test_provider_match_read.py +58 -0
  57. onelive_vgst-0.1.0/test/test_provider_matches_api.py +38 -0
  58. onelive_vgst-0.1.0/test/test_provider_read.py +58 -0
  59. onelive_vgst-0.1.0/test/test_provider_update.py +52 -0
  60. onelive_vgst-0.1.0/test/test_providers_api.py +66 -0
  61. onelive_vgst-0.1.0/test/test_sport_create.py +52 -0
  62. onelive_vgst-0.1.0/test/test_sport_read.py +58 -0
  63. onelive_vgst-0.1.0/test/test_sport_update.py +52 -0
  64. onelive_vgst-0.1.0/test/test_sports_api.py +66 -0
  65. onelive_vgst-0.1.0/test/test_validation_error.py +60 -0
@@ -0,0 +1,174 @@
1
+ Metadata-Version: 2.4
2
+ Name: onelive-vgst
3
+ Version: 0.1.0
4
+ Summary: OneLive VGST API
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: OpenAPI Generator Community <team@openapitools.org>
8
+ Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
9
+ Keywords: OpenAPI,OpenAPI-Generator,OneLive VGST API
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: python-dateutil>=2.8.2
13
+ Requires-Dist: aiohttp>=3.8.4
14
+ Requires-Dist: aiohttp-retry>=2.8.3
15
+ Requires-Dist: pydantic>=2
16
+ Requires-Dist: typing-extensions>=4.7.1
17
+ Dynamic: author
18
+
19
+ # onelive-vgst
20
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
21
+
22
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
23
+
24
+ - API version: 0.1.0
25
+ - Package version: 0.1.0
26
+ - Generator version: 7.19.0
27
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
28
+
29
+ ## Requirements.
30
+
31
+ Python 3.9+
32
+
33
+ ## Installation & Usage
34
+ ### pip install
35
+
36
+ If the python package is hosted on a repository, you can install directly using:
37
+
38
+ ```sh
39
+ pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
40
+ ```
41
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
42
+
43
+ Then import the package:
44
+ ```python
45
+ import onelive-vgst
46
+ ```
47
+
48
+ ### Setuptools
49
+
50
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
51
+
52
+ ```sh
53
+ python setup.py install --user
54
+ ```
55
+ (or `sudo python setup.py install` to install the package for all users)
56
+
57
+ Then import the package:
58
+ ```python
59
+ import onelive-vgst
60
+ ```
61
+
62
+ ### Tests
63
+
64
+ Execute `pytest` to run the tests.
65
+
66
+ ## Getting Started
67
+
68
+ Please follow the [installation procedure](#installation--usage) and then run the following:
69
+
70
+ ```python
71
+
72
+ import onelive-vgst
73
+ from onelive-vgst.rest import ApiException
74
+ from pprint import pprint
75
+
76
+ # Defining the host is optional and defaults to http://localhost
77
+ # See configuration.py for a list of all supported configuration parameters.
78
+ configuration = onelive-vgst.Configuration(
79
+ host = "http://localhost"
80
+ )
81
+
82
+ # The client must configure the authentication and authorization parameters
83
+ # in accordance with the API server security policy.
84
+ # Examples for each auth method are provided below, use the example that
85
+ # satisfies your auth use case.
86
+
87
+ # Configure Bearer authorization: HTTPBearer
88
+ configuration = onelive-vgst.Configuration(
89
+ access_token = os.environ["BEARER_TOKEN"]
90
+ )
91
+
92
+
93
+ # Enter a context with an instance of the API client
94
+ async with onelive-vgst.ApiClient(configuration) as api_client:
95
+ # Create an instance of the API class
96
+ api_instance = onelive-vgst.CustomersApi(api_client)
97
+ customer_create = onelive-vgst.CustomerCreate() # CustomerCreate |
98
+
99
+ try:
100
+ # Create Customer
101
+ api_response = await api_instance.create_customer_customers_post(customer_create)
102
+ print("The response of CustomersApi->create_customer_customers_post:\n")
103
+ pprint(api_response)
104
+ except ApiException as e:
105
+ print("Exception when calling CustomersApi->create_customer_customers_post: %s\n" % e)
106
+
107
+ ```
108
+
109
+ ## Documentation for API Endpoints
110
+
111
+ All URIs are relative to *http://localhost*
112
+
113
+ Class | Method | HTTP request | Description
114
+ ------------ | ------------- | ------------- | -------------
115
+ *CustomersApi* | [**create_customer_customers_post**](docs/CustomersApi.md#create_customer_customers_post) | **POST** /customers | Create Customer
116
+ *CustomersApi* | [**delete_customer_customers_customer_id_delete**](docs/CustomersApi.md#delete_customer_customers_customer_id_delete) | **DELETE** /customers/{customer_id} | Delete Customer
117
+ *CustomersApi* | [**get_customer_customers_customer_id_get**](docs/CustomersApi.md#get_customer_customers_customer_id_get) | **GET** /customers/{customer_id} | Get Customer
118
+ *CustomersApi* | [**get_customers_customers_get**](docs/CustomersApi.md#get_customers_customers_get) | **GET** /customers | Get Customers
119
+ *CustomersApi* | [**get_me_customers_me_get**](docs/CustomersApi.md#get_me_customers_me_get) | **GET** /customers/me | Get Me
120
+ *CustomersApi* | [**update_customer_customers_customer_id_put**](docs/CustomersApi.md#update_customer_customers_customer_id_put) | **PUT** /customers/{customer_id} | Update Customer
121
+ *CustomersApi* | [**update_me_last_activity_customers_me_last_activity_post**](docs/CustomersApi.md#update_me_last_activity_customers_me_last_activity_post) | **POST** /customers/me/last-activity | Update Me Last Activity
122
+ *CustomersApi* | [**update_me_password_customers_me_update_post**](docs/CustomersApi.md#update_me_password_customers_me_update_post) | **POST** /customers/me/update | Update Me Password
123
+ *HealthApi* | [**get_health_status_health_check_get**](docs/HealthApi.md#get_health_status_health_check_get) | **GET** /health-check | Health check
124
+ *ProviderMatchesApi* | [**upsert_provider_matches_bulk_provider_matches_bulk_post**](docs/ProviderMatchesApi.md#upsert_provider_matches_bulk_provider_matches_bulk_post) | **POST** /provider-matches/bulk | Upsert Provider Matches Bulk
125
+ *ProvidersApi* | [**create_provider_providers_post**](docs/ProvidersApi.md#create_provider_providers_post) | **POST** /providers | Create Provider
126
+ *ProvidersApi* | [**delete_provider_providers_provider_id_delete**](docs/ProvidersApi.md#delete_provider_providers_provider_id_delete) | **DELETE** /providers/{provider_id} | Delete Provider
127
+ *ProvidersApi* | [**get_provider_providers_provider_id_get**](docs/ProvidersApi.md#get_provider_providers_provider_id_get) | **GET** /providers/{provider_id} | Get Provider
128
+ *ProvidersApi* | [**get_providers_providers_get**](docs/ProvidersApi.md#get_providers_providers_get) | **GET** /providers | Get Providers
129
+ *ProvidersApi* | [**update_provider_providers_provider_id_put**](docs/ProvidersApi.md#update_provider_providers_provider_id_put) | **PUT** /providers/{provider_id} | Update Provider
130
+ *SportsApi* | [**create_sport_sports_post**](docs/SportsApi.md#create_sport_sports_post) | **POST** /sports | Create Sport
131
+ *SportsApi* | [**delete_sport_sports_sport_id_delete**](docs/SportsApi.md#delete_sport_sports_sport_id_delete) | **DELETE** /sports/{sport_id} | Delete Sport
132
+ *SportsApi* | [**get_sport_sports_sport_id_get**](docs/SportsApi.md#get_sport_sports_sport_id_get) | **GET** /sports/{sport_id} | Get Sport
133
+ *SportsApi* | [**get_sports_sports_get**](docs/SportsApi.md#get_sports_sports_get) | **GET** /sports | Get Sports
134
+ *SportsApi* | [**update_sport_sports_sport_id_put**](docs/SportsApi.md#update_sport_sports_sport_id_put) | **PUT** /sports/{sport_id} | Update Sport
135
+
136
+
137
+ ## Documentation For Models
138
+
139
+ - [AuthEntityRead](docs/AuthEntityRead.md)
140
+ - [CustomerCreate](docs/CustomerCreate.md)
141
+ - [CustomerPasswordUpdate](docs/CustomerPasswordUpdate.md)
142
+ - [CustomerRead](docs/CustomerRead.md)
143
+ - [CustomerStateEnum](docs/CustomerStateEnum.md)
144
+ - [CustomerUpdate](docs/CustomerUpdate.md)
145
+ - [HTTPValidationError](docs/HTTPValidationError.md)
146
+ - [HealthStatus](docs/HealthStatus.md)
147
+ - [LocationInner](docs/LocationInner.md)
148
+ - [ProviderCreate](docs/ProviderCreate.md)
149
+ - [ProviderMatchBulkItem](docs/ProviderMatchBulkItem.md)
150
+ - [ProviderMatchRead](docs/ProviderMatchRead.md)
151
+ - [ProviderRead](docs/ProviderRead.md)
152
+ - [ProviderUpdate](docs/ProviderUpdate.md)
153
+ - [SportCreate](docs/SportCreate.md)
154
+ - [SportRead](docs/SportRead.md)
155
+ - [SportUpdate](docs/SportUpdate.md)
156
+ - [ValidationError](docs/ValidationError.md)
157
+
158
+
159
+ <a id="documentation-for-authorization"></a>
160
+ ## Documentation For Authorization
161
+
162
+
163
+ Authentication schemes defined for the API:
164
+ <a id="HTTPBearer"></a>
165
+ ### HTTPBearer
166
+
167
+ - **Type**: Bearer authentication
168
+
169
+
170
+ ## Author
171
+
172
+
173
+
174
+
@@ -0,0 +1,156 @@
1
+ # onelive-vgst
2
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
+
6
+ - API version: 0.1.0
7
+ - Package version: 0.1.0
8
+ - Generator version: 7.19.0
9
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
+
11
+ ## Requirements.
12
+
13
+ Python 3.9+
14
+
15
+ ## Installation & Usage
16
+ ### pip install
17
+
18
+ If the python package is hosted on a repository, you can install directly using:
19
+
20
+ ```sh
21
+ pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
22
+ ```
23
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
24
+
25
+ Then import the package:
26
+ ```python
27
+ import onelive-vgst
28
+ ```
29
+
30
+ ### Setuptools
31
+
32
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
33
+
34
+ ```sh
35
+ python setup.py install --user
36
+ ```
37
+ (or `sudo python setup.py install` to install the package for all users)
38
+
39
+ Then import the package:
40
+ ```python
41
+ import onelive-vgst
42
+ ```
43
+
44
+ ### Tests
45
+
46
+ Execute `pytest` to run the tests.
47
+
48
+ ## Getting Started
49
+
50
+ Please follow the [installation procedure](#installation--usage) and then run the following:
51
+
52
+ ```python
53
+
54
+ import onelive-vgst
55
+ from onelive-vgst.rest import ApiException
56
+ from pprint import pprint
57
+
58
+ # Defining the host is optional and defaults to http://localhost
59
+ # See configuration.py for a list of all supported configuration parameters.
60
+ configuration = onelive-vgst.Configuration(
61
+ host = "http://localhost"
62
+ )
63
+
64
+ # The client must configure the authentication and authorization parameters
65
+ # in accordance with the API server security policy.
66
+ # Examples for each auth method are provided below, use the example that
67
+ # satisfies your auth use case.
68
+
69
+ # Configure Bearer authorization: HTTPBearer
70
+ configuration = onelive-vgst.Configuration(
71
+ access_token = os.environ["BEARER_TOKEN"]
72
+ )
73
+
74
+
75
+ # Enter a context with an instance of the API client
76
+ async with onelive-vgst.ApiClient(configuration) as api_client:
77
+ # Create an instance of the API class
78
+ api_instance = onelive-vgst.CustomersApi(api_client)
79
+ customer_create = onelive-vgst.CustomerCreate() # CustomerCreate |
80
+
81
+ try:
82
+ # Create Customer
83
+ api_response = await api_instance.create_customer_customers_post(customer_create)
84
+ print("The response of CustomersApi->create_customer_customers_post:\n")
85
+ pprint(api_response)
86
+ except ApiException as e:
87
+ print("Exception when calling CustomersApi->create_customer_customers_post: %s\n" % e)
88
+
89
+ ```
90
+
91
+ ## Documentation for API Endpoints
92
+
93
+ All URIs are relative to *http://localhost*
94
+
95
+ Class | Method | HTTP request | Description
96
+ ------------ | ------------- | ------------- | -------------
97
+ *CustomersApi* | [**create_customer_customers_post**](docs/CustomersApi.md#create_customer_customers_post) | **POST** /customers | Create Customer
98
+ *CustomersApi* | [**delete_customer_customers_customer_id_delete**](docs/CustomersApi.md#delete_customer_customers_customer_id_delete) | **DELETE** /customers/{customer_id} | Delete Customer
99
+ *CustomersApi* | [**get_customer_customers_customer_id_get**](docs/CustomersApi.md#get_customer_customers_customer_id_get) | **GET** /customers/{customer_id} | Get Customer
100
+ *CustomersApi* | [**get_customers_customers_get**](docs/CustomersApi.md#get_customers_customers_get) | **GET** /customers | Get Customers
101
+ *CustomersApi* | [**get_me_customers_me_get**](docs/CustomersApi.md#get_me_customers_me_get) | **GET** /customers/me | Get Me
102
+ *CustomersApi* | [**update_customer_customers_customer_id_put**](docs/CustomersApi.md#update_customer_customers_customer_id_put) | **PUT** /customers/{customer_id} | Update Customer
103
+ *CustomersApi* | [**update_me_last_activity_customers_me_last_activity_post**](docs/CustomersApi.md#update_me_last_activity_customers_me_last_activity_post) | **POST** /customers/me/last-activity | Update Me Last Activity
104
+ *CustomersApi* | [**update_me_password_customers_me_update_post**](docs/CustomersApi.md#update_me_password_customers_me_update_post) | **POST** /customers/me/update | Update Me Password
105
+ *HealthApi* | [**get_health_status_health_check_get**](docs/HealthApi.md#get_health_status_health_check_get) | **GET** /health-check | Health check
106
+ *ProviderMatchesApi* | [**upsert_provider_matches_bulk_provider_matches_bulk_post**](docs/ProviderMatchesApi.md#upsert_provider_matches_bulk_provider_matches_bulk_post) | **POST** /provider-matches/bulk | Upsert Provider Matches Bulk
107
+ *ProvidersApi* | [**create_provider_providers_post**](docs/ProvidersApi.md#create_provider_providers_post) | **POST** /providers | Create Provider
108
+ *ProvidersApi* | [**delete_provider_providers_provider_id_delete**](docs/ProvidersApi.md#delete_provider_providers_provider_id_delete) | **DELETE** /providers/{provider_id} | Delete Provider
109
+ *ProvidersApi* | [**get_provider_providers_provider_id_get**](docs/ProvidersApi.md#get_provider_providers_provider_id_get) | **GET** /providers/{provider_id} | Get Provider
110
+ *ProvidersApi* | [**get_providers_providers_get**](docs/ProvidersApi.md#get_providers_providers_get) | **GET** /providers | Get Providers
111
+ *ProvidersApi* | [**update_provider_providers_provider_id_put**](docs/ProvidersApi.md#update_provider_providers_provider_id_put) | **PUT** /providers/{provider_id} | Update Provider
112
+ *SportsApi* | [**create_sport_sports_post**](docs/SportsApi.md#create_sport_sports_post) | **POST** /sports | Create Sport
113
+ *SportsApi* | [**delete_sport_sports_sport_id_delete**](docs/SportsApi.md#delete_sport_sports_sport_id_delete) | **DELETE** /sports/{sport_id} | Delete Sport
114
+ *SportsApi* | [**get_sport_sports_sport_id_get**](docs/SportsApi.md#get_sport_sports_sport_id_get) | **GET** /sports/{sport_id} | Get Sport
115
+ *SportsApi* | [**get_sports_sports_get**](docs/SportsApi.md#get_sports_sports_get) | **GET** /sports | Get Sports
116
+ *SportsApi* | [**update_sport_sports_sport_id_put**](docs/SportsApi.md#update_sport_sports_sport_id_put) | **PUT** /sports/{sport_id} | Update Sport
117
+
118
+
119
+ ## Documentation For Models
120
+
121
+ - [AuthEntityRead](docs/AuthEntityRead.md)
122
+ - [CustomerCreate](docs/CustomerCreate.md)
123
+ - [CustomerPasswordUpdate](docs/CustomerPasswordUpdate.md)
124
+ - [CustomerRead](docs/CustomerRead.md)
125
+ - [CustomerStateEnum](docs/CustomerStateEnum.md)
126
+ - [CustomerUpdate](docs/CustomerUpdate.md)
127
+ - [HTTPValidationError](docs/HTTPValidationError.md)
128
+ - [HealthStatus](docs/HealthStatus.md)
129
+ - [LocationInner](docs/LocationInner.md)
130
+ - [ProviderCreate](docs/ProviderCreate.md)
131
+ - [ProviderMatchBulkItem](docs/ProviderMatchBulkItem.md)
132
+ - [ProviderMatchRead](docs/ProviderMatchRead.md)
133
+ - [ProviderRead](docs/ProviderRead.md)
134
+ - [ProviderUpdate](docs/ProviderUpdate.md)
135
+ - [SportCreate](docs/SportCreate.md)
136
+ - [SportRead](docs/SportRead.md)
137
+ - [SportUpdate](docs/SportUpdate.md)
138
+ - [ValidationError](docs/ValidationError.md)
139
+
140
+
141
+ <a id="documentation-for-authorization"></a>
142
+ ## Documentation For Authorization
143
+
144
+
145
+ Authentication schemes defined for the API:
146
+ <a id="HTTPBearer"></a>
147
+ ### HTTPBearer
148
+
149
+ - **Type**: Bearer authentication
150
+
151
+
152
+ ## Author
153
+
154
+
155
+
156
+
@@ -0,0 +1,92 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ OneLive VGST API
7
+
8
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
9
+
10
+ The version of the OpenAPI document: 0.1.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "0.1.0"
18
+
19
+ # Define package exports
20
+ __all__ = [
21
+ "CustomersApi",
22
+ "HealthApi",
23
+ "ProviderMatchesApi",
24
+ "ProvidersApi",
25
+ "SportsApi",
26
+ "ApiResponse",
27
+ "ApiClient",
28
+ "Configuration",
29
+ "OpenApiException",
30
+ "ApiTypeError",
31
+ "ApiValueError",
32
+ "ApiKeyError",
33
+ "ApiAttributeError",
34
+ "ApiException",
35
+ "AuthEntityRead",
36
+ "CustomerCreate",
37
+ "CustomerPasswordUpdate",
38
+ "CustomerRead",
39
+ "CustomerStateEnum",
40
+ "CustomerUpdate",
41
+ "HTTPValidationError",
42
+ "HealthStatus",
43
+ "LocationInner",
44
+ "ProviderCreate",
45
+ "ProviderMatchBulkItem",
46
+ "ProviderMatchRead",
47
+ "ProviderRead",
48
+ "ProviderUpdate",
49
+ "SportCreate",
50
+ "SportRead",
51
+ "SportUpdate",
52
+ "ValidationError",
53
+ ]
54
+
55
+ # import apis into sdk package
56
+ from onelive-vgst.api.customers_api import CustomersApi as CustomersApi
57
+ from onelive-vgst.api.health_api import HealthApi as HealthApi
58
+ from onelive-vgst.api.provider_matches_api import ProviderMatchesApi as ProviderMatchesApi
59
+ from onelive-vgst.api.providers_api import ProvidersApi as ProvidersApi
60
+ from onelive-vgst.api.sports_api import SportsApi as SportsApi
61
+
62
+ # import ApiClient
63
+ from onelive-vgst.api_response import ApiResponse as ApiResponse
64
+ from onelive-vgst.api_client import ApiClient as ApiClient
65
+ from onelive-vgst.configuration import Configuration as Configuration
66
+ from onelive-vgst.exceptions import OpenApiException as OpenApiException
67
+ from onelive-vgst.exceptions import ApiTypeError as ApiTypeError
68
+ from onelive-vgst.exceptions import ApiValueError as ApiValueError
69
+ from onelive-vgst.exceptions import ApiKeyError as ApiKeyError
70
+ from onelive-vgst.exceptions import ApiAttributeError as ApiAttributeError
71
+ from onelive-vgst.exceptions import ApiException as ApiException
72
+
73
+ # import models into sdk package
74
+ from onelive-vgst.models.auth_entity_read import AuthEntityRead as AuthEntityRead
75
+ from onelive-vgst.models.customer_create import CustomerCreate as CustomerCreate
76
+ from onelive-vgst.models.customer_password_update import CustomerPasswordUpdate as CustomerPasswordUpdate
77
+ from onelive-vgst.models.customer_read import CustomerRead as CustomerRead
78
+ from onelive-vgst.models.customer_state_enum import CustomerStateEnum as CustomerStateEnum
79
+ from onelive-vgst.models.customer_update import CustomerUpdate as CustomerUpdate
80
+ from onelive-vgst.models.http_validation_error import HTTPValidationError as HTTPValidationError
81
+ from onelive-vgst.models.health_status import HealthStatus as HealthStatus
82
+ from onelive-vgst.models.location_inner import LocationInner as LocationInner
83
+ from onelive-vgst.models.provider_create import ProviderCreate as ProviderCreate
84
+ from onelive-vgst.models.provider_match_bulk_item import ProviderMatchBulkItem as ProviderMatchBulkItem
85
+ from onelive-vgst.models.provider_match_read import ProviderMatchRead as ProviderMatchRead
86
+ from onelive-vgst.models.provider_read import ProviderRead as ProviderRead
87
+ from onelive-vgst.models.provider_update import ProviderUpdate as ProviderUpdate
88
+ from onelive-vgst.models.sport_create import SportCreate as SportCreate
89
+ from onelive-vgst.models.sport_read import SportRead as SportRead
90
+ from onelive-vgst.models.sport_update import SportUpdate as SportUpdate
91
+ from onelive-vgst.models.validation_error import ValidationError as ValidationError
92
+
@@ -0,0 +1,9 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from onelive-vgst.api.customers_api import CustomersApi
5
+ from onelive-vgst.api.health_api import HealthApi
6
+ from onelive-vgst.api.provider_matches_api import ProviderMatchesApi
7
+ from onelive-vgst.api.providers_api import ProvidersApi
8
+ from onelive-vgst.api.sports_api import SportsApi
9
+