blockchyp 2.8.0 → 2.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/blockchyp.rb +9 -1
- data/lib/blockchyp/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ca7677d78c85630b93fb9bf78d789bfe1b725cce8308479081a7976150f7501
|
4
|
+
data.tar.gz: d28a5450a9160b30660c15ecb42b96edd9234b5e6340d2d783063747b9d18826
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 543efe438e6fa01ad95cec127f3d029838e9e6436385ed39332c29690921838daafa0605a9a808d2bf4800e2a8952bd4b1c72af535b8543921a893de02137b5b
|
7
|
+
data.tar.gz: 8c7cff2a427c0019351fb4714efe104b383c4f48f74a09138fd005205922a33d759e9c64bbdfb4da64d99cf0ef5169a5bf75e758f30cd7960802440afddd3fb0
|
data/README.md
CHANGED
@@ -143,7 +143,7 @@ might be maliciously running on the point-of-sale system.
|
|
143
143
|
**Common Variations**
|
144
144
|
|
145
145
|
* **Gift Card Redemption**: There's no special API for gift card redemption in BlockChyp. Just execute a plain charge transaction and if the customer happens to swipe a gift card, our terminals will identify the gift card and run a gift card redemption. Also note that if for some reason the gift card's original purchase transaction is associated with fraud or a chargeback, the transaction will be rejected.
|
146
|
-
* **EBT**: Set the `ebt` flag to process an EBT SNAP transaction. Note that test EBT transactions
|
146
|
+
* **EBT**: Set the `ebt` flag to process an EBT SNAP transaction. Note that test EBT transactions always assume a balance of $100.00, so test EBT transactions over that amount may be declined.
|
147
147
|
* **Cash Back**: To enable cash back for debit transactions, set the `cashBack` flag. If the card presented isn't a debit card, the `cashBack` flag will be ignored.
|
148
148
|
* **Manual Card Entry**: Set the `manual` flag to enable manual card entry. Good as a backup when chips and MSR's don't work or for more secure phone orders. You can even combine the `manual` flag with the `ebt` flag for manual EBT card entry.
|
149
149
|
* **Inline Tokenization**: You can enroll the payment method in the token vault inline with a charge transaction by setting the `enroll` flag. You'll get a token back in the response. You can even bind the token to a customer record if you also pass in customer data.
|
@@ -1623,7 +1623,7 @@ most recent transactions.
|
|
1623
1623
|
|
1624
1624
|
**Limiting Results**
|
1625
1625
|
|
1626
|
-
This API will return a maximum of
|
1626
|
+
This API will return a maximum of 50 results in a single query. Use the `maxResults` property
|
1627
1627
|
to limit maximum results even further and use the `startIndex` property to
|
1628
1628
|
page through results that span multiple queries.
|
1629
1629
|
|
data/lib/blockchyp.rb
CHANGED
@@ -42,6 +42,14 @@ module AVSResponse
|
|
42
42
|
ADDRESS_AND_POSTAL_CODE_MATCH = 'match'
|
43
43
|
end
|
44
44
|
|
45
|
+
module CVMType
|
46
|
+
SIGNATURE = 'Signature'
|
47
|
+
OFFLINE_PIN = 'Offline PIN'
|
48
|
+
ONLINE_PIN = 'Online PIN'
|
49
|
+
CDCVM = 'CDCVM'
|
50
|
+
NO_CVM = 'No CVM'
|
51
|
+
end
|
52
|
+
|
45
53
|
module BlockChyp
|
46
54
|
# the main autogenerated blockchyp client
|
47
55
|
class BlockChyp < BlockChypClient
|
@@ -137,7 +145,7 @@ module BlockChyp
|
|
137
145
|
gateway_request('POST', '/api/capture', request)
|
138
146
|
end
|
139
147
|
|
140
|
-
# Discards a previous
|
148
|
+
# Discards a previous transaction.
|
141
149
|
def void(request)
|
142
150
|
gateway_request('POST', '/api/void', request)
|
143
151
|
end
|
data/lib/blockchyp/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blockchyp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.8.
|
4
|
+
version: 2.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BlockChyp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|