-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:specklesystems/specklepy into v3-dev
- Loading branch information
Showing
23 changed files
with
914 additions
and
747 deletions.
There are no files selected for viewing
This file contains 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Some useful helpers for working with automation data.""" | ||
|
||
import secrets | ||
import string | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
from specklepy.core.api.inputs.model_inputs import ( | ||
CreateModelInput, | ||
DeleteModelInput, | ||
ModelVersionsFilter, | ||
UpdateModelInput, | ||
) | ||
from specklepy.core.api.inputs.project_inputs import ( | ||
ProjectCreateInput, | ||
ProjectInviteCreateInput, | ||
ProjectInviteUseInput, | ||
ProjectModelsFilter, | ||
ProjectUpdateInput, | ||
ProjectUpdateRoleInput, | ||
) | ||
from specklepy.core.api.inputs.user_inputs import UserProjectsFilter, UserUpdateInput | ||
from specklepy.core.api.inputs.version_inputs import ( | ||
CreateVersionInput, | ||
DeleteVersionsInput, | ||
MarkReceivedVersionInput, | ||
MoveVersionsInput, | ||
UpdateVersionInput, | ||
) | ||
|
||
__all__ = [ | ||
"CreateModelInput", | ||
"DeleteModelInput", | ||
"UpdateModelInput", | ||
"ModelVersionsFilter", | ||
"ProjectCreateInput", | ||
"ProjectInviteCreateInput", | ||
"ProjectInviteUseInput", | ||
"ProjectModelsFilter", | ||
"ProjectUpdateInput", | ||
"ProjectUpdateRoleInput", | ||
"UserProjectsFilter", | ||
"UserUpdateInput", | ||
"UpdateVersionInput", | ||
"MoveVersionsInput", | ||
"DeleteVersionsInput", | ||
"CreateVersionInput", | ||
"MarkReceivedVersionInput", | ||
] |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.