diff --git a/open-giving/package.json b/open-giving/package.json index 222dfdb..7abd6ba 100644 --- a/open-giving/package.json +++ b/open-giving/package.json @@ -20,7 +20,7 @@ "@opentelemetry/api": "^1.6.0", "chimoney-payment-widget": "^0.0.30", "next": "^12.2.5", - "non-profit-donations": "^0.1.0", + "non-profit-donations": "^0.1.2", "qrcode.react": "^4.0.1", "react": "^18", "react-dom": "^18", diff --git a/open-giving/yarn.lock b/open-giving/yarn.lock index 48381c4..d2d3729 100644 --- a/open-giving/yarn.lock +++ b/open-giving/yarn.lock @@ -2778,10 +2778,10 @@ next@^12.2.5: "@next/swc-win32-ia32-msvc" "12.3.4" "@next/swc-win32-x64-msvc" "12.3.4" -non-profit-donations@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/non-profit-donations/-/non-profit-donations-0.1.0.tgz#578f4104ad9b3cb59bbce1a47153bffb75e5c06c" - integrity sha512-VqJ80QIOEv/vwbPPaTW/oQusYrE8CfcRhlK6CcGGP24JLb669sTDCYGTSIJ6d/UKYdjYtLJDTp/incNoeQLKqg== +non-profit-donations@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/non-profit-donations/-/non-profit-donations-0.1.2.tgz#4a9e802f026cb209a91e8bfc16aaa8c78699c434" + integrity sha512-z27qjNOUrCDYxMRD9khgjiFijwV6uuaIQRQgViv5UDC2Chy3QLaN/jroM8cQ3kup8n9Y0A24vR2gQ818Aqqzjg== dependencies: "@bitauth/libauth" "^1.17.1" commitizen "^4.2.4" diff --git a/package.json b/package.json index 3dfc682..cb60798 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "non-profit-donations", - "version": "0.0.9", + "version": "0.1.2", "description": "Support non-profits globally. Get the details of verified non profits to support", "main": "build/main/index.js", "typings": "build/main/index.d.ts", diff --git a/src/non-profits-data/index.ts b/src/non-profits-data/index.ts index 28fc5be..0355c43 100644 --- a/src/non-profits-data/index.ts +++ b/src/non-profits-data/index.ts @@ -1,40 +1,6 @@ import { NonProfit } from '../types/non-profit'; const nonProfits: readonly NonProfit[] = [ - { - npCode: 'Renbi Women', - name: 'Renbi Women', - email: 'info@renbiwomen.org', - country: 'Nigeria', - website: 'https://renbiwomen.org/', - logo: 'https://renbiwomen.org/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Flogo-1500.24cb05a5.png&w=3840&q=75', - foundedYear: '2022', - description: - 'Renbi Women Empowerment Initiative focuses on the economic empowerment of women in vulnerable communities in Nigeria.', - isVerified: true, - verifications: [ - { - date: new Date('Oct 4, 2024'), - verifier: '@HammedBabatunde', - }, - ], - paymentMethods: [ - /* - { - type: 'chimoney', - paymentID: { - test: '', - production: '', - }, - donationHandler: 'chimoneyDonation', - }, - */ - { - type: 'donation-link', - paymentID: 'https://renbiwomen.org/donate', - }, - ], - }, { npCode: 'SheCodeAfrica', name: 'She Code Africa', @@ -300,6 +266,30 @@ const nonProfits: readonly NonProfit[] = [ }, ], }, + { + npCode: 'Renbi Women', + name: 'Renbi Women', + email: 'info@renbiwomen.org', + country: 'Nigeria', + website: 'https://renbiwomen.org/', + logo: 'https://renbiwomen.org/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Flogo-1500.24cb05a5.png&w=3840&q=75', + foundedYear: '2022', + description: + 'Renbi Women Empowerment Initiative focuses on the economic empowerment of women in vulnerable communities in Nigeria.', + isVerified: true, + verifications: [ + { + date: new Date('Oct 4, 2024'), + verifier: '@HammedBabatunde', + }, + ], + paymentMethods: [ + { + type: 'donation-link', + paymentID: 'https://renbiwomen.org/donate', + }, + ], + }, { npCode: 'techsoupafrica', name: 'TechSoup Africa',