radar-api 0.8.1 → 0.8.2
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/Gemfile.lock +1 -1
- data/gen/radar/api/portfolio_analyzer_types.rb +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce8cfcb180f8a0f58854c368b09fbd6822e952f3
|
|
4
|
+
data.tar.gz: 439c02a0ca8e6a2a1861a8bc53d63220a99f502c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf28c2b664373dcd680c0f4739c2f44843a37a096630aeaf69fef66257c0a5e9e9255e29e1f39fbc0cb4e765de638a2d522fbeeecb1b49257e31563771be5a0e
|
|
7
|
+
data.tar.gz: c6acd79da57405ba7a2f1d1068062e62b6e073381aaa4556f5bdd44f0c754704e10074357cd0de7cf117177c9ec370498f9173ac78f7c4a372a9c28da34cb9d5
|
data/Gemfile.lock
CHANGED
|
@@ -435,12 +435,15 @@ module Radar
|
|
|
435
435
|
class Table
|
|
436
436
|
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
437
437
|
TITLE = 1
|
|
438
|
+
MAX_HEIGHT = 5
|
|
438
439
|
HEADER = 2
|
|
439
440
|
BODY = 3
|
|
440
441
|
FOOTER = 4
|
|
441
442
|
|
|
442
443
|
FIELDS = {
|
|
443
444
|
TITLE => {:type => ::Thrift::Types::STRING, :name => 'title'},
|
|
445
|
+
# Criado na versão 0.8.2.
|
|
446
|
+
MAX_HEIGHT => {:type => ::Thrift::Types::I16, :name => 'max_height'},
|
|
444
447
|
HEADER => {:type => ::Thrift::Types::LIST, :name => 'header', :element => {:type => ::Thrift::Types::STRUCT, :class => ::Radar::Api::TableRow}},
|
|
445
448
|
BODY => {:type => ::Thrift::Types::LIST, :name => 'body', :element => {:type => ::Thrift::Types::STRUCT, :class => ::Radar::Api::TableRow}},
|
|
446
449
|
FOOTER => {:type => ::Thrift::Types::LIST, :name => 'footer', :element => {:type => ::Thrift::Types::STRUCT, :class => ::Radar::Api::TableRow}}
|