@carlonicora/nestjs-neo4jsonapi 4.7.0 → 4.9.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/config/base.config.d.ts.map +1 -1
- package/dist/config/base.config.js +65 -17
- package/dist/config/base.config.js.map +1 -1
- package/dist/config/interfaces/config.ai.interface.d.ts +92 -60
- package/dist/config/interfaces/config.ai.interface.d.ts.map +1 -1
- package/dist/core/blocknote/index.d.ts +1 -0
- package/dist/core/blocknote/index.d.ts.map +1 -1
- package/dist/core/blocknote/index.js +1 -0
- package/dist/core/blocknote/index.js.map +1 -1
- package/dist/core/blocknote/rich-text-empty.d.ts +7 -0
- package/dist/core/blocknote/rich-text-empty.d.ts.map +1 -0
- package/dist/core/blocknote/rich-text-empty.js +59 -0
- package/dist/core/blocknote/rich-text-empty.js.map +1 -0
- package/dist/core/llm/services/audio/diarization-spans.d.ts +29 -0
- package/dist/core/llm/services/audio/diarization-spans.d.ts.map +1 -0
- package/dist/core/llm/services/audio/diarization-spans.js +49 -0
- package/dist/core/llm/services/audio/diarization-spans.js.map +1 -0
- package/dist/core/llm/services/audio.llm.service.d.ts +39 -0
- package/dist/core/llm/services/audio.llm.service.d.ts.map +1 -1
- package/dist/core/llm/services/audio.llm.service.js +142 -2
- package/dist/core/llm/services/audio.llm.service.js.map +1 -1
- package/dist/core/neo4j/services/neo4j.service.d.ts.map +1 -1
- package/dist/core/neo4j/services/neo4j.service.js +7 -0
- package/dist/core/neo4j/services/neo4j.service.js.map +1 -1
- package/dist/foundations/company/services/company.service.d.ts +8 -0
- package/dist/foundations/company/services/company.service.d.ts.map +1 -1
- package/dist/foundations/company/services/company.service.js +14 -2
- package/dist/foundations/company/services/company.service.js.map +1 -1
- package/dist/foundations/notification/repositories/notification.repository.d.ts +40 -1
- package/dist/foundations/notification/repositories/notification.repository.d.ts.map +1 -1
- package/dist/foundations/notification/repositories/notification.repository.js +62 -5
- package/dist/foundations/notification/repositories/notification.repository.js.map +1 -1
- package/package.json +1 -1
|
@@ -182,6 +182,9 @@ let NotificationRepository = class NotificationRepository extends abstract_repos
|
|
|
182
182
|
* target is validated (`validateExistingNodes`) before the write and then
|
|
183
183
|
* written as `(notification)-[:REFERS_TO]->(target)`, grouped per label.
|
|
184
184
|
*
|
|
185
|
+
* `message` and `actionUrl` are the two free-text fields of the entity, both
|
|
186
|
+
* optional: when omitted they are bound as null and Neo4j creates no property.
|
|
187
|
+
*
|
|
185
188
|
* Named `createNotification` rather than `create` because
|
|
186
189
|
* `AbstractRepository.create` is inherited with an incompatible signature —
|
|
187
190
|
* see the class JSDoc.
|
|
@@ -202,6 +205,8 @@ let NotificationRepository = class NotificationRepository extends abstract_repos
|
|
|
202
205
|
...query.queryParams,
|
|
203
206
|
notificationId: notificationId,
|
|
204
207
|
notificationType: params.notificationType,
|
|
208
|
+
message: params.message ?? null,
|
|
209
|
+
actionUrl: params.actionUrl ?? null,
|
|
205
210
|
userId: [params.userId],
|
|
206
211
|
actorId: [params.actorId],
|
|
207
212
|
};
|
|
@@ -210,6 +215,8 @@ let NotificationRepository = class NotificationRepository extends abstract_repos
|
|
|
210
215
|
CREATE (notification:Notification {
|
|
211
216
|
id: $notificationId,
|
|
212
217
|
notificationType: $notificationType,
|
|
218
|
+
message: $message,
|
|
219
|
+
actionUrl: $actionUrl,
|
|
213
220
|
createdAt: datetime(),
|
|
214
221
|
updatedAt: datetime()
|
|
215
222
|
})
|
|
@@ -280,8 +287,23 @@ let NotificationRepository = class NotificationRepository extends abstract_repos
|
|
|
280
287
|
*
|
|
281
288
|
* Every related node is matched through `company`, so a node that does not
|
|
282
289
|
* belong to the current company is simply not linked.
|
|
290
|
+
*
|
|
291
|
+
* `message` and `actionUrl` are optional free-text fields of the entity,
|
|
292
|
+
* written in the same `ON CREATE SET` (bound as null when omitted, which
|
|
293
|
+
* creates no property).
|
|
294
|
+
*
|
|
295
|
+
* Returns the node id in BOTH outcomes — the generated one when this call
|
|
296
|
+
* created the record, the existing node's when a previous call won — so a
|
|
297
|
+
* caller can load the node and push it without a second lookup by key, and
|
|
298
|
+
* throws when the write matched nothing (no row read back: the recipient or
|
|
299
|
+
* the company did not match, so no notification exists at all).
|
|
300
|
+
*
|
|
301
|
+
* That throw is why this is a separate method from {@link createIdempotent}:
|
|
302
|
+
* the older name shipped returning `{ created: false }` for the no-row case,
|
|
303
|
+
* and apps outside this repo still call it without a try/catch. Prefer this
|
|
304
|
+
* one in new code — "nothing was written" is a failure, not a duplicate.
|
|
283
305
|
*/
|
|
284
|
-
async
|
|
306
|
+
async createIdempotentOrThrow(params) {
|
|
285
307
|
const notificationId = (0, crypto_1.randomUUID)();
|
|
286
308
|
const actorLabel = this.assertSafeLabel(params.actorLabel ?? user_meta_1.userMeta.labelName);
|
|
287
309
|
const targets = (params.targets ?? []).filter((target) => !!target?.id);
|
|
@@ -292,6 +314,8 @@ let NotificationRepository = class NotificationRepository extends abstract_repos
|
|
|
292
314
|
...writeQuery.queryParams,
|
|
293
315
|
notificationId,
|
|
294
316
|
notificationType: params.notificationType,
|
|
317
|
+
message: params.message ?? null,
|
|
318
|
+
actionUrl: params.actionUrl ?? null,
|
|
295
319
|
idempotencyKey: params.idempotencyKey,
|
|
296
320
|
userId: params.userId,
|
|
297
321
|
actorId: params.actorId ?? null,
|
|
@@ -313,11 +337,17 @@ let NotificationRepository = class NotificationRepository extends abstract_repos
|
|
|
313
337
|
ON CREATE SET
|
|
314
338
|
notification.id = $notificationId,
|
|
315
339
|
notification.notificationType = $notificationType,
|
|
340
|
+
notification.message = $message,
|
|
341
|
+
notification.actionUrl = $actionUrl,
|
|
316
342
|
notification.isRead = false,
|
|
317
343
|
notification.createdAt = datetime(),
|
|
318
344
|
notification.updatedAt = datetime()
|
|
319
345
|
|
|
320
|
-
|
|
346
|
+
// \`company\` must be carried through the WITH: a variable the projection
|
|
347
|
+
// drops is unbound inside the FOREACH, and MERGE would then create a
|
|
348
|
+
// label-less node instead of linking the company (the list query needs
|
|
349
|
+
// the BELONGS_TO edge, so such a notification is invisible).
|
|
350
|
+
WITH notification, recipient, actor, company${targetAliases.length ? `, ${targetAliases.join(", ")}` : ""},
|
|
321
351
|
notification.id = $notificationId AS justCreated
|
|
322
352
|
|
|
323
353
|
FOREACH (_ IN CASE WHEN justCreated THEN [1] ELSE [] END |
|
|
@@ -336,13 +366,40 @@ let NotificationRepository = class NotificationRepository extends abstract_repos
|
|
|
336
366
|
.join("")}
|
|
337
367
|
`;
|
|
338
368
|
await this.neo4j.writeOne(writeQuery);
|
|
339
|
-
// Step 2: Read back the node's id.
|
|
340
|
-
//
|
|
369
|
+
// Step 2: Read back the node's id. Equal to the one we generated → this call
|
|
370
|
+
// created it; a different id → a previous call with the same key won; no row
|
|
371
|
+
// at all → the MERGE never ran because the recipient (or the company) did not
|
|
372
|
+
// match, and that is a failure the caller must see, not "already created".
|
|
341
373
|
const readResult = await this.neo4j.read(
|
|
342
374
|
// nja-lint-ignore: idempotency read-back by server-generated unique key — scalar id only
|
|
343
375
|
`MATCH (n:${notification_meta_1.notificationMeta.labelName} {idempotencyKey: $idempotencyKey}) RETURN n.id AS id`, { idempotencyKey: params.idempotencyKey });
|
|
344
376
|
const actualId = readResult.records[0]?.get("id");
|
|
345
|
-
|
|
377
|
+
if (!actualId) {
|
|
378
|
+
throw new Error(`NOTIFICATION_NOT_WRITTEN: no recipient ${params.userId} in the current company (key ${params.idempotencyKey})`);
|
|
379
|
+
}
|
|
380
|
+
return { created: actualId === notificationId, id: actualId };
|
|
381
|
+
}
|
|
382
|
+
/**
|
|
383
|
+
* Find-or-create keeping the contract this method shipped with: a write that
|
|
384
|
+
* matched no recipient resolves as `{ created: false }` rather than throwing.
|
|
385
|
+
*
|
|
386
|
+
* `id` is present whenever a node exists, and absent only in that no-row
|
|
387
|
+
* case — additive, so a caller that reads `created` alone is unaffected.
|
|
388
|
+
*
|
|
389
|
+
* New code should call {@link createIdempotentOrThrow} instead, which
|
|
390
|
+
* surfaces "nothing was written" as the failure it is. This wrapper exists so
|
|
391
|
+
* that fix did not become a breaking change for the apps already on this
|
|
392
|
+
* package.
|
|
393
|
+
*/
|
|
394
|
+
async createIdempotent(params) {
|
|
395
|
+
try {
|
|
396
|
+
return await this.createIdempotentOrThrow(params);
|
|
397
|
+
}
|
|
398
|
+
catch (error) {
|
|
399
|
+
if (error instanceof Error && error.message.startsWith("NOTIFICATION_NOT_WRITTEN"))
|
|
400
|
+
return { created: false };
|
|
401
|
+
throw error;
|
|
402
|
+
}
|
|
346
403
|
}
|
|
347
404
|
};
|
|
348
405
|
exports.NotificationRepository = NotificationRepository;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification.repository.js","sourceRoot":"","sources":["../../../../src/foundations/notification/repositories/notification.repository.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"notification.repository.js","sourceRoot":"","sources":["../../../../src/foundations/notification/repositories/notification.repository.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED