Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
perxis-proto
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
12
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-proto
Commits
730f95d1
Commit
730f95d1
authored
5 months ago
by
Semyon Krestyaninov
Committed by
Pavel Antonov
5 months ago
Browse files
Options
Downloads
Patches
Plain Diff
feat: Для Items добавлен метод для замены рабочей версии на выбранную ревизию
parent
806e7b2b
No related branches found
No related tags found
1 merge request
!70
Для Items добавлен метод для замены рабочей версии на выбранную ревизию
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
proto/items/items.proto
+14
-0
14 additions, 0 deletions
proto/items/items.proto
with
14 additions
and
0 deletions
proto/items/items.proto
+
14
−
0
View file @
730f95d1
...
...
@@ -300,6 +300,18 @@ message UndeleteRequest {
UndeleteOptions
options
=
2
;
}
message
CheckoutRevisionRequest
{
string
space_id
=
1
;
string
env_id
=
2
;
string
collection_id
=
3
;
string
item_id
=
4
;
string
revision_id
=
5
;
}
message
CheckoutRevisionResponse
{
string
stored_revision_id
=
1
;
// Версия ревизии которая была создана или соответствует предыдущему рабочему контенту
}
message
PublishRequest
{
Item
item
=
1
;
PublishOptions
options
=
2
;
...
...
@@ -310,6 +322,7 @@ message UnpublishRequest {
UnpublishOptions
options
=
2
;
}
message
GetPublishedRequest
{
string
space_id
=
1
;
string
env_id
=
2
;
...
...
@@ -435,6 +448,7 @@ service Items {
rpc
Unpublish
(
UnpublishRequest
)
returns
(
google.protobuf.Empty
)
{}
rpc
GetPublished
(
GetPublishedRequest
)
returns
(
GetPublishedResponse
)
{}
rpc
FindPublished
(
FindPublishedRequest
)
returns
(
FindPublishedResponse
)
{}
rpc
CheckoutRevision
(
CheckoutRevisionRequest
)
returns
(
CheckoutRevisionResponse
)
{}
/**
* Расчет значений по существующим данным. Например, получение среднего значения поля
...
...
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