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" } 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: 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; }