@zola_do/nestjs-shared 0.1.9 → 0.1.13
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 +58 -0
- package/package.json +18 -15
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @zola_do/nestjs-shared
|
|
2
|
+
|
|
3
|
+
Meta package that re-exports all `@zola_do/*` packages for one-shot installation.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @zola_do/nestjs-shared
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This installs all 14 sub-packages. For smaller installs, install individual packages instead.
|
|
12
|
+
|
|
13
|
+
**Note:** If installation fails due to `nestjs-minio-client` postinstall script, use:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install @zola_do/nestjs-shared --ignore-scripts
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
Import from the meta package or from individual packages:
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
// From meta package
|
|
25
|
+
import { AuthorizationModule, CommonEntity, EntityCrudController } from '@zola_do/nestjs-shared';
|
|
26
|
+
|
|
27
|
+
// Or from individual packages
|
|
28
|
+
import { AuthorizationModule } from '@zola_do/authorization';
|
|
29
|
+
import { CommonEntity } from '@zola_do/core';
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Sub-Packages
|
|
33
|
+
|
|
34
|
+
| Package | Description |
|
|
35
|
+
|---------|-------------|
|
|
36
|
+
| [@zola_do/core](../core) | Entities, decorators, types, exceptions, utilities |
|
|
37
|
+
| [@zola_do/collection-query](../collection-query) | TypeORM filter, sort, paginate |
|
|
38
|
+
| [@zola_do/typeorm](../typeorm) | TypeORM configuration |
|
|
39
|
+
| [@zola_do/interceptors](../interceptors) | Tenant and transaction interceptors |
|
|
40
|
+
| [@zola_do/authorization](../authorization) | JWT auth, guards, strategies |
|
|
41
|
+
| [@zola_do/crud](../crud) | Generic CRUD controllers and services |
|
|
42
|
+
| [@zola_do/audit](../audit) | RabbitMQ audit logging |
|
|
43
|
+
| [@zola_do/email](../email) | SMTP email service |
|
|
44
|
+
| [@zola_do/minio](../minio) | MinIO object storage |
|
|
45
|
+
| [@zola_do/seaweed](../seaweed) | S3-compatible storage |
|
|
46
|
+
| [@zola_do/docx](../docx) | DOCX template processing |
|
|
47
|
+
| [@zola_do/document-manipulator](../document-manipulator) | PDF/DOCX merge and conversion |
|
|
48
|
+
| [@zola_do/workflow-engine](../workflow-engine) | State machine workflow converter |
|
|
49
|
+
|
|
50
|
+
See each package's README for installation, usage, and environment variables.
|
|
51
|
+
|
|
52
|
+
## Documentation
|
|
53
|
+
|
|
54
|
+
For full monorepo documentation, peer dependencies, development setup, and release workflow, see the root [README](../../README.md) and [PACKAGE_DEVELOPMENT_GUIDE](../../PACKAGE_DEVELOPMENT_GUIDE.md).
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
ISC
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zola_do/nestjs-shared",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Shared package for NestJS applications - re-exports all @zola_do packages",
|
|
5
5
|
"author": "zolaDO",
|
|
6
6
|
"license": "ISC",
|
|
@@ -15,25 +15,28 @@
|
|
|
15
15
|
"default": "./dist/index.js"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
-
"files": [
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
19
22
|
"scripts": {
|
|
20
23
|
"build": "rimraf dist && tsc",
|
|
21
24
|
"prepublishOnly": "npm run build"
|
|
22
25
|
},
|
|
23
26
|
"dependencies": {
|
|
24
|
-
"@zola_do/core": "
|
|
25
|
-
"@zola_do/collection-query": "
|
|
26
|
-
"@zola_do/typeorm": "
|
|
27
|
-
"@zola_do/interceptors": "
|
|
28
|
-
"@zola_do/authorization": "
|
|
29
|
-
"@zola_do/crud": "
|
|
30
|
-
"@zola_do/audit": "
|
|
31
|
-
"@zola_do/email": "
|
|
32
|
-
"@zola_do/minio": "
|
|
33
|
-
"@zola_do/seaweed": "
|
|
34
|
-
"@zola_do/docx": "
|
|
35
|
-
"@zola_do/document-manipulator": "
|
|
36
|
-
"@zola_do/workflow-engine": "
|
|
27
|
+
"@zola_do/core": "^0.1.9",
|
|
28
|
+
"@zola_do/collection-query": "^0.1.9",
|
|
29
|
+
"@zola_do/typeorm": "^0.1.9",
|
|
30
|
+
"@zola_do/interceptors": "^0.1.9",
|
|
31
|
+
"@zola_do/authorization": "^0.1.9",
|
|
32
|
+
"@zola_do/crud": "^0.1.9",
|
|
33
|
+
"@zola_do/audit": "^0.1.9",
|
|
34
|
+
"@zola_do/email": "^0.1.9",
|
|
35
|
+
"@zola_do/minio": "^0.1.9",
|
|
36
|
+
"@zola_do/seaweed": "^0.1.9",
|
|
37
|
+
"@zola_do/docx": "^0.1.9",
|
|
38
|
+
"@zola_do/document-manipulator": "^0.1.9",
|
|
39
|
+
"@zola_do/workflow-engine": "^0.1.9"
|
|
37
40
|
},
|
|
38
41
|
"devDependencies": {
|
|
39
42
|
"rimraf": "^6.1.0",
|