Skip to content

Commit

Permalink
Merge pull request #340 from alkem-io/develop
Browse files Browse the repository at this point in the history
v0.19.0
  • Loading branch information
hero101 authored Jul 5, 2024
2 parents 154bcd7 + 4c5c699 commit 10a8aeb
Show file tree
Hide file tree
Showing 19 changed files with 252 additions and 120 deletions.
175 changes: 70 additions & 105 deletions lib/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 lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alkemio/notifications-lib",
"version": "0.9.3",
"version": "0.9.6",
"description": "Library for interacting with Alkemio notifications service",
"author": "Alkemio Foundation",
"private": false,
Expand Down
1 change: 1 addition & 0 deletions lib/src/dto/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ export * from './platform.forum.discussion.comment.event.payload';
export * from './platform.forum.discussion.created.event.payload';
export * from './comment.reply.event.payload';
export * from './community.invitation.virtual.contributor.created.event.payload';
export * from './space.created.event.payload';
9 changes: 9 additions & 0 deletions lib/src/dto/space.created.event.payload.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { SpaceBaseEventPayload } from "./space.base.event.payload";

export interface SpaceCreatedEventPayload extends SpaceBaseEventPayload {
created: number;
sender: {
name: string;
url: string;
}
}
Loading

0 comments on commit 10a8aeb

Please sign in to comment.