nestjs-temporal-core 3.1.5 → 3.1.7
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/CHANGELOG.md +12 -0
- package/README.md +15 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
## [3.1.7] - 2025-11-12
|
|
3
|
+
|
|
4
|
+
### Changes
|
|
5
|
+
|
|
6
|
+
- Update documentation for constants in nestjs-temporal-core (dc2d392)
|
|
7
|
+
|
|
8
|
+
## [3.1.6] - 2025-11-12
|
|
9
|
+
|
|
10
|
+
### Changes
|
|
11
|
+
|
|
12
|
+
- chore: update release workflow to generate documentation after version bump; improve README with example project details (15cd112)
|
|
13
|
+
|
|
2
14
|
## [3.1.5] - 2025-11-12
|
|
3
15
|
|
|
4
16
|
### Changes
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ A comprehensive NestJS integration framework for Temporal.io that provides enter
|
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
9
|
[](https://www.npmjs.com/package/nestjs-temporal-core)
|
|
10
10
|
|
|
11
|
-
[Documentation](https://harsh-simform.github.io/nestjs-temporal-core/) • [NPM](https://www.npmjs.com/package/nestjs-temporal-core) • [GitHub](https://github.com/harsh-simform/nestjs-temporal-core) • [
|
|
11
|
+
[Documentation](https://harsh-simform.github.io/nestjs-temporal-core/) • [NPM](https://www.npmjs.com/package/nestjs-temporal-core) • [GitHub](https://github.com/harsh-simform/nestjs-temporal-core) • [Example Project](https://github.com/harsh-simform/nestjs-temporal-core-example)
|
|
12
12
|
|
|
13
13
|
</div>
|
|
14
14
|
|
|
@@ -845,7 +845,19 @@ Key methods:
|
|
|
845
845
|
|
|
846
846
|
## Examples
|
|
847
847
|
|
|
848
|
-
|
|
848
|
+
### 🚀 Example Project
|
|
849
|
+
|
|
850
|
+
Check out our **[complete example repository](https://github.com/harsh-simform/nestjs-temporal-core-example)** featuring:
|
|
851
|
+
|
|
852
|
+
- ✅ **Real-world implementations** - Production-ready examples
|
|
853
|
+
- ✅ **Multiple use cases** - E-commerce, notifications, reports, and more
|
|
854
|
+
- ✅ **Best practices** - Following all recommended patterns
|
|
855
|
+
- ✅ **Docker setup** - Ready-to-run with docker-compose
|
|
856
|
+
- ✅ **Test coverage** - Comprehensive test examples
|
|
857
|
+
|
|
858
|
+
### 📚 Documentation Examples
|
|
859
|
+
|
|
860
|
+
For more examples, visit our [documentation](https://harsh-simform.github.io/nestjs-temporal-core/). Key example scenarios include:
|
|
849
861
|
|
|
850
862
|
1. **E-commerce Order Processing** - Complete example with compensation logic
|
|
851
863
|
2. **Scheduled Reports** - Creating and managing scheduled workflows
|
|
@@ -1336,6 +1348,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
|
1336
1348
|
- 💬 **Discussions**: [GitHub Discussions](https://github.com/harsh-simform/nestjs-temporal-core/discussions)
|
|
1337
1349
|
- 📦 **NPM**: [nestjs-temporal-core](https://www.npmjs.com/package/nestjs-temporal-core)
|
|
1338
1350
|
- 🔄 **Changelog**: [Releases](https://github.com/harsh-simform/nestjs-temporal-core/releases)
|
|
1351
|
+
- 📖 **Example Project**: [nestjs-temporal-core-example](https://github.com/harsh-simform/nestjs-temporal-core-example)
|
|
1339
1352
|
|
|
1340
1353
|
## Related Projects
|
|
1341
1354
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nestjs-temporal-core",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.7",
|
|
4
4
|
"description": "Complete NestJS integration for Temporal.io with auto-discovery, declarative scheduling, enhanced monitoring, and enterprise-ready features",
|
|
5
5
|
"author": "Harsh M",
|
|
6
6
|
"license": "MIT",
|