From 3ee6b7a999614573869cba65003d9b371dbe3708 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20K=C3=B6nig?= <julian.koenig@js-soft.com> Date: Mon, 27 Jan 2025 10:25:42 +0100 Subject: [PATCH 1/3] chore: remove unused types --- src/modules/sse/SseModule.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/modules/sse/SseModule.ts b/src/modules/sse/SseModule.ts index 0ae9d1cc..53bbce47 100644 --- a/src/modules/sse/SseModule.ts +++ b/src/modules/sse/SseModule.ts @@ -6,17 +6,6 @@ import { ConnectorMode } from "../../ConnectorMode"; import { ConnectorRuntime } from "../../ConnectorRuntime"; import { ConnectorRuntimeModule, ConnectorRuntimeModuleConfiguration } from "../../ConnectorRuntimeModule"; -export enum BackboneEventName { - DatawalletModificationsCreated = "DatawalletModificationsCreated", - ExternalEventCreated = "ExternalEventCreated" -} - -export interface IBackboneEventContent { - eventName: BackboneEventName; - sentAt: string; - payload: any; -} - export interface SseModuleConfiguration extends ConnectorRuntimeModuleConfiguration { baseUrlOverride?: string; } From 92f5326c2cbfe8383e50901eb378b178f960f204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20K=C3=B6nig?= <julian.koenig@js-soft.com> Date: Mon, 27 Jan 2025 10:25:52 +0100 Subject: [PATCH 2/3] fix: createdBy --- src/modules/coreHttpApi/openapi.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/modules/coreHttpApi/openapi.yml b/src/modules/coreHttpApi/openapi.yml index 5a4e2f0b..ed6533b4 100644 --- a/src/modules/coreHttpApi/openapi.yml +++ b/src/modules/coreHttpApi/openapi.yml @@ -6030,9 +6030,7 @@ components: format: date-time nullable: false createdBy: - type: string - format: date-time - nullable: false + $ref: "#/components/schemas/Address" createdByDevice: $ref: "#/components/schemas/DeviceID" reason: From d83c3656cda5aeeda97c687396cc4ecbcf69714c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20K=C3=B6nig?= <julian.koenig@js-soft.com> Date: Mon, 27 Jan 2025 10:32:40 +0100 Subject: [PATCH 3/3] chore: audit fix --- package-lock.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7dcb9f33..45680ded 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13363,9 +13363,10 @@ "license": "MIT" }, "node_modules/undici": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/undici/-/undici-7.2.1.tgz", - "integrity": "sha512-U2k0XHLJfaciARRxDcqTk2AZQsGXerHzdvfCZcy1hNhSf5KCAF4jIQQxL+apQviOekhRFPqED6Of5/+LcUSLzQ==", + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-7.3.0.tgz", + "integrity": "sha512-Qy96NND4Dou5jKoSJ2gm8ax8AJM/Ey9o9mz7KN1bb9GP+G0l20Zw8afxTnY2f4b7hmhn/z8aC2kfArVQlAhFBw==", + "license": "MIT", "engines": { "node": ">=20.18.1" }