0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

🐛 Fixed unable to import paid members

refs https://github.com/TryGhost/Team/issues/628

After a recent bump to Stripe API version used by Members service - 2020-08-27 - importing paid members via CSV in ghost was not working correctly due to missing subscriptions object in customer data fetched from Stripe. Stripe had updated the customer resource to not include the subscriptions data by default which is now patched to always include in Ghost.
This commit is contained in:
Rish 2021-04-22 21:58:13 +05:30
parent 35e4e1d892
commit b23b6a8afd
2 changed files with 5 additions and 5 deletions

View file

@ -58,7 +58,7 @@
"@tryghost/kg-mobiledoc-html-renderer": "4.0.0",
"@tryghost/limit-service": "0.4.2",
"@tryghost/magic-link": "1.0.2",
"@tryghost/members-api": "1.3.1",
"@tryghost/members-api": "1.3.2",
"@tryghost/members-csv": "1.0.0",
"@tryghost/members-ssr": "1.0.2",
"@tryghost/mw-session-from-token": "0.1.19",

View file

@ -567,10 +567,10 @@
jsonwebtoken "^8.5.1"
lodash "^4.17.15"
"@tryghost/members-api@1.3.1":
version "1.3.1"
resolved "https://registry.npmjs.org/@tryghost/members-api/-/members-api-1.3.1.tgz#5afba6a797b33f226561b5d3f772693b24e2dfc0"
integrity sha512-PRVYaEcajtARoVNjvngBSb+2q1R875E1anqzXAmJ7M+kPsAh3ZdsNhFJnTb7wwMFdzuwhjMrNEl7/5iCOXRJUQ==
"@tryghost/members-api@1.3.2":
version "1.3.2"
resolved "https://registry.npmjs.org/@tryghost/members-api/-/members-api-1.3.2.tgz#13d604308d7eac86ed12973a7164859d6b0b0f62"
integrity sha512-jFoFURag59rsMuyk9U5qmrk866DtIwQjEDXTmWXPvMWhnzlenL1JVUIRNtV8Ez9jH2tK6/Td2KkTZuCVd5Su0Q==
dependencies:
"@tryghost/errors" "^0.2.9"
"@tryghost/magic-link" "^1.0.2"