@er3tickets/common 0.0.8 → 0.0.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@er3tickets/common",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Shared NestJS library for the ticketing microservices.",
5
5
  "author": "",
6
6
  "license": "UNLICENSED",
@@ -84,6 +84,7 @@
84
84
  "@types/cookie-session": "^2.0.49",
85
85
  "@types/jsonwebtoken": "^9.0.10",
86
86
  "cookie-session": "^2.1.1",
87
- "jsonwebtoken": "^9.0.3"
87
+ "jsonwebtoken": "^9.0.3",
88
+ "kafkajs": "^2.2.4"
88
89
  }
89
90
  }
package/README.md DELETED
@@ -1,18 +0,0 @@
1
- # common
2
-
3
- Shared NestJS library for the `ticketing-ts` microservices. The package is ready to be published to npm and exposes a simple module/service you can extend with shared DTOs, guards, filters, and utilities.
4
-
5
- ## Development
6
-
7
- - Install dependencies: `npm install`
8
- - Run tests: `npm test`
9
- - Lint: `npm run lint`
10
- - Build library output: `npm run build` (emits to `dist/` with type declarations)
11
-
12
- ## Publishing
13
-
14
- 1. Update the version in `package.json` as needed.
15
- 2. Build the package (`npm run build`).
16
- 3. Publish: `npm publish --access public` (or adjust access for a private registry).
17
-
18
- The `files` field limits the published contents to the `dist/` output so consumers receive only the compiled artifacts and type declarations.