cloudmersive-validate-api-client 2.0.6 → 2.1.1
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 +4 -4
- data/README.md +17 -4
- data/docs/AddressApi.md +220 -0
- data/docs/CountryDetails.md +5 -0
- data/docs/DomainApi.md +55 -0
- data/docs/DomainQualityResponse.md +8 -0
- data/docs/GeolocateStreetAddressResponse.md +13 -0
- data/docs/IPAddressApi.md +55 -0
- data/docs/ReverseGeocodeAddressRequest.md +9 -0
- data/docs/ReverseGeocodeAddressResponse.md +14 -0
- data/docs/TextInputApi.md +118 -0
- data/docs/ValidateCountryResponse.md +5 -0
- data/docs/XssProtectionResult.md +11 -0
- data/lib/cloudmersive-validate-api-client.rb +6 -0
- data/lib/cloudmersive-validate-api-client/api/address_api.rb +216 -0
- data/lib/cloudmersive-validate-api-client/api/domain_api.rb +54 -0
- data/lib/cloudmersive-validate-api-client/api/ip_address_api.rb +54 -0
- data/lib/cloudmersive-validate-api-client/api/text_input_api.rb +131 -0
- data/lib/cloudmersive-validate-api-client/models/country_details.rb +54 -4
- data/lib/cloudmersive-validate-api-client/models/domain_quality_response.rb +186 -0
- data/lib/cloudmersive-validate-api-client/models/geolocate_street_address_response.rb +236 -0
- data/lib/cloudmersive-validate-api-client/models/reverse_geocode_address_request.rb +196 -0
- data/lib/cloudmersive-validate-api-client/models/reverse_geocode_address_response.rb +246 -0
- data/lib/cloudmersive-validate-api-client/models/validate_country_response.rb +54 -4
- data/lib/cloudmersive-validate-api-client/models/xss_protection_result.rb +216 -0
- data/lib/cloudmersive-validate-api-client/version.rb +1 -1
- data/spec/api/address_api_spec.rb +48 -0
- data/spec/api/domain_api_spec.rb +12 -0
- data/spec/api/ip_address_api_spec.rb +12 -0
- data/spec/api/text_input_api_spec.rb +59 -0
- data/spec/models/country_details_spec.rb +30 -0
- data/spec/models/domain_quality_response_spec.rb +41 -0
- data/spec/models/geolocate_street_address_response_spec.rb +71 -0
- data/spec/models/reverse_geocode_address_request_spec.rb +47 -0
- data/spec/models/reverse_geocode_address_response_spec.rb +77 -0
- data/spec/models/validate_country_response_spec.rb +30 -0
- data/spec/models/xss_protection_result_spec.rb +59 -0
- metadata +20 -2
|
@@ -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,71 @@
|
|
|
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::GeolocateStreetAddressResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'GeolocateStreetAddressResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveValidateApiClient::GeolocateStreetAddressResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of GeolocateStreetAddressResponse' do
|
|
31
|
+
it 'should create an instance of GeolocateStreetAddressResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::GeolocateStreetAddressResponse)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "country_code"' 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 "country_name"' 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 "street_address"' 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 "city"' 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 "region_name"' 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 "zip_code"' 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
|
+
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
|
|
@@ -0,0 +1,59 @@
|
|
|
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::XssProtectionResult
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'XssProtectionResult' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveValidateApiClient::XssProtectionResult.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of XssProtectionResult' do
|
|
31
|
+
it 'should create an instance of XssProtectionResult' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XssProtectionResult)
|
|
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 "contained_xss"' 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 "original_input"' 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 "normalized_result"' 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
|
+
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.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cloudmersive
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-10-06 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"
|
|
@@ -217,6 +218,7 @@ files:
|
|
|
217
218
|
- "./docs/FullNameValidationRequest.md"
|
|
218
219
|
- "./docs/FullNameValidationResponse.md"
|
|
219
220
|
- "./docs/GeolocateResponse.md"
|
|
221
|
+
- "./docs/GeolocateStreetAddressResponse.md"
|
|
220
222
|
- "./docs/GetGenderRequest.md"
|
|
221
223
|
- "./docs/GetGenderResponse.md"
|
|
222
224
|
- "./docs/GetTimezonesRequest.md"
|
|
@@ -234,6 +236,9 @@ files:
|
|
|
234
236
|
- "./docs/PhoneNumberApi.md"
|
|
235
237
|
- "./docs/PhoneNumberValidateRequest.md"
|
|
236
238
|
- "./docs/PhoneNumberValidationResponse.md"
|
|
239
|
+
- "./docs/ReverseGeocodeAddressRequest.md"
|
|
240
|
+
- "./docs/ReverseGeocodeAddressResponse.md"
|
|
241
|
+
- "./docs/TextInputApi.md"
|
|
237
242
|
- "./docs/Timezone.md"
|
|
238
243
|
- "./docs/TorNodeResponse.md"
|
|
239
244
|
- "./docs/UserAgentApi.md"
|
|
@@ -259,6 +264,7 @@ files:
|
|
|
259
264
|
- "./docs/VatLookupRequest.md"
|
|
260
265
|
- "./docs/VatLookupResponse.md"
|
|
261
266
|
- "./docs/WhoisResponse.md"
|
|
267
|
+
- "./docs/XssProtectionResult.md"
|
|
262
268
|
- "./git_push.sh"
|
|
263
269
|
- "./lib/cloudmersive-validate-api-client.rb"
|
|
264
270
|
- "./lib/cloudmersive-validate-api-client/api/address_api.rb"
|
|
@@ -268,6 +274,7 @@ files:
|
|
|
268
274
|
- "./lib/cloudmersive-validate-api-client/api/lead_enrichment_api.rb"
|
|
269
275
|
- "./lib/cloudmersive-validate-api-client/api/name_api.rb"
|
|
270
276
|
- "./lib/cloudmersive-validate-api-client/api/phone_number_api.rb"
|
|
277
|
+
- "./lib/cloudmersive-validate-api-client/api/text_input_api.rb"
|
|
271
278
|
- "./lib/cloudmersive-validate-api-client/api/user_agent_api.rb"
|
|
272
279
|
- "./lib/cloudmersive-validate-api-client/api/vat_api.rb"
|
|
273
280
|
- "./lib/cloudmersive-validate-api-client/api_client.rb"
|
|
@@ -278,12 +285,14 @@ files:
|
|
|
278
285
|
- "./lib/cloudmersive-validate-api-client/models/check_response.rb"
|
|
279
286
|
- "./lib/cloudmersive-validate-api-client/models/country_details.rb"
|
|
280
287
|
- "./lib/cloudmersive-validate-api-client/models/country_list_result.rb"
|
|
288
|
+
- "./lib/cloudmersive-validate-api-client/models/domain_quality_response.rb"
|
|
281
289
|
- "./lib/cloudmersive-validate-api-client/models/first_name_validation_request.rb"
|
|
282
290
|
- "./lib/cloudmersive-validate-api-client/models/first_name_validation_response.rb"
|
|
283
291
|
- "./lib/cloudmersive-validate-api-client/models/full_email_validation_response.rb"
|
|
284
292
|
- "./lib/cloudmersive-validate-api-client/models/full_name_validation_request.rb"
|
|
285
293
|
- "./lib/cloudmersive-validate-api-client/models/full_name_validation_response.rb"
|
|
286
294
|
- "./lib/cloudmersive-validate-api-client/models/geolocate_response.rb"
|
|
295
|
+
- "./lib/cloudmersive-validate-api-client/models/geolocate_street_address_response.rb"
|
|
287
296
|
- "./lib/cloudmersive-validate-api-client/models/get_gender_request.rb"
|
|
288
297
|
- "./lib/cloudmersive-validate-api-client/models/get_gender_response.rb"
|
|
289
298
|
- "./lib/cloudmersive-validate-api-client/models/get_timezones_request.rb"
|
|
@@ -297,6 +306,8 @@ files:
|
|
|
297
306
|
- "./lib/cloudmersive-validate-api-client/models/parse_address_response.rb"
|
|
298
307
|
- "./lib/cloudmersive-validate-api-client/models/phone_number_validate_request.rb"
|
|
299
308
|
- "./lib/cloudmersive-validate-api-client/models/phone_number_validation_response.rb"
|
|
309
|
+
- "./lib/cloudmersive-validate-api-client/models/reverse_geocode_address_request.rb"
|
|
310
|
+
- "./lib/cloudmersive-validate-api-client/models/reverse_geocode_address_response.rb"
|
|
300
311
|
- "./lib/cloudmersive-validate-api-client/models/timezone.rb"
|
|
301
312
|
- "./lib/cloudmersive-validate-api-client/models/tor_node_response.rb"
|
|
302
313
|
- "./lib/cloudmersive-validate-api-client/models/user_agent_validate_request.rb"
|
|
@@ -320,6 +331,7 @@ files:
|
|
|
320
331
|
- "./lib/cloudmersive-validate-api-client/models/vat_lookup_request.rb"
|
|
321
332
|
- "./lib/cloudmersive-validate-api-client/models/vat_lookup_response.rb"
|
|
322
333
|
- "./lib/cloudmersive-validate-api-client/models/whois_response.rb"
|
|
334
|
+
- "./lib/cloudmersive-validate-api-client/models/xss_protection_result.rb"
|
|
323
335
|
- "./lib/cloudmersive-validate-api-client/version.rb"
|
|
324
336
|
- "./spec/api/address_api_spec.rb"
|
|
325
337
|
- "./spec/api/domain_api_spec.rb"
|
|
@@ -328,6 +340,7 @@ files:
|
|
|
328
340
|
- "./spec/api/lead_enrichment_api_spec.rb"
|
|
329
341
|
- "./spec/api/name_api_spec.rb"
|
|
330
342
|
- "./spec/api/phone_number_api_spec.rb"
|
|
343
|
+
- "./spec/api/text_input_api_spec.rb"
|
|
331
344
|
- "./spec/api/user_agent_api_spec.rb"
|
|
332
345
|
- "./spec/api/vat_api_spec.rb"
|
|
333
346
|
- "./spec/api_client_spec.rb"
|
|
@@ -337,12 +350,14 @@ files:
|
|
|
337
350
|
- "./spec/models/check_response_spec.rb"
|
|
338
351
|
- "./spec/models/country_details_spec.rb"
|
|
339
352
|
- "./spec/models/country_list_result_spec.rb"
|
|
353
|
+
- "./spec/models/domain_quality_response_spec.rb"
|
|
340
354
|
- "./spec/models/first_name_validation_request_spec.rb"
|
|
341
355
|
- "./spec/models/first_name_validation_response_spec.rb"
|
|
342
356
|
- "./spec/models/full_email_validation_response_spec.rb"
|
|
343
357
|
- "./spec/models/full_name_validation_request_spec.rb"
|
|
344
358
|
- "./spec/models/full_name_validation_response_spec.rb"
|
|
345
359
|
- "./spec/models/geolocate_response_spec.rb"
|
|
360
|
+
- "./spec/models/geolocate_street_address_response_spec.rb"
|
|
346
361
|
- "./spec/models/get_gender_request_spec.rb"
|
|
347
362
|
- "./spec/models/get_gender_response_spec.rb"
|
|
348
363
|
- "./spec/models/get_timezones_request_spec.rb"
|
|
@@ -356,6 +371,8 @@ files:
|
|
|
356
371
|
- "./spec/models/parse_address_response_spec.rb"
|
|
357
372
|
- "./spec/models/phone_number_validate_request_spec.rb"
|
|
358
373
|
- "./spec/models/phone_number_validation_response_spec.rb"
|
|
374
|
+
- "./spec/models/reverse_geocode_address_request_spec.rb"
|
|
375
|
+
- "./spec/models/reverse_geocode_address_response_spec.rb"
|
|
359
376
|
- "./spec/models/timezone_spec.rb"
|
|
360
377
|
- "./spec/models/tor_node_response_spec.rb"
|
|
361
378
|
- "./spec/models/user_agent_validate_request_spec.rb"
|
|
@@ -379,6 +396,7 @@ files:
|
|
|
379
396
|
- "./spec/models/vat_lookup_request_spec.rb"
|
|
380
397
|
- "./spec/models/vat_lookup_response_spec.rb"
|
|
381
398
|
- "./spec/models/whois_response_spec.rb"
|
|
399
|
+
- "./spec/models/xss_protection_result_spec.rb"
|
|
382
400
|
- "./spec/spec_helper.rb"
|
|
383
401
|
homepage: https://www.cloudmersive.com/validate-api
|
|
384
402
|
licenses:
|