Add project type option to create and patch projects - #112
Merged
Conversation
Collaborator
|
Task linked: QF-8182 Add a new "template" project type |
manylon
force-pushed
the
QF-8182-add-project-type
branch
from
August 3, 2026 07:08
1e162df to
32beb1f
Compare
suricactus
approved these changes
Aug 3, 2026
suricactus
left a comment
Collaborator
There was a problem hiding this comment.
Nice! A few things to consider changing.
- add `--project-type` option to `create-project` and `patch-project` CLI commands - add `project_type` parameter to `Client.create_project` and `Client.patch_project` in the SDK - introduce a new `ProjectType` enum with regular, shared_datasets, and template values
manylon
force-pushed
the
QF-8182-add-project-type
branch
from
August 4, 2026 20:53
6cf1b6c to
d7e4ae4
Compare
Contributor
Author
|
Thanks for the review @suricactus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a
--project-typeoption tocreate-projectandpatch-projectin CLI and a correspondingproject_typeparameter toClient.create_projectandClient.patch_projectin SDK , with a newProjectTypeenum with "regular", "shared_datasets", and "template" values.