-
Notifications
You must be signed in to change notification settings - Fork 4
feat: add capsule search api #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
jake-valsamis
commented
Dec 31, 2024
- add support for capsule search API, introduced in v3.1
- update Capsule and CapsuleStatus fields according to v3.1 changes:
- published_capsule --> release_capsule
- keywords --> tags
Name = "name" | ||
|
||
|
||
class CapsuleOwnership(StrEnum): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be named Ownership
and moved to components.py
limit: Optional[int] = None | ||
offset: Optional[int] = None | ||
archived: Optional[bool] = None | ||
favorite: Optional[bool] = None | ||
query: Optional[str] = None | ||
next_token: Optional[str] = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's continue to reflect the field ordering from the open api spec
closing as changes included in feat: Code Ocean Version 3.1 updates PR |