jitera_proto 0.0.5 → 0.0.7
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/Gemfile.lock +1 -1
- data/lib/payloads/v1/backend.proto +1 -0
- data/lib/payloads/v1/backend_pb.rb +1 -0
- data/lib/payloads/v1/frontend.proto +12 -0
- data/lib/payloads/v1/frontend_pb.rb +12 -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: 5b24df81fc63c74749ebc4ca773e524e5eb3c0a6673f6d4a0a2a956ddeb06c4e
|
4
|
+
data.tar.gz: 9021bccac73abb7e27e21760b318002a3e1fd4303546600feb61d5536bb40098
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 788d96b3b36183c7b8d482347f5bfce1da5d24e2a1a9a954af28d58eee49e07a3363bd3ba1ffd2348d6d20acc2bbb928e474d42b2f869351c756bd78a9475d90
|
7
|
+
data.tar.gz: b2698c457a72c01528f646c0770d56c4b01bfebc37b80fab5ff032c1a4d328c67858dffb52e23d2056185e3f2774f4a09282307782eeaea858b1c94915b3fdb9
|
data/Gemfile.lock
CHANGED
@@ -189,6 +189,7 @@ 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 :action, :string, 15
|
192
193
|
oneof :resource do
|
193
194
|
optional :table, :string, 3
|
194
195
|
optional :feature, :enum, 4, "schema.v1.Feature.FeatureName"
|
@@ -6,6 +6,18 @@ import "google/protobuf/struct.proto";
|
|
6
6
|
message WebApp {
|
7
7
|
repeated AppPage app_pages = 1;
|
8
8
|
repeated Asset assets = 2;
|
9
|
+
repeated Variable variables = 3;
|
10
|
+
|
11
|
+
message Variable {
|
12
|
+
VariableType type = 1;
|
13
|
+
string name = 2;
|
14
|
+
string value = 3;
|
15
|
+
}
|
16
|
+
|
17
|
+
enum VariableType {
|
18
|
+
JS = 0;
|
19
|
+
CSS = 1;
|
20
|
+
}
|
9
21
|
}
|
10
22
|
|
11
23
|
message Asset {
|
@@ -10,6 +10,16 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
10
10
|
add_message "schema.v1.WebApp" do
|
11
11
|
repeated :app_pages, :message, 1, "schema.v1.AppPage"
|
12
12
|
repeated :assets, :message, 2, "schema.v1.Asset"
|
13
|
+
repeated :variables, :message, 3, "schema.v1.WebApp.Variable"
|
14
|
+
end
|
15
|
+
add_message "schema.v1.WebApp.Variable" do
|
16
|
+
optional :type, :enum, 1, "schema.v1.WebApp.VariableType"
|
17
|
+
optional :name, :string, 2
|
18
|
+
optional :value, :string, 3
|
19
|
+
end
|
20
|
+
add_enum "schema.v1.WebApp.VariableType" do
|
21
|
+
value :JS, 0
|
22
|
+
value :CSS, 1
|
13
23
|
end
|
14
24
|
add_message "schema.v1.Asset" do
|
15
25
|
optional :id, :string, 1
|
@@ -435,6 +445,8 @@ end
|
|
435
445
|
module Schema
|
436
446
|
module V1
|
437
447
|
WebApp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.WebApp").msgclass
|
448
|
+
WebApp::Variable = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.WebApp.Variable").msgclass
|
449
|
+
WebApp::VariableType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.WebApp.VariableType").enummodule
|
438
450
|
Asset = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Asset").msgclass
|
439
451
|
AppPage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.AppPage").msgclass
|
440
452
|
AppPage::PageType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.AppPage.PageType").enummodule
|
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.7
|
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-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|