DealMakerAPI 0.93.0 → 0.93.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -37,7 +37,7 @@ describe 'InvestorProfileApi' do
37
37
  # Create new corporation investor profile associated to the user by email.
38
38
  # @param investor_profiles_corporations
39
39
  # @param [Hash] opts the optional parameters
40
- # @return [V1EntitiesInvestorProfileCorporation]
40
+ # @return [V1EntitiesInvestorProfileId]
41
41
  describe 'create_corporation_profile test' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -49,7 +49,7 @@ describe 'InvestorProfileApi' do
49
49
  # Create new individual investor profile associated to the user by email.
50
50
  # @param investor_profiles_individuals
51
51
  # @param [Hash] opts the optional parameters
52
- # @return [V1EntitiesInvestorProfileIndividual]
52
+ # @return [V1EntitiesInvestorProfileId]
53
53
  describe 'create_individual_profile test' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -61,7 +61,7 @@ describe 'InvestorProfileApi' do
61
61
  # Create new joint investor profile associated to the user by email.
62
62
  # @param investor_profiles_joints
63
63
  # @param [Hash] opts the optional parameters
64
- # @return [V1EntitiesInvestorProfileJoint]
64
+ # @return [V1EntitiesInvestorProfileId]
65
65
  describe 'create_joint_profile test' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -73,7 +73,7 @@ describe 'InvestorProfileApi' do
73
73
  # Create new managed investor profile associated to the user by email.
74
74
  # @param investor_profiles_managed
75
75
  # @param [Hash] opts the optional parameters
76
- # @return [V1EntitiesInvestorProfileManaged]
76
+ # @return [V1EntitiesInvestorProfileId]
77
77
  describe 'create_managed_profile test' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -85,7 +85,7 @@ describe 'InvestorProfileApi' do
85
85
  # Create new trust investor profile associated to the user by email.
86
86
  # @param investor_profiles_trusts
87
87
  # @param [Hash] opts the optional parameters
88
- # @return [V1EntitiesInvestorProfileTrust]
88
+ # @return [V1EntitiesInvestorProfileId]
89
89
  describe 'create_trust_profile test' do
90
90
  it 'should work' do
91
91
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -94,7 +94,7 @@ describe 'InvestorProfileApi' do
94
94
 
95
95
  # unit tests for get_deal_investor_profiles
96
96
  # Get list of InvestorProfiles for a specific deal
97
- # Get investor profiles for a specific deal
97
+ # Get investor profiles for a specific deal. Because an investor profile belongs to the user associated with it, external applications may not use this endpoint for other profiles. Only the user may use this endpoint for their own profiles (i.e. to see existing profiles within the DealMaker application).
98
98
  # @param deal_id The deal id.
99
99
  # @param [Hash] opts the optional parameters
100
100
  # @option opts [Integer] :page Page offset to fetch.
@@ -110,7 +110,7 @@ describe 'InvestorProfileApi' do
110
110
 
111
111
  # unit tests for get_investor_profile
112
112
  # Get an investor profile by id
113
- # Get an investor profile
113
+ # Get an investor profile. Because an investor profile belongs to the user associated with it, external applications may not use this endpoint for other profiles. Only the user may use this endpoint for their own profiles (i.e. to see existing profiles within the DealMaker application).
114
114
  # @param id The id of the investor profile.
115
115
  # @param [Hash] opts the optional parameters
116
116
  # @return [V1EntitiesInvestorProfileItem]
@@ -122,7 +122,7 @@ describe 'InvestorProfileApi' do
122
122
 
123
123
  # unit tests for get_investor_profiles
124
124
  # Get list of InvestorProfiles
125
- # Get investor profiles
125
+ # Get investor profiles. Because an investor profile belongs to the user associated with it, external applications may not use this endpoint for other profiles. Only the user may use this endpoint for their own profiles (i.e. to see existing profiles within the DealMaker application).
126
126
  # @param [Hash] opts the optional parameters
127
127
  # @option opts [Integer] :page Page offset to fetch.
128
128
  # @option opts [Integer] :per_page Number of results to return per page.
@@ -140,7 +140,7 @@ describe 'InvestorProfileApi' do
140
140
  # @param investor_profile_id
141
141
  # @param investor_profiles_corporations
142
142
  # @param [Hash] opts the optional parameters
143
- # @return [V1EntitiesInvestorProfileCorporation]
143
+ # @return [V1EntitiesInvestorProfileId]
144
144
  describe 'patch_corporation_profile test' do
145
145
  it 'should work' do
146
146
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -153,7 +153,7 @@ describe 'InvestorProfileApi' do
153
153
  # @param investor_profile_id
154
154
  # @param investor_profiles_individuals
155
155
  # @param [Hash] opts the optional parameters
156
- # @return [V1EntitiesInvestorProfileIndividual]
156
+ # @return [V1EntitiesInvestorProfileId]
157
157
  describe 'patch_individual_profile test' do
158
158
  it 'should work' do
159
159
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -166,7 +166,7 @@ describe 'InvestorProfileApi' do
166
166
  # @param investor_profile_id
167
167
  # @param investor_profiles_joints
168
168
  # @param [Hash] opts the optional parameters
169
- # @return [V1EntitiesInvestorProfileJoint]
169
+ # @return [V1EntitiesInvestorProfileId]
170
170
  describe 'patch_joint_profile test' do
171
171
  it 'should work' do
172
172
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -179,7 +179,7 @@ describe 'InvestorProfileApi' do
179
179
  # @param investor_profile_id
180
180
  # @param investor_profiles_trusts
181
181
  # @param [Hash] opts the optional parameters
182
- # @return [V1EntitiesInvestorProfileTrust]
182
+ # @return [V1EntitiesInvestorProfileId]
183
183
  describe 'patch_trust_profile test' do
184
184
  it 'should work' do
185
185
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -0,0 +1,36 @@
1
+ =begin
2
+ #DealMaker API
3
+
4
+ ## Introduction Welcome to DealMaker’s Web API v1! This API is RESTful, easy to integrate with, and offers support in 2 different languages. This is the technical documentation for our API. There are tutorials and examples of integrations with our API available on our [knowledge centre](https://help.dealmaker.tech/training-centre) as well. # Libraries - Javascript - Ruby # Authentication To authenticate, add an Authorization header to your API request that contains an access token. Before you [generate an access token](#how-to-generate-an-access-token) your must first [create an application](#create-an-application) on your portal and retrieve the your client ID and secret ## Create an Application DealMaker’s Web API v1 supports the use of OAuth applications. Applications can be generated in your [account](https://app.dealmaker.tech/developer/applications). To create an API Application, click on your user name in the top right corner to open a dropdown menu, and select \"Integrations\". Under the API settings tab, click the `Create New Application` button ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-1.png) Name your application and assign the level of permissions for this application ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-2.png) Once your application is created, save in a secure space your client ID and secret. **WARNING**: The secret key will not be visible after you click the close button ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-3.png) From the developer tab, you will be able to view and manage all the available applications ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-4.png) Each Application consists of a client id, secret and set of scopes. The scopes define what resources you want to have access to. The client ID and secret are used to generate an access token. You will need to create an application to use API endpoints. ## How to generate an access token After creating an application, you must make a call to obtain a bearer token using the Generate an OAuth token operation. This operation requires the following parameters: `token endpoint` - https://app.dealmaker.tech/oauth/token `grant_type` - must be set to `client_credentials` `client_id` - the Client ID displayed when you created the OAuth application in the previous step `client_secret` - the Client Secret displayed when you created the OAuth application in the previous step `scope` - the scope is established when you created the OAuth application in the previous step Note: The Generate an OAuth token response specifies how long the bearer token is valid for. You should reuse the bearer token until it is expired. When the token is expired, call Generate an OAuth token again to generate a new one. To use the access token, you must set a plain text header named `Authorization` with the contents of the header being “Bearer XXX” where XXX is your generated access token. ### Example #### Postman Here's an example on how to generate the access token with Postman, where `{{CLIENT_ID}}` and `{{CLIENT_SECRET}}` are the values generated after following the steps on [Create an Application](#create-an-application) ![Get access token postman example](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/token-postman.png) # Status Codes ## Content-Type Header All responses are returned in JSON format. We specify this by sending the Content-Type header. ## Status Codes Below is a table containing descriptions of the various status codes we currently support against various resources. Sometimes your API call will generate an error. Here you will find additional information about what to expect if you don’t format your request properly, or we fail to properly process your request. | Status Code | Description | | ----------- | ----------- | | `200` | Success | | `403` | Forbidden | | `404` | Not found | # Pagination Pagination is used to divide large responses is smaller portions (pages). By default, all endpoints return a maximum of 25 records per page. You can change the number of records on a per request basis by passing a `per_page` parameter in the request header parameters. The largest supported `per_page` parameter is 100. When the response exceeds the `per_page` parameter, you can paginate through the records by increasing the `offset` parameter. Example: `offset=25` will return 25 records starting from 26th record. You may also paginate using the `page` parameter to indicate the page number you would like to show on the response. Please review the table below for the input parameters ## Inputs | Parameter | Description | | ---------- | ------------------------------------------------------------------------------- | | `per_page` | Amount of records included on each page (Default is 25) | | `page` | Page number | | `offset` | Amount of records offset on the API request where 0 represents the first record | ## Response Headers | Response Header | Description | | --------------- | -------------------------------------------- | | `X-Total` | Total number of records of response | | `X-Total-Pages` | Total number of pages of response | | `X-Per-Page` | Total number of records per page of response | | `X-Page` | Number of current page | | `X-Next-Page` | Number of next page | | `X-Prev-Page` | Number of previous page | | `X-Offset` | Total number of records offset | # Search and Filtering (The q parameter) The q optional parameter accepts a string as input and allows you to filter the request based on that string. Please note that search strings must be encoded according to ASCII. For example, \"john+investor&#64;dealmaker.tech\" should be passed as “john%2Binvestor%40dealmaker.tech”. There are two main ways to filter with it. ## Keyword filtering Some keywords allow you to filter investors based on a specific “scope” of the investors, for example using the string “Invited” will filter all investors with the status invited, and the keyword “Has attachments” will filter investors with attachments. Here’s a list of possible keywords and the “scope” each one of the keywords filters by: | Keywords | Scope | Decoded Example | Encoded Example | | ---------------------------------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | | Signed on \\(date range\\) | Investors who signed in the provided date range | Signed on (date range) [2020-07-01:2020-07-31] | `Signed%20on%20%28date%20range%29%20%5B2020-07-01%3A2020-07-31%5D` | | Enabled for countersignature on \\(date range\\) | Investors who were enabled for counter signature in the provided date range | Enabled for countersignature on (date range) [2022-05-24:2022-05-25] | `Enabled%20for%20countersignature%20on%20(date%20range)%20%5B2022-05-24%3A2022-05-25%5D` | | Accepted on \\(date range\\) | Investors accepted in the provided date rage | Accepted on (date range) [2022-05-24:2022-05-25] | `Accepted%20on%20(date%20range)%20%5B2022-05-24%3A2022-05-25%5D` | | Offline | Investors added to the deal offline | Offline | `Offline` | | Online | Investors added to the deal online | Online | `Online` | | Signed | Investors who signed their agreement | Signed | `Signed` | | Waiting for countersignature | Investors who have signed and are waiting for counter signature | Waiting for countersignature | `Waiting%20for%20countersignature` | | Invited | Investors on the Invited Status | Invited | `Invited` | | Accepted | Investors in the Accepted Status | Accepted | `Accepted` | | Questionnaire in progress | All Investors who have not finished completing the questionnaire | Questionnaire in progress | `Questionnaire%20in%20progress` | | Has attachments | All Investors with attachments | Has attachments | `Has%20attachments` | | Has notes | All Investors with notes | Has notes | `Has%20notes` | | Waiting for co-signature | Investors who have signed and are waiting for co-signature | Waiting for co-signature | `Waiting%20for%20co-signature` | | Background Check Approved | Investors with approved background check | Background Check Approved | `Background%20Check%20Approved` | | Document Review Pending | Investors with pending review | Document Review Pending | `Document%20Review%20Pending` | | Document Upload Pending | Investors with pending documents to upload | Document Upload Pending | `Document%20Upload%20Pending` | | Required adjudicator review | Investors who are required to be review by the adjudicator | Required adjudicator review | `Required%20adjudicator%20review` | --- **NOTE** Filtering keywords are case sensitive and need to be encoded --- ## Search String Any value for the parameter which does not match one of the keywords listed above, will use fields like `first name`, `last name`, `email`, `tags` to search for the investor. For example, if you search “Robert”, because this does not match one of the keywords listed above, it will then return any investors who have the string “Robert” in their name, email, or tags fields. # Versioning The latest version is v1. The version can be updated on the `Accept` header, just set the version as stated on the following example: ``` Accept:application/vnd.dealmaker-v1+json ``` | Version | Accept Header | | ------- | ----------------------------------- | | `v1` | application/vnd.dealmaker-`v1`+json | # SDK’s For instruction on installing SDKs, please view the following links - [Javascript](https://github.com/DealMakerTech/api/tree/main/v1/clients/javascript) - [Ruby](https://github.com/DealMakerTech/api/tree/main/v1/clients/ruby) # Webhooks Our webhooks functionality allows clients to automatically receive updates on a deal's investor data. Some of the data that the webhooks include: - Investor Name - Date created - Email - Phone - Allocation - Attachments - Accredited investor status - Accredited investor category - State (Draft, Invited, Signed, Accepted, Waiting, Inactive) Via webhooks clients can subscribe to the following events as they happen on Dealmaker: - Investor is created - Investor details are updated (any of the investor details above change or are updated) - Investor has signed their agreement - Invertor fully funded their investment - Investor has been accepted - Investor is deleted A URL supplied by the client will receive all the events with the information as part of the payload. Clients are able to add and update the URL within DealMaker. ## Configuration For a comprehensive guide on how to configure Webhooks please visit our support article: [Configuring Webhooks on DealMaker – DealMaker Support](https://help.dealmaker.tech/configuring-webhooks-on-dealmaker). As a developer user on DealMaker, you are able to configure webhooks by following the steps below: 1. Sign into Dealmaker 2. Go to **“Your profile”** in the top right corner 3. Access an **“Integrations”** configuration via the left menu 4. The developer configures webhooks by including: - The HTTPS URL where the request will be sent - Optionally, a security token that we would use to build a SHA1 hash that would be included in the request headers. The name of the header is `X-DealMaker-Signature`. If the secret is not specified, the hash won’t be included in the headers. - The Deal(s) to include in the webhook subscription - An email address that will be used to notify about errors. 5. The developers can disable webhooks temporarily if needed ## Specification ### Events The initial set of events will be related to the investor. The events are: 1. `investor.created` - Triggers every time a new investor is added to a deal 2. `investor.updated` - Triggers on updates to any of the following fields: - Status - Name - Email - (this is a user field so we trigger event for all investors with webhook subscription) - Allocated Amount - Investment Amount - Accredited investor fields - Adding or removing attachments - Tags - When the investor status is signed, the payload also includes a link to the signed document; the link expires after 30 minutes 3. `investor.signed` - Triggers when the investor signs their subscription agreement (terms and conditions) - When this happens the investor.state becomes `signed` - This event includes the same fields as the `investor.updated` event 4. `investor.funded` - Triggers when the investor becomes fully funded - This happens when the investor.funded_state becomes `funded` - This event includes the same fields as the `investor.updated` event 5. `investor.accepted` - Triggers when the investor is countersigned - When this happens the investor.state becomes `accepted` - This event includes the same fields as the `investor.updated` event 6. `investor.deleted` - Triggers when the investor is removed from the deal - The investor key of the payload only includes investor ID - The deal is not included in the payload. Due to our implementation it’s impossible to retrieve the deal the investor was part of ### Requests - The request is a `POST` - The payload’s `content-type` is `application/json` - Only `2XX` responses are considered successful. In the event of a different response, we consider it failed and queue the event for retry - We retry the request five times, after the initial attempt. Doubling the waiting time between intervals with each try. The first retry happens after 30 seconds, then 60 seconds, 2 mins, 4 minutes, and 8 minutes. This timing scheme gives the receiver about 1 hour if all the requests fail - If an event fails all the attempts to be delivered, we send an email to the address that the user configured ### Payload #### Common Properties There will be some properties that are common to all the events on the system. | Key | Type | Description | | ----------------- | ------ | -------------------------------------------------------------------------------------- | | event | String | The event that triggered the call | | event_id | String | A unique identifier for the event | | deal<sup>\\*</sup> | Object | The deal in which the event occurred. please see below for an example on the deal object<sup>\\*\\*</sup> | <sup>\\*</sup>This field is not included when deleting a resource <sup>\\*\\*</sup> Sample Deal Object in the webhook payload ```json \"deal\": { \"id\": 0, \"title\": \"string\", \"created_at\": \"2022-12-06T18:14:44.000Z\", \"updated_at\": \"2022-12-08T12:46:48.000Z\", \"state\": \"string\", \"currency\": \"string\", \"security_type\": \"string\", \"price_per_security\": 0.00, \"deal_type\": \"string\", \"minimum_investment\": 0, \"maximum_investment\": 0, \"issuer\": { \"id\": 0, \"name\": \"string\" }, \"enterprise\": { \"id\": 0, \"name\": \"string\" } } ``` #### Common Properties (investor scope) By design, we have incorporated on the webhooks payload the same investor-related fields included in the Investor model, for reference on the included fields, their types and values please click [here](https://docs.dealmaker.tech/#tag/investor_model). This will allow you to get all the necessary information you need about a particular investor without having to call the Get Investor by ID endpoint. | #### Investor State Here is a brief description of each investor state: - **Draft:** the investor is added to the platform but hasn't been invited yet and cannot access the portal - **Invited:** the investor was added to the platform but hasn’t completed the questionnaire - **Signed:** the investor signed the document (needs approval from Lawyer or Reviewer before countersignature) - **Waiting:** the investor was approved for countersignature by any of the Lawyers or Reviewers in the deal - **Accepted:** the investor's agreement was countersigned by the Signatory - **Inactive** the investor is no longer eligible to participate in the offering. This may be because their warrant expired, they requested a refund, or they opted out of the offering #### Update Delay Given the high number of updates our platform performs on any investor, we’ve added a cool down period on update events that allows us to “group” updates and trigger only one every minute. In consequence, update events will be delivered 1 minute after the initial request was made and will include the latest version of the investor data at delivery time.
5
+
6
+ The version of the OpenAPI document: 1.75.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.2.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for DealMakerAPI::V1EntitiesInvestorProfileId
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe DealMakerAPI::V1EntitiesInvestorProfileId do
21
+ let(:instance) { DealMakerAPI::V1EntitiesInvestorProfileId.new }
22
+
23
+ describe 'test an instance of V1EntitiesInvestorProfileId' do
24
+ it 'should create an instance of V1EntitiesInvestorProfileId' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(DealMakerAPI::V1EntitiesInvestorProfileId)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "id"' 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
35
+
36
+ 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.0
4
+ version: 0.93.2
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-07 00:00:00.000000000 Z
11
+ date: 2023-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -147,6 +147,7 @@ files:
147
147
  - docs/V1EntitiesInvestorProfileFieldsSigningOfficer.md
148
148
  - docs/V1EntitiesInvestorProfileFieldsTrust.md
149
149
  - docs/V1EntitiesInvestorProfileFieldsTrustee.md
150
+ - docs/V1EntitiesInvestorProfileId.md
150
151
  - docs/V1EntitiesInvestorProfileIndividual.md
151
152
  - docs/V1EntitiesInvestorProfileItem.md
152
153
  - docs/V1EntitiesInvestorProfileJoint.md
@@ -264,6 +265,7 @@ files:
264
265
  - lib/DealMakerAPI/models/v1_entities_investor_profile_fields_signing_officer.rb
265
266
  - lib/DealMakerAPI/models/v1_entities_investor_profile_fields_trust.rb
266
267
  - lib/DealMakerAPI/models/v1_entities_investor_profile_fields_trustee.rb
268
+ - lib/DealMakerAPI/models/v1_entities_investor_profile_id.rb
267
269
  - lib/DealMakerAPI/models/v1_entities_investor_profile_individual.rb
268
270
  - lib/DealMakerAPI/models/v1_entities_investor_profile_item.rb
269
271
  - lib/DealMakerAPI/models/v1_entities_investor_profile_joint.rb
@@ -378,6 +380,7 @@ files:
378
380
  - spec/models/v1_entities_investor_profile_fields_signing_officer_spec.rb
379
381
  - spec/models/v1_entities_investor_profile_fields_trust_spec.rb
380
382
  - spec/models/v1_entities_investor_profile_fields_trustee_spec.rb
383
+ - spec/models/v1_entities_investor_profile_id_spec.rb
381
384
  - spec/models/v1_entities_investor_profile_individual_spec.rb
382
385
  - spec/models/v1_entities_investor_profile_item_spec.rb
383
386
  - spec/models/v1_entities_investor_profile_joint_spec.rb
@@ -430,118 +433,119 @@ signing_key:
430
433
  specification_version: 4
431
434
  summary: A ruby wrapper for the DealMaker API
432
435
  test_files:
433
- - spec/api/users_api_spec.rb
436
+ - spec/api/investor_profile_api_spec.rb
434
437
  - spec/api/investor_api_spec.rb
435
- - spec/api/incentive_plan_api_spec.rb
436
- - spec/api/country_api_spec.rb
437
- - spec/api/deals_api_spec.rb
438
+ - spec/api/users_api_spec.rb
438
439
  - spec/api/deal_api_spec.rb
439
- - spec/api/investor_profile_api_spec.rb
440
- - spec/api/upload_api_spec.rb
441
440
  - spec/api/user_api_spec.rb
442
- - spec/api/company_api_spec.rb
443
- - spec/api/default_api_spec.rb
441
+ - spec/api/upload_api_spec.rb
444
442
  - spec/api/shareholder_api_spec.rb
443
+ - spec/api/default_api_spec.rb
444
+ - spec/api/country_api_spec.rb
445
+ - spec/api/deals_api_spec.rb
446
+ - spec/api/company_api_spec.rb
447
+ - spec/api/incentive_plan_api_spec.rb
445
448
  - spec/api_client_spec.rb
446
449
  - spec/configuration_spec.rb
447
- - spec/models/v1_entities_webhooks_security_token_spec.rb
448
- - spec/models/v1_entities_subscription_agreement_spec.rb
449
- - spec/models/v1_entities_investor_profile_trust_spec.rb
450
- - spec/models/v1_entities_presigned_url_result_spec.rb
451
- - spec/models/put_deals_id_investors_spec.rb
452
- - spec/models/v1_entities_investor_profile_corporation_spec.rb
453
- - spec/models/v1_entities_deals_price_details_spec.rb
454
- - spec/models/v1_entities_investor_profile_item_spec.rb
455
- - spec/models/v1_entities_investor_profile_fields_account_holder_spec.rb
456
- - spec/models/edit_investor_tags_request_spec.rb
450
+ - spec/models/v1_entities_state_spec.rb
451
+ - spec/models/v1_entities_attachment_spec.rb
452
+ - spec/models/v1_entities_bulk_upload_details_spec.rb
453
+ - spec/models/v1_entities_money_entity_spec.rb
454
+ - spec/models/v1_entities_investor_profile_address_spec.rb
455
+ - spec/models/v1_entities_express_wire_instructions_spec.rb
457
456
  - spec/models/post_investor_profiles_corporations_beneficial_owners_inner_spec.rb
458
- - spec/models/v1_entities_dividends_spec.rb
459
- - spec/models/v1_entities_webhooks_deal_spec.rb
460
- - spec/models/post_webhooks_request_spec.rb
461
- - spec/models/v1_entities_deal_enterprise_spec.rb
462
- - spec/models/v1_entities_investor_profile_fields_primary_holder_spec.rb
463
- - spec/models/add_document_request_spec.rb
464
- - spec/models/v1_entities_addresses_spec.rb
465
- - spec/models/post_investor_profiles_joints_spec.rb
466
- - spec/models/post_investor_profiles_trusts_trustees_inner_spec.rb
457
+ - spec/models/v1_entities_background_check_search_spec.rb
458
+ - spec/models/v1_entities_webhooks_subscription_deal_spec.rb
459
+ - spec/models/v1_entities_investor_spec.rb
460
+ - spec/models/v1_entities_deal_issuer_spec.rb
461
+ - spec/models/v1_entities_deals_incentive_plan_spec.rb
462
+ - spec/models/v1_entities_generic_response_spec.rb
463
+ - spec/models/v1_entities_investor_profile_individual_spec.rb
464
+ - spec/models/v1_entities_bulk_upload_spec.rb
467
465
  - spec/models/bulk_upload_investors_request_spec.rb
468
- - spec/models/v1_entities_country_spec.rb
469
- - spec/models/v1_entities_investor_profile_fields_provider_spec.rb
470
- - spec/models/v1_entities_deal_setup_spec.rb
471
- - spec/models/v1_entities_deal_investor_metrics_spec.rb
466
+ - spec/models/post_investor_profiles_joints_spec.rb
467
+ - spec/models/v1_entities_company_deals_spec.rb
468
+ - spec/models/v1_entities_investors_spec.rb
469
+ - spec/models/patch_investor_profiles_individuals_spec.rb
470
+ - spec/models/patch_investor_profiles_corporations_beneficial_owners_inner_spec.rb
471
+ - spec/models/v1_entities_investor_profile_fields_primary_holder_spec.rb
472
+ - spec/models/v1_entities_address_spec.rb
473
+ - spec/models/run_background_search_request_spec.rb
474
+ - spec/models/v1_entities_payments_self_serve_onboarding_payout_account_details_result_spec.rb
475
+ - spec/models/v1_entities_shareholders_spec.rb
476
+ - spec/models/patch_investor_profiles_joints_spec.rb
477
+ - spec/models/v1_entities_payments_self_serve_onboarding_qualification_questionnaire_result_spec.rb
478
+ - spec/models/v1_entities_deals_price_details_spec.rb
479
+ - spec/models/create_deal_setup_request_spec.rb
472
480
  - spec/models/put_webhooks_id_request_spec.rb
481
+ - spec/models/v1_entities_investor_profile_fields_beneficiary_spec.rb
482
+ - spec/models/v1_entities_investor_profile_id_spec.rb
483
+ - spec/models/patch_investor_profiles_trusts_trustees_inner_spec.rb
484
+ - spec/models/create_bulk_upload_detail_request_spec.rb
485
+ - spec/models/v1_entities_country_spec.rb
486
+ - spec/models/post_investor_profiles_trusts_spec.rb
487
+ - spec/models/v1_entities_investor_profile_fields_beneficial_owner_spec.rb
488
+ - spec/models/create_shareholder_action_request_spec.rb
489
+ - spec/models/v1_entities_investor_profiles_spec.rb
490
+ - spec/models/v1_entities_express_wire_instruction_spec.rb
491
+ - spec/models/v1_entities_company_deal_spec.rb
492
+ - spec/models/post_investor_profiles_corporations_spec.rb
493
+ - spec/models/v1_entities_countries_spec.rb
494
+ - spec/models/v1_entities_investor_profile_trust_spec.rb
473
495
  - spec/models/v1_entities_shareholder_spec.rb
474
- - spec/models/v1_entities_user_spec.rb
496
+ - spec/models/v1_entities_shareholders_tags_spec.rb
497
+ - spec/models/put_deals_id_script_tag_environment_request_spec.rb
498
+ - spec/models/patch_investor_profiles_trusts_spec.rb
475
499
  - spec/models/post_deals_id_investors_spec.rb
476
- - spec/models/v1_entities_investor_user_spec.rb
477
- - spec/models/v1_entities_deal_spec.rb
478
- - spec/models/v1_entities_investor_spec.rb
500
+ - spec/models/v1_entities_investor_profile_fields_corporation_spec.rb
479
501
  - spec/models/patch_investor_profiles_corporations_spec.rb
480
- - spec/models/patch_investor_profiles_trusts_spec.rb
481
- - spec/models/v1_entities_investor_profile_fields_signing_officer_spec.rb
502
+ - spec/models/v1_entities_dividends_spec.rb
503
+ - spec/models/v1_entities_deal_spec.rb
504
+ - spec/models/v1_entities_deal_setup_spec.rb
505
+ - spec/models/v1_entities_bulk_upload_detail_spec.rb
506
+ - spec/models/v1_entities_webhooks_deal_spec.rb
507
+ - spec/models/add506c_document_request_spec.rb
508
+ - spec/models/v1_entities_deal_funding_metrics_spec.rb
509
+ - spec/models/v1_entities_investor_profile_fields_trustee_spec.rb
510
+ - spec/models/post_webhooks_request_spec.rb
511
+ - spec/models/v1_entities_investor_otp_access_link_spec.rb
512
+ - spec/models/v1_entities_bulk_uploads_spec.rb
513
+ - spec/models/post_investor_profiles_trusts_trustees_inner_spec.rb
482
514
  - spec/models/v1_entities_payments_self_serve_onboarding_digital_payments_connection_data_spec.rb
515
+ - spec/models/v1_entities_user_spec.rb
516
+ - spec/models/v1_entities_company_spec.rb
483
517
  - spec/models/v1_entities_webhooks_subscription_spec.rb
484
518
  - spec/models/v1_entities_investor_profile_fields_trust_spec.rb
485
- - spec/models/v1_entities_shareholders_tags_spec.rb
486
- - spec/models/v1_entities_deals_incentive_plans_incentive_tier_spec.rb
487
- - spec/models/create_company_request_spec.rb
519
+ - spec/models/update_user_password_request_spec.rb
488
520
  - spec/models/post_investor_profiles_individuals_spec.rb
489
- - spec/models/v1_entities_deal_setup_user_spec.rb
490
- - spec/models/v1_entities_company_deals_spec.rb
491
- - spec/models/v1_entities_attachment_spec.rb
492
- - spec/models/v1_entities_bulk_upload_spec.rb
493
- - spec/models/v1_entities_shareholders_spec.rb
494
- - spec/models/v1_entities_express_wire_instructions_spec.rb
495
- - spec/models/v1_entities_investor_profile_managed_spec.rb
521
+ - spec/models/edit_investor_tags_request_spec.rb
496
522
  - spec/models/patch_investor_request_spec.rb
497
523
  - spec/models/v1_entities_investor_profile_joint_spec.rb
498
- - spec/models/v1_entities_investor_profile_fields_trustee_spec.rb
499
- - spec/models/v1_entities_deal_funding_metrics_spec.rb
500
- - spec/models/create_deal_setup_request_spec.rb
501
- - spec/models/v1_entities_bulk_upload_detail_spec.rb
502
- - spec/models/v1_entities_express_wire_instruction_spec.rb
503
- - spec/models/run_background_search_request_spec.rb
504
- - spec/models/put_deals_id_script_tag_environment_request_spec.rb
505
- - spec/models/v1_entities_countries_spec.rb
506
- - spec/models/patch_investor_profiles_trusts_trustees_inner_spec.rb
507
- - spec/models/v1_entities_state_spec.rb
508
- - spec/models/v1_entities_background_check_search_spec.rb
509
- - spec/models/create_bulk_upload_request_spec.rb
510
- - spec/models/v1_entities_company_deal_spec.rb
511
- - spec/models/v1_entities_investor_profile_fields_beneficial_owner_spec.rb
512
- - spec/models/v1_entities_deals_incentive_plan_spec.rb
513
- - spec/models/v1_entities_deal_issuer_spec.rb
514
- - spec/models/create_bulk_upload_detail_request_spec.rb
524
+ - spec/models/v1_entities_investor_profile_fields_provider_spec.rb
525
+ - spec/models/v1_entities_investor_profile_managed_spec.rb
526
+ - spec/models/v1_entities_deal_setup_user_spec.rb
527
+ - spec/models/put_deals_id_investors_spec.rb
528
+ - spec/models/v1_entities_subscription_agreement_spec.rb
529
+ - spec/models/v1_entities_addresses_spec.rb
530
+ - spec/models/post_investor_profiles_managed_spec.rb
531
+ - spec/models/v1_entities_deals_spec.rb
532
+ - spec/models/add_document_request_spec.rb
533
+ - spec/models/v1_entities_deals_incentive_plans_incentive_tier_spec.rb
534
+ - spec/models/v1_entities_investor_profile_fields_account_holder_spec.rb
535
+ - spec/models/v1_entities_presigned_url_result_spec.rb
515
536
  - spec/models/send_portal_invite_request_spec.rb
516
- - spec/models/v1_entities_payments_self_serve_onboarding_payout_account_details_result_spec.rb
517
- - spec/models/v1_entities_bulk_upload_details_spec.rb
518
- - spec/models/patch_investor_profiles_individuals_spec.rb
519
- - spec/models/v1_entities_bulk_uploads_spec.rb
537
+ - spec/models/v1_entities_investor_user_spec.rb
538
+ - spec/models/v1_entities_investor_profile_item_spec.rb
520
539
  - spec/models/v1_entities_webhooks_subscription_deals_spec.rb
521
- - spec/models/v1_entities_address_spec.rb
522
- - spec/models/v1_entities_dividend_spec.rb
523
- - spec/models/v1_entities_investor_profile_individual_spec.rb
524
- - spec/models/v1_entities_money_entity_spec.rb
525
- - spec/models/v1_entities_deals_spec.rb
526
- - spec/models/v1_entities_company_spec.rb
527
- - spec/models/v1_entities_investor_profile_fields_corporation_spec.rb
528
- - spec/models/post_investor_profiles_corporations_spec.rb
540
+ - spec/models/create_company_request_spec.rb
541
+ - spec/models/v1_entities_investor_profile_corporation_spec.rb
529
542
  - spec/models/generate_url_request_spec.rb
530
- - spec/models/v1_entities_investor_profiles_spec.rb
531
- - spec/models/v1_entities_generic_response_spec.rb
532
- - spec/models/update_user_password_request_spec.rb
533
- - spec/models/create_shareholder_action_request_spec.rb
534
- - spec/models/post_investor_profiles_managed_spec.rb
535
- - spec/models/v1_entities_investor_profile_fields_beneficiary_spec.rb
536
- - spec/models/v1_entities_investors_spec.rb
537
- - spec/models/v1_entities_investor_profile_owner_spec.rb
538
- - spec/models/patch_investor_profiles_joints_spec.rb
539
- - spec/models/add506c_document_request_spec.rb
540
- - spec/models/v1_entities_investor_otp_access_link_spec.rb
541
- - spec/models/v1_entities_webhooks_subscription_deal_spec.rb
542
- - spec/models/post_investor_profiles_trusts_spec.rb
543
- - spec/models/v1_entities_investor_profile_address_spec.rb
544
- - spec/models/v1_entities_payments_self_serve_onboarding_qualification_questionnaire_result_spec.rb
543
+ - spec/models/v1_entities_deal_investor_metrics_spec.rb
544
+ - spec/models/create_bulk_upload_request_spec.rb
545
+ - spec/models/v1_entities_webhooks_security_token_spec.rb
545
546
  - spec/models/v1_entities_payments_self_serve_onboarding_payout_account_details_data_spec.rb
546
- - spec/models/patch_investor_profiles_corporations_beneficial_owners_inner_spec.rb
547
+ - spec/models/v1_entities_dividend_spec.rb
548
+ - spec/models/v1_entities_investor_profile_fields_signing_officer_spec.rb
549
+ - spec/models/v1_entities_investor_profile_owner_spec.rb
550
+ - spec/models/v1_entities_deal_enterprise_spec.rb
547
551
  - spec/spec_helper.rb