intrinio-sdk 5.13.1 → 5.13.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e28e1f2e84547e219bc63b711f1f01c7655091f5283e60b0d6f4412bfe542a16
|
4
|
+
data.tar.gz: c525da09f9e716feb363b38ca5bb20ef9e8c387eb1b3396db545c0203a49f268
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5c08da9d571ff3c77bbd8992b757c91ccb6e0b4c54be893b78d03e802d1e7705202e6c42b3a056c8d285e3c5125e19c1ceb36968a41d4c27a51e1e64d4f05d3
|
7
|
+
data.tar.gz: 0a3417e15497d356455539fc3c1e6ab1f2929fab1aeb192a9580d3a21e2802b52530eb474568d64af9b7fd343085fb44000a86a0877dfa965bc547d5e600dd83
|
data/README.md
CHANGED
@@ -9,7 +9,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a
|
|
9
9
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
10
10
|
|
11
11
|
- API version: 2.23.0
|
12
|
-
- Package version: 5.13.
|
12
|
+
- Package version: 5.13.2
|
13
13
|
|
14
14
|
|
15
15
|
## Installation
|
@@ -15,6 +15,7 @@ Name | Type | Description
|
|
15
15
|
**source** | String | The organziation the answer data was sourced from
|
16
16
|
**query** | String | The query posed to the Thea API
|
17
17
|
**answers** | [**Array<TheaEntityAnswer>**](TheaEntityAnswer.md) |
|
18
|
+
**companies** | [**Array<CompanySummary>**](CompanySummary.md) |
|
18
19
|
|
19
20
|
[//]: # (END_DEFINITION)
|
20
21
|
|
@@ -22,4 +23,7 @@ Name | Type | Description
|
|
22
23
|
[//]: # (CONTAINED_CLASS:Intrinio::TheaEntityAnswer)
|
23
24
|
|
24
25
|
|
26
|
+
[//]: # (CONTAINED_CLASS:Intrinio::CompanySummary)
|
27
|
+
|
28
|
+
|
25
29
|
|
data/docs/CompanyApi.md
CHANGED
@@ -23,13 +23,16 @@ module Intrinio
|
|
23
23
|
|
24
24
|
attr_accessor :answers
|
25
25
|
|
26
|
+
attr_accessor :companies
|
27
|
+
|
26
28
|
|
27
29
|
# Attribute mapping from ruby-style variable name to JSON key.
|
28
30
|
def self.attribute_map
|
29
31
|
{
|
30
32
|
:'source' => :'source',
|
31
33
|
:'query' => :'query',
|
32
|
-
:'answers' => :'answers'
|
34
|
+
:'answers' => :'answers',
|
35
|
+
:'companies' => :'companies'
|
33
36
|
}
|
34
37
|
end
|
35
38
|
|
@@ -38,7 +41,8 @@ module Intrinio
|
|
38
41
|
{
|
39
42
|
:'source' => :'String',
|
40
43
|
:'query' => :'String',
|
41
|
-
:'answers' => :'Array<TheaEntityAnswer>'
|
44
|
+
:'answers' => :'Array<TheaEntityAnswer>',
|
45
|
+
:'companies' => :'Array<CompanySummary>'
|
42
46
|
}
|
43
47
|
end
|
44
48
|
|
@@ -64,6 +68,12 @@ module Intrinio
|
|
64
68
|
end
|
65
69
|
end
|
66
70
|
|
71
|
+
if attributes.has_key?(:'companies')
|
72
|
+
if (value = attributes[:'companies']).is_a?(Array)
|
73
|
+
self.companies = value
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
67
77
|
end
|
68
78
|
|
69
79
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -86,7 +96,8 @@ module Intrinio
|
|
86
96
|
self.class == o.class &&
|
87
97
|
source == o.source &&
|
88
98
|
query == o.query &&
|
89
|
-
answers == o.answers
|
99
|
+
answers == o.answers &&
|
100
|
+
companies == o.companies
|
90
101
|
end
|
91
102
|
|
92
103
|
# @see the `==` method
|
@@ -98,7 +109,7 @@ module Intrinio
|
|
98
109
|
# Calculates hash code according to all attributes.
|
99
110
|
# @return [Fixnum] Hash code
|
100
111
|
def hash
|
101
|
-
[source, query, answers].hash
|
112
|
+
[source, query, answers, companies].hash
|
102
113
|
end
|
103
114
|
|
104
115
|
# Builds the object from hash
|
data/lib/intrinio-sdk/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: intrinio-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.13.
|
4
|
+
version: 5.13.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Intrinio
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-06-
|
11
|
+
date: 2021-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|