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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: baf11d1edbe2fd509a196acbc0bb1101ce9c5d1c40879e74bb0d22dd80f13940
4
- data.tar.gz: 3a651442e7942ca223d83279ff9f7a1edb12735c6675437d359bf4c05e216bbe
3
+ metadata.gz: 70a64361b1d4e1bc9a8b8eb66e548c4211fac01cb98f831aea40b9af1014641b
4
+ data.tar.gz: 34ed881dd6d8034223a99685d4fede6210f02fc47a9b2451a039c47641ff21af
5
5
  SHA512:
6
- metadata.gz: d12d8a32ee279c15498f54bddbef16c505ec05eed435fb464dc7ed9e29b90e7ce8753c2c9a4e728060963ed1939a5e21fda5301f4f6db8012c5fb1320616dc9b
7
- data.tar.gz: da64573613c62e551309668f93698ab5701d4cc9f4c04f9d3e6491c36a2880dfad8329f21fcb80fa485f650db716f84f33b4bfcb292aaf168548ff2869ea1eca
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
- int32 greater_than = 1;
559
- int32 greater_than_or_equal_to = 2;
560
- int32 less_than = 3;
561
- int32 less_than_or_equal_to = 4;
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, :int32, 1
452
- optional :greater_than_or_equal_to, :int32, 2
453
- optional :less_than, :int32, 3
454
- optional :less_than_or_equal_to, :int32, 4
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 ListLocalizations (ListLocalizationsRequest) returns (ListLocalizationsResponse) {}
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 :ListLocalizations, ::Schema::V1::ListLocalizationsRequest, ::Schema::V1::ListLocalizationsResponse
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JiteraProto
4
- VERSION = '0.0.19'
4
+ VERSION = '0.0.21'
5
5
  end
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.19
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-21 00:00:00.000000000 Z
11
+ date: 2023-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc