@bigcommerce/checkout-sdk 1.192.1 → 1.195.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.
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.195.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.194.1...v1.195.0) (2021-11-01)
6
+
7
+
8
+ ### Features
9
+
10
+ * **payment:** INT-4917 Add logo property to PaymentMethodConfig interface ([#1272](https://github.com/bigcommerce/checkout-sdk-js/issues/1272)) ([1f0a2a5](https://github.com/bigcommerce/checkout-sdk-js/commit/1f0a2a54c423b2b2148b1312281e0430478c0567))
11
+
12
+ ### [1.194.1](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.194.0...v1.194.1) (2021-10-24)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **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))
18
+
19
+ ## [1.194.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.193.0...v1.194.0) (2021-10-21)
20
+
21
+
22
+ ### Features
23
+
24
+ * **payment:** BOLT-78 changed background color of mounted Bolt payment field ([90f5443](https://github.com/bigcommerce/checkout-sdk-js/commit/90f54433f31b22a3cd158c5990f426c203ada3da))
25
+
26
+ ## [1.193.0](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.192.1...v1.193.0) (2021-10-21)
27
+
28
+
29
+ ### Features
30
+
31
+ * **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))
32
+
5
33
  ### [1.192.1](https://github.com/bigcommerce/checkout-sdk-js/compare/v1.192.0...v1.192.1) (2021-10-13)
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);