justifi 0.6.5 → 0.6.6

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: 8d6259198eb5929982df0e0112bd23b2320319ac4cb17d48d12a24ff8f4bc12d
4
- data.tar.gz: 2d449ca55ee2c7943992d5d267ae3d839d0bb12910202906517cd8d7c207d9ba
3
+ metadata.gz: 336f40c377552950348f439beca86b56603279f8957ac57a5d149a7d85517edc
4
+ data.tar.gz: 30ae032dc49f5e59fe4f8929dc6408db7f60f04b8edd54ccf2bcbe9b040e4c49
5
5
  SHA512:
6
- metadata.gz: 1d30e7f4575d1bf94ad407cd3894f1e9999774a93898ad497c454d035aa4d3823806a10fe32cd0ccb22ed57adb6a8002f390577f6eaad3450443937e7236cc08
7
- data.tar.gz: 58276f78ad3223aacfb9d06727303123718d29d90b7d94d0d882a14227c2292d04aecafa9c56bce5bb93a1fb47a9fbf90a427905855ec60735d070c0838dc482
6
+ metadata.gz: b0f05db84aef2bae4395cbe6ebd4a7bccfa5dc886157cfb7367a7abfb993c2e51adec6466f1d8da35aba9d47de79d49726174c43869e249d190c254300544eb4
7
+ data.tar.gz: 41afe74e5e8c8365368c70e0d51c52db8efa569443d583cf1b5ac3389cd72291ac153678b17e7093596f7968c95499fe5fb33cd86e23ded4cf0d7fb71a2a3d5e
data/README.md CHANGED
@@ -237,6 +237,23 @@ archived_accounts = Justifi::SubAccount.list(params: {status: "archived"})
237
237
  sub_account = Justifi::SubAccount.get(sub_account_id: "acc_xyzs")
238
238
  ```
239
239
 
240
+ ## Create a Checkout Session
241
+
242
+ If you are using our hosted checkout solution, follow this to generate a session:
243
+
244
+ ```ruby
245
+
246
+ # create a payment intent (check params [here](https://developer.justifi.ai/#operation/CreateCheckoutSession))
247
+ py = Justifi::PaymentIntent.create(sub_account_id: "acc_xyz", params: {})
248
+
249
+ # create a session (check params [here](https://developer.justifi.ai/#operation/CreateCheckoutSession))
250
+ session = Justifi::CheckoutSession.create(params: {})
251
+
252
+ # use the session id to access your hosted checkout page at:
253
+ hosted_checkout_url = "https://hosted-checkout.justifi.ai/#{session.data.checkout_session_id}"
254
+ ```
255
+
256
+
240
257
  ## Webhook Signature Verification
241
258
 
242
259
  Webhooks are secured by signature verification. An encrypted header is sent as a POST to your API endpoint (JUSTIFI-SIGNATURE),
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Justifi
4
+ module CheckoutSession
5
+ class << self
6
+ def create(params:, headers: {})
7
+ JustifiOperations.execute_post_request("/v1/checkout_sessions", params, headers)
8
+ end
9
+ end
10
+ end
11
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Justifi
4
- VERSION = "0.6.5"
4
+ VERSION = "0.6.6"
5
5
  end
data/lib/justifi.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "forwardable"
4
+ require "securerandom"
4
5
  require "justifi/api_operations"
5
6
 
6
7
  require "justifi/util"
@@ -17,6 +18,7 @@ require "justifi/sub_account"
17
18
  require "justifi/payment"
18
19
  require "justifi/refund"
19
20
  require "justifi/payout"
21
+ require "justifi/checkout_session"
20
22
  require "justifi/balance_transaction"
21
23
  require "justifi/dispute"
22
24
  require "justifi/payment_method"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: justifi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.5
4
+ version: 0.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - JustiFi
@@ -162,6 +162,7 @@ files:
162
162
  - lib/justifi.rb
163
163
  - lib/justifi/api_operations.rb
164
164
  - lib/justifi/balance_transaction.rb
165
+ - lib/justifi/checkout_session.rb
165
166
  - lib/justifi/configuration.rb
166
167
  - lib/justifi/dispute.rb
167
168
  - lib/justifi/in_memory_cache.rb