Hidetaka Okamoto
Hidetaka Okamoto
Ref: #1979 CRA is no longer maintained, and will not work on React v18: https://github.com/facebook/create-react-app/issues/11708#issuecomment-986309926 So we need to make a plan to migrate all React example from CRA to...
## Summary Upgrade API version on each server side examples. ## Context Several example apps are not using the latest API. We may need to think about upgrading these API...
Ref: https://github.com/stripe-samples/accept-a-payment/pull/1612 We need to automate to update the `MAINTAINERS` value on the `.github/workflows/ci.yaml`. https://github.com/stripe-samples/accept-a-payment/blob/main/.github/workflows/ci.yml#L12-L19 Possibly using GitHub API to list the maintainers and update it.
## Summary Add the error code and error type from the Stripe API to the API response. example: ```diff return res.status(400).send({ error: { message: e.message, + code: e.code, + type:...
Continue task of #958 `react-router-dom` had a breaking change between v5 to v6. https://reactrouter.com/en/main/upgrading/v5 To address this, we updated React application code to fix errors that come from this package...
## Summary Adding a new example Stripe Apps for plugins. We can call Stripe API from WordPress plugin PHP through by the OAuth authentication: https://stripe.com/docs/stripe-apps/api-authentication/oauth ## Motivation
adding the request_log_url type on the StripeError ### Summary & motivation Added the `request_log_url` type in the `StripeError` interface. https://docs.stripe.com/api/errors#errors-request_log_url e.g.: ```js { code: "resource_missing", doc_url: "https://stripe.com/docs/error-codes/resource-missing", message: "No such...