@zola_do/nestjs-shared 0.2.15 → 0.2.17

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 +3 -8
  2. package/package.json +13 -13
package/README.md CHANGED
@@ -29,6 +29,7 @@ Meta package that re-exports all `@zola_do/*` packages for one-shot installation
29
29
  | [@zola_do/docx](../docx) | DOCX template processing |
30
30
  | [@zola_do/document-manipulator](../document-manipulator) | PDF/DOCX merge and conversion |
31
31
  | [@zola_do/workflow-engine](../workflow-engine) | State machine workflow converter |
32
+ | [@zola_do/health](../health) | Terminus readiness/liveness health checks |
32
33
 
33
34
  ## Installation
34
35
 
@@ -37,12 +38,6 @@ Meta package that re-exports all `@zola_do/*` packages for one-shot installation
37
38
  npm install @zola_do/nestjs-shared
38
39
  ```
39
40
 
40
- **Note:** If installation fails due to `nestjs-minio-client` postinstall script, use:
41
-
42
- ```bash
43
- npm install @zola_do/nestjs-shared --ignore-scripts
44
- ```
45
-
46
41
  ## Usage
47
42
 
48
43
  Import from the meta package or from individual packages:
@@ -303,10 +298,10 @@ npm install @nestjs/common @nestjs/core @nestjs/typeorm @nestjs/jwt @nestjs/pass
303
298
  npm install @nestjs/config @nestjs/swagger @nestjs/throttler
304
299
  npm install typeorm typeorm-extension passport passport-jwt
305
300
  npm install class-validator class-transformer
306
- npm install bcrypt jsonwebtoken
301
+ npm install bcryptjs jsonwebtoken
307
302
  npm install @nestjs-modules/mailer nodemailer
308
303
  npm install @aws-sdk/client-s3 @aws-sdk/s3-request-presigner
309
- npm install nestjs-minio-client
304
+ npm install minio
310
305
  npm install docx-templates pdf-lib docx-merger axios form-data
311
306
  npm install dotenv
312
307
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zola_do/nestjs-shared",
3
- "version": "0.2.15",
3
+ "version": "0.2.17",
4
4
  "description": "Shared package for NestJS applications - re-exports all @zola_do packages",
5
5
  "author": "zolaDO",
6
6
  "license": "ISC",
@@ -31,18 +31,18 @@
31
31
  "prepublishOnly": "rimraf dist && tsc"
32
32
  },
33
33
  "dependencies": {
34
- "@zola_do/collection-query": "^0.2.7",
35
- "@zola_do/typeorm": "^0.2.7",
36
- "@zola_do/authorization": "^0.2.7",
37
- "@zola_do/crud": "^0.2.7",
38
- "@zola_do/audit": "^0.2.7",
39
- "@zola_do/email": "^0.2.7",
40
- "@zola_do/minio": "^0.2.7",
41
- "@zola_do/seaweed": "^0.2.7",
42
- "@zola_do/docx": "^0.2.7",
43
- "@zola_do/document-manipulator": "^0.2.7",
44
- "@zola_do/workflow-engine": "^0.2.7",
45
- "@zola_do/health": "^0.2.7"
34
+ "@zola_do/collection-query": "^0.2.15",
35
+ "@zola_do/typeorm": "^0.2.15",
36
+ "@zola_do/authorization": "^0.2.15",
37
+ "@zola_do/crud": "^0.2.15",
38
+ "@zola_do/audit": "^0.2.15",
39
+ "@zola_do/email": "^0.2.15",
40
+ "@zola_do/minio": "^0.2.15",
41
+ "@zola_do/seaweed": "^0.2.15",
42
+ "@zola_do/docx": "^0.2.15",
43
+ "@zola_do/document-manipulator": "^0.2.15",
44
+ "@zola_do/workflow-engine": "^0.2.15",
45
+ "@zola_do/health": "^0.2.15"
46
46
  },
47
47
  "devDependencies": {
48
48
  "rimraf": "^6.1.3",