jitera_proto 0.0.19 → 0.0.21
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/payloads/v1/backend.proto +11 -5
- data/lib/payloads/v1/backend_pb.rb +10 -4
- data/lib/payloads/v1/service.proto +2 -1
- data/lib/payloads/v1/service_services_pb.rb +2 -1
- data/lib/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70a64361b1d4e1bc9a8b8eb66e548c4211fac01cb98f831aea40b9af1014641b
|
4
|
+
data.tar.gz: 34ed881dd6d8034223a99685d4fede6210f02fc47a9b2451a039c47641ff21af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 434dd95061fbf99e8ebec73c1f0e1a72b1002b8212bdbf8414ae050d8cce23db50ad5cc47fca04c75d6417f16e521a7567cf64265646bfb7849914bcee5a4c77
|
7
|
+
data.tar.gz: 1717fe026dde8576fcc375b02b88ee44519709304b06f5348e941fe4093404c3d03623ada1e8e436d98a817c117e4b3643785649e0351ce9b06e79fbe70bb678
|
@@ -67,7 +67,8 @@ enum DataTypeName {
|
|
67
67
|
FILE = 11;
|
68
68
|
TABLE = 12;
|
69
69
|
ENUM = 13;
|
70
|
-
CURRENT_USER=14;
|
70
|
+
CURRENT_USER = 14;
|
71
|
+
COUNTER_CACHE = 15;
|
71
72
|
}
|
72
73
|
|
73
74
|
message DataType {
|
@@ -419,9 +420,14 @@ message Table {
|
|
419
420
|
DateType date_type = 5;
|
420
421
|
FileType file_type = 6;
|
421
422
|
EnumType enum_type = 7;
|
423
|
+
CounterCacheType counter_cache_type = 8;
|
422
424
|
}
|
423
425
|
}
|
424
426
|
|
427
|
+
message CounterCacheType {
|
428
|
+
string table_name = 1;
|
429
|
+
}
|
430
|
+
|
425
431
|
message StringType {
|
426
432
|
optional string default_value = 1;
|
427
433
|
bool is_text = 2;
|
@@ -555,10 +561,10 @@ message Table {
|
|
555
561
|
bool future = 2;
|
556
562
|
}
|
557
563
|
message NumericalityValidation {
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
564
|
+
float greater_than = 1;
|
565
|
+
float greater_than_or_equal_to = 2;
|
566
|
+
float less_than = 3;
|
567
|
+
float less_than_or_equal_to = 4;
|
562
568
|
}
|
563
569
|
|
564
570
|
message FileValidation {
|
@@ -330,8 +330,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
330
330
|
optional :date_type, :message, 5, "schema.v1.Table.Column.DateType"
|
331
331
|
optional :file_type, :message, 6, "schema.v1.Table.Column.FileType"
|
332
332
|
optional :enum_type, :message, 7, "schema.v1.Table.Column.EnumType"
|
333
|
+
optional :counter_cache_type, :message, 8, "schema.v1.Table.Column.CounterCacheType"
|
333
334
|
end
|
334
335
|
end
|
336
|
+
add_message "schema.v1.Table.Column.CounterCacheType" do
|
337
|
+
optional :table_name, :string, 1
|
338
|
+
end
|
335
339
|
add_message "schema.v1.Table.Column.StringType" do
|
336
340
|
proto3_optional :default_value, :string, 1
|
337
341
|
optional :is_text, :bool, 2
|
@@ -448,10 +452,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
448
452
|
optional :future, :bool, 2
|
449
453
|
end
|
450
454
|
add_message "schema.v1.Table.ColumnValidationOption.NumericalityValidation" do
|
451
|
-
optional :greater_than, :
|
452
|
-
optional :greater_than_or_equal_to, :
|
453
|
-
optional :less_than, :
|
454
|
-
optional :less_than_or_equal_to, :
|
455
|
+
optional :greater_than, :float, 1
|
456
|
+
optional :greater_than_or_equal_to, :float, 2
|
457
|
+
optional :less_than, :float, 3
|
458
|
+
optional :less_than_or_equal_to, :float, 4
|
455
459
|
end
|
456
460
|
add_message "schema.v1.Table.ColumnValidationOption.FileValidation" do
|
457
461
|
optional :single, :bool, 1
|
@@ -739,6 +743,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
739
743
|
value :TABLE, 12
|
740
744
|
value :ENUM, 13
|
741
745
|
value :CURRENT_USER, 14
|
746
|
+
value :COUNTER_CACHE, 15
|
742
747
|
end
|
743
748
|
add_enum "schema.v1.Operator" do
|
744
749
|
value :WHERE, 0
|
@@ -818,6 +823,7 @@ module Schema
|
|
818
823
|
Table = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table").msgclass
|
819
824
|
Table::Column = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column").msgclass
|
820
825
|
Table::Column::ColumnType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.ColumnType").msgclass
|
826
|
+
Table::Column::CounterCacheType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.CounterCacheType").msgclass
|
821
827
|
Table::Column::StringType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType").msgclass
|
822
828
|
Table::Column::StringType::Condition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType.Condition").msgclass
|
823
829
|
Table::Column::StringType::Format = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType.Format").enummodule
|
@@ -9,7 +9,8 @@ service CoreService {
|
|
9
9
|
rpc ListControllers (ListControllersRequest) returns (ListControllersResponse) {}
|
10
10
|
rpc ListFeatures (ListFeaturesRequest) returns (ListFeaturesResponse) {}
|
11
11
|
rpc ListAuthorizations (ListAuthorizationsRequest) returns (ListAuthorizationsResponse) {}
|
12
|
-
rpc
|
12
|
+
rpc ListBeLocalizations (ListLocalizationsRequest) returns (ListLocalizationsResponse) {}
|
13
|
+
rpc ListFeLocalizations (ListLocalizationsRequest) returns (ListLocalizationsResponse) {}
|
13
14
|
rpc GetWebApp (GetWebAppRequest) returns (GetWebAppResponse) {}
|
14
15
|
rpc ListMigrations (ListMigrationsRequest) returns (ListMigrationsResponse) {}
|
15
16
|
rpc GetBackend (GetBackendRequest) returns (GetBackendResponse) {}
|
@@ -18,7 +18,8 @@ module Schema
|
|
18
18
|
rpc :ListControllers, ::Schema::V1::ListControllersRequest, ::Schema::V1::ListControllersResponse
|
19
19
|
rpc :ListFeatures, ::Schema::V1::ListFeaturesRequest, ::Schema::V1::ListFeaturesResponse
|
20
20
|
rpc :ListAuthorizations, ::Schema::V1::ListAuthorizationsRequest, ::Schema::V1::ListAuthorizationsResponse
|
21
|
-
rpc :
|
21
|
+
rpc :ListBeLocalizations, ::Schema::V1::ListLocalizationsRequest, ::Schema::V1::ListLocalizationsResponse
|
22
|
+
rpc :ListFeLocalizations, ::Schema::V1::ListLocalizationsRequest, ::Schema::V1::ListLocalizationsResponse
|
22
23
|
rpc :GetWebApp, ::Schema::V1::GetWebAppRequest, ::Schema::V1::GetWebAppResponse
|
23
24
|
rpc :ListMigrations, ::Schema::V1::ListMigrationsRequest, ::Schema::V1::ListMigrationsResponse
|
24
25
|
rpc :GetBackend, ::Schema::V1::GetBackendRequest, ::Schema::V1::GetBackendResponse
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jitera_proto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.21
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MQuy
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|