@coinflowlabs/vue 1.4.2 → 1.5.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.
- package/README.md +9 -0
- package/dist/coinflow-vue.js +18039 -8550
- package/dist/coinflow-vue.umd.cjs +20 -19
- package/dist/components/CoinflowPurchase.vue.d.ts +6 -0
- package/dist/index.d.ts +1 -1
- package/dist/lib/common/CoinflowTypes.d.ts +10 -5
- package/dist/lib/common/CoinflowUtils.d.ts +1 -1
- package/dist/lib/common/types/Subtotal.d.ts +22 -2
- package/dist/lib/common/types/nftCartItem.d.ts +15 -0
- package/dist/testing/CardFormTest.vue.d.ts +4 -4
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -44,9 +44,18 @@ Props:
|
|
|
44
44
|
* `rent` (optional, Solana only): Specify the blockchain rent amount to add to the total
|
|
45
45
|
* `nativeSolToConvert` (optional, Solana only): Specify the amount of native SOL to convert wSOL for the purchase
|
|
46
46
|
* `jwtToken` (optional): A JWT token which encodes verified checkout parameters to prevent spoofing of arguments.
|
|
47
|
+
* `zeroAuthorization` (optional): Pass in true if you wish to perform a zero authorization card transaction
|
|
47
48
|
|
|
48
49
|
# Changelog
|
|
49
50
|
|
|
51
|
+
## 1.5.0
|
|
52
|
+
|
|
53
|
+
- Added zeroAuthorization parameter to allow zero authorization card transactions
|
|
54
|
+
|
|
55
|
+
## 1.4.3
|
|
56
|
+
|
|
57
|
+
- NSure SDK added as a dependency
|
|
58
|
+
|
|
50
59
|
## 1.4.2
|
|
51
60
|
|
|
52
61
|
- Added email as a field for customerInfo
|