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
Compare revisions
1b148038a86702d19a4fbc4b4f5748718d74343d to 283b11871c14d15e8fdd596dc1b50116f87f1653
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
perxis/perxis-proto
Select target project
No results found
283b11871c14d15e8fdd596dc1b50116f87f1653
Select Git revision
Swap
Target
perxis/perxis-proto
Select target project
perxis/perxis-proto
1 result
1b148038a86702d19a4fbc4b4f5748718d74343d
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Обновлены proto файлы после релиза v0.10
· 3473037b
Anton Sattarov
authored
2 years ago
3473037b
Merge branch 'feature/PRXS-699-UpdateProtoAfterV0.11' into 'master'
· 283b1187
Pavel Antonov
authored
2 years ago
Обновлены proto файлы после релиза v0.10 See merge request
!4
283b1187
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
proto/collections/collections.proto
+1
-1
1 addition, 1 deletion
proto/collections/collections.proto
proto/items/items.proto
+40
-1
40 additions, 1 deletion
proto/items/items.proto
with
41 additions
and
2 deletions
proto/collections/collections.proto
View file @
283b1187
...
...
@@ -24,7 +24,6 @@ message Collection {
optional
bool
system
=
6
;
optional
bool
no_data
=
12
;
string
schema
=
7
;
// string feature = 8;
bool
hidden
=
13
;
message
View
{
...
...
@@ -49,6 +48,7 @@ message Collection {
}
StateInfo
state_info
=
10
;
repeated
string
tags
=
16
;
Access
access
=
20
;
}
...
...
This diff is collapsed.
Click to expand it.
proto/items/items.proto
View file @
283b1187
...
...
@@ -77,6 +77,45 @@ message Item {
Permissions
permissions
=
22
;
}
/**
* Объекты, описывающие произошедшие в сервисе события
*/
message
EventCreate
{
string
space_id
=
1
;
string
env_id
=
2
;
string
collection_id
=
3
;
string
item_id
=
4
;
}
message
EventUpdate
{
string
space_id
=
1
;
string
env_id
=
2
;
string
collection_id
=
3
;
string
item_id
=
4
;
}
message
EventPublish
{
string
space_id
=
1
;
string
env_id
=
2
;
string
collection_id
=
3
;
string
item_id
=
4
;
}
message
EventUnpublish
{
string
space_id
=
1
;
string
env_id
=
2
;
string
collection_id
=
3
;
string
item_id
=
4
;
}
message
EventDelete
{
string
space_id
=
1
;
string
env_id
=
2
;
string
collection_id
=
3
;
string
item_id
=
4
;
}
message
Filter
{
repeated
string
id
=
1
;
// Список ID записей кото
repeated
common.Filter
data
=
2
;
// Список фильтров
...
...
@@ -137,7 +176,7 @@ message ListRevisionsOptions {
// - avg(F) - среднее значения поля, тип результат T
// - sum(F) - сумма значений поля, тип результат T
// - count() - число записей, тип результат int
// Пример: {'average C': 'avg(a.b.c)'}
// Пример: {'average
of
C': 'avg(a.b.c)'}
message
AggregateOptions
{
map
<
string
,
string
>
fields
=
1
;
}
...
...
This diff is collapsed.
Click to expand it.