jitera_proto 0.0.15 → 0.0.18

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c8b15664196f3e87ebc40024288cf168dbc0dc32e69996563c0eb98ad0a3498
4
- data.tar.gz: 3137faed20ccc9f88cfb3459d9e707c29db8ee15e3dd2081e37a91cd40f1ade6
3
+ metadata.gz: 3ac24954e74e1f98999af5e0fddbebf2aab5bbfacc87c25b368026d19009243d
4
+ data.tar.gz: df6dec58ea981370c922b65a97bb8900314d8201063d611bd200e7dd9d6aa0b9
5
5
  SHA512:
6
- metadata.gz: 30097b4fdd3c34dec0bf78639fa8580b6de76fa1834d521057027c66076ba614309804d5ffffc0e04d1b153bab47deb19c44915eb5a39b00cb2fbf12787b86d7
7
- data.tar.gz: 5c745593574014bedc5681b46bd2490b9a15a61ec90bec289efd8eb423952342ee0f6b87dd0050234e8a502bb33540ae8d1e162ebbbc79898ea23e414a91deca
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
@@ -3,6 +3,9 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'v1/backend_pb'
7
+ require 'v1/web_app_pb'
8
+
6
9
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
10
  add_file("v1/service.proto", :syntax => :proto3) do
8
11
  add_message "schema.v1.GetWebAppRequest" do
@@ -2,6 +2,7 @@
2
2
  # Source: v1/service.proto for package 'schema.v1'
3
3
 
4
4
  require 'grpc'
5
+ require 'v1/service_pb'
5
6
 
6
7
  module Schema
7
8
  module V1
@@ -10,9 +10,10 @@ message WebApp {
10
10
  repeated AppPageCategory categories = 4;
11
11
 
12
12
  message Variable {
13
- VariableType type = 1;
14
- string name = 2;
15
- string value = 3;
13
+ string id = 1;
14
+ VariableType type = 2;
15
+ string name = 3;
16
+ string value = 4;
16
17
  }
17
18
 
18
19
  enum VariableType {
@@ -205,8 +206,8 @@ message WebNodeProps {
205
206
  bool sortable = 2;
206
207
  bool filterable = 3;
207
208
  int32 column_index = 4;
208
- repeated google.protobuf.Struct column_name = 5;
209
- repeated google.protobuf.Struct column_path = 6;
209
+ repeated NodeVariable column_name = 5;
210
+ repeated NodeVariable column_path = 6;
210
211
  }
211
212
  }
212
213
 
@@ -14,9 +14,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
14
14
  repeated :categories, :message, 4, "schema.v1.AppPageCategory"
15
15
  end
16
16
  add_message "schema.v1.WebApp.Variable" do
17
- optional :type, :enum, 1, "schema.v1.WebApp.VariableType"
18
- optional :name, :string, 2
19
- optional :value, :string, 3
17
+ optional :id, :string, 1
18
+ optional :type, :enum, 2, "schema.v1.WebApp.VariableType"
19
+ optional :name, :string, 3
20
+ optional :value, :string, 4
20
21
  end
21
22
  add_enum "schema.v1.WebApp.VariableType" do
22
23
  value :JS, 0
@@ -189,8 +190,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
189
190
  optional :sortable, :bool, 2
190
191
  optional :filterable, :bool, 3
191
192
  optional :column_index, :int32, 4
192
- repeated :column_name, :message, 5, "google.protobuf.Struct"
193
- repeated :column_path, :message, 6, "google.protobuf.Struct"
193
+ repeated :column_name, :message, 5, "schema.v1.NodeVariable"
194
+ repeated :column_path, :message, 6, "schema.v1.NodeVariable"
194
195
  end
195
196
  add_message "schema.v1.MobileNodeProps" do
196
197
  optional :element_key, :string, 1
data/lib/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JiteraProto
4
- VERSION = '0.0.15'
4
+ VERSION = '0.0.18'
5
5
  end
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.15
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-14 00:00:00.000000000 Z
11
+ date: 2023-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc