Worker Plugins
Worker plugins handle background tasks like notifications, data processing, and scheduled jobs.
Base Preset Workers
These workers are automatically loaded when using the base preset and are strongly recommended for proper system operation:
| Adapter Key | Type | Description |
|---|---|---|
shop.unchained.worker-plugin.message | MESSAGE | Routes messages through templates to delivery workers |
shop.unchained.worker-plugin.email | EMAIL | Email notifications via Nodemailer |
shop.unchained.worker-plugin.http-request | HTTP_REQUEST | Outbound HTTP webhooks |
shop.unchained.worker-plugin.bulk-import | BULK_IMPORT | Bulk data import from JSON streams |
shop.unchained.worker-plugin.external | EXTERNAL | Placeholder for external workers |
shop.unchained.worker-plugin.heartbeat | HEARTBEAT | System health check |
shop.unchained.worker-plugin.zombie-killer | ZOMBIE_KILLER | Cleanup orphaned database records |
shop.unchained.worker.error-notifications | ERROR_NOTIFICATIONS | Daily error reports |
SMS Workers
| Adapter Key | Type | Description |
|---|---|---|
shop.unchained.worker-plugin.twilio | TWILIO | SMS via Twilio |
shop.unchained.worker-plugin.bulkgate | BULKGATE | SMS via BulkGate |
shop.unchained.worker-plugin.budgetsms | BUDGETSMS | SMS via BudgetSMS |
Push Notifications
| Adapter Key | Type | Description |
|---|---|---|
shop.unchained.worker-plugin.push-notification | PUSH | W3C Web Push notifications |
Currency Rate Workers
| Adapter Key | Type | Description |
|---|---|---|
shop.unchained.worker.update-ecb-rates | UPDATE_ECB_RATES | EUR exchange rates from ECB |
shop.unchained.worker.update-coinbase-rates | UPDATE_COINBASE_RATES | Crypto/fiat rates from Coinbase |
Enrollment Workers
| Adapter Key | Type | Description |
|---|---|---|
shop.unchained.worker-plugin.generate-enrollment-orders | ENROLLMENT_ORDER_GENERATOR | Generate orders from subscriptions |
Token/NFT Workers
| Adapter Key | Type | Description |
|---|---|---|
shop.unchained.worker-plugin.export-token | EXPORT_TOKEN | Token minting/export process |
shop.unchained.worker-plugin.refresh-tokens | REFRESH_TOKENS | Refresh token ownership data |
shop.unchained.worker-plugin.update-token-ownership | UPDATE_TOKEN_OWNERSHIP | External token ownership verification |
Creating Custom Worker Plugins
See Custom Worker Plugins for creating your own worker adapters.