DealMakerAPI 0.104.2 → 0.104.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/V1EntitiesDealsProgressPageSummary.md +6 -0
- data/lib/DealMakerAPI/models/v1_entities_deals_progress_page_summary.rb +28 -1
- data/lib/DealMakerAPI/version.rb +1 -1
- data/spec/models/v1_entities_deals_progress_page_summary_spec.rb +18 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: adb9cbad649e6db5868ebba069589cbee333926018c58b9e9ba49faf9c21c863
|
4
|
+
data.tar.gz: 392919e5d966fc56c347c5d004e60597f94c7311c8ed20b7d15b99524ca31c7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05f0c74064392e301da6313ffaafb4fdfc46646b9fa0b691590005e4974284e2830270d78221d4b3f611fabfa37153c6e54c37f2b6acfe764b5a089c28260d0e
|
7
|
+
data.tar.gz: 8d8d105104225c13c83cef3f58116a9e967b3ecb60e9163f1fa36672e34ac3a960db053159e47108816a1e6573724f43cb0ceffd90b8c2276ef7be7125ebdf8f
|
data/README.md
CHANGED
@@ -338,7 +338,7 @@ Given the high number of updates our platform performs on any investor, we’ve
|
|
338
338
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
339
339
|
|
340
340
|
- API version: 1.75.0
|
341
|
-
- Package version: 0.104.
|
341
|
+
- Package version: 0.104.3
|
342
342
|
- Generator version: 7.7.0-SNAPSHOT
|
343
343
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
344
344
|
|
@@ -355,16 +355,16 @@ gem build DealMakerAPI.gemspec
|
|
355
355
|
Then either install the gem locally:
|
356
356
|
|
357
357
|
```shell
|
358
|
-
gem install ./DealMakerAPI-0.104.
|
358
|
+
gem install ./DealMakerAPI-0.104.3.gem
|
359
359
|
```
|
360
360
|
|
361
|
-
(for development, run `gem install --dev ./DealMakerAPI-0.104.
|
361
|
+
(for development, run `gem install --dev ./DealMakerAPI-0.104.3.gem` to install the development dependencies)
|
362
362
|
|
363
363
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
364
364
|
|
365
365
|
Finally add this to the Gemfile:
|
366
366
|
|
367
|
-
gem 'DealMakerAPI', '~> 0.104.
|
367
|
+
gem 'DealMakerAPI', '~> 0.104.3'
|
368
368
|
|
369
369
|
### Install from Git
|
370
370
|
|
@@ -9,6 +9,9 @@
|
|
9
9
|
| **total_proceeds** | [**V1EntitiesDealsProgressPageSummaryItem**](V1EntitiesDealsProgressPageSummaryItem.md) | | [optional] |
|
10
10
|
| **processing_fees** | [**V1EntitiesDealsProgressPageSummaryItem**](V1EntitiesDealsProgressPageSummaryItem.md) | | [optional] |
|
11
11
|
| **invoice_deductions** | [**V1EntitiesDealsProgressPageSummaryItem**](V1EntitiesDealsProgressPageSummaryItem.md) | | [optional] |
|
12
|
+
| **accounts_receivable** | [**V1EntitiesDealsProgressPageSummaryItem**](V1EntitiesDealsProgressPageSummaryItem.md) | | [optional] |
|
13
|
+
| **upcoming_adspend** | [**V1EntitiesDealsProgressPageSummaryItem**](V1EntitiesDealsProgressPageSummaryItem.md) | | [optional] |
|
14
|
+
| **other_reserves** | [**V1EntitiesDealsProgressPageSummaryItem**](V1EntitiesDealsProgressPageSummaryItem.md) | | [optional] |
|
12
15
|
| **holdback** | [**V1EntitiesDealsProgressPageSummaryItem**](V1EntitiesDealsProgressPageSummaryItem.md) | | [optional] |
|
13
16
|
| **paid_out** | [**V1EntitiesDealsProgressPageSummaryItem**](V1EntitiesDealsProgressPageSummaryItem.md) | | [optional] |
|
14
17
|
| **available_for_payout** | [**V1EntitiesDealsProgressPageSummaryItem**](V1EntitiesDealsProgressPageSummaryItem.md) | | [optional] |
|
@@ -24,6 +27,9 @@ instance = DealMakerAPI::V1EntitiesDealsProgressPageSummary.new(
|
|
24
27
|
total_proceeds: null,
|
25
28
|
processing_fees: null,
|
26
29
|
invoice_deductions: null,
|
30
|
+
accounts_receivable: null,
|
31
|
+
upcoming_adspend: null,
|
32
|
+
other_reserves: null,
|
27
33
|
holdback: null,
|
28
34
|
paid_out: null,
|
29
35
|
available_for_payout: null
|
@@ -26,6 +26,12 @@ module DealMakerAPI
|
|
26
26
|
|
27
27
|
attr_accessor :invoice_deductions
|
28
28
|
|
29
|
+
attr_accessor :accounts_receivable
|
30
|
+
|
31
|
+
attr_accessor :upcoming_adspend
|
32
|
+
|
33
|
+
attr_accessor :other_reserves
|
34
|
+
|
29
35
|
attr_accessor :holdback
|
30
36
|
|
31
37
|
attr_accessor :paid_out
|
@@ -40,6 +46,9 @@ module DealMakerAPI
|
|
40
46
|
:'total_proceeds' => :'total_proceeds',
|
41
47
|
:'processing_fees' => :'processing_fees',
|
42
48
|
:'invoice_deductions' => :'invoice_deductions',
|
49
|
+
:'accounts_receivable' => :'accounts_receivable',
|
50
|
+
:'upcoming_adspend' => :'upcoming_adspend',
|
51
|
+
:'other_reserves' => :'other_reserves',
|
43
52
|
:'holdback' => :'holdback',
|
44
53
|
:'paid_out' => :'paid_out',
|
45
54
|
:'available_for_payout' => :'available_for_payout'
|
@@ -59,6 +68,9 @@ module DealMakerAPI
|
|
59
68
|
:'total_proceeds' => :'V1EntitiesDealsProgressPageSummaryItem',
|
60
69
|
:'processing_fees' => :'V1EntitiesDealsProgressPageSummaryItem',
|
61
70
|
:'invoice_deductions' => :'V1EntitiesDealsProgressPageSummaryItem',
|
71
|
+
:'accounts_receivable' => :'V1EntitiesDealsProgressPageSummaryItem',
|
72
|
+
:'upcoming_adspend' => :'V1EntitiesDealsProgressPageSummaryItem',
|
73
|
+
:'other_reserves' => :'V1EntitiesDealsProgressPageSummaryItem',
|
62
74
|
:'holdback' => :'V1EntitiesDealsProgressPageSummaryItem',
|
63
75
|
:'paid_out' => :'V1EntitiesDealsProgressPageSummaryItem',
|
64
76
|
:'available_for_payout' => :'V1EntitiesDealsProgressPageSummaryItem'
|
@@ -106,6 +118,18 @@ module DealMakerAPI
|
|
106
118
|
self.invoice_deductions = attributes[:'invoice_deductions']
|
107
119
|
end
|
108
120
|
|
121
|
+
if attributes.key?(:'accounts_receivable')
|
122
|
+
self.accounts_receivable = attributes[:'accounts_receivable']
|
123
|
+
end
|
124
|
+
|
125
|
+
if attributes.key?(:'upcoming_adspend')
|
126
|
+
self.upcoming_adspend = attributes[:'upcoming_adspend']
|
127
|
+
end
|
128
|
+
|
129
|
+
if attributes.key?(:'other_reserves')
|
130
|
+
self.other_reserves = attributes[:'other_reserves']
|
131
|
+
end
|
132
|
+
|
109
133
|
if attributes.key?(:'holdback')
|
110
134
|
self.holdback = attributes[:'holdback']
|
111
135
|
end
|
@@ -144,6 +168,9 @@ module DealMakerAPI
|
|
144
168
|
total_proceeds == o.total_proceeds &&
|
145
169
|
processing_fees == o.processing_fees &&
|
146
170
|
invoice_deductions == o.invoice_deductions &&
|
171
|
+
accounts_receivable == o.accounts_receivable &&
|
172
|
+
upcoming_adspend == o.upcoming_adspend &&
|
173
|
+
other_reserves == o.other_reserves &&
|
147
174
|
holdback == o.holdback &&
|
148
175
|
paid_out == o.paid_out &&
|
149
176
|
available_for_payout == o.available_for_payout
|
@@ -158,7 +185,7 @@ module DealMakerAPI
|
|
158
185
|
# Calculates hash code according to all attributes.
|
159
186
|
# @return [Integer] Hash code
|
160
187
|
def hash
|
161
|
-
[investment_proceeds, fees_and_adjustments, total_proceeds, processing_fees, invoice_deductions, holdback, paid_out, available_for_payout].hash
|
188
|
+
[investment_proceeds, fees_and_adjustments, total_proceeds, processing_fees, invoice_deductions, accounts_receivable, upcoming_adspend, other_reserves, holdback, paid_out, available_for_payout].hash
|
162
189
|
end
|
163
190
|
|
164
191
|
# Builds the object from hash
|
data/lib/DealMakerAPI/version.rb
CHANGED
@@ -57,6 +57,24 @@ describe DealMakerAPI::V1EntitiesDealsProgressPageSummary do
|
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
+
describe 'test attribute "accounts_receivable"' do
|
61
|
+
it 'should work' do
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe 'test attribute "upcoming_adspend"' do
|
67
|
+
it 'should work' do
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
describe 'test attribute "other_reserves"' do
|
73
|
+
it 'should work' do
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
60
78
|
describe 'test attribute "holdback"' do
|
61
79
|
it 'should work' do
|
62
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: DealMakerAPI
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.104.
|
4
|
+
version: 0.104.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DealMaker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|