-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #306 from alkem-io/develop
Release: Subspaces
- Loading branch information
Showing
112 changed files
with
450 additions
and
1,302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
"source.fixAll.eslint": "explicit" | ||
}, | ||
"files.eol": "\n" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94 changes: 0 additions & 94 deletions
94
lib/src/common/alkemio-url-generator/alkemio.url.generator.ts
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
lib/src/common/enums/journey.type.ts → lib/src/common/enums/space.type.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
// eslint-disable-next-line @typescript-eslint/no-empty-interface | ||
export interface BaseEventPayload { | ||
triggeredBy: string; | ||
platform: { | ||
url: string; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
import { JourneyBaseEventPayload } from './journey.base.event.payload'; | ||
import { SpaceBaseEventPayload } from './space.base.event.payload'; | ||
|
||
export interface CollaborationCalloutPublishedEventPayload extends JourneyBaseEventPayload { | ||
export interface CollaborationCalloutPublishedEventPayload extends SpaceBaseEventPayload { | ||
callout: { | ||
id: string; | ||
displayName: string; | ||
description: string; | ||
nameID: string; | ||
type: string; | ||
url: string; | ||
}; | ||
} |
12 changes: 0 additions & 12 deletions
12
lib/src/dto/collaboration.context.review.submitted.payload.ts
This file was deleted.
Oops, something went wrong.
5 changes: 3 additions & 2 deletions
5
lib/src/dto/collaboration.discussion.comment.event.payload.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
import { JourneyBaseEventPayload } from './journey.base.event.payload'; | ||
import { SpaceBaseEventPayload } from './space.base.event.payload'; | ||
|
||
export interface CollaborationPostCreatedEventPayload extends JourneyBaseEventPayload { | ||
export interface CollaborationPostCreatedEventPayload extends SpaceBaseEventPayload { | ||
callout: { | ||
displayName: string; | ||
nameID: string; | ||
url: string; | ||
} | ||
post: { | ||
id: string; | ||
createdBy: string; | ||
displayName: string; | ||
nameID: string; | ||
type: string; | ||
url: string; | ||
}; | ||
} |
6 changes: 4 additions & 2 deletions
6
lib/src/dto/collaboration.whiteboard.created.event.payload.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
import { JourneyBaseEventPayload } from './journey.base.event.payload'; | ||
import { SpaceBaseEventPayload } from './space.base.event.payload'; | ||
|
||
export interface CollaborationWhiteboardCreatedEventPayload extends JourneyBaseEventPayload { | ||
export interface CollaborationWhiteboardCreatedEventPayload extends SpaceBaseEventPayload { | ||
callout: { | ||
displayName: string; | ||
nameID: string; | ||
url: string; | ||
} | ||
whiteboard: { | ||
id: string; | ||
createdBy: string; | ||
displayName: string; | ||
nameID: string; | ||
url: string; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { JourneyBaseEventPayload } from './journey.base.event.payload'; | ||
import { SpaceBaseEventPayload } from './space.base.event.payload'; | ||
|
||
export interface CommunicationCommunityLeadsMessageEventPayload | ||
extends JourneyBaseEventPayload { | ||
extends SpaceBaseEventPayload { | ||
message: string; | ||
} |
6 changes: 2 additions & 4 deletions
6
lib/src/dto/communication.organization.mention.event.payload.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 2 additions & 4 deletions
6
lib/src/dto/communication.organization.message.event.payload.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
import { BaseEventPayload } from './base.event.payload'; | ||
import { ContributorPayload } from './contributor.payload'; | ||
export interface CommunicationOrganizationMessageEventPayload | ||
extends BaseEventPayload { | ||
message: string; | ||
organization: { | ||
id: string; | ||
displayName: string; | ||
}; | ||
organization: ContributorPayload; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
import { JourneyBaseEventPayload } from './journey.base.event.payload'; | ||
import { SpaceBaseEventPayload } from './space.base.event.payload'; | ||
|
||
export interface CommunicationUpdateEventPayload extends JourneyBaseEventPayload { | ||
export interface CommunicationUpdateEventPayload extends SpaceBaseEventPayload { | ||
update: { | ||
id: string; | ||
createdBy: string; | ||
url: string; | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
import { BaseEventPayload } from './base.event.payload'; | ||
import { ContributorPayload } from './contributor.payload'; | ||
export interface CommunicationUserMessageEventPayload extends BaseEventPayload { | ||
message: string; | ||
messageReceiver: { | ||
id: string; | ||
displayName: string; | ||
}; | ||
messageReceiver: ContributorPayload; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { JourneyPayload } from './journey.payload'; | ||
import { JourneyBaseEventPayload } from './journey.base.event.payload'; | ||
import { SpacePayload } from './space.payload'; | ||
import { SpaceBaseEventPayload } from './space.base.event.payload'; | ||
import { ContributorPayload } from './contributor.payload'; | ||
|
||
export interface CommunityApplicationCreatedEventPayload extends JourneyBaseEventPayload { | ||
applicantID: string; | ||
export interface CommunityApplicationCreatedEventPayload extends SpaceBaseEventPayload { | ||
applicant: ContributorPayload; | ||
} |
4 changes: 2 additions & 2 deletions
4
lib/src/dto/community.external.invitation.created.event.payload.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { JourneyBaseEventPayload } from './journey.base.event.payload'; | ||
import { ContributorPayload } from './contributor.payload'; | ||
import { SpaceBaseEventPayload } from './space.base.event.payload'; | ||
|
||
export interface CommunityInvitationCreatedEventPayload | ||
extends JourneyBaseEventPayload { | ||
inviteeID: string; | ||
extends SpaceBaseEventPayload { | ||
invitee: ContributorPayload; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
|
||
import { JourneyBaseEventPayload } from './journey.base.event.payload'; | ||
import { ContributorPayload } from './contributor.payload'; | ||
import { SpaceBaseEventPayload } from './space.base.event.payload'; | ||
|
||
export interface CommunityNewMemberPayload extends JourneyBaseEventPayload { | ||
userID: string; | ||
export interface CommunityNewMemberPayload extends SpaceBaseEventPayload { | ||
user: ContributorPayload; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { SpaceType } from "@src/common/enums/space.type"; | ||
|
||
export type ContributorPayload = { | ||
id: string; | ||
nameID: string; | ||
profile: { | ||
displayName: string; | ||
url: string; | ||
} | ||
}; |
Oops, something went wrong.