Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
f238dec
ran pre-commit
andrewelamb Sep 30, 2025
2735b69
fix example in get_acl methods
andrewelamb Sep 30, 2025
b8cca36
ran pre-commit
andrewelamb Sep 30, 2025
b07b15f
ran pre-commit
andrewelamb Sep 30, 2025
3d96e2e
get rid of repr methods
andrewelamb Oct 1, 2025
6a92565
ran pre-commit
andrewelamb Oct 1, 2025
14b31e1
ran pre-commit
andrewelamb Oct 1, 2025
982eb52
fix docstring
andrewelamb Oct 1, 2025
fc7b8f7
remove self.get call from store method
andrewelamb Oct 1, 2025
9bf1a66
remove todo
andrewelamb Oct 1, 2025
d37434d
added async store method
andrewelamb Oct 2, 2025
6e195f8
fix docstring example format
andrewelamb Oct 2, 2025
7aaa540
fix return types for get and store methods
andrewelamb Oct 2, 2025
69c865d
fix links in docstrings
andrewelamb Oct 2, 2025
43b367a
expand test
andrewelamb Oct 2, 2025
b3f5158
fix docstring
andrewelamb Oct 3, 2025
21307aa
removed from response method
andrewelamb Oct 6, 2025
37e9a9b
change classes to have all attributes be optional
andrewelamb Oct 15, 2025
5f0c255
fixed method calls
andrewelamb Oct 16, 2025
7b93824
fixed tests
andrewelamb Oct 16, 2025
a865825
moved _check_name method to helper function
andrewelamb Oct 16, 2025
90c5447
fix CreateSchemaRequest docstring links
andrewelamb Oct 16, 2025
745c615
change update_acl to be more user friendly
andrewelamb Oct 16, 2025
0420bda
improve examples
andrewelamb Oct 16, 2025
7cb5be0
moved protocols to model file
andrewelamb Oct 16, 2025
29b76c4
improve examples
andrewelamb Oct 16, 2025
8890e9d
add delete_async example using id
andrewelamb Oct 16, 2025
f848622
use repoEndpoint for Synapse URL
andrewelamb Oct 16, 2025
f04862a
handle merge conflict
andrewelamb Oct 16, 2025
780105d
chnage list methods to return generators
andrewelamb Oct 17, 2025
a593139
clear up comment
andrewelamb Oct 17, 2025
98d1092
added example to docstring
andrewelamb Oct 17, 2025
bcb5b33
improve docstrings
andrewelamb Oct 17, 2025
4922e7c
remove pytest marks
andrewelamb Oct 17, 2025
d4a4508
redid some examples
andrewelamb Oct 17, 2025
3f94b72
changed some fixtures to async
andrewelamb Oct 17, 2025
b941b28
convert tests to async
andrewelamb Oct 17, 2025
259e0cb
fix regex bug
andrewelamb Oct 17, 2025
1c7d86b
add version to delete methods
andrewelamb Oct 21, 2025
6e96fba
fix docstrings
andrewelamb Oct 21, 2025
4e311bb
added additonal checks for org and schema names
andrewelamb Oct 21, 2025
8f0b30c
fix docstring
andrewelamb Oct 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions synapseclient/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from synapseclient.models.mixins.table_components import QueryMixin
from synapseclient.models.project import Project
from synapseclient.models.recordset import RecordSet
from synapseclient.models.schema_organization import JSONSchema, SchemaOrganization
from synapseclient.models.services import FailureStrategy
from synapseclient.models.submissionview import SubmissionView
from synapseclient.models.table import Table
Expand Down Expand Up @@ -126,6 +127,9 @@
"DatasetCollection",
# Submission models
"SubmissionView",
# JSON Schema models
"SchemaOrganization",
"JSONSchema",
]

# Static methods to expose as functions
Expand Down
Loading
Loading