radar-api 2.8.1 → 2.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c38ed50cbcf72064fffa76a614e2e6b0e3d2e2edc8b1e32390de2836c0254007
4
- data.tar.gz: 4fac3838fb4ed75c73c9bbbc21ff8e830d3fcd9fc2b8dc7b338b7eaa98b00c4b
3
+ metadata.gz: '083918dc51c4fae1fe8643a23636fadf2621926b1952aedf1c4c7def60b616ae'
4
+ data.tar.gz: b347e43197c402bbd57540dd99982945c400acf6553e7434811a0604225d7644
5
5
  SHA512:
6
- metadata.gz: b51dbc3bb426a6ccba5b83c3ca30c9b6b661e62a140020f9bf7a4849e418e4bcb43c6c60a963600b24643a825955c3ec85189b17842a045c633eccd122fc3a62
7
- data.tar.gz: 5cd908a07b96f8ec5bb4756db668ada67c9482c05ae1cae4a42e4f4250786e2a0b88a8c528346e53c61c5a7ff278ffc27c3f27f6a3a320131ec8d39f86ab0e4b
6
+ metadata.gz: f7c8dd8c59b48ea17fea49c1a30d4a98d0cc8871b2a7561f91d8939583bf9facc095f9b27838c1bb7d1ceb099bfc6d5649a0fec886077d84f8b4d386af163a24
7
+ data.tar.gz: 3d9891c5f85dd74b9c0c93cb90d0f20afa62411f2d0672d793b8dc393c1d942bf98e50cc803b45c2278c0600eaf58fcf05eab6a1fb31b7e66aae7cb2cb3a5049
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- radar-api (2.8.1)
4
+ radar-api (2.9.0)
5
5
  grpc
6
6
 
7
7
  GEM
@@ -15,10 +15,10 @@ GEM
15
15
  coderay (1.1.0)
16
16
  ffi (1.11.1)
17
17
  formatador (0.2.4)
18
- google-protobuf (3.12.2)
18
+ google-protobuf (3.12.2-x86_64-linux)
19
19
  googleapis-common-protos-types (1.0.5)
20
20
  google-protobuf (~> 3.11)
21
- grpc (1.30.0)
21
+ grpc (1.30.0-x86_64-linux)
22
22
  google-protobuf (~> 3.12)
23
23
  googleapis-common-protos-types (~> 1.0)
24
24
  grpc-tools (1.27.0)
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'google/protobuf/timestamp_pb'
6
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
8
  add_file("cei.proto", :syntax => :proto3) do
8
9
  add_message "SolveReq" do
@@ -11,8 +12,26 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
11
12
  optional :text, :string, 1
12
13
  map :cookies, :string, :string, 2
13
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
14
29
  end
15
30
  end
16
31
 
17
32
  SolveReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("SolveReq").msgclass
18
33
  SolveResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("SolveResp").msgclass
34
+ VerifyAccountReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("VerifyAccountReq").msgclass
35
+ VerifyAccountResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("VerifyAccountResp").msgclass
36
+ RecoverPasswordReq = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("RecoverPasswordReq").msgclass
37
+ RecoverPasswordResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("RecoverPasswordResp").msgclass
@@ -18,3 +18,18 @@ module CaptchaCracker
18
18
 
19
19
  Stub = Service.rpc_stub_class
20
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
+ end
33
+
34
+ Stub = Service.rpc_stub_class
35
+ end
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.8.1
4
+ version: 2.9.0
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-07-06 00:00:00.000000000 Z
11
+ date: 2020-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler