blockchyp 2.3.3 → 2.3.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +16 -5
  3. data/lib/blockchyp/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a82102fd9132353d457d08fdaf7aabd9cb4c6392ddb515925f309c753fd21eef
4
- data.tar.gz: '09186f6df35dd8fadfd87b4db9343f76cf4a53285b7dc2aea4b5a219ad27c41a'
3
+ metadata.gz: 42033eb64aa8814e7a85a87ada270bf68d53268dba82b84e0372515b5cfc0237
4
+ data.tar.gz: 01accfd7a693e15e97851cf23020788a62531a56a0644cfb8ded2eb0338c3bd6
5
5
  SHA512:
6
- metadata.gz: 5af4709a88f893d915ece0dde84482ee60fa7595f874be3a546da99a721f114e3cb41927906b937c0c241db6f794f254bc28f4ff5933de3cd1577ac4ea518d98
7
- data.tar.gz: fb1c3cd21d5af92e2c1c1cb010b20d7521ea0493c1d5e67140e4c4155570c5cf3638ebb08c81a50b024674c36b32354355241bf9d8752518d85ac3faa04a5913
6
+ metadata.gz: 13b0614fa9140e7695b587f7fb40624ef3cc45e1c33b0cee4d7247447a9a80f060fdb1d1c0d369f6e1c2c23dd6c6392a6d9df9f7b3010bc681420cbf6e726964
7
+ data.tar.gz: 6ffbec43dcdb35c8ba601d931ba44b56b50c4240430a91e0640816abbb20f5d72a8ed5cff0fdc34729c8b824cfb17cda7abc0f201f8774fd63309baf421ddd9d
data/README.md CHANGED
@@ -679,23 +679,24 @@ more control over the look of the email message, you can omit the `autoSend`
679
679
  flag and send the customer email yourself.
680
680
 
681
681
  There are a lot of optional parameters for this API, but at a minimum
682
- you'll need to pass in a total, customer name, and email address.
682
+ you'll need to pass in a total, customer name, and email address. (Unless
683
+ you use the `cashier` flag.)
683
684
 
684
685
  **Customer Info**
685
686
 
686
- You must specify a customer, either by creating a new customer record inline
687
- or by passing in an existing Customer ID or Customer Ref.
687
+ Unless you're using the `cashier` flag, you must specify a customer, either by
688
+ creating a new customer record inline or by passing in an existing Customer ID or Customer Ref.
688
689
 
689
690
  **Line Item Level Data**
690
691
 
691
692
  It's not strictly required, but we strongly recommend sending line item level
692
- data with every request. It will make the invoice look a little more complete
693
+ detail with every request. It will make the invoice look a little more complete
693
694
  and the data format for line item level data is the exact same format used
694
695
  for terminal line item display, so the same code can be used to support both areas.
695
696
 
696
697
  **Descriptions**
697
698
 
698
- You can also send a free form description or message that's displayed near
699
+ You can also provide a free form description or message that's displayed near
699
700
  the bottom of the invoice. Usually this is some kind of thank you note
700
701
  or instructions.
701
702
 
@@ -716,6 +717,16 @@ really just a safeguard to prevent real emails from going out when you may not e
716
717
  If you want BlockChyp to send the email for you, just add the `autoSend` flag with
717
718
  all requests.
718
719
 
720
+ **Cashier Facing Card Entry**
721
+
722
+ BlockChyp can be used to generate internal/cashier facing links as well. This is
723
+ designed for situations where you might need to take a phone order and you don't
724
+ have a terminal.
725
+
726
+ If you pass in the `cashier` flag, no email will be sent and you'll be be able to
727
+ load the link in a browser or iframe for payment entry. When the `cashier` flag
728
+ is used, the `autoSend` flag will be ignored.
729
+
719
730
  **Payment Notifications**
720
731
 
721
732
  When a customer successfully submits payment, the merchant will receive an email
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BlockChyp
4
- VERSION = '2.3.3'
4
+ VERSION = '2.3.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blockchyp
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.3
4
+ version: 2.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - BlockChyp