Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ https://skyhookapi.com/api/webhooks/firstPartOfWebhook/secondPartOfWebhook/provi
- [Rollbar](https://docs.rollbar.com/docs/webhooks) - `/rollbar`
- [Shopify](https://shopify.dev/docs/api/webhooks/latest) - `/shopify`
- [Square](https://developer.squareup.com/docs/webhooks/overview) - `/square`
- [Stripe](https://docs.stripe.com/webhooks) - `/stripe`
- [Travis](https://docs.travis-ci.com/user/notifications/#Webhooks-Delivery-Format) - `/travis`
- [Trello](https://developers.trello.com/apis/webhooks) - `/trello`
- [Unity Cloud](https://build-api.cloud.unity3d.com/docs/1.0.0/index.html#operation-webhooks-intro) - `/unity`
Expand Down
12 changes: 12 additions & 0 deletions THIRD_PARTY_NOTICES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@

Buildkite is a trademark of Buildkite Pty Ltd. The icon is used only to identify the supported provider.

## Simple Icons — Stripe icon

- File: `web/public/providers/stripe.svg`
- Project: Simple Icons
- Source: https://github.com/simple-icons/simple-icons/blob/25d6e5b39bc55bc446e147700294628af1734f7e/icons/stripe.svg
- Revision: `25d6e5b39bc55bc446e147700294628af1734f7e`
- Imported size: 588 bytes
- Imported SHA-256: `130c6d957b8977f5eda2928267b9df531ca038a400a801765d263801bb1bd870`
- License: CC0 1.0 Universal; a copy is included at `web/public/providers/LICENSE.simple-icons.md`

Stripe is a trademark of Stripe, Inc. The icon is used only to identify the supported provider.

## Simple Icons — Linear icon

- File: `web/public/providers/linear.svg`
Expand Down
50 changes: 50 additions & 0 deletions examples/stripe/stripe.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"id": "evt_1NG8Du2eZvKYlo2CUI79vXWy",
"object": "event",
"api_version": "2019-02-19",
"created": 1686089970,
"data": {
"object": {
"id": "seti_1NG8Du2eZvKYlo2C9XMqbR0x",
"object": "setup_intent",
"application": null,
"automatic_payment_methods": null,
"cancellation_reason": null,
"client_secret": "seti_1NG8Du2eZvKYlo2C9XMqbR0x_secret_O2CdhLwGFh2Aej7bCY7qp8jlIuyR8DJ",
"created": 1686089970,
"customer": null,
"description": null,
"flow_directions": null,
"last_setup_error": null,
"latest_attempt": null,
"livemode": false,
"mandate": null,
"metadata": {},
"next_action": null,
"on_behalf_of": null,
"payment_method": "pm_1NG8Du2eZvKYlo2CYzzldNr7",
"payment_method_options": {
"acss_debit": {
"currency": "cad",
"mandate_options": {
"interval_description": "First day of every month",
"payment_schedule": "interval",
"transaction_type": "personal"
},
"verification_method": "automatic"
}
},
"payment_method_types": ["acss_debit"],
"single_use_mandate": null,
"status": "requires_confirmation",
"usage": "off_session"
}
},
"livemode": false,
"pending_webhooks": 0,
"request": {
"id": null,
"idempotency_key": null
},
"type": "setup_intent.created"
}
2 changes: 2 additions & 0 deletions src/provider/ProviderRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import type { ProviderDefinition } from './Provider.ts'
import { Rollbar } from './Rollbar.ts'
import { Shopify } from './Shopify.ts'
import { Square } from './Square.ts'
import { Stripe } from './Stripe.ts'
import { Travis } from './Travis.ts'
import { Trello } from './Trello.ts'
import { Unity } from './Unity.ts'
Expand Down Expand Up @@ -91,6 +92,7 @@ const providerDefinitions: readonly ProviderDefinition[] = [
Rollbar,
Shopify,
Square,
Stripe,
Travis,
Trello,
Unity,
Expand Down
Loading
Loading