jitera_proto 0.0.20 → 0.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc76247de891e3ed74cfc95b46430797e0f2e36c351bf87ec526f2dd4d9c2fe2
4
- data.tar.gz: a9f43228b760dbb2e28aad308d6977747a40d66b324ee2df06518531a8c3a6ea
3
+ metadata.gz: 10461360b8a34ecbbad3d4158f904f807a1ea25451a1d56771146803b8350f26
4
+ data.tar.gz: 43395fb5daafea5967651cc2e5d7b2251cde588c347597fa56aa283779b2f6bd
5
5
  SHA512:
6
- metadata.gz: b94266d65e7ee057942d9422129f900b82d27b2e1ce757bd0436e24945469c2474bbe990ceb254ca1f7991d36993ee2686f07cdbbc2209e5a0f02c2c2dc05307
7
- data.tar.gz: 696c6601512d15e0282b24b001b2ff4cb945012d5ab7f378968a9c3e58c1d488e6da6fb254e29b33dbe5eb181e0f42efaa78e81d81937d2bc635fe394641d0b0
6
+ metadata.gz: e9c571967af013687e2e584fe8c4e7a5c9f173abb3e9d25c526d0dcf6ac4a669b77b9c704faee51d85a896900cc1d8b833aee54d57bb6c61292efc4bd0878073
7
+ data.tar.gz: 973dba8538d2de838a3c140e5c0d982324842754b19adad88e50d61c6c785cdd4bb14e281249b6876615eb63f839a06a1f9273b94783d65cd031f850f7c6bac0
@@ -421,9 +421,13 @@ message Table {
421
421
  FileType file_type = 6;
422
422
  EnumType enum_type = 7;
423
423
  CounterCacheType counter_cache_type = 8;
424
+ IDType id_type = 9;
424
425
  }
425
426
  }
426
427
 
428
+ message IDType {
429
+ }
430
+
427
431
  message CounterCacheType {
428
432
  string table_name = 1;
429
433
  }
@@ -561,10 +565,10 @@ message Table {
561
565
  bool future = 2;
562
566
  }
563
567
  message NumericalityValidation {
564
- int32 greater_than = 1;
565
- int32 greater_than_or_equal_to = 2;
566
- int32 less_than = 3;
567
- int32 less_than_or_equal_to = 4;
568
+ float greater_than = 1;
569
+ float greater_than_or_equal_to = 2;
570
+ float less_than = 3;
571
+ float less_than_or_equal_to = 4;
568
572
  }
569
573
 
570
574
  message FileValidation {
@@ -331,8 +331,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
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
333
  optional :counter_cache_type, :message, 8, "schema.v1.Table.Column.CounterCacheType"
334
+ optional :id_type, :message, 9, "schema.v1.Table.Column.IDType"
334
335
  end
335
336
  end
337
+ add_message "schema.v1.Table.Column.IDType" do
338
+ end
336
339
  add_message "schema.v1.Table.Column.CounterCacheType" do
337
340
  optional :table_name, :string, 1
338
341
  end
@@ -452,10 +455,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
452
455
  optional :future, :bool, 2
453
456
  end
454
457
  add_message "schema.v1.Table.ColumnValidationOption.NumericalityValidation" do
455
- optional :greater_than, :int32, 1
456
- optional :greater_than_or_equal_to, :int32, 2
457
- optional :less_than, :int32, 3
458
- optional :less_than_or_equal_to, :int32, 4
458
+ optional :greater_than, :float, 1
459
+ optional :greater_than_or_equal_to, :float, 2
460
+ optional :less_than, :float, 3
461
+ optional :less_than_or_equal_to, :float, 4
459
462
  end
460
463
  add_message "schema.v1.Table.ColumnValidationOption.FileValidation" do
461
464
  optional :single, :bool, 1
@@ -823,6 +826,7 @@ module Schema
823
826
  Table = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table").msgclass
824
827
  Table::Column = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column").msgclass
825
828
  Table::Column::ColumnType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.ColumnType").msgclass
829
+ Table::Column::IDType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.IDType").msgclass
826
830
  Table::Column::CounterCacheType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.CounterCacheType").msgclass
827
831
  Table::Column::StringType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType").msgclass
828
832
  Table::Column::StringType::Condition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType.Condition").msgclass
@@ -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.20'
4
+ VERSION = '0.0.22'
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.20
4
+ version: 0.0.22
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-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc