hierarchical-approval 0.1.0 → 0.1.1
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 +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -963,6 +963,17 @@ interface ApprovalLevelConfig {
|
|
|
963
963
|
|
|
964
964
|
---
|
|
965
965
|
|
|
966
|
+
## Blog & further reading
|
|
967
|
+
|
|
968
|
+
Posts by the author on real-world approval workflow patterns:
|
|
969
|
+
|
|
970
|
+
- [I Built an npm Library for ERP Hierarchical Approval Workflows](https://www.matthewswong.com/en/blog/hierarchical-approval-npm-library) — the story behind this library: why existing solutions fell short, how optimistic locking and idempotency work under the hood, and how to test time-dependent logic without real timers.
|
|
971
|
+
- [Accounts Payable Multi-Level Approval Workflow in NestJS](https://www.matthewswong.com/en/blog/accounts-payable-multi-approval-nestjs) — configurable amount-based AP approval chains with PostgreSQL: schema design, the chain-building algorithm, and sequential processing logic.
|
|
972
|
+
- [ERP HR Leave Approval Flow](https://www.matthewswong.com/en/blog/erp-hr-leave-approval-flow) — department-based leave approval with delegation and escalation patterns in an ERP context.
|
|
973
|
+
- [ERP Approval Matrix Configuration](https://www.matthewswong.com/en/blog/erp-approval-matrix-configuration) — designing a configurable approval matrix that non-engineers can maintain without a code deployment.
|
|
974
|
+
|
|
975
|
+
---
|
|
976
|
+
|
|
966
977
|
## License
|
|
967
978
|
|
|
968
979
|
MIT
|