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 +4 -4
- data/lib/payloads/v1/backend.proto +12 -8
- data/lib/payloads/v1/backend_pb.rb +12 -8
- data/lib/payloads/v1/frontend.proto +10 -1
- 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: 9674a5f5139c62aa9f7024c8bc1cc6872480346d7033d9917f561d4997b816a8
|
4
|
+
data.tar.gz: a5f3dba8c817c973f09a6621742552d16980670a0ac6795f3f4e1b90af4af90c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
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 :
|
162
|
-
value :
|
163
|
-
value :
|
164
|
-
value :
|
165
|
-
value :
|
166
|
-
value :
|
167
|
-
value :
|
168
|
-
value :
|
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
|
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
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.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-
|
11
|
+
date: 2023-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|