Skip to content

Commit

Permalink
fix: Missing social service events (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinszuchet authored Jan 29, 2025
1 parent 96615d8 commit b797259
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion report/schemas.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ export namespace EthAddress {
// 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 Event = BadgeGrantedEvent | BidAcceptedEvent | BidReceivedEvent | CampaignGasPriceHigherThanExpectedEvent | CampaignOutOfFundsEvent | CampaignOutOfStockEvent | CatalystDeploymentEvent | CollectionCreatedEvent | ItemPublishedEvent | ItemSoldEvent | MoveToParcelEvent | PassportOpenedEvent | RentalEndedEvent | RentalStartedEvent | RewardAssignedEvent | RewardDelayedEvent | RewardInProgressEvent | RoyaltiesEarnedEvent | UsedEmoteEvent | VerticalHeightReachedEvent | WalkedDistanceEvent;
export type Event = BadgeGrantedEvent | BidAcceptedEvent | BidReceivedEvent | CampaignGasPriceHigherThanExpectedEvent | CampaignOutOfFundsEvent | CampaignOutOfStockEvent | CatalystDeploymentEvent | CollectionCreatedEvent | FriendshipRequestEvent | FriendshipAcceptedEvent | ItemPublishedEvent | ItemSoldEvent | MoveToParcelEvent | PassportOpenedEvent | RentalEndedEvent | RentalStartedEvent | RewardAssignedEvent | RewardDelayedEvent | RewardInProgressEvent | RoyaltiesEarnedEvent | UsedEmoteEvent | VerticalHeightReachedEvent | WalkedDistanceEvent;

// Warning: (ae-missing-release-tag) "Events" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
Expand Down
4 changes: 3 additions & 1 deletion src/platform/events/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
CampaignOutOfStockEvent,
RewardDelayedEvent
} from './rewards'
import { BadgeGrantedEvent } from './services'
import { BadgeGrantedEvent, FriendshipAcceptedEvent, FriendshipRequestEvent } from './services'

export namespace Events {
export enum Type {
Expand Down Expand Up @@ -124,6 +124,8 @@ export type Event =
| CampaignOutOfStockEvent
| CatalystDeploymentEvent
| CollectionCreatedEvent
| FriendshipRequestEvent
| FriendshipAcceptedEvent
| ItemPublishedEvent
| ItemSoldEvent
| MoveToParcelEvent
Expand Down

0 comments on commit b797259

Please sign in to comment.