jitera_proto 0.0.8 → 0.0.9

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: d9b8c007094c72420cb6e6ad3274862fe0279cc15ae08d75a0466430991c9bcf
4
- data.tar.gz: e0b61fa8a123eb812843bcc4ced41f908b5ca010a9e4ef836054139007202905
3
+ metadata.gz: 6c72945b714a10237fa29f57edad55cd7856861ce2ea18a5b50e7f50a13e8a73
4
+ data.tar.gz: 70b60d0e8cc4a4ac35deef93b3e8c7a9a3b45f65f7e1fff5c566bdad42e8bba5
5
5
  SHA512:
6
- metadata.gz: 8af41a6c5588b8acea1516e8f60812b3baa19dd8a5f8c34e4e44b51e8eafc84b27c74cf9a3d88beffd9736e1312a03ad2354dd14d9ca3dca71a972dac3c6a6ce
7
- data.tar.gz: 444f5c02e1f92b3f7d85582e2008a7164b8f0e7b5910547640faea494135b42d79081efaa1bac61480e218c394f3fa8fec7b5e7895af254f74b9dd190c99127a
6
+ metadata.gz: 2739b1df977960da9154479c2fdba0da8929d09612c8de1117693cfaaa28b36dced52185a1d5155034600c59bf9b298813fc4a953e37be2befebb6ea7369d54c
7
+ data.tar.gz: 520928ef8dc48d8c26178e22ace576140bd71651441fd566ae5ad3d85037732c1fb6650cb88f04d413b1f417e2d9bd54678c338d759c2c89848af7692d5e42a4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jitera_proto (0.0.7)
4
+ jitera_proto (0.0.8)
5
5
  google-protobuf (~> 3.21.12)
6
6
  grpc (~> 1.50.0)
7
7
 
@@ -28,4 +28,4 @@ DEPENDENCIES
28
28
  rake (~> 13.0)
29
29
 
30
30
  BUNDLED WITH
31
- 2.3.16
31
+ 2.3.13
@@ -157,6 +157,7 @@ message Feature {
157
157
  DeepLink deep_link = 8;
158
158
  Stripe stripe = 9;
159
159
  LineLogin line_login = 10;
160
+ GoogleAnalytics google_analytics = 11;
160
161
  }
161
162
 
162
163
  message EmailLogin {
@@ -224,6 +225,10 @@ message Feature {
224
225
  string secret_key = 3;
225
226
  }
226
227
 
228
+ message GoogleAnalytics {
229
+ string measurement_id = 1;
230
+ }
231
+
227
232
  enum FeatureName {
228
233
  NIL = 0;
229
234
  EMAIL_LOGIN = 1;
@@ -234,6 +239,7 @@ message Feature {
234
239
  DEEP_LINK = 6;
235
240
  STRIPE = 7;
236
241
  LINE_LOGIN = 8;
242
+ GOOGLE_ANALYTICS = 9;
237
243
  }
238
244
 
239
245
  enum Environment {
@@ -101,6 +101,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
101
101
  optional :deep_link, :message, 8, "schema.v1.Feature.DeepLink"
102
102
  optional :stripe, :message, 9, "schema.v1.Feature.Stripe"
103
103
  optional :line_login, :message, 10, "schema.v1.Feature.LineLogin"
104
+ optional :google_analytics, :message, 11, "schema.v1.Feature.GoogleAnalytics"
104
105
  end
105
106
  end
106
107
  add_message "schema.v1.Feature.EmailLogin" do
@@ -160,6 +161,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
160
161
  optional :client_id, :string, 2
161
162
  optional :secret_key, :string, 3
162
163
  end
164
+ add_message "schema.v1.Feature.GoogleAnalytics" do
165
+ optional :measurement_id, :string, 1
166
+ end
163
167
  add_enum "schema.v1.Feature.FeatureName" do
164
168
  value :NIL, 0
165
169
  value :EMAIL_LOGIN, 1
@@ -170,6 +174,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
170
174
  value :DEEP_LINK, 6
171
175
  value :STRIPE, 7
172
176
  value :LINE_LOGIN, 8
177
+ value :GOOGLE_ANALYTICS, 9
173
178
  end
174
179
  add_enum "schema.v1.Feature.Environment" do
175
180
  value :DEVELOPMENT, 0
@@ -732,6 +737,7 @@ module Schema
732
737
  Feature::DeepLink = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.DeepLink").msgclass
733
738
  Feature::Stripe = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.Stripe").msgclass
734
739
  Feature::LineLogin = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.LineLogin").msgclass
740
+ Feature::GoogleAnalytics = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.GoogleAnalytics").msgclass
735
741
  Feature::FeatureName = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.FeatureName").enummodule
736
742
  Feature::Environment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.Environment").enummodule
737
743
  Controller = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller").msgclass
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.8'
4
+ VERSION = '0.0.9'
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.8
4
+ version: 0.0.9
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-24 00:00:00.000000000 Z
11
+ date: 2023-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc