vpndetection 1.4.0 → 1.5.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.
- checksums.yaml +4 -4
- data/lib/vpndetection/models/lookup_response.rb +3 -3
- data/lib/vpndetection/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 494df86ea7837d0bece886aebb52001bc564c17cf036f29d8f6b5af330409b18
|
|
4
|
+
data.tar.gz: 913cb9db19bae8a71710c2341d48a62b14b3ce15f798916b61fb0e42fe426088
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 590641a2d6fe98764c4fab9b979ea631216aff00bed50ecee06c57d33cde1f1d92fb26fb848b04dd0bad9fca2047a95fe5bd88da9e286d2abed4a7acc972b768
|
|
7
|
+
data.tar.gz: 1feb98f56fbd86e20f99c4271bc5494c260dddaeee2de544e410f4a7d333c1846d7751bb6b0d4df978bb910cc1138e9330e5f475c37ef87a99a2b06669e5e84f
|
|
@@ -34,13 +34,13 @@ module VPNDetection
|
|
|
34
34
|
# Whether the address belongs to a CDN. Starter and above.
|
|
35
35
|
attr_accessor :is_cdn
|
|
36
36
|
|
|
37
|
-
# Whether the address was seen in a residential proxy pool.
|
|
37
|
+
# Whether the address was seen in a residential proxy pool. Scale and above.
|
|
38
38
|
attr_accessor :is_resproxy
|
|
39
39
|
|
|
40
|
-
# Whether the address was seen in a datacenter proxy pool.
|
|
40
|
+
# Whether the address was seen in a datacenter proxy pool. Scale and above.
|
|
41
41
|
attr_accessor :is_dcproxy
|
|
42
42
|
|
|
43
|
-
# Whether the address was seen in a mobile proxy pool.
|
|
43
|
+
# Whether the address was seen in a mobile proxy pool. Scale and above.
|
|
44
44
|
attr_accessor :is_mobproxy
|
|
45
45
|
|
|
46
46
|
# Detail for `is_vpn`. Empty when `is_vpn` is false. Starter and above.
|
data/lib/vpndetection/version.rb
CHANGED