Skip to content

Commit 4aa72c5

Browse files
94f1b7ce2eadf7241f996beecf2362c54385b431
1 parent cca7140 commit 4aa72c5

Some content is hidden

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

41 files changed

+5250
-52
lines changed

.openapi-generator/FILES

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,13 @@ docs/StudysetReturn.md
106106
docs/StudysetReturnRelationships.md
107107
docs/StudysetReturnRelationshipsStudies.md
108108
docs/StudysetsApi.md
109+
docs/TableCommon.md
110+
docs/TableList.md
111+
docs/TableRequest.md
112+
docs/TableRequestRelationships.md
113+
docs/TableReturn.md
114+
docs/TableReturnRelationships.md
115+
docs/TablesApi.md
109116
docs/User.md
110117
docs/UserApi.md
111118
docs/UserList.md
@@ -125,6 +132,7 @@ neurostore_sdk/api/points_api.py
125132
neurostore_sdk/api/store_api.py
126133
neurostore_sdk/api/studies_api.py
127134
neurostore_sdk/api/studysets_api.py
135+
neurostore_sdk/api/tables_api.py
128136
neurostore_sdk/api/user_api.py
129137
neurostore_sdk/api_client.py
130138
neurostore_sdk/api_response.py
@@ -222,6 +230,12 @@ neurostore_sdk/models/studyset_request_relationships.py
222230
neurostore_sdk/models/studyset_return.py
223231
neurostore_sdk/models/studyset_return_relationships.py
224232
neurostore_sdk/models/studyset_return_relationships_studies.py
233+
neurostore_sdk/models/table_common.py
234+
neurostore_sdk/models/table_list.py
235+
neurostore_sdk/models/table_request.py
236+
neurostore_sdk/models/table_request_relationships.py
237+
neurostore_sdk/models/table_return.py
238+
neurostore_sdk/models/table_return_relationships.py
225239
neurostore_sdk/models/user.py
226240
neurostore_sdk/models/user_list.py
227241
neurostore_sdk/models/userless_resource_attributes.py
@@ -233,5 +247,11 @@ setup.cfg
233247
setup.py
234248
test-requirements.txt
235249
test/__init__.py
236-
test/test_base_study_versions_inner.py
250+
test/test_table_common.py
251+
test/test_table_list.py
252+
test/test_table_request.py
253+
test/test_table_request_relationships.py
254+
test/test_table_return.py
255+
test/test_table_return_relationships.py
256+
test/test_tables_api.py
237257
tox.ini

README.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ with neurostore_sdk.ApiClient(configuration) as api_client:
7474
desc = True # bool | sort results by descending order (as opposed to ascending order) (optional)
7575
page_size = 56 # int | number of results to show on a page (optional)
7676
paginate = True # bool | whether to paginate results (true) or return all results at once (false) (optional) (default to True)
77+
study = 'study_example' # str | Filter tables by study id (optional)
7778
name = 'name_example' # str | search the name field for a term (optional)
78-
description = 'description_example' # str | search description field for a term (optional)
7979
nested = True # bool | whether to show the URI to a resource (false) or to embed the object in the response (true) (optional)
8080

8181
try:
8282
# GET list of analyses
83-
api_response = api_instance.analyses_get(search=search, sort=sort, page=page, desc=desc, page_size=page_size, paginate=paginate, name=name, description=description, nested=nested)
83+
api_response = api_instance.analyses_get(search=search, sort=sort, page=page, desc=desc, page_size=page_size, paginate=paginate, study=study, name=name, nested=nested)
8484
print("The response of AnalysesApi->analyses_get:\n")
8585
pprint(api_response)
8686
except ApiException as e:
@@ -186,6 +186,11 @@ Class | Method | HTTP request | Description
186186
*StoreApi* | [**studysets_id_get**](docs/StoreApi.md#studysets_id_get) | **GET** /studysets/{id} | GET a studyset
187187
*StoreApi* | [**studysets_id_put**](docs/StoreApi.md#studysets_id_put) | **PUT** /studysets/{id} | PUT/update a studyset
188188
*StoreApi* | [**studysets_post**](docs/StoreApi.md#studysets_post) | **POST** /studysets/ | POST/create a studyset
189+
*StoreApi* | [**tables_get**](docs/StoreApi.md#tables_get) | **GET** /tables/ | GET list of tables
190+
*StoreApi* | [**tables_id_delete**](docs/StoreApi.md#tables_id_delete) | **DELETE** /tables/{id} | DELETE a table
191+
*StoreApi* | [**tables_id_get**](docs/StoreApi.md#tables_id_get) | **GET** /tables/{id} | GET a table
192+
*StoreApi* | [**tables_id_put**](docs/StoreApi.md#tables_id_put) | **PUT** /tables/{id} | PUT/update a table
193+
*StoreApi* | [**tables_post**](docs/StoreApi.md#tables_post) | **POST** /tables/ | POST/create a table
189194
*StudiesApi* | [**base_studies_get**](docs/StudiesApi.md#base_studies_get) | **GET** /base-studies/ |
190195
*StudiesApi* | [**base_studies_id_get**](docs/StudiesApi.md#base_studies_id_get) | **GET** /base-studies/{id} | Your GET endpoint
191196
*StudiesApi* | [**base_studies_id_put**](docs/StudiesApi.md#base_studies_id_put) | **PUT** /base-studies/{id} |
@@ -200,6 +205,11 @@ Class | Method | HTTP request | Description
200205
*StudysetsApi* | [**studysets_id_get**](docs/StudysetsApi.md#studysets_id_get) | **GET** /studysets/{id} | GET a studyset
201206
*StudysetsApi* | [**studysets_id_put**](docs/StudysetsApi.md#studysets_id_put) | **PUT** /studysets/{id} | PUT/update a studyset
202207
*StudysetsApi* | [**studysets_post**](docs/StudysetsApi.md#studysets_post) | **POST** /studysets/ | POST/create a studyset
208+
*TablesApi* | [**tables_get**](docs/TablesApi.md#tables_get) | **GET** /tables/ | GET list of tables
209+
*TablesApi* | [**tables_id_delete**](docs/TablesApi.md#tables_id_delete) | **DELETE** /tables/{id} | DELETE a table
210+
*TablesApi* | [**tables_id_get**](docs/TablesApi.md#tables_id_get) | **GET** /tables/{id} | GET a table
211+
*TablesApi* | [**tables_id_put**](docs/TablesApi.md#tables_id_put) | **PUT** /tables/{id} | PUT/update a table
212+
*TablesApi* | [**tables_post**](docs/TablesApi.md#tables_post) | **POST** /tables/ | POST/create a table
203213
*UserApi* | [**users_get**](docs/UserApi.md#users_get) | **GET** /users/ | Your GET endpoint
204214
*UserApi* | [**users_id_get**](docs/UserApi.md#users_id_get) | **GET** /users/{id} | Individual User Profile
205215
*UserApi* | [**users_id_put**](docs/UserApi.md#users_id_put) | **PUT** /users/{id} | Update Individual Profile
@@ -299,6 +309,12 @@ Class | Method | HTTP request | Description
299309
- [StudysetReturn](docs/StudysetReturn.md)
300310
- [StudysetReturnRelationships](docs/StudysetReturnRelationships.md)
301311
- [StudysetReturnRelationshipsStudies](docs/StudysetReturnRelationshipsStudies.md)
312+
- [TableCommon](docs/TableCommon.md)
313+
- [TableList](docs/TableList.md)
314+
- [TableRequest](docs/TableRequest.md)
315+
- [TableRequestRelationships](docs/TableRequestRelationships.md)
316+
- [TableReturn](docs/TableReturn.md)
317+
- [TableReturnRelationships](docs/TableReturnRelationships.md)
302318
- [User](docs/User.md)
303319
- [UserList](docs/UserList.md)
304320
- [UserlessResourceAttributes](docs/UserlessResourceAttributes.md)

docs/AnalysesApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Method | HTTP request | Description
1616

1717

1818
# **analyses_get**
19-
> AnalysisList analyses_get(search=search, sort=sort, page=page, desc=desc, page_size=page_size, paginate=paginate, name=name, description=description, nested=nested)
19+
> AnalysisList analyses_get(search=search, sort=sort, page=page, desc=desc, page_size=page_size, paginate=paginate, study=study, name=name, nested=nested)
2020
2121
GET list of analyses
2222

@@ -48,13 +48,13 @@ with neurostore_sdk.ApiClient(configuration) as api_client:
4848
desc = True # bool | sort results by descending order (as opposed to ascending order) (optional)
4949
page_size = 56 # int | number of results to show on a page (optional)
5050
paginate = True # bool | whether to paginate results (true) or return all results at once (false) (optional) (default to True)
51+
study = 'study_example' # str | Filter tables by study id (optional)
5152
name = 'name_example' # str | search the name field for a term (optional)
52-
description = 'description_example' # str | search description field for a term (optional)
5353
nested = True # bool | whether to show the URI to a resource (false) or to embed the object in the response (true) (optional)
5454

5555
try:
5656
# GET list of analyses
57-
api_response = api_instance.analyses_get(search=search, sort=sort, page=page, desc=desc, page_size=page_size, paginate=paginate, name=name, description=description, nested=nested)
57+
api_response = api_instance.analyses_get(search=search, sort=sort, page=page, desc=desc, page_size=page_size, paginate=paginate, study=study, name=name, nested=nested)
5858
print("The response of AnalysesApi->analyses_get:\n")
5959
pprint(api_response)
6060
except Exception as e:
@@ -74,8 +74,8 @@ Name | Type | Description | Notes
7474
**desc** | **bool**| sort results by descending order (as opposed to ascending order) | [optional]
7575
**page_size** | **int**| number of results to show on a page | [optional]
7676
**paginate** | **bool**| whether to paginate results (true) or return all results at once (false) | [optional] [default to True]
77+
**study** | **str**| Filter tables by study id | [optional]
7778
**name** | **str**| search the name field for a term | [optional]
78-
**description** | **str**| search description field for a term | [optional]
7979
**nested** | **bool**| whether to show the URI to a resource (false) or to embed the object in the response (true) | [optional]
8080

8181
### Return type

docs/AnalysisCommon.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ attributes common between request and return objects
77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
99
**study** | **str** | | [optional]
10+
**table_id** | **str** | | [optional]
1011
**entities** | [**List[Entity]**](Entity.md) | | [optional]
1112
**order** | **int** | | [optional]
1213
**metadata** | **object** | | [optional]

docs/AnalysisRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
1414
**conditions** | [**AnalysisRequestRelationshipsConditions**](AnalysisRequestRelationshipsConditions.md) | | [optional]
1515
**id** | **str** | short UUID specifying the location of this resource | [optional]
1616
**public** | **bool** | whether the resource is listed in public searches or not | [optional] [default to True]
17+
**table_id** | **str** | | [optional]
1718
**entities** | [**List[Entity]**](Entity.md) | | [optional]
1819
**order** | **int** | | [optional]
1920
**metadata** | **object** | | [optional]

docs/AnalysisReturn.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
1818
**images** | [**AnalysisReturnRelationshipsImages**](AnalysisReturnRelationshipsImages.md) | | [optional]
1919
**points** | [**AnalysisReturnRelationshipsPoints**](AnalysisReturnRelationshipsPoints.md) | | [optional]
2020
**conditions** | [**AnalysisReturnRelationshipsConditions**](AnalysisReturnRelationshipsConditions.md) | | [optional]
21+
**table_id** | **str** | | [optional]
2122
**entities** | [**List[Entity]**](Entity.md) | | [optional]
2223
**order** | **int** | | [optional]
2324
**metadata** | **object** | | [optional]

docs/BaseStudyVersionsInner.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
2323
**source_id** | **str** | | [optional]
2424
**source_updated_at** | **str** | | [optional] [readonly]
2525
**analyses** | [**StudyReturnRelationshipsAnalyses**](StudyReturnRelationshipsAnalyses.md) | | [optional]
26+
**tables** | **List[str]** | | [optional]
2627
**studysets** | [**List[StudyReturnAllOfStudysets]**](StudyReturnAllOfStudysets.md) | | [optional]
2728
**has_coordinates** | **bool** | | [optional]
2829
**has_images** | **bool** | | [optional]

0 commit comments

Comments
 (0)