jitera_proto 0.0.20 → 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 +4 -4
- data/lib/payloads/v1/backend_pb.rb +4 -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
|
@@ -561,10 +561,10 @@ message Table {
|
|
561
561
|
bool future = 2;
|
562
562
|
}
|
563
563
|
message NumericalityValidation {
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
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;
|
568
568
|
}
|
569
569
|
|
570
570
|
message FileValidation {
|
@@ -452,10 +452,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
452
452
|
optional :future, :bool, 2
|
453
453
|
end
|
454
454
|
add_message "schema.v1.Table.ColumnValidationOption.NumericalityValidation" do
|
455
|
-
optional :greater_than, :
|
456
|
-
optional :greater_than_or_equal_to, :
|
457
|
-
optional :less_than, :
|
458
|
-
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
|
459
459
|
end
|
460
460
|
add_message "schema.v1.Table.ColumnValidationOption.FileValidation" do
|
461
461
|
optional :single, :bool, 1
|
@@ -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
|