smartystreets_ruby_sdk 5.18.1 → 5.20.2

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 (21) hide show
  1. checksums.yaml +4 -4
  2. data/examples/us_enrichment_example.rb +29 -2
  3. data/lib/smartystreets_ruby_sdk/us_enrichment/client.rb +96 -6
  4. data/lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/attributes.rb +23 -0
  5. data/lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/census_block_entry.rb +14 -0
  6. data/lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/census_county_division_entry.rb +15 -0
  7. data/lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/census_tract_entry.rb +13 -0
  8. data/lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/core_based_stat_area_entry.rb +14 -0
  9. data/lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/lookup.rb +15 -0
  10. data/lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/place_entry.rb +16 -0
  11. data/lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/response.rb +17 -0
  12. data/lib/smartystreets_ruby_sdk/us_enrichment/lookup.rb +19 -0
  13. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/aliases_entry.rb +23 -0
  14. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/count/lookup.rb +17 -0
  15. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/count/response.rb +16 -0
  16. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/lookup.rb +15 -0
  17. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/response.rb +38 -0
  18. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/root_address_entry.rb +24 -0
  19. data/lib/smartystreets_ruby_sdk/us_enrichment/secondary/secondaries_entry.rb +16 -0
  20. data/lib/smartystreets_ruby_sdk/version.rb +1 -1
  21. metadata +18 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cf9f006e4b5ed5f2f1b33ef7abab3044db467d5cd377cd2d8b6d7ca79953f516
4
- data.tar.gz: c8f614070a3b5e0a06e0fa9f0654387bda1dfab10e5763834ea89bd1bd4a3b82
3
+ metadata.gz: feea3fd221e9e87912c8d35bd636b8c295ae0415ef20cc45880b330d1199ce3f
4
+ data.tar.gz: e0d8168d70e4edf32906f49ec0cb39b1f7890804a7067e80cf7538e1db1ba24c
5
5
  SHA512:
6
- metadata.gz: d4f52e42db666abd8ef54d6332765b7e27b635e6843dbb354a4087634ce46571f742cb40a272ba9039064416178f7b141d0e7f1377aaffbad6abf27fcc2cae9e
7
- data.tar.gz: 797b4818853ddefc8f84a57b1b37f9ed44d83072aad27c4d156836ef8e6fde3acefc6c06b83f2afa3ad154664312deb86730193f5695fbf2a322b5127205c8fa
6
+ metadata.gz: 17120bcc323bd9dd58ce32520fdfe8993afaf352dd595bbc2316a33cddd5e8ab44b4c2728b807488ab601be72e68a4627b5ea3a5b4a5825bb9843e0ffeb2e0eb
7
+ data.tar.gz: a9535cac7038a34e74101d551781368d883c9aafd12ef9b5dbe52d37c158cf8d3253cb179a1ce2a872cb928660a40c599e92a163ee3e7f1d4a0fbfcc165d64d7
@@ -1,6 +1,7 @@
1
1
  require '../lib/smartystreets_ruby_sdk/static_credentials'
2
2
  require '../lib/smartystreets_ruby_sdk/shared_credentials'
3
3
  require '../lib/smartystreets_ruby_sdk/client_builder'
4
+ require '../lib/smartystreets_ruby_sdk/us_enrichment/lookup'
4
5
 
5
6
  class USEnrichmentAddressExample
6
7
  def run
@@ -24,9 +25,35 @@ class USEnrichmentAddressExample
24
25
  client = SmartyStreets::ClientBuilder.new(credentials).
25
26
  build_us_enrichment_api_client
26
27
  result = nil
28
+
29
+ # Create a new lookup instance to search with address components
30
+ lookup = SmartyStreets::USEnrichment::Lookup.new
31
+
32
+ lookup.street = "56 Union Ave"
33
+ lookup.city = "Somerville"
34
+ lookup.state = "NJ"
35
+ lookup.zipcode = "08876"
36
+
37
+ # Or, create a freeform lookup to search using a single line address
38
+ freeform_lookup = SmartyStreets::USEnrichment::Lookup.new
39
+ freeform_lookup.freeform = "56 Union Ave Somerville NJ 08876"
40
+
41
+
42
+
27
43
  begin
28
- result = client.send_property_financial_lookup("765613032")
29
- # result = client.send_property_principal_lookup("765613032")
44
+ # Send a lookup with a smarty key using the line below
45
+ result = client.send_property_principal_lookup("325023201")
46
+
47
+ # Uncomment the following lines to perform other types of lookups:
48
+ # result = client.send_property_principal_lookup(lookup) # Using address components
49
+ # result = client.send_property_principal_lookup(freeform_lookup) # Using freeform address
50
+
51
+ # Access the other Enrichment datasets using the below functions. All of these functions can take a lookup or a smartykey
52
+ # result = client.send_property_financial_lookup("325023201")
53
+ # result = client.send_geo_reference_lookup("325023201")
54
+ # result = client.send_secondary_lookup("325023201")
55
+ # result = client.send_secondary_count_lookup("325023201")
56
+
30
57
  rescue SmartyStreets::SmartyError => err
31
58
  puts err
32
59
  return
@@ -2,6 +2,13 @@ require_relative "property/financial/response"
2
2
  require_relative "property/principal/response"
3
3
  require_relative "property/financial/lookup"
4
4
  require_relative "property/principal/lookup"
5
+ require_relative "geo_reference/response"
6
+ require_relative "geo_reference/lookup"
7
+ require_relative "secondary/response"
8
+ require_relative "secondary/lookup"
9
+ require_relative "secondary/count/response"
10
+ require_relative "secondary/count/lookup"
11
+ require_relative "lookup"
5
12
  require_relative '../request'
6
13
 
7
14
  module SmartyStreets
@@ -12,20 +19,89 @@ module SmartyStreets
12
19
  @serializer = serializer
13
20
  end
14
21
 
15
- def send_property_financial_lookup(smarty_key)
16
- __send(USEnrichment::Property::Financial::Lookup.new(smarty_key))
22
+ def send_property_financial_lookup(lookup)
23
+ if (lookup.instance_of? String)
24
+ __send(USEnrichment::Property::Financial::Lookup.new(lookup))
25
+ elsif (lookup.instance_of? USEnrichment::Lookup)
26
+ lookup.data_set = 'property'
27
+ lookup.data_sub_set = 'financial'
28
+ __send(lookup)
29
+ end
30
+ end
31
+
32
+ def send_property_principal_lookup(lookup)
33
+ if (lookup.instance_of? String)
34
+ __send(USEnrichment::Property::Principal::Lookup.new(lookup))
35
+ elsif (lookup.instance_of? USEnrichment::Lookup)
36
+ lookup.data_set = 'property'
37
+ lookup.data_sub_set = 'principal'
38
+ __send(lookup)
39
+ end
40
+ end
41
+
42
+ def send_geo_reference_lookup(lookup)
43
+ if (lookup.instance_of? String)
44
+ __send(USEnrichment::GeoReference::Lookup.new(lookup))
45
+ elsif (lookup.instance_of? USEnrichment::Lookup)
46
+ lookup.data_set = 'geo-reference'
47
+ lookup.data_sub_set = nil
48
+ __send(lookup)
49
+ end
50
+ end
51
+
52
+ def send_secondary_lookup(lookup)
53
+ if (lookup.instance_of? String)
54
+ __send(USEnrichment::Secondary::Lookup.new(lookup))
55
+ elsif (lookup.instance_of? USEnrichment::Lookup)
56
+ lookup.data_set = 'secondary'
57
+ lookup.data_sub_set = nil
58
+ __send(lookup)
59
+ end
17
60
  end
18
61
 
19
- def send_property_principal_lookup(smarty_key)
20
- __send(USEnrichment::Property::Principal::Lookup.new(smarty_key))
62
+ def send_secondary_count_lookup(lookup)
63
+ if (lookup.instance_of? String)
64
+ __send(USEnrichment::Secondary::Count::Lookup.new(lookup))
65
+ elsif (lookup.instance_of? USEnrichment::Lookup)
66
+ lookup.data_set = 'secondary'
67
+ lookup.data_sub_set = 'count'
68
+ __send(lookup)
69
+ end
70
+ end
71
+
72
+ def send_generic_lookup(lookup, data_set, data_sub_set = nil)
73
+ if (lookup.instance_of? String)
74
+ __send(USEnrichment::Lookup.new(lookup, data_set, data_sub_set))
75
+ elsif (lookup.instance_of? USEnrichment::Lookup)
76
+ lookup.data_set = data_set
77
+ lookup.data_sub_set = data_sub_set
78
+ __send(lookup)
79
+ end
21
80
  end
22
81
 
23
82
  def __send(lookup)
24
83
  smarty_request = Request.new
25
84
 
26
85
  return if lookup.nil?
27
-
28
- smarty_request.url_components = '/' + lookup.smarty_key + '/' + lookup.data_set + '/' + lookup.data_sub_set
86
+ if (lookup.smarty_key.nil?)
87
+ if (lookup.data_sub_set.nil?)
88
+ smarty_request.url_components = '/search/' + lookup.data_set
89
+ else
90
+ smarty_request.url_components = '/search/' + lookup.data_set + '/' + lookup.data_sub_set
91
+ end
92
+ add_parameter(smarty_request, 'freeform', lookup.freeform)
93
+ add_parameter(smarty_request, 'street', lookup.street)
94
+ add_parameter(smarty_request, 'city', lookup.city)
95
+ add_parameter(smarty_request, 'state', lookup.state)
96
+ add_parameter(smarty_request, 'zipcode', lookup.zipcode)
97
+ else
98
+ if (lookup.data_sub_set.nil?)
99
+ smarty_request.url_components = '/' + lookup.smarty_key + '/' + lookup.data_set
100
+ else
101
+ smarty_request.url_components = '/' + lookup.smarty_key + '/' + lookup.data_set + '/' + lookup.data_sub_set
102
+ end
103
+ end
104
+
29
105
 
30
106
  response = @sender.send(smarty_request)
31
107
  results = @serializer.deserialize(response.payload)
@@ -42,10 +118,24 @@ module SmartyStreets
42
118
  if lookup.data_sub_set == "principal"
43
119
  result = USEnrichment::Property::Principal::Response.new(raw_result)
44
120
  end
121
+ if lookup.data_set == "geo-reference"
122
+ result = USEnrichment::GeoReference::Response.new(raw_result)
123
+ end
124
+ if lookup.data_set == "secondary"
125
+ if lookup.data_sub_set == "count"
126
+ result = USEnrichment::Secondary::Count::Response.new(raw_result)
127
+ elsif lookup.data_sub_set.nil?
128
+ result = USEnrichment::Secondary::Response.new(raw_result)
129
+ end
130
+ end
45
131
  output << result
46
132
  end
47
133
  output
48
134
  end
135
+
136
+ def add_parameter(request, key, value)
137
+ request.parameters[key] = value unless value.nil? or value.empty?
138
+ end
49
139
  end
50
140
  end
51
141
  end
@@ -0,0 +1,23 @@
1
+ require_relative 'census_block_entry'
2
+ require_relative 'census_county_division_entry'
3
+ require_relative 'census_tract_entry'
4
+ require_relative 'core_based_stat_area_entry'
5
+ require_relative 'place_entry'
6
+
7
+ module SmartyStreets
8
+ module USEnrichment
9
+ module GeoReference
10
+ class Attributes
11
+ attr_reader :census_block, :census_county_division, :census_tract, :core_based_stat_area, :place
12
+
13
+ def initialize(obj)
14
+ @census_block = GeoReference::CensusBlockEntry.new(obj['census_block'])
15
+ @census_county_division = GeoReference::CensusCountyDivisionEntry.new(obj['census_county_division'])
16
+ @census_tract = GeoReference::CensusTractEntry.new(obj['census_tract'])
17
+ @core_based_stat_area = GeoReference::CoreBasedStatAreaEntry.new(obj['core_based_stat_area'])
18
+ @place = GeoReference::PlaceEntry.new(obj['place'])
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,14 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module GeoReference
4
+ class CensusBlockEntry
5
+ attr_reader :accuracy, :geoid
6
+
7
+ def initialize(obj)
8
+ @accuracy = obj['accuracy']
9
+ @geoid = obj['geoid']
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,15 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module GeoReference
4
+ class CensusCountyDivisionEntry
5
+ attr_reader :accuracy, :code, :name
6
+
7
+ def initialize(obj)
8
+ @accuracy = obj['accuracy']
9
+ @code = obj['code']
10
+ @name = obj['name']
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,13 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module GeoReference
4
+ class CensusTractEntry
5
+ attr_reader :code
6
+
7
+ def initialize(obj)
8
+ @code = obj['code']
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,14 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module GeoReference
4
+ class CoreBasedStatAreaEntry
5
+ attr_reader :code, :name
6
+
7
+ def initialize(obj)
8
+ @code = obj['code']
9
+ @name = obj['name']
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,15 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module GeoReference
4
+ class Lookup
5
+ attr_reader :smarty_key, :data_set, :data_sub_set
6
+
7
+ def initialize(smarty_key)
8
+ @smarty_key = smarty_key
9
+ @data_set = 'geo-reference'
10
+ @data_sub_set = nil
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,16 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module GeoReference
4
+ class PlaceEntry
5
+ attr_reader :accuracy, :code, :name, :type
6
+
7
+ def initialize(obj)
8
+ @accuracy = obj['accuracy']
9
+ @code = obj['code']
10
+ @name = obj['name']
11
+ @type = obj['type']
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,17 @@
1
+ require_relative "attributes"
2
+
3
+ module SmartyStreets
4
+ module USEnrichment
5
+ module GeoReference
6
+ class Response
7
+ attr_reader :smarty_key, :data_set, :attributes
8
+
9
+ def initialize(obj)
10
+ @smarty_key = obj['smarty_key']
11
+ @data_set = 'geo-reference'
12
+ @attributes = Attributes.new(obj['attributes'])
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,19 @@
1
+ require_relative '../json_able'
2
+ module SmartyStreets
3
+ module USEnrichment
4
+ class Lookup < JSONAble
5
+ attr_accessor :smarty_key, :data_set, :data_sub_set, :freeform, :street, :city, :state, :zipcode
6
+
7
+ def initialize(smarty_key=nil, data_set=nil, data_sub_set=nil, freeform=nil, street=nil, city=nil, state=nil, zipcode=nil)
8
+ @smarty_key = smarty_key
9
+ @data_set = data_set
10
+ @data_sub_set = data_sub_set
11
+ @freeform = freeform
12
+ @street = street
13
+ @city = city
14
+ @state = state
15
+ @zipcode = zipcode
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,23 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module Secondary
4
+ class AliasesEntry
5
+ attr_reader :smarty_key, :primary_number, :street_predirection, :street_name, :street_suffix, :street_postdirection, :city_name,
6
+ :state_abbreviation, :zipcode, :plus4_code
7
+
8
+ def initialize(obj)
9
+ @smarty_key = obj['smarty_key']
10
+ @primary_number = obj['primary_number']
11
+ @street_predirection = obj['street_predirection']
12
+ @street_name = obj['street_name']
13
+ @street_suffix = obj['street_suffix']
14
+ @street_postdirection = obj['street_postdirection']
15
+ @city_name = obj['city_name']
16
+ @state_abbreviation = obj['state_abbreviation']
17
+ @zipcode = obj['zipcode']
18
+ @plus4_code = obj['plus4_code']
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,17 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module Secondary
4
+ module Count
5
+ class Lookup
6
+ attr_reader :smarty_key, :data_set, :data_sub_set
7
+
8
+ def initialize(smarty_key)
9
+ @smarty_key = smarty_key
10
+ @data_set = "secondary"
11
+ @data_sub_set = "count"
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,16 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module Secondary
4
+ module Count
5
+ class Response
6
+ attr_reader :smarty_key, :count
7
+
8
+ def initialize(obj)
9
+ @smarty_key = obj['smarty_key']
10
+ @count = obj['count']
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,15 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module Secondary
4
+ class Lookup
5
+ attr_reader :smarty_key, :data_set, :data_sub_set
6
+
7
+ def initialize(smarty_key)
8
+ @smarty_key = smarty_key
9
+ @data_set = "secondary"
10
+ @data_sub_set = nil
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,38 @@
1
+ require_relative 'root_address_entry'
2
+ require_relative 'aliases_entry'
3
+ require_relative 'secondaries_entry'
4
+
5
+ module SmartyStreets
6
+ module USEnrichment
7
+ module Secondary
8
+ class Response
9
+ attr_reader :smarty_key, :root_address, :aliases, :secondaries
10
+
11
+ def initialize(obj)
12
+ @smarty_key = obj['smarty_key']
13
+ @root_address = Secondary::RootAddressEntry.new(obj['root_address'])
14
+ if !obj['aliases'].nil?
15
+ @aliases = createAliasesArray(obj['aliases'])
16
+ end
17
+ @secondaries = createSecondariesArray(obj['secondaries'])
18
+ end
19
+
20
+ def createAliasesArray(obj)
21
+ aliasesArray = []
22
+ for item in obj do
23
+ aliasesArray << Secondary::AliasesEntry.new(item)
24
+ end
25
+ return aliasesArray
26
+ end
27
+
28
+ def createSecondariesArray(obj)
29
+ secondariesArray = []
30
+ for item in obj do
31
+ secondariesArray << Secondary::SecondariesEntry.new(item)
32
+ end
33
+ return secondariesArray
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,24 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module Secondary
4
+ class RootAddressEntry
5
+ attr_reader :secondary_count, :smarty_key, :primary_number, :street_predirection, :street_name, :street_suffix, :street_postdirection,
6
+ :city_name, :state_abbreviation, :zipcode, :plus4_code
7
+
8
+ def initialize(obj)
9
+ @secondary_count = obj['secondary_count']
10
+ @smarty_key = obj['smarty_key']
11
+ @primary_number = obj['primary_number']
12
+ @street_predirection = obj['street_predirection']
13
+ @street_name = obj['street_name']
14
+ @street_suffix = obj['street_suffix']
15
+ @street_postdirection = obj['street_postdirection']
16
+ @city_name = obj['city_name']
17
+ @state_abbreviation = obj['state_abbreviation']
18
+ @zipcode = obj['zipcode']
19
+ @plus4_code = obj['plus4_code']
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,16 @@
1
+ module SmartyStreets
2
+ module USEnrichment
3
+ module Secondary
4
+ class SecondariesEntry
5
+ attr_reader :smarty_key, :secondary_designator, :secondary_number, :plus4_code
6
+
7
+ def initialize(obj)
8
+ @smarty_key = obj['smarty_key']
9
+ @secondary_designator = obj['secondary_designator']
10
+ @secondary_number = obj['secondary_number']
11
+ @plus4_code = obj['plus4_code']
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -1,3 +1,3 @@
1
1
  module SmartyStreets
2
- VERSION = '5.18.1' # DO NOT EDIT (this is updated by a build job when a new release is published)
2
+ VERSION = '5.20.2' # DO NOT EDIT (this is updated by a build job when a new release is published)
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smartystreets_ruby_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.18.1
4
+ version: 5.20.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - SmartyStreets SDK Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -143,6 +143,15 @@ files:
143
143
  - lib/smartystreets_ruby_sdk/us_autocomplete_pro/suggestion.rb
144
144
  - lib/smartystreets_ruby_sdk/us_enrichment.rb
145
145
  - lib/smartystreets_ruby_sdk/us_enrichment/client.rb
146
+ - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/attributes.rb
147
+ - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/census_block_entry.rb
148
+ - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/census_county_division_entry.rb
149
+ - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/census_tract_entry.rb
150
+ - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/core_based_stat_area_entry.rb
151
+ - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/lookup.rb
152
+ - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/place_entry.rb
153
+ - lib/smartystreets_ruby_sdk/us_enrichment/geo_reference/response.rb
154
+ - lib/smartystreets_ruby_sdk/us_enrichment/lookup.rb
146
155
  - lib/smartystreets_ruby_sdk/us_enrichment/property/financial/attributes.rb
147
156
  - lib/smartystreets_ruby_sdk/us_enrichment/property/financial/history_entry.rb
148
157
  - lib/smartystreets_ruby_sdk/us_enrichment/property/financial/lookup.rb
@@ -150,6 +159,13 @@ files:
150
159
  - lib/smartystreets_ruby_sdk/us_enrichment/property/principal/attributes.rb
151
160
  - lib/smartystreets_ruby_sdk/us_enrichment/property/principal/lookup.rb
152
161
  - lib/smartystreets_ruby_sdk/us_enrichment/property/principal/response.rb
162
+ - lib/smartystreets_ruby_sdk/us_enrichment/secondary/aliases_entry.rb
163
+ - lib/smartystreets_ruby_sdk/us_enrichment/secondary/count/lookup.rb
164
+ - lib/smartystreets_ruby_sdk/us_enrichment/secondary/count/response.rb
165
+ - lib/smartystreets_ruby_sdk/us_enrichment/secondary/lookup.rb
166
+ - lib/smartystreets_ruby_sdk/us_enrichment/secondary/response.rb
167
+ - lib/smartystreets_ruby_sdk/us_enrichment/secondary/root_address_entry.rb
168
+ - lib/smartystreets_ruby_sdk/us_enrichment/secondary/secondaries_entry.rb
153
169
  - lib/smartystreets_ruby_sdk/us_extract.rb
154
170
  - lib/smartystreets_ruby_sdk/us_extract/address.rb
155
171
  - lib/smartystreets_ruby_sdk/us_extract/client.rb