effective_orders 6.25.2 → 6.25.3
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.
- checksums.yaml +4 -4
- data/app/models/effective/deluxe_api.rb +4 -0
- data/lib/effective_orders/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5810f60d95e3a7f06f066b6c1204bdb2a20b0d3b7a7700207d028c761d299ca
|
4
|
+
data.tar.gz: e97c1d2b731673006b4c262c2a81798c084412ddce20425a60dc6fa4eca83438
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e7960a6685d4b047fd2d2b1de5c2376c13e54ac923e39050933cd3e24bd277f7d035be070dd2e77118fd6670a15bd6c0950a54a9007cc28ff21fa4725aad6a8
|
7
|
+
data.tar.gz: 18dea18d2282f8a003c5706b5466b3738253bf417bffbd8b8ab6a5b4189155102487a52267c61556c73091edcb0d709569275df0c5f8eaa04ac321111e8a1fc4
|
@@ -308,6 +308,8 @@ module Effective
|
|
308
308
|
|
309
309
|
billingAddress = if (address = order.billing_address).present?
|
310
310
|
{
|
311
|
+
firstName: order.billing_first_name,
|
312
|
+
lastName: order.billing_last_name,
|
311
313
|
email: order.email,
|
312
314
|
address: scrub(address.address1, limit: 250),
|
313
315
|
address2: scrub(address.address2),
|
@@ -320,6 +322,8 @@ module Effective
|
|
320
322
|
|
321
323
|
shippingAddress = if (address = order.shipping_address).present?
|
322
324
|
{
|
325
|
+
firstName: order.shipping_first_name,
|
326
|
+
lastName: order.shipping_last_name,
|
323
327
|
address: scrub(address.address1, limit: 250),
|
324
328
|
address2: scrub(address.address2),
|
325
329
|
city: scrub(address.city, limit: 50),
|