DealMakerAPI 0.93.4 → 0.94.0
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75b9c56e2a424838727bc9cc3578681874711aeb3b684647fe8b6ffa165170f7
|
4
|
+
data.tar.gz: 93418b2f5a2d973b454f95a9bb289826062805e53dd07892f9996f16355629a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f0e99d98fc019083b6735918e15345825c94ebf9aeb18a8b52bc5a755a8a43d61bdbe8908c747a9b915c86af4a074c51735eff7e6db0879fa3ab2245d736ad6
|
7
|
+
data.tar.gz: 639d2472760e8cc6215091f7a28645d04c2b5871c78fb592c82b5209a0e96569dcba6f677f61a34a09a18fcce44dc825b732cc2373ff3a13ba2b339eae16c721
|
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.
|
341
|
+
- Package version: 0.94.0
|
342
342
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
343
343
|
|
344
344
|
## Installation
|
@@ -354,16 +354,16 @@ gem build DealMakerAPI.gemspec
|
|
354
354
|
Then either install the gem locally:
|
355
355
|
|
356
356
|
```shell
|
357
|
-
gem install ./DealMakerAPI-0.
|
357
|
+
gem install ./DealMakerAPI-0.94.0.gem
|
358
358
|
```
|
359
359
|
|
360
|
-
(for development, run `gem install --dev ./DealMakerAPI-0.
|
360
|
+
(for development, run `gem install --dev ./DealMakerAPI-0.94.0.gem` to install the development dependencies)
|
361
361
|
|
362
362
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
363
363
|
|
364
364
|
Finally add this to the Gemfile:
|
365
365
|
|
366
|
-
gem 'DealMakerAPI', '~> 0.
|
366
|
+
gem 'DealMakerAPI', '~> 0.94.0'
|
367
367
|
|
368
368
|
### Install from Git
|
369
369
|
|
@@ -5,6 +5,7 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **id** | **Integer** | The incentive plan id. | [optional] |
|
8
|
+
| **humanized_index** | **Integer** | The humanized index of the incentive plan. | [optional] |
|
8
9
|
| **deal_id** | **Integer** | The deal id. | [optional] |
|
9
10
|
| **plan_type** | **String** | The incentive plan type. | [optional] |
|
10
11
|
| **funded_by_offset** | **Integer** | The incentive plan funded by offset. | [optional] |
|
@@ -20,6 +21,7 @@ require 'DealMakerAPI'
|
|
20
21
|
|
21
22
|
instance = DealMakerAPI::V1EntitiesDealsIncentivePlan.new(
|
22
23
|
id: null,
|
24
|
+
humanized_index: null,
|
23
25
|
deal_id: null,
|
24
26
|
plan_type: null,
|
25
27
|
funded_by_offset: null,
|
@@ -18,6 +18,9 @@ module DealMakerAPI
|
|
18
18
|
# The incentive plan id.
|
19
19
|
attr_accessor :id
|
20
20
|
|
21
|
+
# The humanized index of the incentive plan.
|
22
|
+
attr_accessor :humanized_index
|
23
|
+
|
21
24
|
# The deal id.
|
22
25
|
attr_accessor :deal_id
|
23
26
|
|
@@ -64,6 +67,7 @@ module DealMakerAPI
|
|
64
67
|
def self.attribute_map
|
65
68
|
{
|
66
69
|
:'id' => :'id',
|
70
|
+
:'humanized_index' => :'humanized_index',
|
67
71
|
:'deal_id' => :'deal_id',
|
68
72
|
:'plan_type' => :'plan_type',
|
69
73
|
:'funded_by_offset' => :'funded_by_offset',
|
@@ -83,6 +87,7 @@ module DealMakerAPI
|
|
83
87
|
def self.openapi_types
|
84
88
|
{
|
85
89
|
:'id' => :'Integer',
|
90
|
+
:'humanized_index' => :'Integer',
|
86
91
|
:'deal_id' => :'Integer',
|
87
92
|
:'plan_type' => :'String',
|
88
93
|
:'funded_by_offset' => :'Integer',
|
@@ -118,6 +123,10 @@ module DealMakerAPI
|
|
118
123
|
self.id = attributes[:'id']
|
119
124
|
end
|
120
125
|
|
126
|
+
if attributes.key?(:'humanized_index')
|
127
|
+
self.humanized_index = attributes[:'humanized_index']
|
128
|
+
end
|
129
|
+
|
121
130
|
if attributes.key?(:'deal_id')
|
122
131
|
self.deal_id = attributes[:'deal_id']
|
123
132
|
end
|
@@ -180,6 +189,7 @@ module DealMakerAPI
|
|
180
189
|
return true if self.equal?(o)
|
181
190
|
self.class == o.class &&
|
182
191
|
id == o.id &&
|
192
|
+
humanized_index == o.humanized_index &&
|
183
193
|
deal_id == o.deal_id &&
|
184
194
|
plan_type == o.plan_type &&
|
185
195
|
funded_by_offset == o.funded_by_offset &&
|
@@ -198,7 +208,7 @@ module DealMakerAPI
|
|
198
208
|
# Calculates hash code according to all attributes.
|
199
209
|
# @return [Integer] Hash code
|
200
210
|
def hash
|
201
|
-
[id, deal_id, plan_type, funded_by_offset, active_at, created_at, updated_at, tiers].hash
|
211
|
+
[id, humanized_index, deal_id, plan_type, funded_by_offset, active_at, created_at, updated_at, tiers].hash
|
202
212
|
end
|
203
213
|
|
204
214
|
# Builds the object from hash
|
data/lib/DealMakerAPI/version.rb
CHANGED
@@ -33,6 +33,12 @@ describe DealMakerAPI::V1EntitiesDealsIncentivePlan do
|
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
+
describe 'test attribute "humanized_index"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
36
42
|
describe 'test attribute "deal_id"' do
|
37
43
|
it 'should work' do
|
38
44
|
# 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.
|
4
|
+
version: 0.94.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DealMaker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|