Skip to content

Commit

Permalink
d2eb43043625d3bfd603ddcf125512c35a9bebce
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 22, 2024
1 parent da6099e commit a0d7a22
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions docs/AnalysesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **annotation_analyses_post**
> NoteCollectionReturn annotation_analyses_post(note_collection_request=note_collection_request)
> List[NoteCollectionReturn] annotation_analyses_post(note_collection_request=note_collection_request)
Your POST endpoint

Expand Down Expand Up @@ -663,7 +663,7 @@ Name | Type | Description | Notes

### Return type

[**NoteCollectionReturn**](NoteCollectionReturn.md)
[**List[NoteCollectionReturn]**](NoteCollectionReturn.md)

### Authorization

Expand Down
4 changes: 2 additions & 2 deletions docs/AnnotationsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **annotation_analyses_post**
> NoteCollectionReturn annotation_analyses_post(note_collection_request=note_collection_request)
> List[NoteCollectionReturn] annotation_analyses_post(note_collection_request=note_collection_request)
Your POST endpoint

Expand Down Expand Up @@ -284,7 +284,7 @@ Name | Type | Description | Notes

### Return type

[**NoteCollectionReturn**](NoteCollectionReturn.md)
[**List[NoteCollectionReturn]**](NoteCollectionReturn.md)

### Authorization

Expand Down
4 changes: 2 additions & 2 deletions docs/StoreApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **annotation_analyses_post**
> NoteCollectionReturn annotation_analyses_post(note_collection_request=note_collection_request)
> List[NoteCollectionReturn] annotation_analyses_post(note_collection_request=note_collection_request)
Your POST endpoint

Expand Down Expand Up @@ -696,7 +696,7 @@ Name | Type | Description | Notes

### Return type

[**NoteCollectionReturn**](NoteCollectionReturn.md)
[**List[NoteCollectionReturn]**](NoteCollectionReturn.md)

### Authorization

Expand Down
10 changes: 5 additions & 5 deletions neurostore_sdk/api/analyses_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from pydantic import Field, StrictBool, StrictStr, conint, conlist, constr

from typing import Optional
from typing import List, Optional

from neurostore_sdk.models.analysis_list import AnalysisList
from neurostore_sdk.models.analysis_request import AnalysisRequest
Expand Down Expand Up @@ -1248,7 +1248,7 @@ def annotation_analyses_id_put_with_http_info(self, id : StrictStr, note_collect
_request_auth=_params.get('_request_auth'))

@validate_arguments
def annotation_analyses_post(self, note_collection_request : Optional[conlist(NoteCollectionRequest)] = None, **kwargs) -> NoteCollectionReturn: # noqa: E501
def annotation_analyses_post(self, note_collection_request : Optional[conlist(NoteCollectionRequest)] = None, **kwargs) -> List[NoteCollectionReturn]: # noqa: E501
"""Your POST endpoint # noqa: E501
This method makes a synchronous HTTP request by default. To make an
Expand All @@ -1268,7 +1268,7 @@ def annotation_analyses_post(self, note_collection_request : Optional[conlist(No
:return: Returns the result object.
If the method is called asynchronously,
returns the request thread.
:rtype: NoteCollectionReturn
:rtype: List[NoteCollectionReturn]
"""
kwargs['_return_http_data_only'] = True
if '_preload_content' in kwargs:
Expand Down Expand Up @@ -1309,7 +1309,7 @@ def annotation_analyses_post_with_http_info(self, note_collection_request : Opti
:return: Returns the result object.
If the method is called asynchronously,
returns the request thread.
:rtype: tuple(NoteCollectionReturn, status_code(int), headers(HTTPHeaderDict))
:rtype: tuple(List[NoteCollectionReturn], status_code(int), headers(HTTPHeaderDict))
"""

_params = locals()
Expand Down Expand Up @@ -1371,7 +1371,7 @@ def annotation_analyses_post_with_http_info(self, note_collection_request : Opti
_auth_settings = ['JSON-Web-Token'] # noqa: E501

_response_types_map = {
'200': "NoteCollectionReturn",
'200': "List[NoteCollectionReturn]",
}

return self.api_client.call_api(
Expand Down
10 changes: 5 additions & 5 deletions neurostore_sdk/api/annotations_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from pydantic import Field, StrictBool, StrictStr, conlist

from typing import Optional
from typing import List, Optional

from neurostore_sdk.models.annotation_list import AnnotationList
from neurostore_sdk.models.annotation_request import AnnotationRequest
Expand Down Expand Up @@ -471,7 +471,7 @@ def annotation_analyses_id_put_with_http_info(self, id : StrictStr, note_collect
_request_auth=_params.get('_request_auth'))

@validate_arguments
def annotation_analyses_post(self, note_collection_request : Optional[conlist(NoteCollectionRequest)] = None, **kwargs) -> NoteCollectionReturn: # noqa: E501
def annotation_analyses_post(self, note_collection_request : Optional[conlist(NoteCollectionRequest)] = None, **kwargs) -> List[NoteCollectionReturn]: # noqa: E501
"""Your POST endpoint # noqa: E501
This method makes a synchronous HTTP request by default. To make an
Expand All @@ -491,7 +491,7 @@ def annotation_analyses_post(self, note_collection_request : Optional[conlist(No
:return: Returns the result object.
If the method is called asynchronously,
returns the request thread.
:rtype: NoteCollectionReturn
:rtype: List[NoteCollectionReturn]
"""
kwargs['_return_http_data_only'] = True
if '_preload_content' in kwargs:
Expand Down Expand Up @@ -532,7 +532,7 @@ def annotation_analyses_post_with_http_info(self, note_collection_request : Opti
:return: Returns the result object.
If the method is called asynchronously,
returns the request thread.
:rtype: tuple(NoteCollectionReturn, status_code(int), headers(HTTPHeaderDict))
:rtype: tuple(List[NoteCollectionReturn], status_code(int), headers(HTTPHeaderDict))
"""

_params = locals()
Expand Down Expand Up @@ -594,7 +594,7 @@ def annotation_analyses_post_with_http_info(self, note_collection_request : Opti
_auth_settings = ['JSON-Web-Token'] # noqa: E501

_response_types_map = {
'200': "NoteCollectionReturn",
'200': "List[NoteCollectionReturn]",
}

return self.api_client.call_api(
Expand Down
10 changes: 5 additions & 5 deletions neurostore_sdk/api/store_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from pydantic import Field, StrictBool, StrictStr, conint, conlist, constr

from typing import Any, Optional
from typing import Any, List, Optional

from neurostore_sdk.models.analysis_list import AnalysisList
from neurostore_sdk.models.analysis_request import AnalysisRequest
Expand Down Expand Up @@ -1270,7 +1270,7 @@ def annotation_analyses_id_put_with_http_info(self, id : StrictStr, note_collect
_request_auth=_params.get('_request_auth'))

@validate_arguments
def annotation_analyses_post(self, note_collection_request : Optional[conlist(NoteCollectionRequest)] = None, **kwargs) -> NoteCollectionReturn: # noqa: E501
def annotation_analyses_post(self, note_collection_request : Optional[conlist(NoteCollectionRequest)] = None, **kwargs) -> List[NoteCollectionReturn]: # noqa: E501
"""Your POST endpoint # noqa: E501
This method makes a synchronous HTTP request by default. To make an
Expand All @@ -1290,7 +1290,7 @@ def annotation_analyses_post(self, note_collection_request : Optional[conlist(No
:return: Returns the result object.
If the method is called asynchronously,
returns the request thread.
:rtype: NoteCollectionReturn
:rtype: List[NoteCollectionReturn]
"""
kwargs['_return_http_data_only'] = True
if '_preload_content' in kwargs:
Expand Down Expand Up @@ -1331,7 +1331,7 @@ def annotation_analyses_post_with_http_info(self, note_collection_request : Opti
:return: Returns the result object.
If the method is called asynchronously,
returns the request thread.
:rtype: tuple(NoteCollectionReturn, status_code(int), headers(HTTPHeaderDict))
:rtype: tuple(List[NoteCollectionReturn], status_code(int), headers(HTTPHeaderDict))
"""

_params = locals()
Expand Down Expand Up @@ -1393,7 +1393,7 @@ def annotation_analyses_post_with_http_info(self, note_collection_request : Opti
_auth_settings = ['JSON-Web-Token'] # noqa: E501

_response_types_map = {
'200': "NoteCollectionReturn",
'200': "List[NoteCollectionReturn]",
}

return self.api_client.call_api(
Expand Down

0 comments on commit a0d7a22

Please sign in to comment.