smartystreets-javascript-sdk 2.1.2 → 2.2.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.
@@ -13,7 +13,7 @@ jobs:
13
13
 
14
14
  strategy:
15
15
  matrix:
16
- node-version: [10.x, 12.x, 14.x]
16
+ node-version: [10.x, 12.x, 14.x, 16.x, 18.x]
17
17
 
18
18
  steps:
19
19
  - uses: actions/checkout@v2
package/Makefile CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/make -f
2
2
 
3
- VERSION := $(shell tagit -p --dry-run)
3
+ VERSION := $(shell tagit -m --dry-run)
4
4
  VERSION_FILE1 := package.json
5
5
  VERSION_FILE2 := package-lock.json
6
6
 
@@ -11,7 +11,7 @@ node_modules:
11
11
  npm install
12
12
 
13
13
  publish: test version upload unversion
14
- tagit -p
14
+ tagit -m
15
15
  git push origin --tags
16
16
 
17
17
  upload:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smartystreets-javascript-sdk",
3
- "version": "2.1.2",
3
+ "version": "2.2.0",
4
4
  "description": "Quick and easy Smarty address validation.",
5
5
  "keywords": [
6
6
  "smarty",
@@ -21,14 +21,14 @@ const InternationalStreetClient = require("./international_street/Client");
21
21
  const UsReverseGeoClient = require("./us_reverse_geo/Client");
22
22
  const InternationalAddressAutocompleteClient = require("./international_address_autocomplete/Client");
23
23
 
24
- const INTERNATIONAL_STREET_API_URI = "https://international-street.api.smartystreets.com/verify";
25
- const US_AUTOCOMPLETE_API_URL = "https://us-autocomplete.api.smartystreets.com/suggest";
26
- const US_AUTOCOMPLETE_PRO_API_URL = "https://us-autocomplete-pro.api.smartystreets.com/lookup";
27
- const US_EXTRACT_API_URL = "https://us-extract.api.smartystreets.com/";
28
- const US_STREET_API_URL = "https://us-street.api.smartystreets.com/street-address";
29
- const US_ZIP_CODE_API_URL = "https://us-zipcode.api.smartystreets.com/lookup";
30
- const US_REVERSE_GEO_API_URL = "https://us-reverse-geo.api.smartystreets.com/lookup";
31
- const INTERNATIONAL_ADDRESS_AUTOCOMPLETE_API_URL = "https://international-autocomplete.api.smartystreets.com/lookup";
24
+ const INTERNATIONAL_STREET_API_URI = "https://international-street.api.smarty.com/verify";
25
+ const US_AUTOCOMPLETE_API_URL = "https://us-autocomplete.api.smarty.com/suggest";
26
+ const US_AUTOCOMPLETE_PRO_API_URL = "https://us-autocomplete-pro.api.smarty.com/lookup";
27
+ const US_EXTRACT_API_URL = "https://us-extract.api.smarty.com/";
28
+ const US_STREET_API_URL = "https://us-street.api.smarty.com/street-address";
29
+ const US_ZIP_CODE_API_URL = "https://us-zipcode.api.smarty.com/lookup";
30
+ const US_REVERSE_GEO_API_URL = "https://us-reverse-geo.api.smarty.com/lookup";
31
+ const INTERNATIONAL_ADDRESS_AUTOCOMPLETE_API_URL = "https://international-autocomplete.api.smarty.com/lookup";
32
32
 
33
33
  /**
34
34
  * The ClientBuilder class helps you build a client object for one of the supported Smarty APIs.<br>