effective_orders 6.25.1 → 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/config/effective_orders.rb +1 -0
- data/lib/effective_orders/version.rb +1 -1
- data/lib/effective_orders.rb +1 -1
- metadata +2 -2
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),
|
data/config/effective_orders.rb
CHANGED
@@ -120,6 +120,7 @@ EffectiveOrders.setup do |config|
|
|
120
120
|
config.send_subscription_trial_expired = true
|
121
121
|
|
122
122
|
# Quickbooks Online Sync Errors
|
123
|
+
config.send_qb_online_sync_error = true
|
123
124
|
# Effective Quickbooks Online sync errors will be sent to mailer_admin or the following recipients:
|
124
125
|
# config.qb_online_sync_error_recipients = ['"Info" <info@example.com>', '"Admin" <admin@example.com>']
|
125
126
|
|
data/lib/effective_orders.rb
CHANGED
@@ -43,7 +43,7 @@ module EffectiveOrders
|
|
43
43
|
:send_refund_notification_to_admin,
|
44
44
|
|
45
45
|
# Quickbooks Online Sync Errors
|
46
|
-
:qb_online_sync_error_recipients,
|
46
|
+
:send_qb_online_sync_error, :qb_online_sync_error_recipients,
|
47
47
|
|
48
48
|
# Features
|
49
49
|
:free_enabled, :mark_as_paid_enabled, :pretend_enabled, :pretend_message, :buyer_purchases_refund,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: effective_orders
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.25.
|
4
|
+
version: 6.25.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|