jitera_proto 0.0.18 → 0.0.20
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 +4 -4
- data/lib/payloads/v1/backend.proto +7 -1
- data/lib/payloads/v1/backend_pb.rb +6 -0
- data/lib/payloads/v1/service_pb.rb +0 -3
- data/lib/payloads/v1/service_services_pb.rb +0 -1
- data/lib/payloads/v1/web_app.proto +1 -0
- data/lib/payloads/v1/web_app_pb.rb +1 -0
- 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: cc76247de891e3ed74cfc95b46430797e0f2e36c351bf87ec526f2dd4d9c2fe2
|
4
|
+
data.tar.gz: a9f43228b760dbb2e28aad308d6977747a40d66b324ee2df06518531a8c3a6ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
@@ -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
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.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-
|
11
|
+
date: 2023-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|