jitera_proto 0.0.21 → 0.0.24
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 +5 -0
- data/lib/payloads/v1/backend_pb.rb +5 -0
- data/lib/payloads/v1/web_app.proto +2 -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: cfddd7dfeb63bbf98001f1f018c88142901ff456a947e1a82b94628e857a7741
|
4
|
+
data.tar.gz: 3cdd0ae6a826efadd4a74bf7e951f73ecfe09a96021a7a680135c02ec34fff34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af6e3a18dc0a1aa3f00d9ffbdf08f6334ed9578e525089d0563e1ff1e1fd09a8c817bbf8b3296f82e26e611ad593511684a79f054b254b401225ef3aa62faa6d
|
7
|
+
data.tar.gz: f4c1090a2a9c57ffa52d25cfa3c543762b75ff823d8a6fa0a8923d5a4bf484448181c05f51b37609974ac378469a8b5bd49b4c616f7c124bf62a2a2f1d818da6
|
@@ -69,6 +69,7 @@ enum DataTypeName {
|
|
69
69
|
ENUM = 13;
|
70
70
|
CURRENT_USER = 14;
|
71
71
|
COUNTER_CACHE = 15;
|
72
|
+
ID = 16;
|
72
73
|
}
|
73
74
|
|
74
75
|
message DataType {
|
@@ -421,9 +422,13 @@ message Table {
|
|
421
422
|
FileType file_type = 6;
|
422
423
|
EnumType enum_type = 7;
|
423
424
|
CounterCacheType counter_cache_type = 8;
|
425
|
+
IDType id_type = 9;
|
424
426
|
}
|
425
427
|
}
|
426
428
|
|
429
|
+
message IDType {
|
430
|
+
}
|
431
|
+
|
427
432
|
message CounterCacheType {
|
428
433
|
string table_name = 1;
|
429
434
|
}
|
@@ -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
|
@@ -744,6 +747,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
744
747
|
value :ENUM, 13
|
745
748
|
value :CURRENT_USER, 14
|
746
749
|
value :COUNTER_CACHE, 15
|
750
|
+
value :ID, 16
|
747
751
|
end
|
748
752
|
add_enum "schema.v1.Operator" do
|
749
753
|
value :WHERE, 0
|
@@ -823,6 +827,7 @@ module Schema
|
|
823
827
|
Table = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table").msgclass
|
824
828
|
Table::Column = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column").msgclass
|
825
829
|
Table::Column::ColumnType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.ColumnType").msgclass
|
830
|
+
Table::Column::IDType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.IDType").msgclass
|
826
831
|
Table::Column::CounterCacheType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.CounterCacheType").msgclass
|
827
832
|
Table::Column::StringType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType").msgclass
|
828
833
|
Table::Column::StringType::Condition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType.Condition").msgclass
|
@@ -2,12 +2,14 @@ syntax = "proto3";
|
|
2
2
|
package schema.v1;
|
3
3
|
|
4
4
|
import "google/protobuf/struct.proto";
|
5
|
+
import "v1/backend.proto";
|
5
6
|
|
6
7
|
message WebApp {
|
7
8
|
repeated AppPage app_pages = 1;
|
8
9
|
repeated Asset assets = 2;
|
9
10
|
repeated Variable variables = 3;
|
10
11
|
repeated AppPageCategory categories = 4;
|
12
|
+
repeated Localization localizations = 5;
|
11
13
|
|
12
14
|
message Variable {
|
13
15
|
string id = 1;
|
@@ -12,6 +12,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
12
12
|
repeated :assets, :message, 2, "schema.v1.Asset"
|
13
13
|
repeated :variables, :message, 3, "schema.v1.WebApp.Variable"
|
14
14
|
repeated :categories, :message, 4, "schema.v1.AppPageCategory"
|
15
|
+
repeated :localizations, :message, 5, "schema.v1.Localization"
|
15
16
|
end
|
16
17
|
add_message "schema.v1.WebApp.Variable" do
|
17
18
|
optional :id, :string, 1
|
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.24
|
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-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|