@bts-soft/core 1.0.1 → 1.0.3
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 +26 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
## @bts-soft/core | The BTS Software Core Toolkit
|
|
2
3
|
|
|
3
4
|
The **`@bts-soft/core`** package serves as the unified entry point for all high-quality, pre-configured modules developed by BTS Software.
|
|
@@ -70,7 +71,7 @@ TypeScript
|
|
|
70
71
|
```
|
|
71
72
|
// my.service.ts
|
|
72
73
|
import { Injectable } from '@nestjs/common';
|
|
73
|
-
import { SendEmailService } from '@bts-soft/core'; //
|
|
74
|
+
import { SendEmailService } from '@bts-soft/core'; // Imported from @bts-soft/core
|
|
74
75
|
|
|
75
76
|
@Injectable()
|
|
76
77
|
export class MyService {
|
|
@@ -89,3 +90,27 @@ export class MyService {
|
|
|
89
90
|
}
|
|
90
91
|
```
|
|
91
92
|
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
## Contact
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
**Author:** Omar Sabry
|
|
101
|
+
|
|
102
|
+
**Email:** omar.sabry.dev@gmail.com
|
|
103
|
+
|
|
104
|
+
**LinkedIn:** [(1) Omar Sabry | LinkedIn](https://www.linkedin.com/in/omarsa6ry/)
|
|
105
|
+
|
|
106
|
+
Portfolio: https://omarsabry.netlify.app/
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
## Repository
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
**GitHub:** [bts-soft/packages/core at main · Omar-Sa6ry/bts-soft](https://github.com/Omar-Sa6ry/bts-soft/tree/main/packages/core)
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bts-soft/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@bts-soft/mail-queue": "^1.0.
|
|
7
|
+
"@bts-soft/mail-queue": "^1.0.3"
|
|
8
8
|
},
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"@nestjs/common": "^10.0.0",
|