jitera_proto 0.0.2 → 0.0.3

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: 0cdd106df02eea6fb11ed6f799258dff379026882d4821d516c0a22787a9b230
4
- data.tar.gz: 378b7f4e60a6d9a948ba97ba32b30721f089cb0cecb5cb18848b1ae98dec4e09
3
+ metadata.gz: 9674a5f5139c62aa9f7024c8bc1cc6872480346d7033d9917f561d4997b816a8
4
+ data.tar.gz: a5f3dba8c817c973f09a6621742552d16980670a0ac6795f3f4e1b90af4af90c
5
5
  SHA512:
6
- metadata.gz: b3e19020c5aad4ca4fb2829bbf66ff50b38bbd40b9385dd6cb47ae1dd2000eb4912c612f713ec67fba49438f6bb5e906b2307d5a6ba07a7c76b8df2882135e9e
7
- data.tar.gz: 3dee93c81c74fe176490cce44629291466d4a1874f02cbe8647f9754b79679eea3e4d6d5d4e790facee5666a0d3a6c260b5f7e2253e6af7a370ccf084cdd0ca5
6
+ metadata.gz: c1219995e5ca797ec31b3ec85d0d264c14b0f9e25495ebd0058e0953ef64594a8165d54bd777b8fb1a1643d1318d6eb94011e4f1020d29ff832f929560969db9
7
+ data.tar.gz: 8cb96104f5bd9095d0a7f86001d33f0843bc8cdfd92dadc112932356ed32620ac22fefc48f322b445f3ab62d1cb213817242a5ca3ee02130d485371752a3c439
@@ -6,6 +6,9 @@ message Project {
6
6
  string project_name = 2;
7
7
  int32 project_id = 3;
8
8
  optional Infra infra = 4;
9
+ string time_zone = 5;
10
+ string default_language_code = 6;
11
+ repeated string language_codes = 7;
9
12
 
10
13
  oneof generate_type {
11
14
  ProjectExport project_export = 9;
@@ -222,14 +225,15 @@ message Feature {
222
225
  }
223
226
 
224
227
  enum FeatureName {
225
- EMAIL_LOGIN = 0;
226
- JP_BANKS_DATA = 1;
227
- BASIC_AUTH = 2;
228
- TWILIO_LOGIN = 3;
229
- ROLLBAR = 4;
230
- DEEP_LINK = 5;
231
- STRIPE = 6;
232
- LINE_LOGIN = 7;
228
+ NIL = 0;
229
+ EMAIL_LOGIN = 1;
230
+ JP_BANKS_DATA = 2;
231
+ BASIC_AUTH = 3;
232
+ TWILIO_LOGIN = 4;
233
+ ROLLBAR = 5;
234
+ DEEP_LINK = 6;
235
+ STRIPE = 7;
236
+ LINE_LOGIN = 8;
233
237
  }
234
238
 
235
239
  enum Environment {
@@ -10,6 +10,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
10
10
  optional :project_name, :string, 2
11
11
  optional :project_id, :int32, 3
12
12
  proto3_optional :infra, :message, 4, "schema.v1.Infra"
13
+ optional :time_zone, :string, 5
14
+ optional :default_language_code, :string, 6
15
+ repeated :language_codes, :string, 7
13
16
  oneof :generate_type do
14
17
  optional :project_export, :message, 9, "schema.v1.ProjectExport"
15
18
  optional :project_preview, :message, 10, "schema.v1.ProjectPreview"
@@ -158,14 +161,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
158
161
  optional :secret_key, :string, 3
159
162
  end
160
163
  add_enum "schema.v1.Feature.FeatureName" do
161
- value :EMAIL_LOGIN, 0
162
- value :JP_BANKS_DATA, 1
163
- value :BASIC_AUTH, 2
164
- value :TWILIO_LOGIN, 3
165
- value :ROLLBAR, 4
166
- value :DEEP_LINK, 5
167
- value :STRIPE, 6
168
- value :LINE_LOGIN, 7
164
+ value :NIL, 0
165
+ value :EMAIL_LOGIN, 1
166
+ value :JP_BANKS_DATA, 2
167
+ value :BASIC_AUTH, 3
168
+ value :TWILIO_LOGIN, 4
169
+ value :ROLLBAR, 5
170
+ value :DEEP_LINK, 6
171
+ value :STRIPE, 7
172
+ value :LINE_LOGIN, 8
169
173
  end
170
174
  add_enum "schema.v1.Feature.Environment" do
171
175
  value :DEVELOPMENT, 0
@@ -3,8 +3,17 @@ package schema.v1;
3
3
 
4
4
  import "google/protobuf/struct.proto";
5
5
 
6
- message Frontend {
6
+ message WebApp {
7
7
  repeated AppPage app_pages = 1;
8
+ repeated Asset assets = 2;
9
+ }
10
+
11
+ message Asset {
12
+ string id = 1;
13
+ string url = 2;
14
+ string file_name = 3;
15
+ int32 file_size = 4;
16
+ string content_type = 5;
8
17
  }
9
18
 
10
19
  message AppPage {
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.2"
4
+ VERSION = "0.0.3"
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.2
4
+ version: 0.0.3
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-13 00:00:00.000000000 Z
11
+ date: 2023-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc