Skip to content

Address Input interface changes

Compare
Choose a tag to compare
@aaronpanch aaronpanch released this 16 Feb 00:25
· 3154 commits to master since this release

This release includes a change to the serialization of the country information within an Address. The country is now found under the key countryCode as opposed to the old country.

Addresses now follow:

{
  address1: React.PropTypes.string,
  address2: React.PropTypes.string,
  city: React.PropTypes.string,
  state: React.PropTypes.string,
  postal: React.PropTypes.string,
  countryCode: React.PropTypes.string
}