cloudmersive-validate-api-client 2.1.6 → 2.2.3

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 (53) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +26 -4
  3. data/docs/DomainApi.md +165 -0
  4. data/docs/HtmlSsrfDetectionResult.md +9 -0
  5. data/docs/IsAdminPathResponse.md +9 -0
  6. data/docs/PhishingCheckRequest.md +8 -0
  7. data/docs/PhishingCheckResponse.md +9 -0
  8. data/docs/SqlInjectionCheckBatchRequest.md +9 -0
  9. data/docs/SqlInjectionCheckBatchResponse.md +8 -0
  10. data/docs/SqlInjectionCheckRequestItem.md +8 -0
  11. data/docs/SqlInjectionDetectionResult.md +10 -0
  12. data/docs/TextInputApi.md +288 -1
  13. data/docs/UrlSafetyCheckRequestFull.md +8 -0
  14. data/docs/UrlSafetyCheckResponseFull.md +9 -0
  15. data/docs/XxeDetectionBatchRequest.md +8 -0
  16. data/docs/XxeDetectionBatchResponse.md +8 -0
  17. data/docs/XxeDetectionRequestItem.md +11 -0
  18. data/docs/XxeDetectionResult.md +9 -0
  19. data/lib/cloudmersive-validate-api-client.rb +14 -0
  20. data/lib/cloudmersive-validate-api-client/api/domain_api.rb +162 -0
  21. data/lib/cloudmersive-validate-api-client/api/text_input_api.rb +284 -2
  22. data/lib/cloudmersive-validate-api-client/models/html_ssrf_detection_result.rb +196 -0
  23. data/lib/cloudmersive-validate-api-client/models/is_admin_path_response.rb +196 -0
  24. data/lib/cloudmersive-validate-api-client/models/phishing_check_request.rb +186 -0
  25. data/lib/cloudmersive-validate-api-client/models/phishing_check_response.rb +196 -0
  26. data/lib/cloudmersive-validate-api-client/models/sql_injection_check_batch_request.rb +198 -0
  27. data/lib/cloudmersive-validate-api-client/models/sql_injection_check_batch_response.rb +188 -0
  28. data/lib/cloudmersive-validate-api-client/models/sql_injection_check_request_item.rb +186 -0
  29. data/lib/cloudmersive-validate-api-client/models/sql_injection_detection_result.rb +206 -0
  30. data/lib/cloudmersive-validate-api-client/models/url_safety_check_request_full.rb +186 -0
  31. data/lib/cloudmersive-validate-api-client/models/url_safety_check_response_full.rb +196 -0
  32. data/lib/cloudmersive-validate-api-client/models/xxe_detection_batch_request.rb +188 -0
  33. data/lib/cloudmersive-validate-api-client/models/xxe_detection_batch_response.rb +188 -0
  34. data/lib/cloudmersive-validate-api-client/models/xxe_detection_request_item.rb +220 -0
  35. data/lib/cloudmersive-validate-api-client/models/xxe_detection_result.rb +196 -0
  36. data/lib/cloudmersive-validate-api-client/version.rb +1 -1
  37. data/spec/api/domain_api_spec.rb +36 -0
  38. data/spec/api/text_input_api_spec.rb +65 -1
  39. data/spec/models/html_ssrf_detection_result_spec.rb +47 -0
  40. data/spec/models/is_admin_path_response_spec.rb +47 -0
  41. data/spec/models/phishing_check_request_spec.rb +41 -0
  42. data/spec/models/phishing_check_response_spec.rb +47 -0
  43. data/spec/models/sql_injection_check_batch_request_spec.rb +47 -0
  44. data/spec/models/sql_injection_check_batch_response_spec.rb +41 -0
  45. data/spec/models/sql_injection_check_request_item_spec.rb +41 -0
  46. data/spec/models/sql_injection_detection_result_spec.rb +53 -0
  47. data/spec/models/url_safety_check_request_full_spec.rb +41 -0
  48. data/spec/models/url_safety_check_response_full_spec.rb +47 -0
  49. data/spec/models/xxe_detection_batch_request_spec.rb +41 -0
  50. data/spec/models/xxe_detection_batch_response_spec.rb +41 -0
  51. data/spec/models/xxe_detection_request_item_spec.rb +59 -0
  52. data/spec/models/xxe_detection_result_spec.rb +47 -0
  53. metadata +44 -2
@@ -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::UrlSafetyCheckRequestFull
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'UrlSafetyCheckRequestFull' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::UrlSafetyCheckRequestFull.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of UrlSafetyCheckRequestFull' do
31
+ it 'should create an instance of UrlSafetyCheckRequestFull' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::UrlSafetyCheckRequestFull)
33
+ end
34
+ end
35
+ describe 'test attribute "url"' 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::UrlSafetyCheckResponseFull
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'UrlSafetyCheckResponseFull' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::UrlSafetyCheckResponseFull.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of UrlSafetyCheckResponseFull' do
31
+ it 'should create an instance of UrlSafetyCheckResponseFull' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::UrlSafetyCheckResponseFull)
33
+ end
34
+ end
35
+ describe 'test attribute "clean_url"' 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,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::XxeDetectionBatchRequest
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'XxeDetectionBatchRequest' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::XxeDetectionBatchRequest.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of XxeDetectionBatchRequest' do
31
+ it 'should create an instance of XxeDetectionBatchRequest' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XxeDetectionBatchRequest)
33
+ end
34
+ end
35
+ describe 'test attribute "request_items"' 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,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::XxeDetectionBatchResponse
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'XxeDetectionBatchResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::XxeDetectionBatchResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of XxeDetectionBatchResponse' do
31
+ it 'should create an instance of XxeDetectionBatchResponse' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XxeDetectionBatchResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "result_items"' 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,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::XxeDetectionRequestItem
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'XxeDetectionRequestItem' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::XxeDetectionRequestItem.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of XxeDetectionRequestItem' do
31
+ it 'should create an instance of XxeDetectionRequestItem' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XxeDetectionRequestItem)
33
+ end
34
+ end
35
+ describe 'test attribute "input_text"' 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 "allow_internet_urls"' 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 "known_safe_urls"' 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 "known_unsafe_urls"' 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
@@ -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::XxeDetectionResult
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'XxeDetectionResult' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveValidateApiClient::XxeDetectionResult.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of XxeDetectionResult' do
31
+ it 'should create an instance of XxeDetectionResult' do
32
+ expect(@instance).to be_instance_of(CloudmersiveValidateApiClient::XxeDetectionResult)
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_xxe"' 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
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.1.6
4
+ version: 2.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cloudmersive
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-07 00:00:00.000000000 Z
11
+ date: 2021-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -230,10 +230,12 @@ files:
230
230
  - "./docs/GetPublicHolidaysRequest.md"
231
231
  - "./docs/GetTimezonesRequest.md"
232
232
  - "./docs/GetTimezonesResponse.md"
233
+ - "./docs/HtmlSsrfDetectionResult.md"
233
234
  - "./docs/IPAddressApi.md"
234
235
  - "./docs/IPIntelligenceResponse.md"
235
236
  - "./docs/IPReverseDNSLookupResponse.md"
236
237
  - "./docs/IPThreatResponse.md"
238
+ - "./docs/IsAdminPathResponse.md"
237
239
  - "./docs/LastNameValidationRequest.md"
238
240
  - "./docs/LastNameValidationResponse.md"
239
241
  - "./docs/LeadEnrichmentApi.md"
@@ -243,6 +245,8 @@ files:
243
245
  - "./docs/NormalizeAddressResponse.md"
244
246
  - "./docs/ParseAddressRequest.md"
245
247
  - "./docs/ParseAddressResponse.md"
248
+ - "./docs/PhishingCheckRequest.md"
249
+ - "./docs/PhishingCheckResponse.md"
246
250
  - "./docs/PhoneNumberApi.md"
247
251
  - "./docs/PhoneNumberValidateRequest.md"
248
252
  - "./docs/PhoneNumberValidationResponse.md"
@@ -250,9 +254,15 @@ files:
250
254
  - "./docs/PublicHolidaysResponse.md"
251
255
  - "./docs/ReverseGeocodeAddressRequest.md"
252
256
  - "./docs/ReverseGeocodeAddressResponse.md"
257
+ - "./docs/SqlInjectionCheckBatchRequest.md"
258
+ - "./docs/SqlInjectionCheckBatchResponse.md"
259
+ - "./docs/SqlInjectionCheckRequestItem.md"
260
+ - "./docs/SqlInjectionDetectionResult.md"
253
261
  - "./docs/TextInputApi.md"
254
262
  - "./docs/Timezone.md"
255
263
  - "./docs/TorNodeResponse.md"
264
+ - "./docs/UrlSafetyCheckRequestFull.md"
265
+ - "./docs/UrlSafetyCheckResponseFull.md"
256
266
  - "./docs/UrlSsrfRequestBatch.md"
257
267
  - "./docs/UrlSsrfRequestFull.md"
258
268
  - "./docs/UrlSsrfResponseBatch.md"
@@ -284,6 +294,10 @@ files:
284
294
  - "./docs/XssProtectionBatchResponse.md"
285
295
  - "./docs/XssProtectionRequestItem.md"
286
296
  - "./docs/XssProtectionResult.md"
297
+ - "./docs/XxeDetectionBatchRequest.md"
298
+ - "./docs/XxeDetectionBatchResponse.md"
299
+ - "./docs/XxeDetectionRequestItem.md"
300
+ - "./docs/XxeDetectionResult.md"
287
301
  - "./git_push.sh"
288
302
  - "./lib/cloudmersive-validate-api-client.rb"
289
303
  - "./lib/cloudmersive-validate-api-client/api/address_api.rb"
@@ -323,9 +337,11 @@ files:
323
337
  - "./lib/cloudmersive-validate-api-client/models/get_public_holidays_request.rb"
324
338
  - "./lib/cloudmersive-validate-api-client/models/get_timezones_request.rb"
325
339
  - "./lib/cloudmersive-validate-api-client/models/get_timezones_response.rb"
340
+ - "./lib/cloudmersive-validate-api-client/models/html_ssrf_detection_result.rb"
326
341
  - "./lib/cloudmersive-validate-api-client/models/ip_intelligence_response.rb"
327
342
  - "./lib/cloudmersive-validate-api-client/models/ip_reverse_dns_lookup_response.rb"
328
343
  - "./lib/cloudmersive-validate-api-client/models/ip_threat_response.rb"
344
+ - "./lib/cloudmersive-validate-api-client/models/is_admin_path_response.rb"
329
345
  - "./lib/cloudmersive-validate-api-client/models/last_name_validation_request.rb"
330
346
  - "./lib/cloudmersive-validate-api-client/models/last_name_validation_response.rb"
331
347
  - "./lib/cloudmersive-validate-api-client/models/lead_enrichment_request.rb"
@@ -333,14 +349,22 @@ files:
333
349
  - "./lib/cloudmersive-validate-api-client/models/normalize_address_response.rb"
334
350
  - "./lib/cloudmersive-validate-api-client/models/parse_address_request.rb"
335
351
  - "./lib/cloudmersive-validate-api-client/models/parse_address_response.rb"
352
+ - "./lib/cloudmersive-validate-api-client/models/phishing_check_request.rb"
353
+ - "./lib/cloudmersive-validate-api-client/models/phishing_check_response.rb"
336
354
  - "./lib/cloudmersive-validate-api-client/models/phone_number_validate_request.rb"
337
355
  - "./lib/cloudmersive-validate-api-client/models/phone_number_validation_response.rb"
338
356
  - "./lib/cloudmersive-validate-api-client/models/public_holiday_occurrence.rb"
339
357
  - "./lib/cloudmersive-validate-api-client/models/public_holidays_response.rb"
340
358
  - "./lib/cloudmersive-validate-api-client/models/reverse_geocode_address_request.rb"
341
359
  - "./lib/cloudmersive-validate-api-client/models/reverse_geocode_address_response.rb"
360
+ - "./lib/cloudmersive-validate-api-client/models/sql_injection_check_batch_request.rb"
361
+ - "./lib/cloudmersive-validate-api-client/models/sql_injection_check_batch_response.rb"
362
+ - "./lib/cloudmersive-validate-api-client/models/sql_injection_check_request_item.rb"
363
+ - "./lib/cloudmersive-validate-api-client/models/sql_injection_detection_result.rb"
342
364
  - "./lib/cloudmersive-validate-api-client/models/timezone.rb"
343
365
  - "./lib/cloudmersive-validate-api-client/models/tor_node_response.rb"
366
+ - "./lib/cloudmersive-validate-api-client/models/url_safety_check_request_full.rb"
367
+ - "./lib/cloudmersive-validate-api-client/models/url_safety_check_response_full.rb"
344
368
  - "./lib/cloudmersive-validate-api-client/models/url_ssrf_request_batch.rb"
345
369
  - "./lib/cloudmersive-validate-api-client/models/url_ssrf_request_full.rb"
346
370
  - "./lib/cloudmersive-validate-api-client/models/url_ssrf_response_batch.rb"
@@ -370,6 +394,10 @@ files:
370
394
  - "./lib/cloudmersive-validate-api-client/models/xss_protection_batch_response.rb"
371
395
  - "./lib/cloudmersive-validate-api-client/models/xss_protection_request_item.rb"
372
396
  - "./lib/cloudmersive-validate-api-client/models/xss_protection_result.rb"
397
+ - "./lib/cloudmersive-validate-api-client/models/xxe_detection_batch_request.rb"
398
+ - "./lib/cloudmersive-validate-api-client/models/xxe_detection_batch_response.rb"
399
+ - "./lib/cloudmersive-validate-api-client/models/xxe_detection_request_item.rb"
400
+ - "./lib/cloudmersive-validate-api-client/models/xxe_detection_result.rb"
373
401
  - "./lib/cloudmersive-validate-api-client/version.rb"
374
402
  - "./spec/api/address_api_spec.rb"
375
403
  - "./spec/api/date_time_api_spec.rb"
@@ -407,9 +435,11 @@ files:
407
435
  - "./spec/models/get_public_holidays_request_spec.rb"
408
436
  - "./spec/models/get_timezones_request_spec.rb"
409
437
  - "./spec/models/get_timezones_response_spec.rb"
438
+ - "./spec/models/html_ssrf_detection_result_spec.rb"
410
439
  - "./spec/models/ip_intelligence_response_spec.rb"
411
440
  - "./spec/models/ip_reverse_dns_lookup_response_spec.rb"
412
441
  - "./spec/models/ip_threat_response_spec.rb"
442
+ - "./spec/models/is_admin_path_response_spec.rb"
413
443
  - "./spec/models/last_name_validation_request_spec.rb"
414
444
  - "./spec/models/last_name_validation_response_spec.rb"
415
445
  - "./spec/models/lead_enrichment_request_spec.rb"
@@ -417,14 +447,22 @@ files:
417
447
  - "./spec/models/normalize_address_response_spec.rb"
418
448
  - "./spec/models/parse_address_request_spec.rb"
419
449
  - "./spec/models/parse_address_response_spec.rb"
450
+ - "./spec/models/phishing_check_request_spec.rb"
451
+ - "./spec/models/phishing_check_response_spec.rb"
420
452
  - "./spec/models/phone_number_validate_request_spec.rb"
421
453
  - "./spec/models/phone_number_validation_response_spec.rb"
422
454
  - "./spec/models/public_holiday_occurrence_spec.rb"
423
455
  - "./spec/models/public_holidays_response_spec.rb"
424
456
  - "./spec/models/reverse_geocode_address_request_spec.rb"
425
457
  - "./spec/models/reverse_geocode_address_response_spec.rb"
458
+ - "./spec/models/sql_injection_check_batch_request_spec.rb"
459
+ - "./spec/models/sql_injection_check_batch_response_spec.rb"
460
+ - "./spec/models/sql_injection_check_request_item_spec.rb"
461
+ - "./spec/models/sql_injection_detection_result_spec.rb"
426
462
  - "./spec/models/timezone_spec.rb"
427
463
  - "./spec/models/tor_node_response_spec.rb"
464
+ - "./spec/models/url_safety_check_request_full_spec.rb"
465
+ - "./spec/models/url_safety_check_response_full_spec.rb"
428
466
  - "./spec/models/url_ssrf_request_batch_spec.rb"
429
467
  - "./spec/models/url_ssrf_request_full_spec.rb"
430
468
  - "./spec/models/url_ssrf_response_batch_spec.rb"
@@ -454,6 +492,10 @@ files:
454
492
  - "./spec/models/xss_protection_batch_response_spec.rb"
455
493
  - "./spec/models/xss_protection_request_item_spec.rb"
456
494
  - "./spec/models/xss_protection_result_spec.rb"
495
+ - "./spec/models/xxe_detection_batch_request_spec.rb"
496
+ - "./spec/models/xxe_detection_batch_response_spec.rb"
497
+ - "./spec/models/xxe_detection_request_item_spec.rb"
498
+ - "./spec/models/xxe_detection_result_spec.rb"
457
499
  - "./spec/spec_helper.rb"
458
500
  homepage: https://www.cloudmersive.com/validate-api
459
501
  licenses: