Skip to content

Commit 6d84205

Browse files
authored
Merge pull request #17 from onepanelio/feat/version.update
feat: update to v0.14.0
2 parents 2b10eca + cb20a72 commit 6d84205

149 files changed

Lines changed: 943 additions & 404 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Onepanel API
33

44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

6-
- API version: 0.13.0
7-
- Package version: v0.13.0
6+
- API version: 0.14.0
7+
- Package version: 0.14.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99
For more information, please visit [https://github.com/onepanelio/core](https://github.com/onepanelio/core)
1010

@@ -185,6 +185,7 @@ Class | Method | HTTP request | Description
185185
- [GrpcGatewayRuntimeStreamError](docs/GrpcGatewayRuntimeStreamError.md)
186186
- [IsAuthorized](docs/IsAuthorized.md)
187187
- [IsAuthorizedResponse](docs/IsAuthorizedResponse.md)
188+
- [IsValidTokenRequest](docs/IsValidTokenRequest.md)
188189
- [IsValidTokenResponse](docs/IsValidTokenResponse.md)
189190
- [KeyValue](docs/KeyValue.md)
190191
- [Labels](docs/Labels.md)
@@ -212,7 +213,6 @@ Class | Method | HTTP request | Description
212213
- [Statistics](docs/Statistics.md)
213214
- [StreamResultOfLogEntry](docs/StreamResultOfLogEntry.md)
214215
- [StreamResultOfWorkflowExecution](docs/StreamResultOfWorkflowExecution.md)
215-
- [TokenWrapper](docs/TokenWrapper.md)
216216
- [UpdateSecretKeyValueResponse](docs/UpdateSecretKeyValueResponse.md)
217217
- [UpdateWorkspaceBody](docs/UpdateWorkspaceBody.md)
218218
- [WorkflowExecution](docs/WorkflowExecution.md)

docs/AuthServiceApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ configuration = onepanel.core.api.Configuration(
122122
with onepanel.core.api.ApiClient(configuration) as api_client:
123123
# Create an instance of the API class
124124
api_instance = onepanel.core.api.AuthServiceApi(api_client)
125-
body = onepanel.core.api.TokenWrapper() # TokenWrapper |
125+
body = onepanel.core.api.IsValidTokenRequest() # IsValidTokenRequest |
126126

127127
try:
128128
api_response = api_instance.is_valid_token(body)
@@ -135,7 +135,7 @@ with onepanel.core.api.ApiClient(configuration) as api_client:
135135

136136
Name | Type | Description | Notes
137137
------------- | ------------- | ------------- | -------------
138-
**body** | [**TokenWrapper**](TokenWrapper.md)| |
138+
**body** | [**IsValidTokenRequest**](IsValidTokenRequest.md)| |
139139

140140
### Return type
141141

docs/IsValidTokenRequest.md

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

docs/IsValidTokenResponse.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**domain** | **str** | | [optional]
7+
**token** | **str** | | [optional]
8+
**username** | **str** | | [optional]
79

810
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
911

onepanel/core/api/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
88
Onepanel API # noqa: E501
99
10-
The version of the OpenAPI document: 0.13.0
10+
The version of the OpenAPI document: 0.14.0
1111
Generated by: https://openapi-generator.tech
1212
"""
1313

1414

1515
from __future__ import absolute_import
1616

17-
__version__ = "v0.13.0"
17+
__version__ = "0.14.0"
1818

1919
# import apis into sdk package
2020
from onepanel.core.api.api.auth_service_api import AuthServiceApi
@@ -58,6 +58,7 @@
5858
from onepanel.core.api.models.grpc_gateway_runtime_stream_error import GrpcGatewayRuntimeStreamError
5959
from onepanel.core.api.models.is_authorized import IsAuthorized
6060
from onepanel.core.api.models.is_authorized_response import IsAuthorizedResponse
61+
from onepanel.core.api.models.is_valid_token_request import IsValidTokenRequest
6162
from onepanel.core.api.models.is_valid_token_response import IsValidTokenResponse
6263
from onepanel.core.api.models.key_value import KeyValue
6364
from onepanel.core.api.models.labels import Labels
@@ -85,7 +86,6 @@
8586
from onepanel.core.api.models.statistics import Statistics
8687
from onepanel.core.api.models.stream_result_of_log_entry import StreamResultOfLogEntry
8788
from onepanel.core.api.models.stream_result_of_workflow_execution import StreamResultOfWorkflowExecution
88-
from onepanel.core.api.models.token_wrapper import TokenWrapper
8989
from onepanel.core.api.models.update_secret_key_value_response import UpdateSecretKeyValueResponse
9090
from onepanel.core.api.models.update_workspace_body import UpdateWorkspaceBody
9191
from onepanel.core.api.models.workflow_execution import WorkflowExecution

onepanel/core/api/api/auth_service_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Onepanel API # noqa: E501
77
8-
The version of the OpenAPI document: 0.13.0
8+
The version of the OpenAPI document: 0.14.0
99
Generated by: https://openapi-generator.tech
1010
"""
1111

@@ -161,7 +161,7 @@ def is_valid_token(self, body, **kwargs): # noqa: E501
161161
>>> result = thread.get()
162162
163163
:param async_req bool: execute request asynchronously
164-
:param TokenWrapper body: (required)
164+
:param IsValidTokenRequest body: (required)
165165
:param _preload_content: if False, the urllib3.HTTPResponse object will
166166
be returned without reading/decoding response
167167
data. Default is True.
@@ -185,7 +185,7 @@ def is_valid_token_with_http_info(self, body, **kwargs): # noqa: E501
185185
>>> result = thread.get()
186186
187187
:param async_req bool: execute request asynchronously
188-
:param TokenWrapper body: (required)
188+
:param IsValidTokenRequest body: (required)
189189
:param _return_http_data_only: response data without head status code
190190
and headers
191191
:param _preload_content: if False, the urllib3.HTTPResponse object will

onepanel/core/api/api/config_service_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Onepanel API # noqa: E501
77
8-
The version of the OpenAPI document: 0.13.0
8+
The version of the OpenAPI document: 0.14.0
99
Generated by: https://openapi-generator.tech
1010
"""
1111

onepanel/core/api/api/cron_workflow_service_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Onepanel API # noqa: E501
77
8-
The version of the OpenAPI document: 0.13.0
8+
The version of the OpenAPI document: 0.14.0
99
Generated by: https://openapi-generator.tech
1010
"""
1111

onepanel/core/api/api/label_service_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Onepanel API # noqa: E501
77
8-
The version of the OpenAPI document: 0.13.0
8+
The version of the OpenAPI document: 0.14.0
99
Generated by: https://openapi-generator.tech
1010
"""
1111

onepanel/core/api/api/namespace_service_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Onepanel API # noqa: E501
77
8-
The version of the OpenAPI document: 0.13.0
8+
The version of the OpenAPI document: 0.14.0
99
Generated by: https://openapi-generator.tech
1010
"""
1111

0 commit comments

Comments
 (0)