@zola_do/nestjs-shared 0.1.38 → 0.1.40

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.
Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +7 -2
package/README.md CHANGED
@@ -26,17 +26,14 @@ import { AuthorizationModule, CommonEntity, EntityCrudController } from '@zola_d
26
26
 
27
27
  // Or from individual packages
28
28
  import { AuthorizationModule } from '@zola_do/authorization';
29
- import { CommonEntity } from '@zola_do/core';
30
29
  ```
31
30
 
32
31
  ## Sub-Packages
33
32
 
34
33
  | Package | Description |
35
34
  |---------|-------------|
36
- | [@zola_do/core](../core) | Entities, decorators, types, exceptions, utilities |
37
35
  | [@zola_do/collection-query](../collection-query) | TypeORM filter, sort, paginate |
38
36
  | [@zola_do/typeorm](../typeorm) | TypeORM configuration |
39
- | [@zola_do/interceptors](../interceptors) | Tenant and transaction interceptors |
40
37
  | [@zola_do/authorization](../authorization) | JWT auth, guards, strategies |
41
38
  | [@zola_do/crud](../crud) | Generic CRUD controllers and services |
42
39
  | [@zola_do/audit](../audit) | RabbitMQ audit logging |
@@ -56,3 +53,9 @@ For full monorepo documentation, peer dependencies, development setup, and relea
56
53
  ## License
57
54
 
58
55
  ISC
56
+
57
+ ## Community
58
+
59
+ - [Contributing](../../CONTRIBUTING.md)
60
+ - [Code of Conduct](../../CODE_OF_CONDUCT.md)
61
+ - [Security Policy](../../SECURITY.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zola_do/nestjs-shared",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
4
4
  "description": "Shared package for NestJS applications - re-exports all @zola_do packages",
5
5
  "author": "zolaDO",
6
6
  "license": "ISC",
@@ -49,6 +49,10 @@
49
49
  "bugs": {
50
50
  "url": "https://github.com/zola0031/zola-nestjs-shared/issues"
51
51
  },
52
+ "funding": {
53
+ "type": "github",
54
+ "url": "https://github.com/sponsors/zola0031"
55
+ },
52
56
  "keywords": [
53
57
  "nestjs",
54
58
  "typescript",
@@ -57,6 +61,7 @@
57
61
  "monorepo",
58
62
  "zola_do",
59
63
  "meta",
60
- "bundle"
64
+ "bundle",
65
+ "nestjs-shared"
61
66
  ]
62
67
  }