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
3473037b
Commit
3473037b
authored
2 years ago
by
Anton Sattarov
Browse files
Options
Downloads
Patches
Plain Diff
Обновлены proto файлы после релиза v0.10
parent
1b148038
No related branches found
No related tags found
1 merge request
!4
Обновлены proto файлы после релиза v0.10
Changes
2
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
+
1
−
1
View file @
3473037b
...
...
@@ -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
+
40
−
1
View file @
3473037b
...
...
@@ -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.
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