-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added activity logs to eventlogger, plus fixed a bug on deletin…
…g parent of child credentials
- Loading branch information
Showing
16 changed files
with
517 additions
and
45 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
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
6 changes: 4 additions & 2 deletions
6
packages/data-store/src/eventLogger/AbstractEventLoggerStore.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,7 +1,9 @@ | ||
import { GetAuditEventsArgs, StoreAuditEventArgs } from '../types' | ||
import { AuditLoggingEvent } from '@sphereon/ssi-sdk.core' | ||
import { GetAuditEventsArgs, StoreActivityEventArgs, StoreAuditEventArgs } from '../types' | ||
import { ActivityLoggingEvent, AuditLoggingEvent } from '@sphereon/ssi-sdk.core' | ||
|
||
export abstract class AbstractEventLoggerStore { | ||
abstract getAuditEvents(args: GetAuditEventsArgs): Promise<Array<AuditLoggingEvent>> | ||
abstract getActivityEvents(args: GetAuditEventsArgs): Promise<Array<AuditLoggingEvent>> | ||
abstract storeAuditEvent(args: StoreAuditEventArgs): Promise<AuditLoggingEvent> | ||
abstract storeActivityEvent(args: StoreActivityEventArgs): Promise<ActivityLoggingEvent> | ||
} |
Oops, something went wrong.