Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
perxis-python
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Wiki
Custom issue tracker
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
perxis
perxis-python
Commits
957eb5b6
Commit
957eb5b6
authored
5 months ago
by
Eterevskiy Georgiy
Browse files
Options
Downloads
Plain Diff
Merge branch 'feature/
AUTO-3479
' into 'master'
feat:
AUTO-3479
Add State enum See merge request
!73
parents
388b39ec
954ee1f6
No related branches found
No related tags found
1 merge request
!73
feat: AUTO-3479 Add State enum
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
perxis-proto
+1
-1
1 addition, 1 deletion
perxis-proto
perxis/models.py
+9
-0
9 additions, 0 deletions
perxis/models.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
11 additions
and
2 deletions
perxis-proto
@
00019d48
Compare
f10336dc
...
00019d48
Subproject commit
f10336dc4a4f58111c12dd95afec82be18388803
Subproject commit
00019d48da9824bbf43354502f15d5ea4016f931
This diff is collapsed.
Click to expand it.
perxis/models.py
+
9
−
0
View file @
957eb5b6
import
enum
from
dataclasses
import
dataclass
...
...
@@ -6,3 +8,10 @@ class Reference:
id
:
str
collection_id
:
str
disabled
:
bool
=
False
class
State
(
str
,
enum
.
Enum
):
DRAFT
=
"
DRAFT
"
PUBLISHED
=
"
PUBLISHED
"
CHANGED
=
"
CHANGED
"
ARCHIVED
=
"
ARCHIVED
"
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
957eb5b6
...
...
@@ -14,7 +14,7 @@ def load_requirements():
setup
(
name
=
'
perxis
'
,
version
=
'
1.7.
2
'
,
version
=
'
1.7.
3
'
,
description
=
'
Perxis python client
'
,
long_description
=
long_description
,
long_description_content_type
=
'
text/markdown
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment