Skip to content

Commit

Permalink
fix/update event namespaces for succession events (#75)
Browse files Browse the repository at this point in the history
* fix: update event namespaces

* chore: bump libs
  • Loading branch information
jkoenig134 authored Mar 25, 2024
1 parent cbc380e commit b1a5a4f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/consumption/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nmshd/consumption",
"version": "3.9.5",
"version": "3.9.6",
"description": "The consumption library extends the transport library.",
"homepage": "https://enmeshed.eu",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { LocalAttribute } from "../local/LocalAttribute";
import { AttributeSucceededEventData } from "./AttributeSucceededEventData";

export class OwnSharedAttributeSucceededEvent extends TransportDataEvent<AttributeSucceededEventData> {
public static readonly namespace = "consumption.ownSharedAttributeSucceded";
public static readonly namespace = "consumption.ownSharedAttributeSucceeded";

public constructor(eventTargetAddress: string, predecessor: LocalAttribute, successor: LocalAttribute) {
super(OwnSharedAttributeSucceededEvent.namespace, eventTargetAddress, { predecessor, successor });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { LocalAttribute } from "../local/LocalAttribute";
import { AttributeSucceededEventData } from "./AttributeSucceededEventData";

export class PeerSharedAttributeSucceededEvent extends TransportDataEvent<AttributeSucceededEventData> {
public static readonly namespace = "consumption.peerSharedAttributeSucceded";
public static readonly namespace = "consumption.peerSharedAttributeSucceeded";

public constructor(eventTargetAddress: string, predecessor: LocalAttribute, successor: LocalAttribute) {
super(PeerSharedAttributeSucceededEvent.namespace, eventTargetAddress, { predecessor, successor });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { LocalAttribute } from "../local/LocalAttribute";
import { AttributeSucceededEventData } from "./AttributeSucceededEventData";

export class RepositoryAttributeSucceededEvent extends TransportDataEvent<AttributeSucceededEventData> {
public static readonly namespace = "consumption.repositoryAttributeSucceded";
public static readonly namespace = "consumption.repositoryAttributeSucceeded";

public constructor(eventTargetAddress: string, predecessor: LocalAttribute, successor: LocalAttribute) {
super(RepositoryAttributeSucceededEvent.namespace, eventTargetAddress, { predecessor, successor });
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nmshd/runtime",
"version": "4.3.8",
"version": "4.3.9",
"description": "The enmeshed client runtime.",
"homepage": "https://enmeshed.eu",
"repository": {
Expand Down Expand Up @@ -65,7 +65,7 @@
"@js-soft/logging-abstractions": "^1.0.1",
"@js-soft/ts-serval": "2.0.10",
"@js-soft/ts-utils": "^2.3.3",
"@nmshd/consumption": "3.9.5",
"@nmshd/consumption": "3.9.6",
"@nmshd/content": "2.8.11",
"@nmshd/crypto": "2.0.6",
"@nmshd/transport": "2.3.5",
Expand Down

0 comments on commit b1a5a4f

Please sign in to comment.