{"id":19205371,"url":"https://github.com/simsustech/vendure-plugin-payment-mollie","last_synced_at":"2025-02-23T06:23:28.636Z","repository":{"id":113613541,"uuid":"353384962","full_name":"simsustech/vendure-plugin-payment-mollie","owner":"simsustech","description":"Mollie payment plugin for Vendure.io","archived":false,"fork":false,"pushed_at":"2021-04-01T09:51:54.000Z","size":112,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-04T14:48:44.348Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simsustech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-31T14:29:02.000Z","updated_at":"2021-09-10T13:27:08.000Z","dependencies_parsed_at":"2023-07-08T03:18:23.900Z","dependency_job_id":null,"html_url":"https://github.com/simsustech/vendure-plugin-payment-mollie","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"vendure-ecommerce/plugin-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simsustech%2Fvendure-plugin-payment-mollie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simsustech%2Fvendure-plugin-payment-mollie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simsustech%2Fvendure-plugin-payment-mollie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simsustech%2Fvendure-plugin-payment-mollie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simsustech","download_url":"https://codeload.github.com/simsustech/vendure-plugin-payment-mollie/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240277297,"owners_count":19775864,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T13:12:28.481Z","updated_at":"2025-02-23T06:23:28.611Z","avatar_url":"https://github.com/simsustech.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mollie payment plugin for Vendure.io\n\n## Warning: Not tested in production yet\n\nThis plugins provides a [PaymentMethodHandler](https://www.vendure.io/docs/typescript-api/payment/payment-method-handler/) for [Mollie](https://www.mollie.com/). It also provides a simple PaymentEligibilityChecker which checks if an order can be paid with iDeal according to the [limits](https://help.mollie.com/hc/en-us/articles/115000667365-What-is-the-minimum-and-maximum-amount-per-payment-method-).\n\n## Arguments\n- apiKey: The [API key for your Mollie account](https://help.mollie.com/hc/en-us/articles/115000328205-Where-can-I-find-the-live-API-key-)\n- webhookHostname: The hostname of your Vendure server. The plugin provides a controller which handles webhooks performed by Mollie after the status of a payment changes. Mollie contacts your server at `https://webhookHostname/mollie`.\n- redirectUrl: The URL which Mollie redirects you to after the payment is completed. Can also be set individually for each payment by setting `redirectUrl` in the metadata of [PaymentInput](https://www.vendure.io/docs/graphql-api/shop/input-types/#paymentinput).\n\n## Installation\n- `yarn add vendure-plugin-payment-mollie`\n- Add MolliePlugin to your [Vendure config](https://www.vendure.io/docs/typescript-api/configuration/vendure-config/):\n```\nimport { MolliePlugin } from 'vendure-plugin-payment-mollie'\n\n...\nplugins: [\n  ...\n  MolliePlugin,\n  ....\n]\n```\n\nYou might also want to add your own PaymentEligibilityChecker or CustomPaymentProcess to the configuration.\n\n- Create a new PaymentMethod, either in the Admin UI or with a GraphQL mutation. For example:\n```\n  mutation {\n    createPaymentMethod(input:{\n      name: \"mollie-payment-provider\",\n      code: \"mollie-payment-provider\",\n      enabled: true,\n      checker: {\n          code: \"ideal-payment-eligibility-checker\",\n          arguments: []\n      },\n      handler: {\n        code: \"mollie-payment-provider\",\n        arguments: [\n        {\n            name: \"webhookHostname\",\n            value: \"https://yourvendurehostname\"\n        },\n        {\n            name: \"apiKey\",\n            value: \"REPLACE_WITH_YOUR_MOLLIE_API_KEY\"\n        }]\n      }\n    }) {\n      name\n      code\n    }\n  }\n  ```\n\n  ### Testing\n  To run the tests you need to provide the [test API key](https://docs.mollie.com/guides/testing) as an environment variable:\n  ```\n   MOLLIE_TEST_API_KEY=test_yourmollietestapikey yarn test\n  ```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimsustech%2Fvendure-plugin-payment-mollie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimsustech%2Fvendure-plugin-payment-mollie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimsustech%2Fvendure-plugin-payment-mollie/lists"}