bckbn 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b29620743a992dbae744097543537e4b165ec0fd41f4d4f42d7bb26b90b96bd6
4
- data.tar.gz: 1d76d4b980d2470b902d7056bf43ddb36d213b0e0702f0f6a43c17b7463e3a11
3
+ metadata.gz: 4fa4792a049872ba76ad8edce63797201a12920c8d0087d76b3dbeb86397ff37
4
+ data.tar.gz: 790b83ef726a30b5027ab38eea45e0c08118e8b5e316b6f8c9096e524fbe884d
5
5
  SHA512:
6
- metadata.gz: f83c6a4af4dcb967b86ddad8763622c30736ea7f882161f3cfe194e21d2c0630903b39b621923277cfb25b78da37809611e67f1281d6e9e2401571db57ea10b7
7
- data.tar.gz: 05dd64aaca218e3d786ab0b86433e7b443d5c0860d1171ffb4b03d59ad94df27587408460f545f2428ee41a7f400e9b8d5467921bd6112a534e9c6276dd629d8
6
+ metadata.gz: 1e41821845adf302bc2ea737f5ed78574b78d8766b3bba3481ee4c5016e60264a53b3d0aba33b46fcc5ebdd547b811131b66a9daf570fe6c1f87454f5846a47e
7
+ data.tar.gz: c7a55d28388b25e539c9de76d1d14c8a509a9f476641a90561af3b4597a7079a69fd02819fcbc1dd3b9a6cc859f53f9b78a093221d600f08418896e97c70e7ef
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bckbn (3.0.0)
4
+ bckbn (3.0.1)
5
5
  addressable (~> 2.8.5)
6
6
 
7
7
  GEM
@@ -3,14 +3,14 @@
3
3
  module Bckbn
4
4
  module Transaction
5
5
  ENDPOINTS = {
6
- authorization: "/transaction/authorization",
7
- capture: "/transaction/capture",
8
- credit: "/transaction/credit",
9
- sale: "/transaction/sale",
10
- void: "/transaction/void",
11
- echeck_credit: "/transaction/echeck_credit",
12
- echeck_sale: "/transaction/echeck_sale",
13
- echeck_void: "/transaction/echeck_void"
6
+ authorization: "/transactions/authorization",
7
+ capture: "/transactions/capture",
8
+ credit: "/transactions/credit",
9
+ sale: "/transactions/sale",
10
+ void: "/transactions/void",
11
+ echeck_credit: "/transactions/echeck_credit",
12
+ echeck_sale: "/transactions/echeck_sale",
13
+ echeck_void: "/transactions/echeck_void"
14
14
  }.freeze
15
15
  private_constant :ENDPOINTS
16
16
 
data/lib/bckbn/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bckbn
4
- VERSION = "3.0.0"
4
+ VERSION = "3.0.1"
5
5
  end
data/lib/bckbn.rb CHANGED
@@ -9,13 +9,13 @@ require "bckbn/version"
9
9
  require "bckbn/configuration"
10
10
  require "bckbn/core_ext"
11
11
  require "bckbn/connection"
12
- require "bckbn/resources/transaction/api"
13
- require "bckbn/resources/transaction/models/card"
14
- require "bckbn/resources/transaction/models/echeck"
15
- require "bckbn/resources/transaction/models/billing_address"
16
- require "bckbn/resources/transaction/models/requests"
17
- require "bckbn/resources/transaction/models/responses"
18
- require "bckbn/resources/transaction/models/payment"
12
+ require "bckbn/resources/transactions/api"
13
+ require "bckbn/resources/transactions/models/card"
14
+ require "bckbn/resources/transactions/models/echeck"
15
+ require "bckbn/resources/transactions/models/billing_address"
16
+ require "bckbn/resources/transactions/models/requests"
17
+ require "bckbn/resources/transactions/models/responses"
18
+ require "bckbn/resources/transactions/models/payment"
19
19
 
20
20
  require "bckbn/resources/charge/api"
21
21
  require "bckbn/resources/charge/models/requests"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bckbn
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - nikkypx
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-01 00:00:00.000000000 Z
11
+ date: 2024-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -117,14 +117,14 @@ files:
117
117
  - lib/bckbn/resources/charge/api.rb
118
118
  - lib/bckbn/resources/charge/models/requests.rb
119
119
  - lib/bckbn/resources/charge/models/responses.rb
120
- - lib/bckbn/resources/transaction/api.rb
121
- - lib/bckbn/resources/transaction/models/billing_address.rb
122
- - lib/bckbn/resources/transaction/models/card.rb
123
- - lib/bckbn/resources/transaction/models/cardholder_authentication.rb
124
- - lib/bckbn/resources/transaction/models/echeck.rb
125
- - lib/bckbn/resources/transaction/models/payment.rb
126
- - lib/bckbn/resources/transaction/models/requests.rb
127
- - lib/bckbn/resources/transaction/models/responses.rb
120
+ - lib/bckbn/resources/transactions/api.rb
121
+ - lib/bckbn/resources/transactions/models/billing_address.rb
122
+ - lib/bckbn/resources/transactions/models/card.rb
123
+ - lib/bckbn/resources/transactions/models/cardholder_authentication.rb
124
+ - lib/bckbn/resources/transactions/models/echeck.rb
125
+ - lib/bckbn/resources/transactions/models/payment.rb
126
+ - lib/bckbn/resources/transactions/models/requests.rb
127
+ - lib/bckbn/resources/transactions/models/responses.rb
128
128
  - lib/bckbn/version.rb
129
129
  homepage: https://github.com/anedot/bckbn-ruby
130
130
  licenses: