jitera_proto 0.0.18 → 0.0.20

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: 3ac24954e74e1f98999af5e0fddbebf2aab5bbfacc87c25b368026d19009243d
4
- data.tar.gz: df6dec58ea981370c922b65a97bb8900314d8201063d611bd200e7dd9d6aa0b9
3
+ metadata.gz: cc76247de891e3ed74cfc95b46430797e0f2e36c351bf87ec526f2dd4d9c2fe2
4
+ data.tar.gz: a9f43228b760dbb2e28aad308d6977747a40d66b324ee2df06518531a8c3a6ea
5
5
  SHA512:
6
- metadata.gz: 2b363b93fd61ef6f71d776afbb2284add5480fe5bcec4c78cc887ca2d488e50fdfe6c6e4f2b6b77ceeb2593c7857cb4d4bb06a2733b059773625f3d7379f32e6
7
- data.tar.gz: 31a8d41753812875e81dac0bb9d05aa75627c4157745063355d2a420634098fce4f569577ebb4a70f2b3420b4e135a5a6f7046b6891c2190dc44ca5155f18fa9
6
+ metadata.gz: b94266d65e7ee057942d9422129f900b82d27b2e1ce757bd0436e24945469c2474bbe990ceb254ca1f7991d36993ee2686f07cdbbc2209e5a0f02c2c2dc05307
7
+ data.tar.gz: 696c6601512d15e0282b24b001b2ff4cb945012d5ab7f378968a9c3e58c1d488e6da6fb254e29b33dbe5eb181e0f42efaa78e81d81937d2bc635fe394641d0b0
@@ -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;
@@ -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
@@ -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
@@ -3,9 +3,6 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'v1/backend_pb'
7
- require 'v1/web_app_pb'
8
-
9
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
10
7
  add_file("v1/service.proto", :syntax => :proto3) do
11
8
  add_message "schema.v1.GetWebAppRequest" do
@@ -2,7 +2,6 @@
2
2
  # Source: v1/service.proto for package 'schema.v1'
3
3
 
4
4
  require 'grpc'
5
- require 'v1/service_pb'
6
5
 
7
6
  module Schema
8
7
  module V1
@@ -484,6 +484,7 @@ message FormValidation {
484
484
  string value = 1;
485
485
  string value_type = 2;
486
486
  repeated NodeVariable error_messages = 3;
487
+ RuleType rule_type = 4;
487
488
  }
488
489
 
489
490
  enum ValidationType {
@@ -439,6 +439,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
439
439
  optional :value, :string, 1
440
440
  optional :value_type, :string, 2
441
441
  repeated :error_messages, :message, 3, "schema.v1.NodeVariable"
442
+ optional :rule_type, :enum, 4, "schema.v1.FormValidation.RuleType"
442
443
  end
443
444
  add_enum "schema.v1.FormValidation.ValidationType" do
444
445
  value :TEXT, 0
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.18'
4
+ VERSION = '0.0.20'
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.18
4
+ version: 0.0.20
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-20 00:00:00.000000000 Z
11
+ date: 2023-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc