@carlonicora/nestjs-neo4jsonapi 1.5.1 → 1.6.0
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/dist/agents/community.detector/services/community.detector.service.d.ts.map +1 -1
- package/dist/agents/community.detector/services/community.detector.service.js.map +1 -1
- package/dist/bootstrap/app.module.factory.d.ts.map +1 -1
- package/dist/bootstrap/app.module.factory.js +23 -1
- package/dist/bootstrap/app.module.factory.js.map +1 -1
- package/dist/common/guards/index.d.ts +1 -1
- package/dist/common/guards/index.d.ts.map +1 -1
- package/dist/common/guards/index.js +1 -1
- package/dist/common/guards/index.js.map +1 -1
- package/dist/config/base.config.d.ts.map +1 -1
- package/dist/config/base.config.js +2 -0
- package/dist/config/base.config.js.map +1 -1
- package/dist/config/interfaces/config.discord.interface.d.ts +2 -0
- package/dist/config/interfaces/config.discord.interface.d.ts.map +1 -1
- package/dist/config/interfaces/index.d.ts +1 -0
- package/dist/config/interfaces/index.d.ts.map +1 -1
- package/dist/config/interfaces/index.js +1 -0
- package/dist/config/interfaces/index.js.map +1 -1
- package/dist/core/neo4j/abstracts/abstract.repository.d.ts.map +1 -1
- package/dist/core/neo4j/abstracts/abstract.repository.js +9 -3
- package/dist/core/neo4j/abstracts/abstract.repository.js.map +1 -1
- package/dist/foundations/auth/auth.module.js +2 -2
- package/dist/foundations/auth/auth.module.js.map +1 -1
- package/dist/foundations/auth/services/auth.discord.service.d.ts +3 -1
- package/dist/foundations/auth/services/auth.discord.service.d.ts.map +1 -1
- package/dist/foundations/auth/services/auth.discord.service.js +5 -21
- package/dist/foundations/auth/services/auth.discord.service.js.map +1 -1
- package/dist/foundations/discord/discord.module.d.ts +3 -0
- package/dist/foundations/discord/discord.module.d.ts.map +1 -0
- package/dist/foundations/discord/discord.module.js +23 -0
- package/dist/foundations/discord/discord.module.js.map +1 -0
- package/dist/foundations/discord/index.d.ts +4 -0
- package/dist/foundations/discord/index.d.ts.map +1 -0
- package/dist/foundations/discord/index.js +20 -0
- package/dist/foundations/discord/index.js.map +1 -0
- package/dist/foundations/discord/serialisers/discord.error.serialiser.d.ts +8 -0
- package/dist/foundations/discord/serialisers/discord.error.serialiser.d.ts.map +1 -0
- package/dist/foundations/discord/serialisers/discord.error.serialiser.js +23 -0
- package/dist/foundations/discord/serialisers/discord.error.serialiser.js.map +1 -0
- package/dist/foundations/discord/services/discord.service.d.ts +11 -0
- package/dist/foundations/discord/services/discord.service.d.ts.map +1 -0
- package/dist/foundations/discord/services/discord.service.js +54 -0
- package/dist/foundations/discord/services/discord.service.js.map +1 -0
- package/dist/foundations/discord-user/discord-user.module.d.ts +3 -0
- package/dist/foundations/discord-user/discord-user.module.d.ts.map +1 -0
- package/dist/foundations/discord-user/{discord.module.js → discord-user.module.js} +4 -3
- package/dist/foundations/discord-user/discord-user.module.js.map +1 -0
- package/dist/foundations/discord-user/index.d.ts +5 -0
- package/dist/foundations/discord-user/index.d.ts.map +1 -0
- package/dist/foundations/discord-user/index.js +21 -0
- package/dist/foundations/discord-user/index.js.map +1 -0
- package/dist/foundations/discord-user/services/discord-user.service.d.ts +16 -0
- package/dist/foundations/discord-user/services/discord-user.service.d.ts.map +1 -0
- package/dist/foundations/discord-user/services/discord-user.service.js +54 -0
- package/dist/foundations/discord-user/services/discord-user.service.js.map +1 -0
- package/dist/foundations/discord-user/types/discord.user.type.d.ts +1 -1
- package/dist/foundations/discord-user/types/discord.user.type.d.ts.map +1 -1
- package/dist/foundations/foundations.modules.js +2 -2
- package/dist/foundations/foundations.modules.js.map +1 -1
- package/dist/foundations/index.d.ts +2 -0
- package/dist/foundations/index.d.ts.map +1 -1
- package/dist/foundations/index.js +2 -0
- package/dist/foundations/index.js.map +1 -1
- package/dist/scripts/generate-module/generator.d.ts.map +1 -1
- package/dist/scripts/generate-module/generator.js +6 -0
- package/dist/scripts/generate-module/generator.js.map +1 -1
- package/dist/scripts/generate-module/templates/controller.template.d.ts.map +1 -1
- package/dist/scripts/generate-module/templates/controller.template.js +34 -12
- package/dist/scripts/generate-module/templates/controller.template.js.map +1 -1
- package/dist/scripts/generate-module/templates/dto.post.template.d.ts.map +1 -1
- package/dist/scripts/generate-module/templates/dto.post.template.js +19 -3
- package/dist/scripts/generate-module/templates/dto.post.template.js.map +1 -1
- package/dist/scripts/generate-module/templates/dto.put.template.d.ts.map +1 -1
- package/dist/scripts/generate-module/templates/dto.put.template.js +19 -3
- package/dist/scripts/generate-module/templates/dto.put.template.js.map +1 -1
- package/dist/scripts/generate-module/templates/entity.template.d.ts.map +1 -1
- package/dist/scripts/generate-module/templates/entity.template.js +48 -24
- package/dist/scripts/generate-module/templates/entity.template.js.map +1 -1
- package/dist/scripts/generate-module/templates/meta.template.d.ts +12 -0
- package/dist/scripts/generate-module/templates/meta.template.d.ts.map +1 -0
- package/dist/scripts/generate-module/templates/meta.template.js +25 -0
- package/dist/scripts/generate-module/templates/meta.template.js.map +1 -0
- package/dist/scripts/generate-module/transformers/import-resolver.d.ts +66 -0
- package/dist/scripts/generate-module/transformers/import-resolver.d.ts.map +1 -1
- package/dist/scripts/generate-module/transformers/import-resolver.js +91 -0
- package/dist/scripts/generate-module/transformers/import-resolver.js.map +1 -1
- package/dist/scripts/generate-module/transformers/nested-route-generator.d.ts.map +1 -1
- package/dist/scripts/generate-module/transformers/nested-route-generator.js +13 -3
- package/dist/scripts/generate-module/transformers/nested-route-generator.js.map +1 -1
- package/dist/scripts/generate-module/transformers/relationship-mapper.d.ts +3 -3
- package/dist/scripts/generate-module/transformers/relationship-mapper.d.ts.map +1 -1
- package/dist/scripts/generate-module/transformers/relationship-mapper.js +33 -10
- package/dist/scripts/generate-module/transformers/relationship-mapper.js.map +1 -1
- package/dist/scripts/generate-module/types/template-data.interface.d.ts +7 -0
- package/dist/scripts/generate-module/types/template-data.interface.d.ts.map +1 -1
- package/package.json +8 -6
- package/dist/foundations/discord-user/discord.module.d.ts +0 -3
- package/dist/foundations/discord-user/discord.module.d.ts.map +0 -1
- package/dist/foundations/discord-user/discord.module.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carlonicora/nestjs-neo4jsonapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "NestJS foundation package with JSON:API, Neo4j, Redis, LangChain agents, and common utilities",
|
|
5
5
|
"author": "Carlo Nicora",
|
|
6
6
|
"license": "GPL-3.0-or-later",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"bullmq": "^5.66.0",
|
|
81
81
|
"class-transformer": "^0.5.1",
|
|
82
82
|
"class-validator": "^0.14.3",
|
|
83
|
+
"discord.js": "^14.25.1",
|
|
83
84
|
"fast-xml-parser": "^5.3.3",
|
|
84
85
|
"fastify": "^5.6.2",
|
|
85
86
|
"handlebars": "^4.7.8",
|
|
@@ -89,6 +90,7 @@
|
|
|
89
90
|
"marked": "^17.0.1",
|
|
90
91
|
"mathjs": "^15.1.0",
|
|
91
92
|
"natural": "^8.1.0",
|
|
93
|
+
"necord": "^6.11.2",
|
|
92
94
|
"neo4j-driver": "^6.0.1",
|
|
93
95
|
"nestjs-pino": "^4.5.0",
|
|
94
96
|
"node-tesseract-ocr": "^2.2.1",
|
|
@@ -116,13 +118,11 @@
|
|
|
116
118
|
"zod-to-json-schema": "^3.25.0"
|
|
117
119
|
},
|
|
118
120
|
"devDependencies": {
|
|
119
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
120
|
-
"@semantic-release/git": "^10.0.1",
|
|
121
|
-
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
122
|
-
"semantic-release": "^25.0.2",
|
|
123
121
|
"@eslint/eslintrc": "^3.3.3",
|
|
124
122
|
"@eslint/js": "^9.39.1",
|
|
125
123
|
"@nestjs/bullmq": "^11.0.4",
|
|
124
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
125
|
+
"@semantic-release/git": "^10.0.1",
|
|
126
126
|
"@swc/core": "^1.15.3",
|
|
127
127
|
"@types/bcryptjs": "^3.0.0",
|
|
128
128
|
"@types/node": "^25.0.1",
|
|
@@ -133,12 +133,14 @@
|
|
|
133
133
|
"@typescript-eslint/eslint-plugin": "^8.49.0",
|
|
134
134
|
"@typescript-eslint/parser": "^8.49.0",
|
|
135
135
|
"commander": "^14.0.2",
|
|
136
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
136
137
|
"eslint": "^9.39.1",
|
|
137
138
|
"eslint-config-prettier": "^10.1.8",
|
|
138
139
|
"eslint-plugin-prettier": "^5.5.4",
|
|
139
140
|
"glob": "^13.0.0",
|
|
140
141
|
"globals": "^16.5.0",
|
|
141
142
|
"prettier": "^3.7.4",
|
|
143
|
+
"semantic-release": "^25.0.2",
|
|
142
144
|
"ts-node": "^10.9.2",
|
|
143
145
|
"tsup": "^8.5.1",
|
|
144
146
|
"typescript": "^5.9.3"
|
|
@@ -162,12 +164,12 @@
|
|
|
162
164
|
"access": "public"
|
|
163
165
|
},
|
|
164
166
|
"peerDependencies": {
|
|
167
|
+
"@fastify/multipart": "^9.0.0",
|
|
165
168
|
"@nestjs/common": "^11.1.9",
|
|
166
169
|
"@nestjs/config": "^4.0.2",
|
|
167
170
|
"@nestjs/core": "^11.1.9",
|
|
168
171
|
"@nestjs/event-emitter": "^3.0.1",
|
|
169
172
|
"@nestjs/jwt": "^11.0.1",
|
|
170
|
-
"@fastify/multipart": "^9.0.0",
|
|
171
173
|
"@nestjs/passport": "^11.0.5",
|
|
172
174
|
"@nestjs/platform-fastify": "^11.1.9",
|
|
173
175
|
"@nestjs/platform-socket.io": "^11.1.9",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"discord.module.d.ts","sourceRoot":"","sources":["../../../src/foundations/discord-user/discord.module.ts"],"names":[],"mappings":"AAKA,qBAMa,iBAAiB;CAAG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"discord.module.js","sourceRoot":"","sources":["../../../src/foundations/discord-user/discord.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAwC;AACxC,wCAA2C;AAC3C,kCAAqC;AACrC,oFAA+E;AAQxE,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAAG,CAAA;AAApB,8CAAiB;4BAAjB,iBAAiB;IAN7B,IAAA,eAAM,EAAC;QACN,WAAW,EAAE,EAAE;QACf,SAAS,EAAE,CAAC,+CAAqB,CAAC;QAClC,OAAO,EAAE,CAAC,+CAAqB,CAAC;QAChC,OAAO,EAAE,CAAC,uBAAa,EAAE,iBAAU,CAAC;KACrC,CAAC;GACW,iBAAiB,CAAG"}
|