jitera_proto 0.0.16 → 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: 729452386ea8805c166950021fd234da16bc27d2c1f4834eeb6eeadbf1acde7a
4
- data.tar.gz: e0dbbd168f904bfc360b1c600171666b7aac756c782928e25dced57da376713c
3
+ metadata.gz: 3ac24954e74e1f98999af5e0fddbebf2aab5bbfacc87c25b368026d19009243d
4
+ data.tar.gz: df6dec58ea981370c922b65a97bb8900314d8201063d611bd200e7dd9d6aa0b9
5
5
  SHA512:
6
- metadata.gz: 5bf09f24a4058442aa9b1899f15a7e0ba29312803bb79e3df2274d867423e20357a19605390336dbb495e2cb0506569b71ffa560e15fb328b78bd2414ae2c7d9
7
- data.tar.gz: f6f92528090d11f00afcd56108574d1c0f9c5486f8151c67bda75ac2ff50fb457b437d7cf6a6a5b15133137bb60c1146fa5e1a960a14b0f1847db1d1850edda6
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
@@ -206,8 +206,8 @@ message WebNodeProps {
206
206
  bool sortable = 2;
207
207
  bool filterable = 3;
208
208
  int32 column_index = 4;
209
- repeated google.protobuf.Struct column_name = 5;
210
- repeated google.protobuf.Struct column_path = 6;
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, "google.protobuf.Struct"
194
- 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"
195
195
  end
196
196
  add_message "schema.v1.MobileNodeProps" do
197
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.16'
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.16
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-16 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