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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50e9641643615695776b0190de0659cbeffef80f57d47dced0a51a95bd3f7468
4
- data.tar.gz: 9c70c94a321d1188c89c70bb4c702e9fea6af8c37aab3e7c46fb5e60e5594600
3
+ metadata.gz: b5810f60d95e3a7f06f066b6c1204bdb2a20b0d3b7a7700207d028c761d299ca
4
+ data.tar.gz: e97c1d2b731673006b4c262c2a81798c084412ddce20425a60dc6fa4eca83438
5
5
  SHA512:
6
- metadata.gz: 13bf76896c03e8dda1bf856982e060a136112f016eff7264953e85ea10d28b66cc580f7db36532fc038df250930bd3d3cb1b590146114b373d3cdd046772c1fd
7
- data.tar.gz: 48b7878f73cc8d9cb1d8d15fd12331c94eda8f0d5d006340324db0a26935028e1c212db08547b4e0356960270bdfa10d0db9f1a438f361f7cb116628c71c3e60
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),
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module EffectiveOrders
2
- VERSION = '6.25.1'.freeze
2
+ VERSION = '6.25.3'.freeze
3
3
  end
@@ -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.1
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-22 00:00:00.000000000 Z
11
+ date: 2025-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails