DealMakerAPI 0.93.2 → 0.93.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,32 +11,44 @@ OpenAPI Generator version: 7.2.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for DealMakerAPI::PostDealIncentivePlanRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe DealMakerAPI::PostDealIncentivePlanRequest do
21
+ let(:instance) { DealMakerAPI::PostDealIncentivePlanRequest.new }
22
+
23
+ describe 'test an instance of PostDealIncentivePlanRequest' do
24
+ it 'should create an instance of PostDealIncentivePlanRequest' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(DealMakerAPI::PostDealIncentivePlanRequest)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "active_at"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
14
35
 
15
- describe DealMakerAPI::Configuration do
16
- let(:config) { DealMakerAPI::Configuration.default }
17
-
18
- before(:each) do
19
- # uncomment below to setup host and base_path
20
- # require 'URI'
21
- # uri = URI.parse("http://api.dealmaker.tech")
22
- # DealMakerAPI.configure do |c|
23
- # c.host = uri.host
24
- # c.base_path = uri.path
25
- # end
36
+ describe 'test attribute "funded_by_offset"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
26
40
  end
27
41
 
28
- describe '#base_url' do
29
- it 'should have the default value' do
30
- # uncomment below to test default value of the base path
31
- # expect(config.base_url).to eq("http://api.dealmaker.tech")
42
+ describe 'test attribute "tiers_incentive_percentage"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
32
45
  end
46
+ end
33
47
 
34
- it 'should remove trailing slashes' do
35
- [nil, '', '/', '//'].each do |base_path|
36
- config.base_path = base_path
37
- # uncomment below to test trailing slashes
38
- # expect(config.base_url).to eq("http://api.dealmaker.tech")
39
- end
48
+ describe 'test attribute "tiers_end_at"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
40
51
  end
41
52
  end
53
+
42
54
  end
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.93.2
4
+ version: 0.93.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - DealMaker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-14 00:00:00.000000000 Z
11
+ date: 2023-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -79,6 +79,7 @@ files:
79
79
  - docs/IncentivePlanApi.md
80
80
  - docs/InvestorApi.md
81
81
  - docs/InvestorProfileApi.md
82
+ - docs/PatchDealIncentivePlanRequest.md
82
83
  - docs/PatchInvestorProfilesCorporations.md
83
84
  - docs/PatchInvestorProfilesCorporationsBeneficialOwnersInner.md
84
85
  - docs/PatchInvestorProfilesIndividuals.md
@@ -86,6 +87,7 @@ files:
86
87
  - docs/PatchInvestorProfilesTrusts.md
87
88
  - docs/PatchInvestorProfilesTrustsTrusteesInner.md
88
89
  - docs/PatchInvestorRequest.md
90
+ - docs/PostDealIncentivePlanRequest.md
89
91
  - docs/PostDealsIdInvestors.md
90
92
  - docs/PostInvestorProfilesCorporations.md
91
93
  - docs/PostInvestorProfilesCorporationsBeneficialOwnersInner.md
@@ -201,6 +203,7 @@ files:
201
203
  - lib/DealMakerAPI/models/create_shareholder_action_request.rb
202
204
  - lib/DealMakerAPI/models/edit_investor_tags_request.rb
203
205
  - lib/DealMakerAPI/models/generate_url_request.rb
206
+ - lib/DealMakerAPI/models/patch_deal_incentive_plan_request.rb
204
207
  - lib/DealMakerAPI/models/patch_investor_profiles_corporations.rb
205
208
  - lib/DealMakerAPI/models/patch_investor_profiles_corporations_beneficial_owners_inner.rb
206
209
  - lib/DealMakerAPI/models/patch_investor_profiles_individuals.rb
@@ -208,6 +211,7 @@ files:
208
211
  - lib/DealMakerAPI/models/patch_investor_profiles_trusts.rb
209
212
  - lib/DealMakerAPI/models/patch_investor_profiles_trusts_trustees_inner.rb
210
213
  - lib/DealMakerAPI/models/patch_investor_request.rb
214
+ - lib/DealMakerAPI/models/post_deal_incentive_plan_request.rb
211
215
  - lib/DealMakerAPI/models/post_deals_id_investors.rb
212
216
  - lib/DealMakerAPI/models/post_investor_profiles_corporations.rb
213
217
  - lib/DealMakerAPI/models/post_investor_profiles_corporations_beneficial_owners_inner.rb
@@ -305,8 +309,6 @@ files:
305
309
  - spec/api/upload_api_spec.rb
306
310
  - spec/api/user_api_spec.rb
307
311
  - spec/api/users_api_spec.rb
308
- - spec/api_client_spec.rb
309
- - spec/configuration_spec.rb
310
312
  - spec/models/add506c_document_request_spec.rb
311
313
  - spec/models/add_document_request_spec.rb
312
314
  - spec/models/bulk_upload_investors_request_spec.rb
@@ -317,6 +319,7 @@ files:
317
319
  - spec/models/create_shareholder_action_request_spec.rb
318
320
  - spec/models/edit_investor_tags_request_spec.rb
319
321
  - spec/models/generate_url_request_spec.rb
322
+ - spec/models/patch_deal_incentive_plan_request_spec.rb
320
323
  - spec/models/patch_investor_profiles_corporations_beneficial_owners_inner_spec.rb
321
324
  - spec/models/patch_investor_profiles_corporations_spec.rb
322
325
  - spec/models/patch_investor_profiles_individuals_spec.rb
@@ -324,6 +327,7 @@ files:
324
327
  - spec/models/patch_investor_profiles_trusts_spec.rb
325
328
  - spec/models/patch_investor_profiles_trusts_trustees_inner_spec.rb
326
329
  - spec/models/patch_investor_request_spec.rb
330
+ - spec/models/post_deal_incentive_plan_request_spec.rb
327
331
  - spec/models/post_deals_id_investors_spec.rb
328
332
  - spec/models/post_investor_profiles_corporations_beneficial_owners_inner_spec.rb
329
333
  - spec/models/post_investor_profiles_corporations_spec.rb
@@ -445,8 +449,6 @@ test_files:
445
449
  - spec/api/deals_api_spec.rb
446
450
  - spec/api/company_api_spec.rb
447
451
  - spec/api/incentive_plan_api_spec.rb
448
- - spec/api_client_spec.rb
449
- - spec/configuration_spec.rb
450
452
  - spec/models/v1_entities_state_spec.rb
451
453
  - spec/models/v1_entities_attachment_spec.rb
452
454
  - spec/models/v1_entities_bulk_upload_details_spec.rb
@@ -495,6 +497,7 @@ test_files:
495
497
  - spec/models/v1_entities_shareholder_spec.rb
496
498
  - spec/models/v1_entities_shareholders_tags_spec.rb
497
499
  - spec/models/put_deals_id_script_tag_environment_request_spec.rb
500
+ - spec/models/post_deal_incentive_plan_request_spec.rb
498
501
  - spec/models/patch_investor_profiles_trusts_spec.rb
499
502
  - spec/models/post_deals_id_investors_spec.rb
500
503
  - spec/models/v1_entities_investor_profile_fields_corporation_spec.rb
@@ -540,6 +543,7 @@ test_files:
540
543
  - spec/models/create_company_request_spec.rb
541
544
  - spec/models/v1_entities_investor_profile_corporation_spec.rb
542
545
  - spec/models/generate_url_request_spec.rb
546
+ - spec/models/patch_deal_incentive_plan_request_spec.rb
543
547
  - spec/models/v1_entities_deal_investor_metrics_spec.rb
544
548
  - spec/models/create_bulk_upload_request_spec.rb
545
549
  - spec/models/v1_entities_webhooks_security_token_spec.rb