jitera_proto 0.0.7 → 0.0.8
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 +2 -1
- data/lib/payloads/v1/backend_pb.rb +2 -1
- data/lib/payloads/v1/frontend.proto +7 -0
- data/lib/payloads/v1/frontend_pb.rb +7 -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: d9b8c007094c72420cb6e6ad3274862fe0279cc15ae08d75a0466430991c9bcf
|
|
4
|
+
data.tar.gz: e0b61fa8a123eb812843bcc4ced41f908b5ca010a9e4ef836054139007202905
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8af41a6c5588b8acea1516e8f60812b3baa19dd8a5f8c34e4e44b51e8eafc84b27c74cf9a3d88beffd9736e1312a03ad2354dd14d9ca3dca71a972dac3c6a6ce
|
|
7
|
+
data.tar.gz: 444f5c02e1f92b3f7d85582e2008a7164b8f0e7b5910547640faea494135b42d79081efaa1bac61480e218c394f3fa8fec7b5e7895af254f74b9dd190c99127a
|
|
@@ -267,7 +267,8 @@ message Controller {
|
|
|
267
267
|
Response responses = 12;
|
|
268
268
|
RequestContent params = 13;
|
|
269
269
|
bool writable = 14;
|
|
270
|
-
optional string
|
|
270
|
+
optional string feature_action = 15;
|
|
271
|
+
optional string feature_table = 16;
|
|
271
272
|
|
|
272
273
|
message List {
|
|
273
274
|
RequestContent queries = 1;
|
|
@@ -189,7 +189,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
189
189
|
optional :responses, :message, 12, "schema.v1.Controller.Response"
|
|
190
190
|
optional :params, :message, 13, "schema.v1.Controller.RequestContent"
|
|
191
191
|
optional :writable, :bool, 14
|
|
192
|
-
proto3_optional :
|
|
192
|
+
proto3_optional :feature_action, :string, 15
|
|
193
|
+
proto3_optional :feature_table, :string, 16
|
|
193
194
|
oneof :resource do
|
|
194
195
|
optional :table, :string, 3
|
|
195
196
|
optional :feature, :enum, 4, "schema.v1.Feature.FeatureName"
|
|
@@ -7,6 +7,7 @@ message WebApp {
|
|
|
7
7
|
repeated AppPage app_pages = 1;
|
|
8
8
|
repeated Asset assets = 2;
|
|
9
9
|
repeated Variable variables = 3;
|
|
10
|
+
repeated AppPageCategory categories = 4;
|
|
10
11
|
|
|
11
12
|
message Variable {
|
|
12
13
|
VariableType type = 1;
|
|
@@ -34,6 +35,7 @@ message AppPage {
|
|
|
34
35
|
string slug = 3;
|
|
35
36
|
PageType page_type = 4;
|
|
36
37
|
repeated PageNode nodes = 5;
|
|
38
|
+
string category_id = 6;
|
|
37
39
|
|
|
38
40
|
enum PageType {
|
|
39
41
|
SCREEN = 0;
|
|
@@ -41,6 +43,11 @@ message AppPage {
|
|
|
41
43
|
}
|
|
42
44
|
}
|
|
43
45
|
|
|
46
|
+
message AppPageCategory {
|
|
47
|
+
string id = 1;
|
|
48
|
+
string name = 2;
|
|
49
|
+
}
|
|
50
|
+
|
|
44
51
|
message PageNode {
|
|
45
52
|
string id = 1;
|
|
46
53
|
string display_name = 2;
|
|
@@ -11,6 +11,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
11
11
|
repeated :app_pages, :message, 1, "schema.v1.AppPage"
|
|
12
12
|
repeated :assets, :message, 2, "schema.v1.Asset"
|
|
13
13
|
repeated :variables, :message, 3, "schema.v1.WebApp.Variable"
|
|
14
|
+
repeated :categories, :message, 4, "schema.v1.AppPageCategory"
|
|
14
15
|
end
|
|
15
16
|
add_message "schema.v1.WebApp.Variable" do
|
|
16
17
|
optional :type, :enum, 1, "schema.v1.WebApp.VariableType"
|
|
@@ -34,11 +35,16 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
34
35
|
optional :slug, :string, 3
|
|
35
36
|
optional :page_type, :enum, 4, "schema.v1.AppPage.PageType"
|
|
36
37
|
repeated :nodes, :message, 5, "schema.v1.PageNode"
|
|
38
|
+
optional :category_id, :string, 6
|
|
37
39
|
end
|
|
38
40
|
add_enum "schema.v1.AppPage.PageType" do
|
|
39
41
|
value :SCREEN, 0
|
|
40
42
|
value :MOLECULE, 1
|
|
41
43
|
end
|
|
44
|
+
add_message "schema.v1.AppPageCategory" do
|
|
45
|
+
optional :id, :string, 1
|
|
46
|
+
optional :name, :string, 2
|
|
47
|
+
end
|
|
42
48
|
add_message "schema.v1.PageNode" do
|
|
43
49
|
optional :id, :string, 1
|
|
44
50
|
optional :display_name, :string, 2
|
|
@@ -450,6 +456,7 @@ module Schema
|
|
|
450
456
|
Asset = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Asset").msgclass
|
|
451
457
|
AppPage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.AppPage").msgclass
|
|
452
458
|
AppPage::PageType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.AppPage.PageType").enummodule
|
|
459
|
+
AppPageCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.AppPageCategory").msgclass
|
|
453
460
|
PageNode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.PageNode").msgclass
|
|
454
461
|
WebNodeProps = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.WebNodeProps").msgclass
|
|
455
462
|
WebNodeProps::TableColumn = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.WebNodeProps.TableColumn").msgclass
|
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.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- MQuy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-02-
|
|
11
|
+
date: 2023-02-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: grpc
|