Coffrify. Webhook. EventCatalog
(Coffrify v0.9.0)
View Source
Static catalog of every Coffrify webhook event. Mirrors the JS catalog
bundled with @coffrify/sdk and the server endpoint
GET /v1/webhooks/events.
Each entry is a map with the keys :type, :family, :stability,
:description, and optionally :required_plan.
Usage
Coffrify.Webhook.EventCatalog.all()
Coffrify.Webhook.EventCatalog.types()
Coffrify.Webhook.EventCatalog.by_family(:transfer)
Coffrify.Webhook.EventCatalog.get("transfer.created")
Summary
Functions
Return every catalog entry.
Return every entry within a given family.
Return every entry restricted to (or above) a given plan.
Return the catalog entry for a given type, or nil.
Return true when type is in the catalog.
Return every known type as a flat list of strings.
Types
Functions
@spec all() :: [entry()]
Return every catalog entry.
Return every entry within a given family.
Return every entry restricted to (or above) a given plan.
Return the catalog entry for a given type, or nil.
Return true when type is in the catalog.
@spec types() :: [String.t()]
Return every known type as a flat list of strings.