solidus_mp 0.3.8 → 1.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 69e3838ad6c5f5d27da3f2c7266283932c81bf507d9e37f72dfa69bd277ad218
4
- data.tar.gz: 32b2a6e500cc2a34c09dff7774826764f616ec2796ad303efefe46eea92bc5a7
3
+ metadata.gz: 317ace149d7d821b01bf295b4883a8b51966a77b9bd58f39607abeff96c6602a
4
+ data.tar.gz: d9f670db89f5bd072dab697a37cb3b15446966b93dd71762bffd5c4c35fb76ce
5
5
  SHA512:
6
- metadata.gz: fd20d8fdbe4df8097d8214619734f85b4503c1b44383007e7353b11e0710ca80615264e8e9d18d9a62f058a727a029b7d4f988adffe1171cc3906fe8e8f2dcb4
7
- data.tar.gz: db3344e41170712201c2fadb1ab00b7a16e7929ee32f8b8093bcd3371e61622f2ca6edf6b2ccef89199858f4b4eea4a4e8c5f77281357ee83ffcdc09339a62f4
6
+ metadata.gz: 8f9d7f20d1db7a1e432aa91cfe54328d9f8a8f0aa01ba907fa9cd92b0dcd0bbe493a9944d1cdefa9b910b660f29a680c8ef758032deaa1048da0acd580ea9d1f
7
+ data.tar.gz: 808b7b32bd0f4776180af0f6bcd1124a14879b39947d73dfd493ceb796066a6351b59874ceac72abd0a39d7a62b26082053ff5e90bb2a0670c9700157cc7ad8d
@@ -24,7 +24,7 @@ module SolidusMp
24
24
 
25
25
  def create_card_payment payment
26
26
  mp_payment = create_mp_payment(payment)
27
- payment.source.update(external_id: mp_payment.id, three_ds_url: mp_payment.three_ds_info_external_resource_url, three_ds_creq: mp_payment.three_ds_info_creq)
27
+ payment.source.update(external_id: mp_payment.id, three_ds_url: mp_payment.three_ds_info_external_resource_url, three_ds_creq: mp_payment.three_ds_info_creq, last_four_digits: mp_payment.last_four_digits)
28
28
  if mp_payment.error || mp_payment.internal_error
29
29
  payment.invalidate
30
30
  error_message = "#{mp_payment.error || mp_payment.internal_error} (#{mp_payment.status_detail})"
@@ -0,0 +1,5 @@
1
+ class AddLastFourDigitsToCreditCardSource < ActiveRecord::Migration[7.0]
2
+ def change
3
+ add_column :solidus_mp_card_payment_sources, :last_four_digits, :string
4
+ end
5
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidusMp
4
- VERSION = '0.3.8'
4
+ VERSION = '1.0.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_mp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.8
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - caio
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-17 00:00:00.000000000 Z
11
+ date: 2024-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: solidus_core
@@ -115,6 +115,7 @@ files:
115
115
  - db/migrate/20231221141935_add_items_to_mp_card.rb
116
116
  - db/migrate/20240105143500_add_status_to_payment_source.rb
117
117
  - db/migrate/20240109171955_add_error_message_to_payment_source.rb
118
+ - db/migrate/20240510185743_add_last_four_digits_to_credit_card_source.rb
118
119
  - lib/generators/solidus_mp/install/install_generator.rb
119
120
  - lib/generators/solidus_mp/install/templates/app/javascript/controllers/credit_card_controller.js
120
121
  - lib/generators/solidus_mp/install/templates/app/javascript/controllers/three_ds_controller.js
@@ -157,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
158
  - !ruby/object:Gem::Version
158
159
  version: '0'
159
160
  requirements: []
160
- rubygems_version: 3.4.10
161
+ rubygems_version: 3.5.10
161
162
  signing_key:
162
163
  specification_version: 4
163
164
  summary: ''