Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: zyra/cordova-plugin-stripe
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.5.1
Choose a base ref
...
head repository: zyra/cordova-plugin-stripe
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

Commits on Jul 6, 2017

  1. Copy the full SHA
    c0570f0 View commit details
  2. Copy the full SHA
    e7fc4e7 View commit details
  3. bump version

    ihadeed committed Jul 6, 2017
    Copy the full SHA
    f46e60d View commit details
  4. 1.5.2

    ihadeed committed Jul 6, 2017
    Copy the full SHA
    fe5f950 View commit details
  5. Copy the full SHA
    93bd8c4 View commit details

Commits on Jul 8, 2017

  1. Copy the full SHA
    fda4e19 View commit details
  2. Copy the full SHA
    306250e View commit details
  3. bump version

    ihadeed committed Jul 8, 2017
    Copy the full SHA
    70e6d65 View commit details
  4. 1.5.3

    ihadeed committed Jul 8, 2017
    Copy the full SHA
    4891353 View commit details

Commits on Aug 26, 2017

  1. Add typings for the plugin (#30)

    * add typings to the package
    
    * add typings for more stuff
    
    * forgot to include with package
    cwoolum authored and ihadeed committed Aug 26, 2017
    Copy the full SHA
    b27c780 View commit details

Commits on Aug 27, 2017

  1. Update package.json

    ihadeed authored Aug 27, 2017
    Copy the full SHA
    5af152e View commit details

Commits on Sep 11, 2017

  1. Copy the full SHA
    bc1e678 View commit details
  2. docs(): update readme

    [ci skip]
    zmbot committed Sep 11, 2017
    Copy the full SHA
    a4b446a View commit details
  3. Copy the full SHA
    4740aeb View commit details
  4. update typings

    ihadeed committed Sep 11, 2017
    Copy the full SHA
    8850ae8 View commit details
  5. Update badges

    ihadeed authored Sep 11, 2017
    Copy the full SHA
    45ca3ca View commit details
  6. lint js/ts

    ihadeed committed Sep 11, 2017
    Copy the full SHA
    c0ce27e View commit details
  7. Copy the full SHA
    25854bf View commit details
  8. docs(): update readme

    [ci skip]
    zmbot committed Sep 11, 2017
    Copy the full SHA
    5f243a9 View commit details

Commits on Sep 27, 2017

  1. Update documentation postal_code -> postalCode. Update browser platfo…

    …rm field mapping. (#36)
    TillaTheHun0 authored and ihadeed committed Sep 27, 2017
    Copy the full SHA
    599f0c5 View commit details
  2. docs(): update readme

    [ci skip]
    zmbot committed Sep 27, 2017
    Copy the full SHA
    2d63fa4 View commit details
  3. Fix docs

    ihadeed authored Sep 27, 2017
    Copy the full SHA
    30cdfc8 View commit details
  4. docs(): update readme

    [ci skip]
    zmbot committed Sep 27, 2017
    Copy the full SHA
    54becd2 View commit details
  5. fix docs

    ihadeed authored Sep 27, 2017
    Copy the full SHA
    7cb2774 View commit details
  6. docs(): update readme

    [ci skip]
    zmbot committed Sep 27, 2017
    Copy the full SHA
    df50d56 View commit details

Commits on Oct 10, 2019

  1. Copy the full SHA
    89f4d46 View commit details

Commits on Oct 13, 2019

  1. Merge pull request #66 from devandanger/master

    Update based on stripe SDK changes.
    ihadeed authored Oct 13, 2019
    Copy the full SHA
    a6175b9 View commit details

Commits on Oct 1, 2020

  1. Update README.md

    ihadeed authored Oct 1, 2020
    Copy the full SHA
    4fcd352 View commit details
Showing with 1,244 additions and 175 deletions.
  1. +16 −7 README.md
  2. +2 −2 circle.yml
  3. +870 −0 package-lock.json
  4. +7 −2 package.json
  5. +1 −1 plugin.xml
  6. +4 −6 scripts/doc.template.md
  7. +13 −13 src/android/CordovaStripe.java
  8. +71 −53 src/browser/CordovaStripe.js
  9. +6 −3 src/ios/CordovaStripe.m
  10. +166 −0 typings/CordovaStripe.d.ts
  11. +88 −88 www/CordovaStripe.js
23 changes: 16 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# Cordova Stripe Plugin
A Cordova plugin that lets you use Stripe Native SDKs for Android, iOS and Browser.
> <strong>This repository is not actively maintained</strong> and full functionality is not guaranteed.
>
> Developing Cordova plugins is no longer a priority.
>
> Check this [Capacitor Stripe plugin repo](https://github.com/capacitor-community/stripe) for a maintained alternative.
>
> This repo will be updated eventually by porting over the Capacitor plugin code. PRs are welcome.
---

[![npm](https://img.shields.io/npm/l/express.svg)](https://www.npmjs.com/package/cordova-plugin-stripe)

[![NPM](https://nodei.co/npm/cordova-plugin-stripe.png?stars&downloads)](https://nodei.co/npm/cordova-plugin-stripe/)
[![NPM](https://nodei.co/npm-dl/cordova-plugin-stripe.png?months=6&height=2)](https://nodei.co/npm/cordova-plugin-stripe/)
# Cordova Stripe Plugin
A Cordova plugin that lets you use Stripe Native SDKs for Android, iOS and Browser.

[![npm](https://img.shields.io/npm/l/cordova-plugin-stripe.svg)](https://www.npmjs.com/package/cordova-plugin-stripe/)
[![npm](https://img.shields.io/npm/dt/cordova-plugin-stripe.svg)](https://www.npmjs.com/package/cordova-plugin-stripe)
[![npm](https://img.shields.io/npm/dm/cordova-plugin-stripe.svg)](https://www.npmjs.com/package/cordova-plugin-stripe)

## Installation
```shell
@@ -36,7 +45,7 @@ var card = {
address_city: 'Toronto', // city (optional)
address_state: 'Ontario', // state/province (optional)
address_country: 'Canada', // country (optional)
postal_code: 'L5L5L5', // Postal Code / Zip Code (optional)
postalCode: 'L5L5L5', // Postal Code / Zip Code (optional)
currency: 'CAD' // Three-letter ISO currency code (optional)
};

@@ -221,7 +230,7 @@ Parameters to create a credit card token
| address_city | <code>string</code> | Address line 2 |
| address_state | <code>string</code> | State/Province |
| address_country | <code>string</code> | Country |
| postal_code | <code>string</code> | Postal/Zip code |
| postalCode | <code>string</code> | Postal/Zip code |
| currency | <code>string</code> | 3-letter code for currency |

<a name="module_stripe.BankAccountTokenParams"></a>
4 changes: 2 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -26,6 +26,6 @@ jobs:
npm run docs
git config --global user.name "ZM Bot"
git config --global user.email "ibby93+zmbot@gmail.com"
git commit -am "docs(): update readme" -m "[ci skip]"
git commit -am "docs(): update readme" -m "[ci skip]" || true
git push origin master || true
fi
fi
Loading