cloudmersive-validate-api-client 2.0.5 → 2.1.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.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -4
  3. data/docs/AddressApi.md +224 -4
  4. data/docs/CountryDetails.md +5 -0
  5. data/docs/DomainApi.md +55 -0
  6. data/docs/DomainQualityResponse.md +8 -0
  7. data/docs/IPAddressApi.md +55 -0
  8. data/docs/IPThreatResponse.md +9 -0
  9. data/docs/ReverseGeocodeAddressRequest.md +9 -0
  10. data/docs/ReverseGeocodeAddressResponse.md +14 -0
  11. data/docs/ValidateCountryResponse.md +5 -0
  12. data/lib/cloudmersive-validate-api-client.rb +4 -0
  13. data/lib/cloudmersive-validate-api-client/api/address_api.rb +224 -8
  14. data/lib/cloudmersive-validate-api-client/api/domain_api.rb +54 -0
  15. data/lib/cloudmersive-validate-api-client/api/ip_address_api.rb +54 -0
  16. data/lib/cloudmersive-validate-api-client/models/country_details.rb +54 -4
  17. data/lib/cloudmersive-validate-api-client/models/domain_quality_response.rb +186 -0
  18. data/lib/cloudmersive-validate-api-client/models/ip_threat_response.rb +196 -0
  19. data/lib/cloudmersive-validate-api-client/models/reverse_geocode_address_request.rb +196 -0
  20. data/lib/cloudmersive-validate-api-client/models/reverse_geocode_address_response.rb +246 -0
  21. data/lib/cloudmersive-validate-api-client/models/validate_country_response.rb +54 -4
  22. data/lib/cloudmersive-validate-api-client/version.rb +1 -1
  23. data/spec/api/address_api_spec.rb +52 -4
  24. data/spec/api/domain_api_spec.rb +12 -0
  25. data/spec/api/ip_address_api_spec.rb +12 -0
  26. data/spec/models/country_details_spec.rb +30 -0
  27. data/spec/models/domain_quality_response_spec.rb +41 -0
  28. data/spec/models/ip_threat_response_spec.rb +47 -0
  29. data/spec/models/reverse_geocode_address_request_spec.rb +47 -0
  30. data/spec/models/reverse_geocode_address_response_spec.rb +77 -0
  31. data/spec/models/validate_country_response_spec.rb +30 -0
  32. metadata +14 -2
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.14
11
11
  =end
12
12
 
13
13
  module CloudmersiveValidateApiClient
14
- VERSION = '2.0.5'
14
+ VERSION = '2.1.0'
15
15
  end
@@ -67,6 +67,42 @@ describe 'AddressApi' do
67
67
  end
68
68
  end
69
69
 
70
+ # unit tests for address_geocode
71
+ # Geocode a street address into latitude and longitude
72
+ # Geocodes a street address into latitude and longitude.
73
+ # @param input Input parse request
74
+ # @param [Hash] opts the optional parameters
75
+ # @return [ValidateAddressResponse]
76
+ describe 'address_geocode test' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ # unit tests for address_get_country_currency
83
+ # Get the currency of the input country
84
+ # Gets the currency information for the input country, including the ISO three-letter country code, currency symbol, and English currency name.
85
+ # @param input Input request
86
+ # @param [Hash] opts the optional parameters
87
+ # @return [ValidateCountryResponse]
88
+ describe 'address_get_country_currency test' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
+ end
92
+ end
93
+
94
+ # unit tests for address_get_country_region
95
+ # Get the region, subregion and continent of the country
96
+ # Gets the continent information including region and subregion for the input country.
97
+ # @param input Input request
98
+ # @param [Hash] opts the optional parameters
99
+ # @return [ValidateCountryResponse]
100
+ describe 'address_get_country_region test' do
101
+ it 'should work' do
102
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
103
+ end
104
+ end
105
+
70
106
  # unit tests for address_get_timezone
71
107
  # Gets IANA/Olsen time zones for a country
72
108
  # Gets the IANA/Olsen time zones for a country.
@@ -91,9 +127,21 @@ describe 'AddressApi' do
91
127
  end
92
128
  end
93
129
 
130
+ # unit tests for address_reverse_geocode_address
131
+ # Reverse geocode a lattitude and longitude into an address
132
+ # Converts lattitude and longitude coordinates into an address through reverse-geocoding.
133
+ # @param input Input reverse geocoding request
134
+ # @param [Hash] opts the optional parameters
135
+ # @return [ReverseGeocodeAddressResponse]
136
+ describe 'address_reverse_geocode_address test' do
137
+ it 'should work' do
138
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
139
+ end
140
+ end
141
+
94
142
  # unit tests for address_validate_address
95
143
  # Validate a street address
96
- # Determines if an input structured street address is valid or invalid. If the address is valid, also returns the latitude and longitude of the address.
144
+ # Determines if an input structured street address is valid or invalid. If the address is valid, also returns the latitude and longitude of the address. Supports all major international addresses.
97
145
  # @param input Input parse request
98
146
  # @param [Hash] opts the optional parameters
99
147
  # @return [ValidateAddressResponse]
@@ -105,7 +153,7 @@ describe 'AddressApi' do
105
153
 
106
154
  # unit tests for address_validate_city
107
155
  # Validate a City and State/Province combination, get location information about it
108
- # Checks if the input city and state name or code is valid, and returns information about it such as normalized City name, State name and more.
156
+ # Checks if the input city and state name or code is valid, and returns information about it such as normalized City name, State name and more. Supports all major international addresses.
109
157
  # @param input Input parse request
110
158
  # @param [Hash] opts the optional parameters
111
159
  # @return [ValidateCityResponse]
@@ -117,7 +165,7 @@ describe 'AddressApi' do
117
165
 
118
166
  # unit tests for address_validate_postal_code
119
167
  # Validate a postal code, get location information about it
120
- # Checks if the input postal code is valid, and returns information about it such as City, State and more.
168
+ # Checks if the input postal code is valid, and returns information about it such as City, State and more. Supports all major countries.
121
169
  # @param input Input parse request
122
170
  # @param [Hash] opts the optional parameters
123
171
  # @return [ValidatePostalCodeResponse]
@@ -129,7 +177,7 @@ describe 'AddressApi' do
129
177
 
130
178
  # unit tests for address_validate_state
131
179
  # Validate a state or province, name or abbreviation, get location information about it
132
- # Checks if the input state name or code is valid, and returns information about it such as normalized State name and more.
180
+ # Checks if the input state name or code is valid, and returns information about it such as normalized State name and more. Supports all major countries.
133
181
  # @param input Input parse request
134
182
  # @param [Hash] opts the optional parameters
135
183
  # @return [ValidateStateResponse]
@@ -56,6 +56,18 @@ describe 'DomainApi' do
56
56
  end
57
57
  end
58
58
 
59
+ # unit tests for domain_quality_score
60
+ # Validate a domain name's quality score
61
+ # Check the quality of a domain name. Supports over 9 million domain names. Higher quality scores indicate more trust and authority in the domain name, with values ranging from 0.0 (low quality) to 10.0 (maximum quality).
62
+ # @param domain Domain name to check, for example \"cloudmersive.com\".
63
+ # @param [Hash] opts the optional parameters
64
+ # @return [DomainQualityResponse]
65
+ describe 'domain_quality_score test' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
59
71
  # unit tests for domain_url_full
60
72
  # Validate a URL fully
61
73
  # Validate whether a URL is syntactically valid (does not check endpoint for validity), whether it exists, and whether the endpoint is up and passes virus scan checks. Accepts various types of input and produces a well-formed URL as output.
@@ -32,6 +32,18 @@ describe 'IPAddressApi' do
32
32
  end
33
33
  end
34
34
 
35
+ # unit tests for i_p_address_is_threat
36
+ # Check if IP address is a known threat
37
+ # Check if the input IP address is a known threat IP address. Checks against known bad IPs, botnets, compromised servers, and other lists of threats.
38
+ # @param value IP address to check, e.g. \"55.55.55.55\". The input is a string so be sure to enclose it in double-quotes.
39
+ # @param [Hash] opts the optional parameters
40
+ # @return [IPThreatResponse]
41
+ describe 'i_p_address_is_threat test' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
35
47
  # unit tests for i_p_address_is_tor_node
36
48
  # Check if IP address is a Tor node server
37
49
  # Check if the input IP address is a Tor exit node server. Tor servers are a type of privacy-preserving technology that can hide the original IP address who makes a request.
@@ -56,4 +56,34 @@ describe 'CountryDetails' do
56
56
  end
57
57
  end
58
58
 
59
+ describe 'test attribute "iso_currency_code"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "currency_symbol"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "currency_english_name"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "region"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "subregion"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
59
89
  end
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveValidateApiClient::DomainQualityResponse
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'DomainQualityResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::DomainQualityResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of DomainQualityResponse' do
31
+ it 'should create an instance of DomainQualityResponse' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::DomainQualityResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "domain_quality_score"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveValidateApiClient::IPThreatResponse
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'IPThreatResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::IPThreatResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of IPThreatResponse' do
31
+ it 'should create an instance of IPThreatResponse' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::IPThreatResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "is_threat"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "threat_type"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveValidateApiClient::ReverseGeocodeAddressRequest
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'ReverseGeocodeAddressRequest' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::ReverseGeocodeAddressRequest.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ReverseGeocodeAddressRequest' do
31
+ it 'should create an instance of ReverseGeocodeAddressRequest' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::ReverseGeocodeAddressRequest)
33
+ end
34
+ end
35
+ describe 'test attribute "latitude"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "longitude"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,77 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveValidateApiClient::ReverseGeocodeAddressResponse
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'ReverseGeocodeAddressResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::ReverseGeocodeAddressResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ReverseGeocodeAddressResponse' do
31
+ it 'should create an instance of ReverseGeocodeAddressResponse' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::ReverseGeocodeAddressResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "successful"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "street_address"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "city"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "state_or_province"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "postal_code"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "country_full_name"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "country_code"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ end
@@ -74,4 +74,34 @@ describe 'ValidateCountryResponse' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "iso_currency_code"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "currency_symbol"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ describe 'test attribute "currency_english_name"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ describe 'test attribute "region"' do
96
+ it 'should work' do
97
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
+ end
99
+ end
100
+
101
+ describe 'test attribute "subregion"' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
77
107
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudmersive-validate-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.5
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cloudmersive
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-30 00:00:00.000000000 Z
11
+ date: 2020-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -210,6 +210,7 @@ files:
210
210
  - "./docs/CountryDetails.md"
211
211
  - "./docs/CountryListResult.md"
212
212
  - "./docs/DomainApi.md"
213
+ - "./docs/DomainQualityResponse.md"
213
214
  - "./docs/EmailApi.md"
214
215
  - "./docs/FirstNameValidationRequest.md"
215
216
  - "./docs/FirstNameValidationResponse.md"
@@ -222,6 +223,7 @@ files:
222
223
  - "./docs/GetTimezonesRequest.md"
223
224
  - "./docs/GetTimezonesResponse.md"
224
225
  - "./docs/IPAddressApi.md"
226
+ - "./docs/IPThreatResponse.md"
225
227
  - "./docs/LastNameValidationRequest.md"
226
228
  - "./docs/LastNameValidationResponse.md"
227
229
  - "./docs/LeadEnrichmentApi.md"
@@ -233,6 +235,8 @@ files:
233
235
  - "./docs/PhoneNumberApi.md"
234
236
  - "./docs/PhoneNumberValidateRequest.md"
235
237
  - "./docs/PhoneNumberValidationResponse.md"
238
+ - "./docs/ReverseGeocodeAddressRequest.md"
239
+ - "./docs/ReverseGeocodeAddressResponse.md"
236
240
  - "./docs/Timezone.md"
237
241
  - "./docs/TorNodeResponse.md"
238
242
  - "./docs/UserAgentApi.md"
@@ -277,6 +281,7 @@ files:
277
281
  - "./lib/cloudmersive-validate-api-client/models/check_response.rb"
278
282
  - "./lib/cloudmersive-validate-api-client/models/country_details.rb"
279
283
  - "./lib/cloudmersive-validate-api-client/models/country_list_result.rb"
284
+ - "./lib/cloudmersive-validate-api-client/models/domain_quality_response.rb"
280
285
  - "./lib/cloudmersive-validate-api-client/models/first_name_validation_request.rb"
281
286
  - "./lib/cloudmersive-validate-api-client/models/first_name_validation_response.rb"
282
287
  - "./lib/cloudmersive-validate-api-client/models/full_email_validation_response.rb"
@@ -287,6 +292,7 @@ files:
287
292
  - "./lib/cloudmersive-validate-api-client/models/get_gender_response.rb"
288
293
  - "./lib/cloudmersive-validate-api-client/models/get_timezones_request.rb"
289
294
  - "./lib/cloudmersive-validate-api-client/models/get_timezones_response.rb"
295
+ - "./lib/cloudmersive-validate-api-client/models/ip_threat_response.rb"
290
296
  - "./lib/cloudmersive-validate-api-client/models/last_name_validation_request.rb"
291
297
  - "./lib/cloudmersive-validate-api-client/models/last_name_validation_response.rb"
292
298
  - "./lib/cloudmersive-validate-api-client/models/lead_enrichment_request.rb"
@@ -295,6 +301,8 @@ files:
295
301
  - "./lib/cloudmersive-validate-api-client/models/parse_address_response.rb"
296
302
  - "./lib/cloudmersive-validate-api-client/models/phone_number_validate_request.rb"
297
303
  - "./lib/cloudmersive-validate-api-client/models/phone_number_validation_response.rb"
304
+ - "./lib/cloudmersive-validate-api-client/models/reverse_geocode_address_request.rb"
305
+ - "./lib/cloudmersive-validate-api-client/models/reverse_geocode_address_response.rb"
298
306
  - "./lib/cloudmersive-validate-api-client/models/timezone.rb"
299
307
  - "./lib/cloudmersive-validate-api-client/models/tor_node_response.rb"
300
308
  - "./lib/cloudmersive-validate-api-client/models/user_agent_validate_request.rb"
@@ -335,6 +343,7 @@ files:
335
343
  - "./spec/models/check_response_spec.rb"
336
344
  - "./spec/models/country_details_spec.rb"
337
345
  - "./spec/models/country_list_result_spec.rb"
346
+ - "./spec/models/domain_quality_response_spec.rb"
338
347
  - "./spec/models/first_name_validation_request_spec.rb"
339
348
  - "./spec/models/first_name_validation_response_spec.rb"
340
349
  - "./spec/models/full_email_validation_response_spec.rb"
@@ -345,6 +354,7 @@ files:
345
354
  - "./spec/models/get_gender_response_spec.rb"
346
355
  - "./spec/models/get_timezones_request_spec.rb"
347
356
  - "./spec/models/get_timezones_response_spec.rb"
357
+ - "./spec/models/ip_threat_response_spec.rb"
348
358
  - "./spec/models/last_name_validation_request_spec.rb"
349
359
  - "./spec/models/last_name_validation_response_spec.rb"
350
360
  - "./spec/models/lead_enrichment_request_spec.rb"
@@ -353,6 +363,8 @@ files:
353
363
  - "./spec/models/parse_address_response_spec.rb"
354
364
  - "./spec/models/phone_number_validate_request_spec.rb"
355
365
  - "./spec/models/phone_number_validation_response_spec.rb"
366
+ - "./spec/models/reverse_geocode_address_request_spec.rb"
367
+ - "./spec/models/reverse_geocode_address_response_spec.rb"
356
368
  - "./spec/models/timezone_spec.rb"
357
369
  - "./spec/models/tor_node_response_spec.rb"
358
370
  - "./spec/models/user_agent_validate_request_spec.rb"