Skip to content

Commit 8a7a834

Browse files
c04c7547f6ed906d889743bec1febe000a6dd894
1 parent 636bcb7 commit 8a7a834

20 files changed

+19
-20
lines changed

.openapi-generator/FILES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,5 +216,4 @@ setup.cfg
216216
setup.py
217217
test-requirements.txt
218218
test/__init__.py
219-
test/test_note_collection_list.py
220219
tox.ini

neurostore_sdk/models/analysis_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class AnalysisRequest(BaseModel):
3737
images: Optional[AnalysisRequestRelationshipsImages] = None
3838
points: Optional[AnalysisRequestRelationshipsPoints] = None
3939
conditions: Optional[AnalysisRequestRelationshipsConditions] = None
40-
id: Optional[constr(strict=True, max_length=12, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
40+
id: Optional[constr(strict=True, max_length=30, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
4141
public: Optional[StrictBool] = Field(True, description="whether the resource is listed in public searches or not")
4242
entities: Optional[conlist(Entity)] = None
4343
order: Optional[StrictInt] = None

neurostore_sdk/models/analysis_return.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class AnalysisReturn(BaseModel):
3535
weights: Optional[conlist(Union[StrictFloat, StrictInt])] = Field(None, description="Weight applied to each condition, must be the same length as the conditions attribute.")
3636
created_at: Optional[datetime] = Field(None, description="time the resource was created on the database")
3737
updated_at: Optional[StrictStr] = Field(None, description="when the resource was last modified/updated.")
38-
id: Optional[constr(strict=True, max_length=12, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
38+
id: Optional[constr(strict=True, max_length=30, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
3939
public: Optional[StrictBool] = Field(True, description="whether the resource is listed in public searches or not")
4040
user: Optional[StrictStr] = Field(None, description="who owns the resource")
4141
username: Optional[StrictStr] = Field(None, description="human readable username")

neurostore_sdk/models/annotation_request_one_of.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class AnnotationRequestOneOf(BaseModel):
3232
metadata: Optional[Dict[str, Any]] = Field(None, description="object describing metadata about the annotation, such as software used or descriptions of the keys used in the annotation.")
3333
note_keys: Optional[Dict[str, Any]] = Field(None, description="The keys (columns) in the annotation and the key's respective data type (such as an integer or string).")
3434
notes: Optional[AnnotationRequestRelationshipsNotes] = None
35-
id: Optional[constr(strict=True, max_length=12, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
35+
id: Optional[constr(strict=True, max_length=30, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
3636
public: Optional[StrictBool] = Field(True, description="whether the resource is listed in public searches or not")
3737
studyset: Optional[StrictStr] = None
3838
__properties = ["name", "description", "metadata", "note_keys", "notes", "id", "public", "studyset"]

neurostore_sdk/models/annotation_return_one_of1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class AnnotationReturnOneOf1(BaseModel):
3333
note_keys: Optional[Dict[str, Any]] = Field(None, description="The keys (columns) in the annotation and the key's respective data type (such as an integer or string).")
3434
created_at: Optional[datetime] = Field(None, description="time the resource was created on the database")
3535
updated_at: Optional[StrictStr] = Field(None, description="when the resource was last modified/updated.")
36-
id: Optional[constr(strict=True, max_length=12, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
36+
id: Optional[constr(strict=True, max_length=30, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
3737
public: Optional[StrictBool] = Field(True, description="whether the resource is listed in public searches or not")
3838
user: Optional[StrictStr] = Field(None, description="who owns the resource")
3939
username: Optional[StrictStr] = Field(None, description="human readable username")

neurostore_sdk/models/base_study_return.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class BaseStudyReturn(BaseModel):
4040
pmcid: Optional[StrictStr] = None
4141
created_at: Optional[datetime] = Field(None, description="time the resource was created on the database")
4242
updated_at: Optional[StrictStr] = Field(None, description="when the resource was last modified/updated.")
43-
id: Optional[constr(strict=True, max_length=12, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
43+
id: Optional[constr(strict=True, max_length=30, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
4444
public: Optional[StrictBool] = Field(True, description="whether the resource is listed in public searches or not")
4545
user: Optional[StrictStr] = Field(None, description="who owns the resource")
4646
username: Optional[StrictStr] = Field(None, description="human readable username")

neurostore_sdk/models/condition_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class ConditionRequest(BaseModel):
2828
"""
2929
name: Optional[StrictStr] = Field(None, description="Name of the condition being applied in the contrast, either psychological, pharmacological, or group based.")
3030
description: Optional[StrictStr] = Field(None, description="Long form description of how the condition is operationalized and/or specific meaning.")
31-
id: Optional[constr(strict=True, max_length=12, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
31+
id: Optional[constr(strict=True, max_length=30, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
3232
public: Optional[StrictBool] = Field(True, description="whether the resource is listed in public searches or not")
3333
__properties = ["name", "description", "id", "public"]
3434

neurostore_sdk/models/condition_return.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class ConditionReturn(BaseModel):
3030
description: Optional[StrictStr] = Field(None, description="Long form description of how the condition is operationalized and/or specific meaning.")
3131
created_at: Optional[datetime] = Field(None, description="time the resource was created on the database")
3232
updated_at: Optional[StrictStr] = Field(None, description="when the resource was last modified/updated.")
33-
id: Optional[constr(strict=True, max_length=12, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
33+
id: Optional[constr(strict=True, max_length=30, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
3434
public: Optional[StrictBool] = Field(True, description="whether the resource is listed in public searches or not")
3535
user: Optional[StrictStr] = Field(None, description="who owns the resource")
3636
username: Optional[StrictStr] = Field(None, description="human readable username")

neurostore_sdk/models/image_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ImageRequest(BaseModel):
3636
analysis: Optional[StrictStr] = None
3737
entities: Optional[conlist(Entity)] = None
3838
analysis_name: Optional[StrictStr] = None
39-
id: Optional[constr(strict=True, max_length=12, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
39+
id: Optional[constr(strict=True, max_length=30, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
4040
public: Optional[StrictBool] = Field(True, description="whether the resource is listed in public searches or not")
4141
__properties = ["metadata", "url", "filename", "space", "value_type", "add_date", "analysis", "entities", "analysis_name", "id", "public"]
4242

neurostore_sdk/models/image_return.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class ImageReturn(BaseModel):
3838
analysis_name: Optional[StrictStr] = None
3939
created_at: Optional[datetime] = Field(None, description="time the resource was created on the database")
4040
updated_at: Optional[StrictStr] = Field(None, description="when the resource was last modified/updated.")
41-
id: Optional[constr(strict=True, max_length=12, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
41+
id: Optional[constr(strict=True, max_length=30, min_length=12)] = Field(None, description="short UUID specifying the location of this resource")
4242
public: Optional[StrictBool] = Field(True, description="whether the resource is listed in public searches or not")
4343
user: Optional[StrictStr] = Field(None, description="who owns the resource")
4444
username: Optional[StrictStr] = Field(None, description="human readable username")

0 commit comments

Comments
 (0)