@coinflowlabs/vue 0.2.7 → 0.3.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.
Files changed (28) hide show
  1. package/README.md +8 -0
  2. package/dist/App.vue.d.ts +1 -1
  3. package/dist/coinflow-vue.js +8169 -10011
  4. package/dist/coinflow-vue.umd.cjs +12 -22
  5. package/dist/components/CoinflowIframe.vue.d.ts +6 -6
  6. package/dist/components/CoinflowPurchase.vue.d.ts +69 -3
  7. package/dist/components/CoinflowPurchaseProtection.vue.d.ts +3 -3
  8. package/dist/components/CoinflowWithdraw.vue.d.ts +35 -3
  9. package/dist/components/card-form/CoinflowCardNumberInput.vue.d.ts +4 -4
  10. package/dist/components/card-form/CoinflowCardNumberOnlyInput.vue.d.ts +4 -4
  11. package/dist/components/card-form/CoinflowCvvInput.vue.d.ts +1 -1
  12. package/dist/components/card-form/CoinflowCvvOnlyInput.vue.d.ts +4 -4
  13. package/dist/components/card-form/useCardformIframe.d.ts +20 -3
  14. package/dist/components/mobile-wallet/ApplePayOverlay.vue.d.ts +3 -3
  15. package/dist/components/mobile-wallet/CoinflowApplePayButton.vue.d.ts +6 -10
  16. package/dist/components/mobile-wallet/CoinflowGooglePayButton.vue.d.ts +6 -10
  17. package/dist/components/mobile-wallet/GooglePayOverlay.vue.d.ts +3 -3
  18. package/dist/components/mobile-wallet/MobileWalletButton.vue.d.ts +9 -9
  19. package/dist/lib/common/CoinflowLibMessageHandlers.d.ts +4 -3
  20. package/dist/lib/common/CoinflowTypes.d.ts +14 -4
  21. package/dist/lib/common/CoinflowUtils.d.ts +2 -1
  22. package/dist/testing/CardFormTest.vue.d.ts +1 -1
  23. package/dist/testing/MobileWalletButtonTest.vue.d.ts +1 -1
  24. package/dist/testing/PurchaseTest.vue.d.ts +1 -1
  25. package/dist/testing/SavedCardFormTest.vue.d.ts +1 -1
  26. package/dist/testing/WithdrawTest.vue.d.ts +1 -1
  27. package/dist/testing/YouPay.vue.d.ts +1 -1
  28. package/package.json +8 -8
package/README.md CHANGED
@@ -47,6 +47,14 @@ Props:
47
47
 
48
48
  # Changelog
49
49
 
50
+ ## 0.3.0
51
+
52
+ - Added sessionKey authentication mechanism to `CoinflowPurchase`
53
+
54
+ ## 0.2.8
55
+
56
+ - Added `onError` callback to Apple Pay and Google Pay buttons
57
+
50
58
  ## 0.2.7
51
59
 
52
60
  - Added overlay to digital wallet buttons to make the loading time 0
package/dist/App.vue.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;