Skip to content

Commit

Permalink
e20bdfcb79fbfd56317a61dab0fadecab071acd9
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 22, 2024
1 parent b986f7d commit da6099e
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 6 deletions.
12 changes: 11 additions & 1 deletion docs/AnalysesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,7 @@ Your POST endpoint

### Example

* Bearer Authentication (JSON-Web-Token):
```python
import time
import os
Expand All @@ -628,6 +629,15 @@ configuration = neurostore_sdk.Configuration(
host = "https://neurostore.org/api"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization: JSON-Web-Token
configuration = neurostore_sdk.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with neurostore_sdk.ApiClient(configuration) as api_client:
Expand Down Expand Up @@ -657,7 +667,7 @@ Name | Type | Description | Notes

### Authorization

No authorization required
[JSON-Web-Token](../README.md#JSON-Web-Token)

### HTTP request headers

Expand Down
12 changes: 11 additions & 1 deletion docs/AnnotationsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ Your POST endpoint

### Example

* Bearer Authentication (JSON-Web-Token):
```python
import time
import os
Expand All @@ -249,6 +250,15 @@ configuration = neurostore_sdk.Configuration(
host = "https://neurostore.org/api"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization: JSON-Web-Token
configuration = neurostore_sdk.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with neurostore_sdk.ApiClient(configuration) as api_client:
Expand Down Expand Up @@ -278,7 +288,7 @@ Name | Type | Description | Notes

### Authorization

No authorization required
[JSON-Web-Token](../README.md#JSON-Web-Token)

### HTTP request headers

Expand Down
12 changes: 11 additions & 1 deletion docs/StoreApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -646,6 +646,7 @@ Your POST endpoint

### Example

* Bearer Authentication (JSON-Web-Token):
```python
import time
import os
Expand All @@ -661,6 +662,15 @@ configuration = neurostore_sdk.Configuration(
host = "https://neurostore.org/api"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization: JSON-Web-Token
configuration = neurostore_sdk.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with neurostore_sdk.ApiClient(configuration) as api_client:
Expand Down Expand Up @@ -690,7 +700,7 @@ Name | Type | Description | Notes

### Authorization

No authorization required
[JSON-Web-Token](../README.md#JSON-Web-Token)

### HTTP request headers

Expand Down
2 changes: 1 addition & 1 deletion neurostore_sdk/api/analyses_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,7 @@ def annotation_analyses_post_with_http_info(self, note_collection_request : Opti
_header_params['Content-Type'] = _content_types_list

# authentication setting
_auth_settings = [] # noqa: E501
_auth_settings = ['JSON-Web-Token'] # noqa: E501

_response_types_map = {
'200': "NoteCollectionReturn",
Expand Down
2 changes: 1 addition & 1 deletion neurostore_sdk/api/annotations_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def annotation_analyses_post_with_http_info(self, note_collection_request : Opti
_header_params['Content-Type'] = _content_types_list

# authentication setting
_auth_settings = [] # noqa: E501
_auth_settings = ['JSON-Web-Token'] # noqa: E501

_response_types_map = {
'200': "NoteCollectionReturn",
Expand Down
2 changes: 1 addition & 1 deletion neurostore_sdk/api/store_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1390,7 +1390,7 @@ def annotation_analyses_post_with_http_info(self, note_collection_request : Opti
_header_params['Content-Type'] = _content_types_list

# authentication setting
_auth_settings = [] # noqa: E501
_auth_settings = ['JSON-Web-Token'] # noqa: E501

_response_types_map = {
'200': "NoteCollectionReturn",
Expand Down

0 comments on commit da6099e

Please sign in to comment.