@astralibx/email-rule-engine 3.0.0 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -12
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -100,23 +100,23 @@ The `createEmailRuleEngine(config)` factory accepts an `EmailRuleEngineConfig` o
|
|
|
100
100
|
| `hooks` | No | Callbacks at key execution points |
|
|
101
101
|
| `logger` | No | Logger with `info`, `warn`, `error` methods |
|
|
102
102
|
|
|
103
|
-
See [docs/configuration.md](docs/configuration.md) for the full reference with examples.
|
|
103
|
+
See [docs/configuration.md](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/configuration.md) for the full reference with examples.
|
|
104
104
|
|
|
105
105
|
## Documentation
|
|
106
106
|
|
|
107
107
|
| Document | Description |
|
|
108
108
|
|----------|-------------|
|
|
109
|
-
| [Configuration](docs/configuration.md) | Full config reference -- db, redis, adapters, platforms, options, hooks, logger |
|
|
110
|
-
| [Adapters](docs/adapters.md) | All 6 adapters with type signatures and example implementations |
|
|
111
|
-
| [Templates](docs/templates.md) | Creating templates, MJML + Handlebars syntax, built-in helpers |
|
|
112
|
-
| [Rules](docs/rules.md) | Targeting conditions, operators, sendOnce/resend, dry runs |
|
|
113
|
-
| [Throttling](docs/throttling.md) | Per-user limits, global caps, bypass rules, tracking |
|
|
114
|
-
| [API Routes](docs/api-routes.md) | All REST endpoints with curl examples |
|
|
115
|
-
| [Programmatic API](docs/programmatic-api.md) | Using services directly -- runner, templateService, ruleService |
|
|
116
|
-
| [Execution Flow](docs/execution-flow.md) | Step-by-step runner flow and error behavior |
|
|
117
|
-
| [Error Handling](docs/error-handling.md) | All error classes with codes and when thrown |
|
|
118
|
-
| [Constants](docs/constants.md) | All exported constants and derived types |
|
|
119
|
-
| [Migration v1 to v2](docs/migration-v1-to-v2.md) | Breaking changes from v1 |
|
|
109
|
+
| [Configuration](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/configuration.md) | Full config reference -- db, redis, adapters, platforms, options, hooks, logger |
|
|
110
|
+
| [Adapters](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/adapters.md) | All 6 adapters with type signatures and example implementations |
|
|
111
|
+
| [Templates](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/templates.md) | Creating templates, MJML + Handlebars syntax, built-in helpers |
|
|
112
|
+
| [Rules](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/rules.md) | Targeting conditions, operators, sendOnce/resend, dry runs |
|
|
113
|
+
| [Throttling](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/throttling.md) | Per-user limits, global caps, bypass rules, tracking |
|
|
114
|
+
| [API Routes](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/api-routes.md) | All REST endpoints with curl examples |
|
|
115
|
+
| [Programmatic API](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/programmatic-api.md) | Using services directly -- runner, templateService, ruleService |
|
|
116
|
+
| [Execution Flow](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/execution-flow.md) | Step-by-step runner flow and error behavior |
|
|
117
|
+
| [Error Handling](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/error-handling.md) | All error classes with codes and when thrown |
|
|
118
|
+
| [Constants](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/constants.md) | All exported constants and derived types |
|
|
119
|
+
| [Migration v1 to v2](https://github.com/Hariprakash1997/astralib/blob/main/packages/email-rule-engine/docs/migration-v1-to-v2.md) | Breaking changes from v1 |
|
|
120
120
|
|
|
121
121
|
## License
|
|
122
122
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astralibx/email-rule-engine",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "Rule-based email automation engine with MJML + Handlebars templates, throttling, and distributed locking",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
"test:watch": "vitest",
|
|
28
28
|
"test:coverage": "vitest run --coverage",
|
|
29
29
|
"lint": "eslint src/",
|
|
30
|
-
|
|
31
30
|
"clean": "rm -rf dist"
|
|
32
31
|
},
|
|
33
32
|
"keywords": [
|