radar-api 2.11.0 → 2.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/gen/cei_pb.rb +18 -0
- data/gen/cei_services_pb.rb +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c510ab960a00467e438f122e52bda4975fd2dafe327752571eb8e3ebbcf21ea3
|
4
|
+
data.tar.gz: b51a10c8627cb8e3bd6275f055e7d806ff1f3ee4d09f4123c3e36f12079089ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b4e1d1ea26aac852672f5a225392cdae50a9cc896e57c79019357df246c6c758c587076d0fc0a3e3ad9c9277fa4f82c181aabc0af2b82cc92a1017237e85fb4
|
7
|
+
data.tar.gz: 287fc3e39d5faaf230608d04bb0a8982bf1cde2f54591a0eea12c881313debfaac6be6f94257557c38b073ea53994c83cb7322a4c7fc04503f062f6b251778fa
|
data/gen/cei_pb.rb
CHANGED
@@ -42,6 +42,21 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
42
42
|
add_message "DefinePermanentPasswordResp" do
|
43
43
|
optional :permanent_password, :string, 1
|
44
44
|
end
|
45
|
+
add_message "LoginReq" do
|
46
|
+
optional :username, :string, 1
|
47
|
+
optional :password, :string, 2
|
48
|
+
end
|
49
|
+
add_message "LoginResp" do
|
50
|
+
optional :status, :enum, 1, "LoginResp.Status"
|
51
|
+
optional :error_message, :string, 2
|
52
|
+
map :cookies, :string, :string, 3
|
53
|
+
end
|
54
|
+
add_enum "LoginResp.Status" do
|
55
|
+
value :UNKNOWN, 0
|
56
|
+
value :SUCCESS, 1
|
57
|
+
value :USER_NOT_FOUND, 2
|
58
|
+
value :INVALID_PASSWORD, 3
|
59
|
+
end
|
45
60
|
end
|
46
61
|
end
|
47
62
|
|
@@ -55,3 +70,6 @@ RecoverPasswordReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("R
|
|
55
70
|
RecoverPasswordResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("RecoverPasswordResp").msgclass
|
56
71
|
DefinePermanentPasswordReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("DefinePermanentPasswordReq").msgclass
|
57
72
|
DefinePermanentPasswordResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("DefinePermanentPasswordResp").msgclass
|
73
|
+
LoginReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("LoginReq").msgclass
|
74
|
+
LoginResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("LoginResp").msgclass
|
75
|
+
LoginResp::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("LoginResp.Status").enummodule
|
data/gen/cei_services_pb.rb
CHANGED
@@ -31,6 +31,7 @@ module Account
|
|
31
31
|
rpc :VerifyAccount, VerifyAccountReq, VerifyAccountResp
|
32
32
|
rpc :RecoverPassword, RecoverPasswordReq, RecoverPasswordResp
|
33
33
|
rpc :DefinePermanentPassword, DefinePermanentPasswordReq, DefinePermanentPasswordResp
|
34
|
+
rpc :Login, LoginReq, LoginResp
|
34
35
|
end
|
35
36
|
|
36
37
|
Stub = Service.rpc_stub_class
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: radar-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Aizim Kelmanson
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-11-
|
11
|
+
date: 2020-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -96,7 +96,7 @@ homepage: http://www.investtools.com.br/
|
|
96
96
|
licenses:
|
97
97
|
- MIT
|
98
98
|
metadata: {}
|
99
|
-
post_install_message:
|
99
|
+
post_install_message:
|
100
100
|
rdoc_options: []
|
101
101
|
require_paths:
|
102
102
|
- lib
|
@@ -112,8 +112,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
112
|
- !ruby/object:Gem::Version
|
113
113
|
version: '0'
|
114
114
|
requirements: []
|
115
|
-
rubygems_version: 3.0.
|
116
|
-
signing_key:
|
115
|
+
rubygems_version: 3.0.6
|
116
|
+
signing_key:
|
117
117
|
specification_version: 4
|
118
118
|
summary: Radar API
|
119
119
|
test_files: []
|