Skip to content

Commit 56b0ddc

Browse files
68e55934397a279d052a694f6dc0297f3cbb9664
1 parent b5ce9cf commit 56b0ddc

File tree

291 files changed

+33164
-13145
lines changed

Some content is hidden

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

291 files changed

+33164
-13145
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
python -m pip install --upgrade pip
2727
pip install flake8 pytest
2828
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29+
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
2930
- name: Lint with flake8
3031
run: |
3132
# stop the build if there are Python syntax errors or undefined names

.gitlab-ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,10 @@ pytest-3.8:
2222
image: python:3.8-alpine
2323
pytest-3.9:
2424
extends: .pytest
25-
image: python:3.9-alpine
25+
image: python:3.9-alpine
26+
pytest-3.10:
27+
extends: .pytest
28+
image: python:3.10-alpine
29+
pytest-3.11:
30+
extends: .pytest
31+
image: python:3.11-alpine

.openapi-generator/FILES

Lines changed: 96 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,12 @@ docs/ImageRelationships.md
5151
docs/ImageRequest.md
5252
docs/ImageReturn.md
5353
docs/ImagesApi.md
54-
docs/JsonLd.md
5554
docs/JsonLdContext.md
56-
docs/Metadata.md
5755
docs/NestedPutAttributes.md
5856
docs/NoteCollectionBase.md
5957
docs/NoteCollectionList.md
6058
docs/NoteCollectionRequest.md
6159
docs/NoteCollectionReturn.md
62-
docs/NoteCollectionReturnAllOf.md
6360
docs/PointBase.md
6461
docs/PointCommon.md
6562
docs/PointList.md
@@ -69,21 +66,18 @@ docs/PointRequest.md
6966
docs/PointReturn.md
7067
docs/PointValue.md
7168
docs/PointsApi.md
72-
docs/ReadableResourceAttributes.md
7369
docs/ResourceAttributes.md
7470
docs/StoreApi.md
7571
docs/StudiesApi.md
7672
docs/StudyBase.md
7773
docs/StudyCommon.md
7874
docs/StudyList.md
7975
docs/StudyRequest.md
80-
docs/StudyRequestAllOf.md
8176
docs/StudyRequestRelationships.md
8277
docs/StudyRequestRelationshipsAnalyses.md
8378
docs/StudyReturn.md
84-
docs/StudyReturnAllOf.md
85-
docs/StudyReturnAllOfStudysetsInner.md
86-
docs/StudyReturnAllOfStudysetsInnerOneOf.md
79+
docs/StudyReturnAllOfStudysets.md
80+
docs/StudyReturnAllOfStudysetsOneOf.md
8781
docs/StudyReturnRelationships.md
8882
docs/StudyReturnRelationshipsAnalyses.md
8983
docs/StudysetBase.md
@@ -99,9 +93,7 @@ docs/StudysetsIdPut422Response.md
9993
docs/User.md
10094
docs/UserApi.md
10195
docs/UserList.md
102-
docs/UserResourceAttributes.md
10396
docs/UserlessResourceAttributes.md
104-
docs/WriteableResourceAttributes.md
10597
git_push.sh
10698
neurostore_sdk/__init__.py
10799
neurostore_sdk/api/__init__.py
@@ -163,15 +155,12 @@ neurostore_sdk/models/image_list.py
163155
neurostore_sdk/models/image_relationships.py
164156
neurostore_sdk/models/image_request.py
165157
neurostore_sdk/models/image_return.py
166-
neurostore_sdk/models/json_ld.py
167158
neurostore_sdk/models/json_ld_context.py
168-
neurostore_sdk/models/metadata.py
169159
neurostore_sdk/models/nested_put_attributes.py
170160
neurostore_sdk/models/note_collection_base.py
171161
neurostore_sdk/models/note_collection_list.py
172162
neurostore_sdk/models/note_collection_request.py
173163
neurostore_sdk/models/note_collection_return.py
174-
neurostore_sdk/models/note_collection_return_all_of.py
175164
neurostore_sdk/models/point_base.py
176165
neurostore_sdk/models/point_common.py
177166
neurostore_sdk/models/point_list.py
@@ -180,19 +169,16 @@ neurostore_sdk/models/point_relationships_values.py
180169
neurostore_sdk/models/point_request.py
181170
neurostore_sdk/models/point_return.py
182171
neurostore_sdk/models/point_value.py
183-
neurostore_sdk/models/readable_resource_attributes.py
184172
neurostore_sdk/models/resource_attributes.py
185173
neurostore_sdk/models/study_base.py
186174
neurostore_sdk/models/study_common.py
187175
neurostore_sdk/models/study_list.py
188176
neurostore_sdk/models/study_request.py
189-
neurostore_sdk/models/study_request_all_of.py
190177
neurostore_sdk/models/study_request_relationships.py
191178
neurostore_sdk/models/study_request_relationships_analyses.py
192179
neurostore_sdk/models/study_return.py
193-
neurostore_sdk/models/study_return_all_of.py
194-
neurostore_sdk/models/study_return_all_of_studysets_inner.py
195-
neurostore_sdk/models/study_return_all_of_studysets_inner_one_of.py
180+
neurostore_sdk/models/study_return_all_of_studysets.py
181+
neurostore_sdk/models/study_return_all_of_studysets_one_of.py
196182
neurostore_sdk/models/study_return_relationships.py
197183
neurostore_sdk/models/study_return_relationships_analyses.py
198184
neurostore_sdk/models/studyset_base.py
@@ -206,14 +192,104 @@ neurostore_sdk/models/studysets_id_get404_response.py
206192
neurostore_sdk/models/studysets_id_put422_response.py
207193
neurostore_sdk/models/user.py
208194
neurostore_sdk/models/user_list.py
209-
neurostore_sdk/models/user_resource_attributes.py
210195
neurostore_sdk/models/userless_resource_attributes.py
211-
neurostore_sdk/models/writeable_resource_attributes.py
196+
neurostore_sdk/py.typed
212197
neurostore_sdk/rest.py
213198
pyproject.toml
214199
requirements.txt
215200
setup.cfg
216201
setup.py
217202
test-requirements.txt
218203
test/__init__.py
204+
test/test_analyses_api.py
205+
test/test_analysis_base.py
206+
test/test_analysis_common.py
207+
test/test_analysis_list.py
208+
test/test_analysis_request.py
209+
test/test_analysis_request_relationships.py
210+
test/test_analysis_request_relationships_conditions.py
211+
test/test_analysis_request_relationships_images.py
212+
test/test_analysis_request_relationships_points.py
213+
test/test_analysis_return.py
214+
test/test_analysis_return_relationships.py
215+
test/test_analysis_return_relationships_conditions.py
216+
test/test_analysis_return_relationships_images.py
217+
test/test_analysis_return_relationships_points.py
218+
test/test_annotation_base.py
219+
test/test_annotation_common.py
220+
test/test_annotation_export.py
221+
test/test_annotation_list.py
222+
test/test_annotation_request.py
223+
test/test_annotation_request_one_of.py
224+
test/test_annotation_request_relationships.py
225+
test/test_annotation_request_relationships_notes.py
226+
test/test_annotation_return.py
227+
test/test_annotation_return_one_of.py
228+
test/test_annotation_return_one_of1.py
229+
test/test_annotation_return_relationships.py
230+
test/test_annotation_return_relationships_notes.py
231+
test/test_annotations_api.py
232+
test/test_base_studies_post200_response.py
233+
test/test_base_studies_post_request.py
234+
test/test_base_study.py
235+
test/test_base_study_list.py
236+
test/test_base_study_return.py
237+
test/test_base_study_versions.py
238+
test/test_clone.py
239+
test/test_condition_base.py
240+
test/test_condition_list.py
241+
test/test_condition_request.py
242+
test/test_condition_return.py
243+
test/test_conditions_api.py
244+
test/test_entity.py
245+
test/test_image_base.py
246+
test/test_image_common.py
247+
test/test_image_list.py
248+
test/test_image_relationships.py
249+
test/test_image_request.py
250+
test/test_image_return.py
251+
test/test_images_api.py
252+
test/test_json_ld_context.py
253+
test/test_nested_put_attributes.py
254+
test/test_note_collection_base.py
255+
test/test_note_collection_list.py
256+
test/test_note_collection_request.py
257+
test/test_note_collection_return.py
258+
test/test_point_base.py
259+
test/test_point_common.py
260+
test/test_point_list.py
261+
test/test_point_relationships.py
262+
test/test_point_relationships_values.py
263+
test/test_point_request.py
264+
test/test_point_return.py
265+
test/test_point_value.py
266+
test/test_points_api.py
267+
test/test_resource_attributes.py
268+
test/test_store_api.py
269+
test/test_studies_api.py
270+
test/test_study_base.py
271+
test/test_study_common.py
272+
test/test_study_list.py
273+
test/test_study_request.py
274+
test/test_study_request_relationships.py
275+
test/test_study_request_relationships_analyses.py
276+
test/test_study_return.py
277+
test/test_study_return_all_of_studysets.py
278+
test/test_study_return_all_of_studysets_one_of.py
279+
test/test_study_return_relationships.py
280+
test/test_study_return_relationships_analyses.py
281+
test/test_studyset_base.py
282+
test/test_studyset_list.py
283+
test/test_studyset_request.py
284+
test/test_studyset_request_relationships.py
285+
test/test_studyset_return.py
286+
test/test_studyset_return_relationships.py
287+
test/test_studyset_return_relationships_studies.py
288+
test/test_studysets_api.py
289+
test/test_studysets_id_get404_response.py
290+
test/test_studysets_id_put422_response.py
291+
test/test_user.py
292+
test/test_user_api.py
293+
test/test_user_list.py
294+
test/test_userless_resource_attributes.py
219295
tox.ini

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.0
1+
7.4.0

README.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ This Python package is automatically generated by the [OpenAPI Generator](https:
55

66
- API version: 1.0
77
- Package version: 0.0.1
8-
- Build package: org.openapitools.codegen.languages.PythonNextgenClientCodegen
8+
- Generator version: 7.4.0
9+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
910
For more information, please visit [https://github.com/jdkent](https://github.com/jdkent)
1011

1112
## Requirements.
@@ -51,7 +52,6 @@ Please follow the [installation procedure](#installation--usage) and then run th
5152

5253
```python
5354

54-
import time
5555
import neurostore_sdk
5656
from neurostore_sdk.rest import ApiException
5757
from pprint import pprint
@@ -234,15 +234,12 @@ Class | Method | HTTP request | Description
234234
- [ImageRelationships](docs/ImageRelationships.md)
235235
- [ImageRequest](docs/ImageRequest.md)
236236
- [ImageReturn](docs/ImageReturn.md)
237-
- [JsonLd](docs/JsonLd.md)
238237
- [JsonLdContext](docs/JsonLdContext.md)
239-
- [Metadata](docs/Metadata.md)
240238
- [NestedPutAttributes](docs/NestedPutAttributes.md)
241239
- [NoteCollectionBase](docs/NoteCollectionBase.md)
242240
- [NoteCollectionList](docs/NoteCollectionList.md)
243241
- [NoteCollectionRequest](docs/NoteCollectionRequest.md)
244242
- [NoteCollectionReturn](docs/NoteCollectionReturn.md)
245-
- [NoteCollectionReturnAllOf](docs/NoteCollectionReturnAllOf.md)
246243
- [PointBase](docs/PointBase.md)
247244
- [PointCommon](docs/PointCommon.md)
248245
- [PointList](docs/PointList.md)
@@ -251,19 +248,16 @@ Class | Method | HTTP request | Description
251248
- [PointRequest](docs/PointRequest.md)
252249
- [PointReturn](docs/PointReturn.md)
253250
- [PointValue](docs/PointValue.md)
254-
- [ReadableResourceAttributes](docs/ReadableResourceAttributes.md)
255251
- [ResourceAttributes](docs/ResourceAttributes.md)
256252
- [StudyBase](docs/StudyBase.md)
257253
- [StudyCommon](docs/StudyCommon.md)
258254
- [StudyList](docs/StudyList.md)
259255
- [StudyRequest](docs/StudyRequest.md)
260-
- [StudyRequestAllOf](docs/StudyRequestAllOf.md)
261256
- [StudyRequestRelationships](docs/StudyRequestRelationships.md)
262257
- [StudyRequestRelationshipsAnalyses](docs/StudyRequestRelationshipsAnalyses.md)
263258
- [StudyReturn](docs/StudyReturn.md)
264-
- [StudyReturnAllOf](docs/StudyReturnAllOf.md)
265-
- [StudyReturnAllOfStudysetsInner](docs/StudyReturnAllOfStudysetsInner.md)
266-
- [StudyReturnAllOfStudysetsInnerOneOf](docs/StudyReturnAllOfStudysetsInnerOneOf.md)
259+
- [StudyReturnAllOfStudysets](docs/StudyReturnAllOfStudysets.md)
260+
- [StudyReturnAllOfStudysetsOneOf](docs/StudyReturnAllOfStudysetsOneOf.md)
267261
- [StudyReturnRelationships](docs/StudyReturnRelationships.md)
268262
- [StudyReturnRelationshipsAnalyses](docs/StudyReturnRelationshipsAnalyses.md)
269263
- [StudysetBase](docs/StudysetBase.md)
@@ -277,9 +271,7 @@ Class | Method | HTTP request | Description
277271
- [StudysetsIdPut422Response](docs/StudysetsIdPut422Response.md)
278272
- [User](docs/User.md)
279273
- [UserList](docs/UserList.md)
280-
- [UserResourceAttributes](docs/UserResourceAttributes.md)
281274
- [UserlessResourceAttributes](docs/UserlessResourceAttributes.md)
282-
- [WriteableResourceAttributes](docs/WriteableResourceAttributes.md)
283275

284276

285277
<a id="documentation-for-authorization"></a>

0 commit comments

Comments
 (0)