@bigcommerce/checkout-sdk 1.192.0 → 1.194.1

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,34 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.194.1](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.194.0...v1.194.1) (2021-10-24)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **payment:** PAYMENTS-7390 use location.assign in PPSDK redirects to maintain correct browser history ([#1278](https://github.com/bigcommerce/checkout-sdk-js/issues/1278)) ([145b6d2](https://github.com/bigcommerce/checkout-sdk-js/commit/145b6d2ad8b10b0a2e0d464bfc552dfa3b455991))
11
+
12
+ ## [1.194.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.193.0...v1.194.0) (2021-10-21)
13
+
14
+
15
+ ### Features
16
+
17
+ * **payment:** BOLT-78 changed background color of mounted Bolt payment field ([90f5443](https://github.com/bigcommerce/checkout-sdk-js/commit/90f54433f31b22a3cd158c5990f426c203ada3da))
18
+
19
+ ## [1.193.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.192.1...v1.193.0) (2021-10-21)
20
+
21
+
22
+ ### Features
23
+
24
+ * **payment:** PAYPAL-1123 rounded amount on braintree ([#1271](https://github.com/bigcommerce/checkout-sdk-js/issues/1271)) ([d04c732](https://github.com/bigcommerce/checkout-sdk-js/commit/d04c732ea10d3f6356c312b4c5957d40ff9906b5))
25
+
26
+ ### [1.192.1](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.192.0...v1.192.1) (2021-10-13)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * **payment:** PAYPAL-1180 fixed paylater region issue ([#1269](https://github.com/bigcommerce/checkout-sdk-js/issues/1269)) ([6a8f6df](https://github.com/bigcommerce/checkout-sdk-js/commit/6a8f6df8652053cfe5d67f723872a8fee64cfe0a))
32
+
5
33
  ## [1.192.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.191.0...v1.192.0) (2021-10-12)
6
34
 
7
35
 
package/README.md CHANGED
@@ -218,12 +218,13 @@ To set the shipping address, you can collate all the address fields and construc
218
218
  const address = {
219
219
  firstName: 'Test',
220
220
  lastName: 'Tester',
221
- addressLine1: '12345 Testing Way',
221
+ address1: '12345 Testing Way',
222
222
  city: 'Some City',
223
- provinceCode: 'CA',
224
- postCode: '95555',
223
+ stateOrProvinceCode: 'CA',
224
+ postalCode: '95555',
225
225
  countryCode: 'US',
226
226
  phone: '555-555-5555',
227
+ email: 'test.tester@test.com'
227
228
  };
228
229
 
229
230
  const state = await service.updateShippingAddress(address);