Skip to content

Commit

Permalink
feat: rename EventNotification to Event
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega committed Jul 18, 2024
1 parent 42e8391 commit 4242247
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions report/schemas.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -829,10 +829,10 @@ export namespace EthAddress {
validate: ValidateFunction<EthAddress>;
}

// Warning: (ae-missing-release-tag) "EventNotification" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
// Warning: (ae-missing-release-tag) "Event" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type EventNotification = BidAcceptedEvent | BidReceivedEvent | ItemSoldEvent | RentalEndedEvent | RentalStartedEvent | RoyaltiesEarnedEvent | MoveToParcelEvent | CatalystDeployment;
export type Event = BidAcceptedEvent | BidReceivedEvent | ItemSoldEvent | RentalEndedEvent | RentalStartedEvent | RoyaltiesEarnedEvent | MoveToParcelEvent | CatalystDeployment;

// Warning: (ae-missing-release-tag) "EventSubType" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
Expand Down
2 changes: 1 addition & 1 deletion src/platform/events/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export type BaseEvent = {
timestamp: number
}

export type EventNotification =
export type Event =
| BidAcceptedEvent
| BidReceivedEvent
| ItemSoldEvent
Expand Down

0 comments on commit 4242247

Please sign in to comment.