jitera_proto 0.0.16 → 0.0.18
Sign up to get free protection for your applications and to get access to all the features.
- 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/service_pb.rb +3 -0
- data/lib/payloads/v1/service_services_pb.rb +1 -0
- data/lib/payloads/v1/web_app.proto +2 -2
- data/lib/payloads/v1/web_app_pb.rb +2 -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: 3ac24954e74e1f98999af5e0fddbebf2aab5bbfacc87c25b368026d19009243d
|
4
|
+
data.tar.gz: df6dec58ea981370c922b65a97bb8900314d8201063d611bd200e7dd9d6aa0b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b363b93fd61ef6f71d776afbb2284add5480fe5bcec4c78cc887ca2d488e50fdfe6c6e4f2b6b77ceeb2593c7857cb4d4bb06a2733b059773625f3d7379f32e6
|
7
|
+
data.tar.gz: 31a8d41753812875e81dac0bb9d05aa75627c4157745063355d2a420634098fce4f569577ebb4a70f2b3420b4e135a5a6f7046b6891c2190dc44ca5155f18fa9
|
@@ -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
|
|
@@ -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
|
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.18
|
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-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|