jitera_proto 0.0.16 → 0.0.19
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 +12 -0
- data/lib/payloads/v1/backend_pb.rb +12 -0
- data/lib/payloads/v1/web_app.proto +3 -2
- data/lib/payloads/v1/web_app_pb.rb +3 -2
- 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: baf11d1edbe2fd509a196acbc0bb1101ce9c5d1c40879e74bb0d22dd80f13940
|
4
|
+
data.tar.gz: 3a651442e7942ca223d83279ff9f7a1edb12735c6675437d359bf4c05e216bbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d12d8a32ee279c15498f54bddbef16c505ec05eed435fb464dc7ed9e29b90e7ce8753c2c9a4e728060963ed1939a5e21fda5301f4f6db8012c5fb1320616dc9b
|
7
|
+
data.tar.gz: da64573613c62e551309668f93698ab5701d4cc9f4c04f9d3e6491c36a2880dfad8329f21fcb80fa485f650db716f84f33b4bfcb292aaf168548ff2869ea1eca
|
@@ -158,6 +158,8 @@ message Feature {
|
|
158
158
|
Stripe stripe = 9;
|
159
159
|
LineLogin line_login = 10;
|
160
160
|
GoogleAnalytics google_analytics = 11;
|
161
|
+
ScoutApm scout_apm = 12;
|
162
|
+
GoogleTagManager google_tag_manager = 13;
|
161
163
|
}
|
162
164
|
|
163
165
|
message EmailLogin {
|
@@ -229,6 +231,14 @@ message Feature {
|
|
229
231
|
string measurement_id = 1;
|
230
232
|
}
|
231
233
|
|
234
|
+
message GoogleTagManager {
|
235
|
+
string container_id = 1;
|
236
|
+
}
|
237
|
+
|
238
|
+
message ScoutApm {
|
239
|
+
string key_id = 1;
|
240
|
+
}
|
241
|
+
|
232
242
|
enum FeatureName {
|
233
243
|
NIL = 0;
|
234
244
|
EMAIL_LOGIN = 1;
|
@@ -240,6 +250,8 @@ message Feature {
|
|
240
250
|
STRIPE = 7;
|
241
251
|
LINE_LOGIN = 8;
|
242
252
|
GOOGLE_ANALYTICS = 9;
|
253
|
+
SCOUT_APM = 10;
|
254
|
+
GOOGLE_TAG_MANAGER = 11;
|
243
255
|
}
|
244
256
|
|
245
257
|
enum Environment {
|
@@ -102,6 +102,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
102
102
|
optional :stripe, :message, 9, "schema.v1.Feature.Stripe"
|
103
103
|
optional :line_login, :message, 10, "schema.v1.Feature.LineLogin"
|
104
104
|
optional :google_analytics, :message, 11, "schema.v1.Feature.GoogleAnalytics"
|
105
|
+
optional :scout_apm, :message, 12, "schema.v1.Feature.ScoutApm"
|
106
|
+
optional :google_tag_manager, :message, 13, "schema.v1.Feature.GoogleTagManager"
|
105
107
|
end
|
106
108
|
end
|
107
109
|
add_message "schema.v1.Feature.EmailLogin" do
|
@@ -164,6 +166,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
164
166
|
add_message "schema.v1.Feature.GoogleAnalytics" do
|
165
167
|
optional :measurement_id, :string, 1
|
166
168
|
end
|
169
|
+
add_message "schema.v1.Feature.GoogleTagManager" do
|
170
|
+
optional :container_id, :string, 1
|
171
|
+
end
|
172
|
+
add_message "schema.v1.Feature.ScoutApm" do
|
173
|
+
optional :key_id, :string, 1
|
174
|
+
end
|
167
175
|
add_enum "schema.v1.Feature.FeatureName" do
|
168
176
|
value :NIL, 0
|
169
177
|
value :EMAIL_LOGIN, 1
|
@@ -175,6 +183,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
175
183
|
value :STRIPE, 7
|
176
184
|
value :LINE_LOGIN, 8
|
177
185
|
value :GOOGLE_ANALYTICS, 9
|
186
|
+
value :SCOUT_APM, 10
|
187
|
+
value :GOOGLE_TAG_MANAGER, 11
|
178
188
|
end
|
179
189
|
add_enum "schema.v1.Feature.Environment" do
|
180
190
|
value :DEVELOPMENT, 0
|
@@ -782,6 +792,8 @@ module Schema
|
|
782
792
|
Feature::Stripe = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.Stripe").msgclass
|
783
793
|
Feature::LineLogin = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.LineLogin").msgclass
|
784
794
|
Feature::GoogleAnalytics = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.GoogleAnalytics").msgclass
|
795
|
+
Feature::GoogleTagManager = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.GoogleTagManager").msgclass
|
796
|
+
Feature::ScoutApm = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.ScoutApm").msgclass
|
785
797
|
Feature::FeatureName = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.FeatureName").enummodule
|
786
798
|
Feature::Environment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.Environment").enummodule
|
787
799
|
Controller = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller").msgclass
|
@@ -206,8 +206,8 @@ message WebNodeProps {
|
|
206
206
|
bool sortable = 2;
|
207
207
|
bool filterable = 3;
|
208
208
|
int32 column_index = 4;
|
209
|
-
repeated
|
210
|
-
repeated
|
209
|
+
repeated NodeVariable column_name = 5;
|
210
|
+
repeated NodeVariable column_path = 6;
|
211
211
|
}
|
212
212
|
}
|
213
213
|
|
@@ -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 {
|
@@ -190,8 +190,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
190
190
|
optional :sortable, :bool, 2
|
191
191
|
optional :filterable, :bool, 3
|
192
192
|
optional :column_index, :int32, 4
|
193
|
-
repeated :column_name, :message, 5, "
|
194
|
-
repeated :column_path, :message, 6, "
|
193
|
+
repeated :column_name, :message, 5, "schema.v1.NodeVariable"
|
194
|
+
repeated :column_path, :message, 6, "schema.v1.NodeVariable"
|
195
195
|
end
|
196
196
|
add_message "schema.v1.MobileNodeProps" do
|
197
197
|
optional :element_key, :string, 1
|
@@ -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.19
|
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
|