radar-api 2.7.2 → 2.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +5 -5
- data/gen/cei_pb.rb +46 -0
- data/gen/cei_services_pb.rb +36 -0
- data/gen/portfolios_pb.rb +13 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e8e1d25c7234bda739148ffaeff2be6b32e7aa2f3f0bc29bea6a0420ca7daa4
|
4
|
+
data.tar.gz: 29a74bccb58dc87233c75a8014c9ee8893d1f9e7a0c45379c18973e6e6f3b3f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e6334efdca3e603f316744bda12145b67bf1b2995ccf2dd556f57d9e773ee3f842b133ddf377ec7e58e5aed2b63733b6d3f7a22b1f985e1626820ce9e625d0d
|
7
|
+
data.tar.gz: 715a05065c71e764ecd9c402ebf6c328b6ca8c2b115dd071635e874b4814bc89d7d37561026acf88d7d419d5cd086511b2bb7e1afa4f9b4a948c226817f1ba60
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
radar-api (2.
|
4
|
+
radar-api (2.9.1)
|
5
5
|
grpc
|
6
6
|
|
7
7
|
GEM
|
@@ -15,11 +15,11 @@ GEM
|
|
15
15
|
coderay (1.1.0)
|
16
16
|
ffi (1.11.1)
|
17
17
|
formatador (0.2.4)
|
18
|
-
google-protobuf (3.
|
19
|
-
googleapis-common-protos-types (1.0.
|
20
|
-
google-protobuf (~> 3.0)
|
21
|
-
grpc (1.28.0)
|
18
|
+
google-protobuf (3.12.2)
|
19
|
+
googleapis-common-protos-types (1.0.5)
|
22
20
|
google-protobuf (~> 3.11)
|
21
|
+
grpc (1.30.1)
|
22
|
+
google-protobuf (~> 3.12)
|
23
23
|
googleapis-common-protos-types (~> 1.0)
|
24
24
|
grpc-tools (1.27.0)
|
25
25
|
guard (2.6.0)
|
data/gen/cei_pb.rb
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: cei.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/protobuf/timestamp_pb'
|
7
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_file("cei.proto", :syntax => :proto3) do
|
9
|
+
add_message "SolveReq" do
|
10
|
+
end
|
11
|
+
add_message "SolveResp" do
|
12
|
+
optional :text, :string, 1
|
13
|
+
map :cookies, :string, :string, 2
|
14
|
+
end
|
15
|
+
add_message "VerifyAccountReq" do
|
16
|
+
optional :username, :string, 1
|
17
|
+
optional :birthdate, :message, 2, "google.protobuf.Timestamp"
|
18
|
+
end
|
19
|
+
add_message "VerifyAccountResp" do
|
20
|
+
optional :exist, :bool, 1
|
21
|
+
optional :partial_email, :string, 2
|
22
|
+
end
|
23
|
+
add_message "RecoverPasswordReq" do
|
24
|
+
optional :username, :string, 1
|
25
|
+
optional :birthdate, :message, 2, "google.protobuf.Timestamp"
|
26
|
+
end
|
27
|
+
add_message "RecoverPasswordResp" do
|
28
|
+
end
|
29
|
+
add_message "DefinePermanentPasswordReq" do
|
30
|
+
optional :username, :string, 1
|
31
|
+
optional :temporary_password, :string, 2
|
32
|
+
end
|
33
|
+
add_message "DefinePermanentPasswordResp" do
|
34
|
+
optional :permanent_password, :string, 1
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
SolveReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("SolveReq").msgclass
|
40
|
+
SolveResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("SolveResp").msgclass
|
41
|
+
VerifyAccountReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("VerifyAccountReq").msgclass
|
42
|
+
VerifyAccountResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("VerifyAccountResp").msgclass
|
43
|
+
RecoverPasswordReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("RecoverPasswordReq").msgclass
|
44
|
+
RecoverPasswordResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("RecoverPasswordResp").msgclass
|
45
|
+
DefinePermanentPasswordReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("DefinePermanentPasswordReq").msgclass
|
46
|
+
DefinePermanentPasswordResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("DefinePermanentPasswordResp").msgclass
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: cei.proto for package ''
|
3
|
+
|
4
|
+
require 'grpc'
|
5
|
+
require 'cei_pb'
|
6
|
+
|
7
|
+
module CaptchaCracker
|
8
|
+
class Service
|
9
|
+
|
10
|
+
include GRPC::GenericService
|
11
|
+
|
12
|
+
self.marshal_class_method = :encode
|
13
|
+
self.unmarshal_class_method = :decode
|
14
|
+
self.service_name = 'CaptchaCracker'
|
15
|
+
|
16
|
+
rpc :Solve, SolveReq, SolveResp
|
17
|
+
end
|
18
|
+
|
19
|
+
Stub = Service.rpc_stub_class
|
20
|
+
end
|
21
|
+
module Account
|
22
|
+
class Service
|
23
|
+
|
24
|
+
include GRPC::GenericService
|
25
|
+
|
26
|
+
self.marshal_class_method = :encode
|
27
|
+
self.unmarshal_class_method = :decode
|
28
|
+
self.service_name = 'Account'
|
29
|
+
|
30
|
+
rpc :VerifyAccount, VerifyAccountReq, VerifyAccountResp
|
31
|
+
rpc :RecoverPassword, RecoverPasswordReq, RecoverPasswordResp
|
32
|
+
rpc :DefinePermanentPassword, DefinePermanentPasswordReq, DefinePermanentPasswordResp
|
33
|
+
end
|
34
|
+
|
35
|
+
Stub = Service.rpc_stub_class
|
36
|
+
end
|
data/gen/portfolios_pb.rb
CHANGED
@@ -24,10 +24,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
24
24
|
optional :monthly_stock_exemption_period_profit, :message, 26, "Radar.Event.MonthlyStockExemptionPeriodProfit"
|
25
25
|
end
|
26
26
|
end
|
27
|
+
add_message "Radar.Event.EquitySource" do
|
28
|
+
optional :symbol, :string, 1
|
29
|
+
optional :type, :enum, 2, "Radar.Event.EquityType"
|
30
|
+
end
|
31
|
+
add_message "Radar.Event.Source" do
|
32
|
+
oneof :type do
|
33
|
+
optional :other, :string, 1
|
34
|
+
optional :equity, :message, 2, "Radar.Event.EquitySource"
|
35
|
+
end
|
36
|
+
end
|
27
37
|
add_message "Radar.Event.CashFlow" do
|
28
38
|
optional :type, :enum, 1, "Radar.Event.CashFlow.Type"
|
29
39
|
optional :value, :double, 2
|
30
|
-
optional :source, :
|
40
|
+
optional :source, :message, 3, "Radar.Event.Source"
|
31
41
|
end
|
32
42
|
add_enum "Radar.Event.CashFlow.Type" do
|
33
43
|
value :OTHER, 0
|
@@ -100,6 +110,8 @@ module Radar
|
|
100
110
|
EquitySource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.EquitySource").msgclass
|
101
111
|
InterestOnOwnCapital = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.InterestOnOwnCapital").msgclass
|
102
112
|
Event = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.Event").msgclass
|
113
|
+
Event::EquitySource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.Event.EquitySource").msgclass
|
114
|
+
Event::Source = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.Event.Source").msgclass
|
103
115
|
Event::CashFlow = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.Event.CashFlow").msgclass
|
104
116
|
Event::CashFlow::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.Event.CashFlow.Type").enummodule
|
105
117
|
Event::Portfolio = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Radar.Event.Portfolio").msgclass
|
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.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Aizim Kelmanson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -80,6 +80,8 @@ files:
|
|
80
80
|
- LICENSE.txt
|
81
81
|
- README.md
|
82
82
|
- Rakefile
|
83
|
+
- gen/cei_pb.rb
|
84
|
+
- gen/cei_services_pb.rb
|
83
85
|
- gen/exporter_pb.rb
|
84
86
|
- gen/exporter_services_pb.rb
|
85
87
|
- gen/portfolios_pb.rb
|